/* =========================================
           1. LUXURY BRAND VARIABLES
           ========================================= */

:root {
    /* Brand Colors */
    --duha-dark: #0f0f0f;
    /* Pitch Black for Contrast */
    --duha-maroon: #5C140C;
    /* Brand Core (Deep Red) */
    --duha-gold: #C5A065;
    /* Metallic Gold Accent */
    --duha-white: #ffffff;
    /* Typography */
    --font-nav: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
    /* Transitions */
    --ease-lux: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* =========================================
           2. GLOBAL RESET
           ========================================= */

body {
    font-family: var(--font-nav);
    background-color: #f9f9f9;
}

body,
html {
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}



/* HERO CONTAINER */
.premium-hero {
    position: relative;
    height: 50vh;
    /* Thoda chhota height for page header */
    min-height: 400px;
    /* Background Image with Fixed Parallax */
    background: url('../images/new-banners/product-banner.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* BLACK OVERLAY */
.premium-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Dark Overlay */
    z-index: 1;
}

/* CONTENT WRAPPER */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 800px;
}

/* TYPOGRAPHY */
.hero-breadcrumb {
    font-family: 'Outfit', sans-serif;
    color: var(--duha-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    opacity: 0;
    animation: fadeInDown 1s ease forwards;
}

.hero-breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 10px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .premium-hero {
        height: 40vh;
        min-height: 300px;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

/* --- 2. MAIN PRODUCT CONTENT --- */
.product-main-section {
    padding: 80px 0;
}

/* Gallery */
.prod-gallery {
    position: sticky;
    top: 100px;
}

.main-image-box {
    height: 500px;
    border: 1px solid #eee;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-image-box:hover .main-image {
    transform: scale(1.1);
}

.thumb-row {
    display: flex;
    gap: 10px;
}

.thumb-box {
    width: 80px;
    height: 80px;
    border: 1px solid #ddd;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

.thumb-box:hover,
.thumb-box.active {
    opacity: 1;
    border-color: var(--duha-gold);
}

.thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Details */
.prod-detail-wrapper {
    padding-left: 30px;
}

.prod-tag {
    display: inline-block;
    background: rgba(197, 160, 101, 0.1);
    color: var(--duha-gold);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid var(--duha-gold);
}

.prod-desc-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* Feature List */
.prod-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.prod-features li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: var(--duha-dark);
}

.prod-features i {
    color: var(--duha-maroon);
    font-size: 1.2rem;
    margin-right: 15px;
    background: rgba(92, 20, 12, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Action Buttons */
.action-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-enquire {
    background: var(--duha-maroon);
    color: #fff;
    padding: 15px 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    border: none;
    flex-grow: 1;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

.btn-enquire:hover {
    background: var(--duha-dark);
    color: var(--duha-gold);
}

.btn-download {
    background: #fff;
    color: var(--duha-dark);
    border: 2px solid var(--duha-dark);
    padding: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.btn-download:hover {
    background: var(--duha-dark);
    color: #fff;
}

/* --- 3. MODERN TABS SECTION (Specs & Apps) --- */
.prod-tabs-section {
    background: #fdfbf7;
    /* Premium Creamy BG */
    padding: 80px 0;
    position: relative;
}

/* Tabs Styling */
.modern-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 50px;
    gap: 20px;
}

.modern-tabs .nav-link {
    border: 1px solid rgba(197, 160, 101, 0.3);
    border-radius: 50px;
    background: #fff;
    color: #666;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    padding: 15px 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modern-tabs .nav-link:hover {
    border-color: var(--duha-gold);
    color: var(--duha-maroon);
}

.modern-tabs .nav-link.active {
    background: var(--duha-maroon);
    color: #fff;
    border-color: var(--duha-maroon);
    box-shadow: 0 10px 20px rgba(92, 20, 12, 0.2);
}

/* TABLE DESIGN */
.specs-wrapper {
    background: #fff;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--duha-gold);
}

.premium-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    /* Space between rows */
}

.premium-table th {
    text-align: left;
    padding: 20px;
    color: var(--duha-maroon);
    font-weight: 700;
    width: 35%;
    border-bottom: 2px solid #eee;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}

.premium-table td {
    padding: 20px;
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
    color: #444;
    font-weight: 500;
    transition: 0.3s;
}

.premium-table tr:hover td {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: scale(1.01);
    border-left: 3px solid var(--duha-gold);
}

/* APPLICATIONS GRID (Sexy Cards) */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.app-card {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.app-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.app-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: #fff;
    opacity: 0.9;
    transition: 0.3s;
}

.app-icon {
    font-size: 2rem;
    color: var(--duha-gold);
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: 0.4s;
    opacity: 0;
}

.app-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0;
    transform: translateY(0);
    transition: 0.4s;
}

.app-card:hover .app-img {
    transform: scale(1.1);
}

.app-card:hover .app-icon {
    opacity: 1;
    transform: translateY(0);
}

.app-card:hover .app-title {
    transform: translateY(-5px);
    color: var(--duha-gold);
}


/* --- 4. RELATED PRODUCTS --- */
.related-section {
    padding: 80px 0;
}

.related-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--duha-dark);
}

/* Using the same card style from homepage grid for consistency */
.rel-card {
    border: 1px solid #eee;
    transition: 0.3s;
    text-align: center;
}

.rel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.rel-img {
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.rel-body {
    padding: 20px;
}

.rel-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--duha-dark);
}

/* Responsive */
@media (max-width: 991px) {
    .prod-detail-wrapper {
        padding-left: 0;
        margin-top: 40px;
    }

    .prod-page-title {
        font-size: 2.2rem;
    }

    .main-image-box {
        height: 350px;
    }

    .prod-features {
        grid-template-columns: 1fr;
    }

    .apps-grid {
        grid-template-columns: 1fr;
    }
}