
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-gold: #c4a474;
            --dark-gold: #b8956a;
            --light-gold: #d4b484;
            --charcoal: #2c2c2c;
            --border-light: rgba(255, 255, 255, 0.1);
            --text-muted: rgba(255, 255, 255, 0.7);
            --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
            --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            /*background-image: url('bgimg.jpeg');*/
           /* background-size: cover;
            background-position: center;*/
           /* background-attachment: fixed;
            min-height: 100vh;*/
        }

        /* Logo */
        .logo-top {
            position:absolute;
            top: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .logo-img {
            height: 60px;
            filter: brightness(0) invert(1);
        }
        
        .banner-video {width: 100%;height: 100%;object-fit: cover;}
        
.product-image-placeholder img{transform: scale(3);}

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
           /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(44, 44, 44, 0.8) 100%);*/
            text-align: center;
            /*padding: 2rem;*/
            height: 100vh;
        }
        
        .hero:after{content:'';position:absolute;top:0;left:0;width:100%;height:100%; background:#0000008c /*linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(44, 44, 44, 0.8) 100%)*/;}

        .hero-content {
            max-width: 900px;
            animation: fadeInUp 1s ease-out;
            z-index: 9;
            margin: auto;
            position: absolute;
        }

        .hero-title {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 200;
            color: white;
            margin-bottom: 1.5rem;
            letter-spacing: -2px;
            line-height: 1.1;
        }

        .hero-title .accent {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 300;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            font-weight: 300;
            line-height: 1.6;
            max-width: 610px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Search Box - Positioned between subtitle and tabs */
        .search-container {
            position: relative;
            width: 100%;
            max-width: 500px;
            margin: 0 auto 2.5rem;
            z-index: 10;
        }

        .search-box {
            position: relative;
            width: 100%;
        }

        .search-box input {
            width: 100%;
            padding: 1rem 1.5rem 1rem 3rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-weight: 300;
        }

        .search-box input::placeholder {
            color: rgba(255, 255, 255, 0.6);
            font-weight: 300;
        }

        .search-box input:focus {
            outline: none;
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 2px rgba(196, 164, 116, 0.3);
            background: rgba(255, 255, 255, 0.12);
        }

        .search-icon {
            position: absolute;
            left: 1.2rem;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.7);
        }

        .search-results {
            position: absolute;
            top: calc(100% + 0.5rem);
            left: 0;
            right: 0;
            background: rgba(20, 20, 20, 0.98);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            max-height: 320px;
            overflow-y: auto;
            display: none;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(20px);
            z-index: 1000;
            overflow: hidden;
        }

        .search-result-item {
            display: flex;
            align-items: center;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .search-result-item:last-child {
            border-bottom: none;
        }

        .search-result-item:hover {
            background: rgba(196, 164, 116, 0.1);
            transform: translateX(5px);
        }

        .search-result-item img {
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: 8px;
            margin-right: 0.8rem;
        }

        .search-result-info {
            flex: 1;
        }

        .search-result-info h4 {
            margin: 0 0 0.2rem 0;
            color: white;
            font-weight: 400;
            font-size: 0.9rem;
        }

        .search-result-info .shade-code {
            font-size: 0.75rem;
            color: var(--primary-gold);
            margin-bottom: 0.2rem;
        }

        .search-result-info .category {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .no-results {
            padding: 2rem 1rem;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .search-clear {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            font-size: 1.2rem;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .search-clear:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        /* Category Tabs */
        .category-tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        .tab-btn {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.9);
            padding: 0.8rem 1.8rem;
            border-radius: 30px;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 300;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            letter-spacing: 0.3px;
            backdrop-filter: blur(15px);
            position: relative;
            overflow: hidden;
        }

        .tab-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s;
        }

        .tab-btn:hover::before {
            left: 100%;
        }

        .tab-btn:hover,
        .tab-btn.active {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
            border-color: var(--primary-gold);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(196, 164, 116, 0.3);
        }

        /* Highlight animation */
        @keyframes highlightPulse {
            0% {
                box-shadow: 0 0 0 0 rgba(196, 164, 116, 0.7);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(196, 164, 116, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(196, 164, 116, 0);
            }
        }

        .highlighted-product {
            position: relative;
            z-index: 1;
            animation: highlightPulse 2s ease-out;
            border: 2px solid var(--primary-gold) !important;
        }

        /* Product Modal */
        .product-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            z-index: 10000;
            display: none;
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            overflow-y: auto;
            padding: 2rem;
        }

        .product-modal.active {
            display: flex;
            opacity: 1;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 24px;
            padding: 0;
            max-width: 1200px;
            width: 100%;
            max-height: 85vh;
            overflow: hidden;
            position: relative;
            backdrop-filter: blur(30px);
            box-shadow:
                0 30px 80px rgba(0, 0, 0, 0.3),
                0 0 100px rgba(196, 164, 116, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transform: scale(0.9) translateY(50px);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
        }

        .product-modal.active .modal-content {
            transform: scale(1.1) translateY(0);
        }

        .close-modal {
            position: absolute;
            right: 2rem;
            top: 2rem;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: white;
            font-size: 1.3rem;
            transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
            z-index: 10;
        }

        .close-modal:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg) scale(1.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 260px));
            row-gap: 2rem;
            column-gap: 2rem;
            padding: 1.5rem;
            max-height: 70vh;
            overflow-y: auto;
        }

        .product-item {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 0;
            position: relative;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            backdrop-filter: blur(20px);
            overflow: hidden;
            width: fit-content;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: .3rem;
            margin-left: auto;
            margin-right: auto;
        }

        .product-item:hover {
            transform: translateY(-8px);
            border-color: rgba(196, 164, 116, 0.4);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
        }

        .product-image-placeholder {
            width: 100%;
            background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 0.9rem;
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            margin-top: 7px;
            max-width: 260px;
            max-height: 260px;
            aspect-ratio: 1/1;
        }

        .product-image-placeholder::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
            transform: rotate(45deg);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }

            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        .product-info {
            padding: .5rem;
        }

        .product-title {
            font-size: 1.3rem;
            color: white;
            margin-bottom: 0.5rem;
            font-weight: 400;
            letter-spacing: 0.3px;
            text-align: center;
        }

        .product-category {
            color: var(--text-muted);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 2rem;
        }

        .product-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .action-btn {
            flex: 1;
            padding: 0.75rem 1.2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.05);
            color: white;
            font-size: 0.85rem;
            font-weight: 300;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
            backdrop-filter: blur(10px);
            text-align: center;
            letter-spacing: 0.3px;
        }

        .action-btn:hover {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
            border-color: var(--primary-gold);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(196, 164, 116, 0.3);
        }

        .action-btn.video-btn {
            background: rgba(255, 255, 255, 0.08);
        }

        .action-btn.video-btn:hover {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .modal-header {
            text-align: center;
            padding: 2rem 3rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .collection-search {
            margin: 1rem auto 0;
            max-width: 500px;
            position: relative;
        }

        .collection-search input {
            width: 100%;
            padding: 0.8rem 1.2rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            color: white;
            font-size: 0.95rem;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .collection-search input:focus {
            outline: none;
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 2px rgba(196, 164, 116, 0.3);
        }

        .collection-search-clear {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            font-size: 1.2rem;
            display: none;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            transition: all 0.2s ease;
        }

        .collection-search-clear:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .collection-search-clear.visible {
            display: flex;
        }

        .modal-title {
            font-size: 2.2rem;
            font-weight: 200;
            color: white;
            margin-bottom: 0.5rem;
            letter-spacing: -1px;
        }

        .modal-subtitle {
            color: var(--text-muted);
            font-size: 1rem;
            font-weight: 300;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Scrollbar Styling */
        .products-grid::-webkit-scrollbar,
        .search-results::-webkit-scrollbar {
            width: 8px;
        }

        .products-grid::-webkit-scrollbar-track,
        .search-results::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
        }

        .products-grid::-webkit-scrollbar-thumb,
        .search-results::-webkit-scrollbar-thumb {
            background: rgba(196, 164, 116, 0.5);
            border-radius: 4px;
        }

        .products-grid::-webkit-scrollbar-thumb:hover,
        .search-results::-webkit-scrollbar-thumb:hover {
            background: rgba(196, 164, 116, 0.7);
        }

        /* Image and Video Modals */
        .media-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            z-index: 15000;
            display: none;
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            overflow: hidden;
        }

        .media-modal.active {
            display: flex;
            opacity: 1;
            align-items: center;
            justify-content: center;
        }

        .media-content {
            max-width: 90vw;
            max-height: 90vh;
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
            transform: scale(0.8);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
        }

        .media-modal.active .media-content {
    transform: scaleX(1.3) scaleY(1);
}

        .full-image {
            width: 100%;
            height: 900px;
            max-height: 900px;
            object-fit: contain;
            display: block;
        }

        .video-container {
            width: 100%;
            max-width: 850px;
            height: 900px;
            aspect-ratio: 16/9;
            background: #000;
            border-radius: 16px;
            overflow: hidden;
        }

        .video-player {
            width: 100%;
            height: 100%;
            border: none;
            outline: none;
        }

        .media-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 40px;
    height: 50px; /* equal rakha for perfect circle */
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;

    /* 👇 IMPORTANT */
    transform: translateZ(0); /* GPU fix */
    transform-origin: center;

    transition: transform 0.3s cubic-bezier(0.23, 1, 0.320, 1),
                background 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;

    backdrop-filter: blur(10px);
    z-index: 1000; /* high rakho */
}

/*.media-close:hover {*/
/*    background: rgba(0, 0, 0, 0.95);*/
/*    border-color: var(--primary-gold);*/

    /* 👇 smooth + stable */
/*    transform: rotate(90deg) scale(.8);*/

/*    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);*/
/*}*/

        .media-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(145deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
            backdrop-filter: blur(20px);
            padding: 1.5rem;
            border-radius: 0 0 16px 16px;
            text-align: center;
        }

        .media-title {
            color: white;
            font-size: 1.3rem;
            font-weight: 300;
            margin-bottom: 0.5rem;
            letter-spacing: 0.3px;
        }

        .media-category {
            color: var(--text-muted);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .logo-top {
                top: 1rem;
            }

            .logo-img {
                height: 50px;
            }

            .hero {
                padding: 1rem;
            }

            .hero-title {
                font-size: 2.5rem;
                margin-bottom: 1rem;
            }

            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .search-container {
                max-width: 350px;
                margin-bottom: 2rem;
            }

            .category-tabs {
                align-items: center;
                gap: 0.8rem;
                margin-top: 1rem;
            }

            .tab-btn {
                padding: 0.6rem 1.4rem;
                font-size: 0.85rem;
                min-width: 120px;
                width: fit-content;
            }

            .modal-content {
                margin: 1rem;
                max-height: 90vh;
            }

            .modal-header {
                padding: 2rem 2rem 1rem;
            }

            .modal-title {
                font-size: 1.8rem;
            }

            .products-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 2rem;
                max-height: 60vh;
            }

            .product-info {
                padding: 1.5rem;
            }

            .product-actions {
                flex-direction: column;
                gap: 0.8rem;
            }

            .action-btn {
                flex: none;
                width: 100%;
            }

            .media-close {
                right: 15px;
                top: 15px;
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }

            .media-content {
                max-width: 95vw;
                max-height: 85vh;
            }

            .media-info {
                padding: 1rem;
            }

            .media-title {
                font-size: 1.1rem;
            }

            .close-modal {
                right: 1rem;
                top: 1rem;
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 480px) {
    .product-modal {
        padding: 0;
    }

    .modal-title {
        font-size: 1.2rem;
    }

    .modal-content {
        margin: 0.5rem;
    }

    /* Fixed Image Problem Below */
    .products-grid {
        padding: 1rem; /* Padding thoda kam kiya mobile ke liye */
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-item {
        padding: 1rem; 
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .product-image-placeholder {
        margin-top: 0px !important;
        width: 100% !important; /* Poori width cover kare */
        height: 280px !important; /* Mobile par image ki ek fixed height dena zaroori hai */
        max-width: 100% !important;
        max-height: none !important;
        aspect-ratio: 1/1; /* Square shape maintain rakhega */
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .product-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    .product-info {
        padding: 1rem 0;
        width: 100%;
    }

    .search-container {
        max-width: 280px;
    }
    
    .zoom-controls{
        margin-top:10px;
         margin-right:10px;
    }
    
    .media-close{
        margin-top:15px;
        margin-right:23px;
        width: 37px;
    }
 
}
        
        
.video-container {
    overflow: hidden;
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    animation: videoFeel 6s ease-in-out infinite alternate;
    transform-origin: center;
    will-change: transform;
}

@keyframes videoFeel {
    0% {
        transform: scale(1) translateY(0);
    }
    100% {
        transform: scale(1.4) translateY(-8px);
    }
}      /* animation: kenburns 5s ease-in-out infinite alternate;
        }
        
        @keyframes kenburns {
          0% {
            transform: scale(1) translateX(0);
          }
          50% {
            transform: scale(1.1) translateX(-3%);
          }
          100% {
            transform: scale(1.2) translateX(3%);
          }
        }*/
        
 body {
    background: #111111;
    color:#E0D6CC;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ─── ABOUT ─── */
  .about {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
  }

  .about__visual {
    position: relative;
    background: var(--dark-3);
    overflow: hidden;
  }

  .about__visual-inner {
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, rgba(201,169,110,0.08) 0%, transparent 50%),
      repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(201,169,110,0.04) 60px, rgba(201,169,110,0.04) 61px),
      repeating-linear-gradient(0deg,  transparent, transparent 60px, rgba(201,169,110,0.04) 60px, rgba(201,169,110,0.04) 61px);
  }

  .panel-mockup {
    position: absolute; inset: 40px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
    transform: skewY(-2deg);
    transform-origin: left center;
  }

  .panel-strip {
    background: linear-gradient(180deg, #1e1e1e 0%, #2a2622 40%, #1a1816 100%);
    border-radius: 1px; position: relative; overflow: hidden;
    animation: shimmer 4s ease-in-out infinite;
  }
  .panel-strip:nth-child(odd)  { animation-delay: .5s; }
  .panel-strip:nth-child(3n)   { background: linear-gradient(180deg,#252420 0%,#1e1b18 60%,#151412 100%); }
  .panel-strip::after {
    content:''; position:absolute; inset:0;
    background: linear-gradient(180deg,rgba(201,169,110,.15) 0%,transparent 30%,transparent 70%,rgba(201,169,110,.08) 100%);
  }

  @keyframes shimmer { 0%,100%{opacity:.85} 50%{opacity:1} }

  .about__visual-label {
    position: absolute; bottom: 40px; left: 40px; z-index: 10;
    font-family:'Cormorant Garamond',serif; font-style:italic;
    font-size:13px; color:var(--gold); letter-spacing:3px; text-transform:uppercase;
  }

  .about__content {
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 70px; position: relative;
  }
  .about__content::before {
    content:''; position:absolute; left:0; top:0; bottom:0; width:1px;
    background: linear-gradient(to bottom, transparent, #C9A96E, transparent);
  }

  .eyebrow {
    font-size:11px; letter-spacing:4px; text-transform:uppercase;
    color:#C9A96E; margin-bottom:24px;
    opacity:0; animation: fadeUp .8s .2s forwards;
  }
  .about__title {
    font-family:'Cormorant Garamond',serif;
    font-size: clamp(42px,5vw,72px); font-weight:300; line-height:1.1;
    margin-bottom:32px; opacity:0; animation: fadeUp .8s .4s forwards;
  }
  .about__title em { font-style:italic; color:#E8D5A8; }

  .about__desc {
    font-size:15px; line-height:1.9; color:#7A7068;
    margin-bottom:48px; max-width:440px;
    opacity:0; animation: fadeUp .8s .6s forwards;
  }

  .about__stats { display:flex; gap:40px; opacity:0; animation: fadeUp .8s .8s forwards; }
  .stat__number {
    font-family:'Cormorant Garamond',serif; font-size:48px;
    font-weight:300; color:#C9A96E; line-height:1;
  }
  .stat__label { font-size:11px; letter-spacing:2px; text-transform:uppercase; color:#7A7068; margin-top:6px; }
  .stat-divider { width:1px; background:#2A2A2A; align-self:stretch; }

  @keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

  /* ─── FEATURES ─── */
  .features {
    background:#111111;
    padding: 90px 80px;
    position: relative; overflow: hidden;
  }
  .features::before {
    content:''; position:absolute; top:-200px; right:-200px;
    width:600px; height:600px; border-radius:50%;
    background: radial-gradient(circle, rgba(201,169,110,.05) 0%, transparent 70%);
    pointer-events:none;
  }

  .features__header { text-align:center; max-width:600px; margin:0 auto 70px; }
  .features__title {
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(34px,4vw,52px); font-weight:300; line-height:1.2; margin-bottom:20px;
  }
  .section-line { width:50px; height:1px; background:#C9A96E; margin:0 auto; }

  /* 6-column icon grid */
  .features__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .feature-card {
    background: #1A1A1A;
    padding: 46px 20px 40px;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    position: relative; overflow: hidden; cursor: pointer; gap: 20px;
    transition: background .4s;
  }
  .feature-card:hover { background: #1e1d1b; }

  .feature-card::before {
    content:''; position:absolute; inset:0;
    background: radial-gradient(circle at 50% 45%, rgba(201,169,110,.07) 0%, transparent 65%);
    opacity:0; transition:opacity .4s;
  }
  .feature-card:hover::before { opacity:1; }

  .feature-card::after {
    content:''; position:absolute; bottom:0; left:0; right:0; height:2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    transform:scaleX(0); transition:transform .5s ease;
  }
  .feature-card:hover::after { transform:scaleX(1); }

  /* Icon circle */
  .icon-wrap {
    width:72px; height:72px; border-radius:50%;
    border:1px solid rgba(201,169,110,.2);
    display:flex; align-items:center; justify-content:center;
    position:relative; flex-shrink:0;
    transition: border-color .3s, box-shadow .3s;
  }
  .feature-card:hover .icon-wrap {
    border-color: rgba(201,169,110,.65);
    box-shadow: 0 0 28px rgba(201,169,110,.14);
  }

  .icon-wrap svg {
    width:30px; height:30px;
    stroke:#C9A96E; fill:none;
    stroke-width:1.3; stroke-linecap:round; stroke-linejoin:round;
  }

  /* Orbiting dot */
  .icon-dot {
    position:absolute; width:6px; height:6px; border-radius:50%;
    background:#C9A96E;
    top:0; left:50%;
    transform-origin: 0px 36px;
    animation: orbitDot 8s linear infinite;
    margin-left:-3px; margin-top:-3px;
  }
  .feature-card:nth-child(2) .icon-dot { animation-delay:-1.3s; }
  .feature-card:nth-child(3) .icon-dot { animation-delay:-2.6s; }
  .feature-card:nth-child(4) .icon-dot { animation-delay:-3.9s; }
  .feature-card:nth-child(5) .icon-dot { animation-delay:-5.2s; }
  .feature-card:nth-child(6) .icon-dot { animation-delay:-6.5s; }
  @keyframes orbitDot { to { transform:rotate(360deg); } }

  .feature-name {
    font-family:'Cormorant Garamond',serif;
    font-size:16px; font-weight:400;
    color:var(--text); line-height:1.3;
    position:relative; z-index:1;
    transition:color .3s;
  }
  .feature-card:hover .feature-name { color:var(--gold-light); }

  /* ─── FOOTER ─── */
  footer { background:#070707; border-top:1px solid #1a1a1a; }

  .footer-main {
    padding: 70px 40px 56px;
    border-bottom: 1px solid #141414;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-center-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, transparent, #C9A96E);
    margin-bottom: 20px;
  }

  .footer-logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px; font-weight: 300;
    letter-spacing: 12px; color: var(--text); line-height: 1;
    margin-bottom: 6px;
  }

  .footer-logo-tag {
    font-size: 9px; letter-spacing: 5px;
    text-transform: uppercase; color: var(--gold); margin-bottom: 30px;
  }

  .footer-divider {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 30px; justify-content: center;
  }
  .footer-divider-line { width: 60px; height: 1px; background:#2A2A2A; }
  .footer-divider-dot { width: 5px; height: 5px; border-radius: 50%; background: #C9A96E; }

  .footer-contact-list {
    display: flex; gap: 36px; margin-bottom: 30px;
    flex-wrap: wrap; justify-content: center;
  }

  .footer-contact-row {
    display: flex; align-items: center; gap: 9px;
    color:#7A7068; font-size: 13px;
  }
  .footer-contact-row svg {
    width: 14px; height: 14px;
    stroke: #C9A96E; fill: none;
    stroke-width: 1.5; stroke-linecap: round; flex-shrink: 0;
  }

  .footer-socials { display: flex; gap: 10px; justify-content: center; margin-bottom: 20px; }

  .social-btn {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid #252525;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; color: #7A7068; transition: all .3s;
  }
  .social-btn:hover { border-color:#C9A96E; color: #C9A96E; background: rgba(201,169,110,.06); }
  .social-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; }

  .footer-center-line-bottom {
    width: 1px; height: 40px;
    background: linear-gradient(to top, transparent, #C9A96E);
  }

  /* Bottom copyright — centered */
  .footer-bottom {
    padding: 22px 40px;
    text-align: center;
  }
  .footer-copy { font-size: 12px; color: #444; letter-spacing: .5px; }
  .footer-copy span { color:#7A7068; }

  /* Responsive */
  @media(max-width:1100px){
    .features__grid { grid-template-columns:repeat(3,1fr); }
    .footer-top { grid-template-columns:1fr 1fr; gap:40px; }
  }
  @media(max-width:900px){
    .about { grid-template-columns:1fr; }
    .about__visual { min-height:300px; }
    .about__content { padding:60px 36px; }
    .about__content::before { display:none; }
    .features { padding:70px 24px; }
    .footer-newsletter { padding:30px 30px; flex-direction:column; }
    .newsletter-form { max-width:100%; width:100%; }
    .footer-top { padding:50px 30px; }
    .footer-bottom { padding:20px 30px; flex-direction:column; gap:10px; text-align:center; }
  }
  @media(max-width:600px){
    .features__grid { grid-template-columns:repeat(2,1fr); }
    .footer-top { grid-template-columns:1fr; }
    .about__stats { flex-wrap:wrap; }
    .stat-divider{display:none}
    .stat{width:100%;text-align:center}
    .hero{padding:0}

  } 
  
/* Container Basics */
.media-content, .image-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

/* Common Image Properties */
.full-image, .product-image {
    transition: transform 0.3s ease;
    max-width: 1000px;
    height: auto;
     transform-origin: center center;
}

/* --- Shared Zoom Controls (Base Style) --- */
.zoom-controls {
    position: absolute;
    display: flex;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 999;
}

.zoom-controls button {
    cursor: pointer;
    border: none;
    color: white;
    border-radius: 4px;
    transition: background 0.2s;
}

/* --- Specific Management (Conflict Resolution) --- */

/* 1. Media Content Version (Top: 20px, Right: 70px) */
.media-content .zoom-controls {
    top: 20px;
    right: 70px;
    gap: 10px;
}

.media-content .zoom-controls button {
    padding: 8px 12px;
    font-size: 18px;
    background: black;
}

.media-content:hover .zoom-controls {
    opacity: 1;
}

/* 2. Image Wrapper Version (Top: 10px, Right: 10px) */
.image-wrapper .zoom-controls {
    top: 10px;
    right: 10px;
    gap: 6px;
}

.image-wrapper .zoom-controls button {
    padding: 6px 10px;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.8);
}

.image-wrapper:hover .zoom-controls {
    opacity: 1;
}

