
        /* ===== RESET & BASE STYLES ===== */
        :root {
            --color-bg: #faf9f7;
            --color-bg-alt: #f5f4f2;
            --color-text: #2B2B2B;
            --color-text-light: #666666;
            --color-gold: #D4AF37;
            --color-gold-light: #e6d5a8;
            --color-gold-dark: #b8941f;
            --color-gold-bg: rgba(212, 175, 55, 0.08);
            --color-white: #ffffff;
            --color-black: #1a1a1a;
            --color-border: #eae8e5;
            --shadow-soft: 0 2px 15px rgba(0, 0, 0, 0.03);
            --shadow-medium: 0 5px 25px rgba(0, 0, 0, 0.05);
            --shadow-strong: 0 10px 40px rgba(0, 0, 0, 0.08);
            --shadow-luxury: 0 20px 60px rgba(0, 0, 0, 0.1);
            --border-radius-sm: 2px;
            --border-radius-md: 4px;
            --border-radius-lg: 8px;
            --border-radius-xl: 12px;
            --border-radius-xxl: 20px;
            --transition-smooth: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            --transition-medium: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-fast: all 0.2s ease;
            --section-spacing: 140px;
            --header-height: 100px;
            --container-width: 1600px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            overflow-x: hidden;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            font-size: 1rem;
            line-height: 1.8;
            color: var(--color-text);
            background-color: var(--color-bg);
            overflow-x: hidden;
            position: relative;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            line-height: 1.2;
            color: var(--color-text);
            margin-bottom: 1.5rem;
            letter-spacing: 0.5px;
        }

        h1 {
            font-size: 5.5rem;
            font-weight: 400;
            letter-spacing: 1px;
        }

        h2 {
            font-size: 3.5rem;
            font-weight: 400;
        }

        h3 {
            font-size: 2.2rem;
            font-weight: 500;
        }

        h4 {
            font-size: 1.6rem;
            font-weight: 500;
        }

        p {
            margin-bottom: 1.5rem;
            color: var(--color-text-light);
            font-weight: 300;
            line-height: 1.8;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-fast);
        }

        ul, ol {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        section {
            padding: var(--section-spacing) 0;
            position: relative;
        }

        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 40px;
        }

        .container-narrow {
            max-width: 1200px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 42px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            font-size: 0.9rem;
            line-height: 1;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border-radius: var(--border-radius-sm);
            cursor: pointer;
            transition: var(--transition-medium);
            border: none;
            outline: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
            background: transparent;
        }

        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--color-gold);
            z-index: -1;
            transition: var(--transition-medium);
            transform: translateX(-100%);
        }

        .btn-gold {
            color: var(--color-white);
            border: 1px solid var(--color-gold);
        }

        .btn-gold:before {
            transform: translateX(0);
        }

        .btn-gold:hover {
            color: var(--color-gold);
        }

        .btn-gold:hover:before {
            transform: translateX(100%);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--color-gold);
            border: 1px solid var(--color-gold);
        }

        .btn-outline:hover {
            background-color: var(--color-gold);
            color: var(--color-white);
        }

        .btn-dark {
            background-color: var(--color-black);
            color: var(--color-white);
            border: 1px solid var(--color-black);
        }

        .btn-dark:hover {
            background-color: transparent;
            color: var(--color-black);
        }

        .section-title {
            text-align: center;
            margin-bottom: 100px;
            position: relative;
        }

        .section-title h2 {
            position: relative;
            display: inline-block;
            padding-bottom: 25px;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 1px;
            background-color: var(--color-gold);
        }

        .section-title p {
            max-width: 600px;
            margin: 25px auto 0;
            font-size: 1.1rem;
        }

        .gold-text {
            color: var(--color-gold);
        }

        .text-center {
            text-align: center;
        }

        .text-right {
            text-align: right;
        }

        .text-left {
            text-align: left;
        }

        /* ===== LOADER ===== */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--color-bg);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 1s ease, visibility 1s ease;
        }

        .loader.fade-out {
            opacity: 0;
            visibility: hidden;
        }

        .loader-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            font-weight: 400;
            color: var(--color-text);
            margin-bottom: 40px;
            letter-spacing: 8px;
            position: relative;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease 0.2s forwards;
        }

        .loader-logo:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 1px;
            background-color: var(--color-gold);
        }

        .loader-spinner {
            width: 60px;
            height: 60px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-top: 1px solid var(--color-gold);
            border-radius: 50%;
            animation: spin 1.2s linear infinite;
            margin-bottom: 40px;
            opacity: 0;
            animation: spin 1.2s linear infinite, fadeIn 0.8s ease 0.5s forwards;
        }

        .loader p {
            font-size: 0.9rem;
            letter-spacing: 2px;
            color: var(--color-text-light);
            text-transform: uppercase;
            opacity: 0;
            animation: fadeIn 0.8s ease 0.8s forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* ===== HEADER ===== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            z-index: 1000;
            transition: var(--transition-smooth);
            background-color: #FFFFFF;
            display: flex;
            align-items: center;
        }

        header.scrolled {
            background-color: rgba(255, 255, 255, 0.98);
            height: 80px;
            box-shadow: var(--shadow-medium);
            backdrop-filter: blur(10px);
        }

        header.scrolled .logo {
            font-size: 1.8rem;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            height: 100%;
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.2rem;
            font-weight: 500;
            color: var(--color-gold);
            letter-spacing: 6px;
            position: relative;
            display: flex;
            align-items: center;
            transition: var(--transition-smooth);
        }

        .logo-img {
            height: 50px;
            width: auto;
            margin-right: 15px;
            filter: brightness(0.9);
        }

        .nav-menu {
            display: flex;
            align-items: center;
        }

        .nav-list {
            display: flex;
            gap: 50px;
        }

        .nav-link {
            font-family: 'Montserrat', sans-serif;
            font-weight: 300;
            font-size: 0.9rem;
            letter-spacing: 1.5px;
            position: relative;
            padding: 5px 0;
            text-transform: uppercase;
            color: var(--color-text-light);
        }

        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--color-gold);
            transition: var(--transition-medium);
        }

        .nav-link:hover {
            color: var(--color-text);
        }

        .nav-link:hover:after {
            width: 100%;
        }

        .nav-link.active {
            color: var(--color-text);
        }

        .nav-link.active:after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-left: 60px;
        }

        .nav-icon {
            font-size: 1.2rem;
            color: var(--color-text);
            transition: var(--transition-fast);
            position: relative;
        }

        .nav-icon:hover {
            color: var(--color-gold);
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--color-gold);
            color: var(--color-white);
            font-size: 0.7rem;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 20px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 10;
            position: relative;
        }

        .mobile-toggle span {
            width: 100%;
            height: 1px;
            background-color: var(--color-text);
            transition: var(--transition-medium);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background-image: url('images/hero-desktop.jpeg');
            background-size: cover;
            background-position: center;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 6rem;
            margin-bottom: 30px;
            line-height: 1.1;
            color: #000000;
            opacity: 0;
            transform: translateY(50px);
            animation: heroTitle 1.2s ease 0.5s forwards;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        }

        @keyframes heroTitle {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 50px;
            opacity: 0;
            transform: translateY(30px);
            animation: heroText 1.2s ease 0.8s forwards;
            color: #000000;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        }

        @keyframes heroText {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-cta {
            opacity: 0;
            transform: translateY(30px);
            animation: heroCTA 1.2s ease 1.1s forwards;
        }

        @keyframes heroCTA {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-slider-controls {
            position: absolute;
            bottom: 60px;
            left: 0;
            width: 100%;
            z-index: 3;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
        }

        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: var(--transition-medium);
        }

        .slider-dot.active {
            background-color: var(--color-white);
            transform: scale(1.3);
        }

        /* ===== ABOUT SECTION ===== */
        .about {
            background-color: var(--color-white);
            position: relative;
            overflow: hidden;
        }

        .about:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.5;
            z-index: 0;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .about-image {
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius-xl);
            box-shadow: var(--shadow-luxury);
        }

        .about-image img {
            width: 100%;
            height: 700px;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-image:before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            border: 1px solid var(--color-gold);
            border-radius: var(--border-radius-xl);
            z-index: -1;
            opacity: 0.3;
        }

        .about-content h2 {
            margin-bottom: 30px;
        }

        .about-features {
            margin-top: 50px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 35px;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background-color: var(--color-gold-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-gold);
            font-size: 24px;
            flex-shrink: 0;
            transition: var(--transition-medium);
        }

        .feature-item:hover .feature-icon {
            background-color: var(--color-gold);
            color: var(--color-white);
        }

        .feature-text h4 {
            margin-bottom: 10px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            font-size: 1.1rem;
            letter-spacing: 1px;
        }

        .feature-text p {
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* ===== COLLECTIONS SECTION ===== */
        .collections {
            background-color: var(--color-bg);
            position: relative;
        }

        .collections-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 80px;
            border-bottom: 1px solid var(--color-border);
            padding-bottom: 20px;
        }

        .collection-tab {
            padding: 15px 40px;
            background-color: transparent;
            border: none;
            font-family: 'Montserrat', sans-serif;
            font-weight: 300;
            font-size: 1rem;
            letter-spacing: 1.5px;
            color: var(--color-text-light);
            cursor: pointer;
            transition: var(--transition-medium);
            position: relative;
            text-transform: uppercase;
        }

        .collection-tab:after {
            content: '';
            position: absolute;
            bottom: -21px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--color-gold);
            transition: var(--transition-medium);
        }

        .collection-tab:hover {
            color: var(--color-text);
        }

        .collection-tab.active {
            color: var(--color-text);
        }

        .collection-tab.active:after {
            width: 100%;
        }

        .collection-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 50px;
            margin-bottom: 80px;
        }

        .collection-item {
            background-color: var(--color-white);
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-medium);
            transition: var(--transition-smooth);
            position: relative;
            opacity: 0;
            transform: translateY(30px);
        }

        .collection-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .collection-item:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-luxury);
        }

        .collection-badge {
            position: absolute;
            top: 25px;
            right: 25px;
            background-color: var(--color-gold);
            color: var(--color-white);
            padding: 8px 20px;
            border-radius: 30px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            font-size: 0.8rem;
            letter-spacing: 1px;
            z-index: 2;
        }

        .collection-badge.new {
            background-color: var(--color-gold);
        }

        .collection-image {
            height: 400px;
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .collection-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: var(--transition-smooth);
        }

        .collection-item:hover .collection-image img {
            transform: scale(1.08);
        }

        .collection-content {
            padding: 35px;
        }

        .collection-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .collection-price {
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            font-size: 1.4rem;
            color: var(--color-gold);
            margin-bottom: 25px;
            letter-spacing: 1px;
        }

        .collection-price del {
            color: var(--color-text-light);
            font-size: 1.1rem;
            margin-right: 10px;
            font-weight: 300;
        }

        .collection-actions {
            display: flex;
            gap: 15px;
        }

        .collection-btn {
            flex: 1;
            padding: 15px 20px;
            font-size: 0.85rem;
        }

        .collection-btn.whatsapp {
            background-color: var(--color-black);
            color: var(--color-white);
            border-color: var(--color-black);
        }

        .collection-btn.whatsapp:hover {
            background-color: transparent;
            color: var(--color-black);
        }

        .collection-btn.details {
            background-color: transparent;
            color: var(--color-text);
            border: 1px solid var(--color-border);
        }

        .collection-btn.details:hover {
            background-color: var(--color-gold);
            color: var(--color-white);
            border-color: var(--color-gold);
        }

        .collections-cta {
            text-align: center;
        }

        /* ===== PRODUCT GALLERY ===== */
        .gallery {
            background-color: var(--color-white);
            padding: 80px 0;
            overflow: hidden;
        }

        .gallery-container {
            max-width: 1800px;
        }

        @media (max-width: 1800px) {
            .gallery-container {
                max-width: 100%;
            }
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 400px);
            gap: 30px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius-lg);
        }

        .gallery-item:nth-child(1) {
            grid-column: 1 / 3;
            grid-row: 1 / 2;
        }

        .gallery-item:nth-child(2) {
            grid-column: 3 / 4;
            grid-row: 1 / 2;
        }

        .gallery-item:nth-child(3) {
            grid-column: 4 / 5;
            grid-row: 1 / 3;
        }

        .gallery-item:nth-child(4) {
            grid-column: 1 / 2;
            grid-row: 2 / 3;
        }

        .gallery-item:nth-child(5) {
            grid-column: 2 / 4;
            grid-row: 2 / 3;
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: var(--transition-smooth);
        }

        .gallery-item:hover .gallery-image {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            opacity: 0;
            transition: var(--transition-medium);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay h3 {
            color: var(--color-white);
            font-size: 1.8rem;
            margin-bottom: 10px;
            transform: translateY(20px);
            transition: var(--transition-medium);
            transition-delay: 0.1s;
        }

        .gallery-item:hover .gallery-overlay h3 {
            transform: translateY(0);
        }

        .gallery-overlay p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            transform: translateY(20px);
            transition: var(--transition-medium);
            transition-delay: 0.2s;
        }

        .gallery-item:hover .gallery-overlay p {
            transform: translateY(0);
        }

        .gallery-item .gallery-image {
            transition: transform .5s ease-in-out;
        }

        .gallery-item:hover .gallery-image {
            transform: scale(1.1);
        }

        /* ===== TESTIMONIALS SECTION ===== */
        .testimonials {
            background-color: var(--color-bg-alt);
            position: relative;
            overflow: hidden;
        }

        .testimonials:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M44 94c7.732 0 14-6.268 14-14s-6.268-14-14-14-14 6.268-14 14 6.268 14 14 14zm0 14c-7.732 0-14 6.268-14 14s6.268 14 14 14 14-6.268 14-14-6.268-14-14-14zm96-28c7.732 0 14-6.268 14-14s-6.268-14-14-14-14 6.268-14 14 6.268 14 14 14zm0 14c-7.732 0-14 6.268-14 14s6.268 14 14 14 14-6.268 14-14-6.268-14-14-14zM86 66c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zm0 28c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zm68-6c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zm0 28c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zM68 172c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-56c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm112 56c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-56c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM24 172c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-56c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm152-24c5.52 0 10-4.48 10-10s-4.48-10-10-10-10 4.48-10 10 4.48 10 10 10zm-72 56c5.52 0 10-4.48 10-10s-4.48-10-10-10-10 4.48-10 10 4.48 10 10 10zm96-72c5.52 0 10-4.48 10-10s-4.48-10-10-10-10 4.48-10 10 4.48 10 10 10zM64 126c5.52 0 10-4.48 10-10s-4.48-10-10-10-10 4.48-10 10 4.48 10 10 10zm114 22c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zM120 182c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zM70 82c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zM24 120c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4z' fill='%23d4af37' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
            z-index: 0;
        }

        .testimonials-container {
            position: relative;
            z-index: 1;
        }

        .testimonials-slider {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .testimonial-card {
            min-width: 100%;
            padding: 0 20px;
        }

        .testimonial-content {
            background-color: var(--color-white);
            padding: 70px;
            border-radius: var(--border-radius-xl);
            box-shadow: var(--shadow-soft);
            text-align: center;
            position: relative;
        }

        .testimonial-content:before {
            content: '"';
            position: absolute;
            top: 40px;
            left: 50px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 8rem;
            color: var(--color-gold-light);
            line-height: 1;
            opacity: 0.5;
        }

        .testimonial-text {
            font-size: 1.4rem;
            font-style: italic;
            margin-bottom: 50px;
            position: relative;
            line-height: 1.8;
            font-weight: 300;
            color: var(--color-text);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .author-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            border: 1px solid var(--color-gold-light);
        }

        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            margin-bottom: 5px;
            font-size: 1.3rem;
            font-family: 'Cormorant Garamond', serif;
        }

        .author-info p {
            margin-bottom: 0;
            font-size: 0.9rem;
            color: var(--color-gold);
            font-weight: 400;
            letter-spacing: 1px;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-top: 70px;
        }

        .slider-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--color-white);
            border: 1px solid var(--color-border);
            color: var(--color-text);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-medium);
            font-size: 1.2rem;
        }

        .slider-btn:hover {
            background-color: var(--color-gold);
            color: var(--color-white);
            border-color: var(--color-gold);
        }

        .slider-dots {
            display: flex;
            gap: 15px;
        }

        .slider-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--color-border);
            cursor: pointer;
            transition: var(--transition-medium);
        }

        .slider-dot.active {
            background-color: var(--color-gold);
            transform: scale(1.5);
        }

        /* ===== CONTACT SECTION ===== */
        .contact {
            background-color: var(--color-white);
            position: relative;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: start;
        }

        .contact-info h2 {
            margin-bottom: 40px;
        }

        .contact-details {
            margin-bottom: 60px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 25px;
            margin-bottom: 35px;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: var(--color-gold-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-gold);
            font-size: 22px;
            flex-shrink: 0;
            transition: var(--transition-medium);
        }

        .contact-item:hover .contact-icon {
            background-color: var(--color-gold);
            color: var(--color-white);
        }

        .contact-text h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            font-size: 1.1rem;
            margin-bottom: 8px;
            letter-spacing: 1px;
        }

        .contact-text p {
            margin-bottom: 0;
            font-size: 1rem;
            line-height: 1.7;
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--color-gold-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-gold);
            font-size: 20px;
            transition: var(--transition-medium);
        }

        .social-link:hover {
            background-color: var(--color-gold);
            color: var(--color-white);
            transform: translateY(-5px);
        }

        .contact-form {
            background-color: var(--color-bg);
            padding: 70px;
            border-radius: var(--border-radius-xl);
            box-shadow: var(--shadow-medium);
        }

        .form-group {
            margin-bottom: 30px;
            position: relative;
        }

        .form-label {
            display: block;
            margin-bottom: 12px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            color: var(--color-text);
            font-size: 0.95rem;
            letter-spacing: 1px;
        }

        .form-input, .form-textarea {
            width: 100%;
            padding: 18px 25px;
            border: 1px solid var(--color-border);
            border-radius: var(--border-radius-sm);
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            color: var(--color-text);
            background-color: var(--color-white);
            transition: var(--transition-fast);
            font-weight: 300;
        }

        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--color-gold);
            box-shadow: 0 0 0 1px var(--color-gold-light);
        }

        .form-textarea {
            min-height: 180px;
            resize: vertical;
            line-height: 1.6;
        }

        .form-submit {
            width: 100%;
            padding: 20px;
            font-size: 0.95rem;
        }

        /* ===== FOOTER ===== */
        footer {
            background-color: var(--color-black);
            color: var(--color-white);
            padding: 120px 0 60px;
            position: relative;
        }

        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            margin-bottom: 80px;
        }

        .footer-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 500;
            color: var(--color-white);
            margin-bottom: 25px;
            letter-spacing: 4px;
            display: flex;
            align-items: center;
        }

        .footer-logo-img {
            height: 50px;
            width: auto;
            margin-right: 15px;
            filter: brightness(0) invert(1);
        }

        .footer-text {
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 35px;
            font-size: 1rem;
            line-height: 1.8;
            font-weight: 300;
        }

        .footer-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            margin-bottom: 35px;
            color: var(--color-white);
            position: relative;
            padding-bottom: 15px;
            font-weight: 500;
        }

        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 1px;
            background-color: var(--color-gold);
        }

        .footer-links li {
            margin-bottom: 18px;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.6);
            transition: var(--transition-fast);
            font-weight: 300;
            font-size: 0.95rem;
        }

        .footer-link:hover {
            color: var(--color-gold);
            padding-left: 8px;
        }

        .footer-contact li {
            margin-bottom: 18px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 300;
            font-size: 0.95rem;
        }

        .footer-contact i {
            color: var(--color-gold);
            margin-right: 15px;
            width: 20px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .footer-social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 18px;
            transition: var(--transition-medium);
        }

        .footer-social-link:hover {
            background-color: var(--color-gold);
            color: var(--color-white);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.9rem;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 10px;
            font-weight: 300;
        }

        .footer-heart {
            color: var(--color-gold);
            margin: 0 5px;
        }

        .footer-copyright {
            letter-spacing: 1px;
        }

        /* ===== MODAL ===== */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-smooth);
            padding: 40px;
        }

        .modal.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background-color: var(--color-white);
            border-radius: var(--border-radius-xl);
            max-width: 1200px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: translateY(50px) scale(0.95);
            transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: var(--shadow-luxury);
        }

        .modal.active .modal-content {
            transform: translateY(0) scale(1);
        }

        .modal-close {
            position: absolute;
            top: 25px;
            right: 25px;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: var(--color-white);
            border: 1px solid var(--color-border);
            font-size: 24px;
            color: var(--color-text);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: var(--transition-medium);
        }

        .modal-close:hover {
            background-color: var(--color-gold);
            color: var(--color-white);
            border-color: var(--color-gold);
        }

        .modal-body {
            padding: 70px;
        }

        .modal-product {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
        }

        .modal-gallery {
            position: relative;
        }

        .modal-main-image {
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            margin-bottom: 20px;
            height: 500px;
        }

        .modal-main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-medium);
        }

        .modal-thumbnails {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            padding-bottom: 10px;
        }

        .modal-thumbnail {
            width: 80px;
            height: 80px;
            border-radius: var(--border-radius-sm);
            overflow: hidden;
            cursor: pointer;
            border: 1px solid var(--color-border);
            transition: var(--transition-fast);
            flex-shrink: 0;
        }

        .modal-thumbnail.active {
            border-color: var(--color-gold);
        }

        .modal-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .modal-title {
            font-size: 2.8rem;
            margin-bottom: 25px;
            font-weight: 500;
            line-height: 1.2;
        }

        .modal-price {
            font-size: 2rem;
            color: var(--color-gold);
            margin-bottom: 30px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            letter-spacing: 1px;
        }

        .modal-price del {
            color: var(--color-text-light);
            font-size: 1.5rem;
            margin-right: 15px;
            font-weight: 300;
        }

        .modal-description {
            margin-bottom: 40px;
            line-height: 1.9;
            font-size: 1.1rem;
        }

        .modal-features {
            margin-bottom: 50px;
        }

        .modal-features h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            margin-bottom: 20px;
            letter-spacing: 1px;
            color: var(--color-text);
        }

        .modal-features ul {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .modal-features li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .modal-features i {
            color: var(--color-gold);
            margin-right: 12px;
            font-size: 0.9rem;
        }

        .modal-actions {
            display: flex;
            gap: 20px;
        }

        .modal-btn {
            flex: 1;
            padding: 20px;
            font-size: 0.95rem;
        }

        .modal-btn.whatsapp {
            background-color: var(--color-black);
            color: var(--color-white);
            border-color: var(--color-black);
        }

        .modal-btn.whatsapp:hover {
            background-color: transparent;
            color: var(--color-black);
        }

        /* ===== SCROLL TO TOP ===== */
        .scroll-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--color-gold);
            color: var(--color-white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: var(--transition-medium);
            z-index: 999;
            border: none;
            box-shadow: var(--shadow-medium);
        }

        .scroll-top.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-top:hover {
            background-color: var(--color-black);
            transform: translateY(-5px);
        }

        /* ===== CART SIDEBAR ===== */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -450px;
            width: 450px;
            height: 100%;
            background-color: var(--color-white);
            z-index: 2001;
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-strong);
            display: flex;
            flex-direction: column;
        }

        .cart-sidebar.active {
            right: 0;
        }

        .cart-header {
            padding: 30px;
            border-bottom: 1px solid var(--color-border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cart-header h3 {
            margin-bottom: 0;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3rem;
            letter-spacing: 1px;
        }

        .cart-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--color-text-light);
            cursor: pointer;
            transition: var(--transition-fast);
        }

        .cart-close:hover {
            color: var(--color-text);
        }

        .cart-items {
            flex: 1;
            overflow-y: auto;
            padding: 30px;
        }

        .cart-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid var(--color-border);
        }

        .cart-item-image {
            width: 100px;
            height: 100px;
            border-radius: var(--border-radius-sm);
            overflow: hidden;
            flex-shrink: 0;
        }

        .cart-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cart-item-content {
            flex: 1;
        }

        .cart-item-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .cart-item-price {
            font-family: 'Montserrat', sans-serif;
            color: var(--color-gold);
            font-weight: 500;
            margin-bottom: 15px;
        }

        .cart-item-remove {
            background: none;
            border: none;
            color: var(--color-text-light);
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition-fast);
            padding: 0;
        }

        .cart-item-remove:hover {
            color: var(--color-text);
        }

        .cart-footer {
            padding: 30px;
            border-top: 1px solid var(--color-border);
        }

        .cart-total {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2rem;
            font-weight: 500;
        }

        .cart-total span:last-child {
            color: var(--color-gold);
        }

        .cart-checkout {
            width: 100%;
            padding: 18px;
            font-size: 0.95rem;
        }

        /* ===== RESPONSIVE STYLES ===== */
        @media (max-width: 1600px) {
            :root {
                --container-width: 1400px;
            }
            
            h1 {
                font-size: 5rem;
            }
            
            h2 {
                font-size: 3rem;
            }
            
            .gallery-grid {
                grid-template-rows: repeat(2, 350px);
            }
        }

        @media (max-width: 1400px) {
            :root {
                --container-width: 1200px;
                --section-spacing: 120px;
            }
            
            .container {
                padding: 0 30px;
            }
            
            h1 {
                font-size: 4.5rem;
            }
            
            h2 {
                font-size: 2.8rem;
            }
            
            .collection-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 40px;
            }
            
            .gallery-grid {
                grid-template-rows: repeat(2, 300px);
                gap: 20px;
            }
        }

        @media (max-width: 1200px) {
            :root {
                --container-width: 100%;
                --section-spacing: 100px;
            }
            
            h1 {
                font-size: 4rem;
            }
            
            h2 {
                font-size: 2.5rem;
            }
            
            h3 {
                font-size: 2rem;
            }
            
            .about-container {
                grid-template-columns: 1fr;
                gap: 70px;
            }
            
            .about-image {
                max-width: 800px;
                margin: 0 auto;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
                gap: 70px;
            }
            
            .contact-form {
                max-width: 800px;
                margin: 0 auto;
            }
            
            .modal-product {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 60px;
            }
        }

        @media (max-width: 992px) {
            :root {
                --section-spacing: 80px;
                --header-height: 80px;
            }
            
            .container {
                padding: 0 25px;
            }
            
            h1 {
                font-size: 3.5rem;
            }
            
            h2 {
                font-size: 2.3rem;
            }
            
            .hero h1 {
                font-size: 4rem;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 350px;
                height: 100%;
                background-color: var(--color-white);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: var(--transition-smooth);
                box-shadow: var(--shadow-strong);
                z-index: 999;
                padding: 100px 40px 40px;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-list {
                flex-direction: column;
                align-items: center;
                gap: 30px;
                margin-bottom: 50px;
            }
            
            .nav-actions {
                margin-left: 0;
                flex-direction: column;
                gap: 20px;
            }
            
            .mobile-toggle {
                display: flex;
            }
            
            .mobile-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }
            
            .mobile-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            
            .mobile-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(8px, -8px);
            }
            
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 250px);
            }
            
            .gallery-item:nth-child(1) {
                grid-column: 1 / 2;
                grid-row: 1 / 2;
            }
            
            .gallery-item:nth-child(2) {
                grid-column: 2 / 3;
                grid-row: 1 / 2;
            }
            
            .gallery-item:nth-child(3) {
                grid-column: 1 / 3;
                grid-row: 2 / 3;
            }
            
            .gallery-item:nth-child(4) {
                grid-column: 1 / 2;
                grid-row: 3 / 4;
            }
            
            .gallery-item:nth-child(5) {
                grid-column: 2 / 3;
                grid-row: 3 / 4;
            }
            
            .cart-sidebar {
                width: 100%;
                right: -100%;
            }
            
            .modal-body {
                padding: 50px 30px;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 0 20px;
            }

            .logo {
                font-size: 1.6rem;
                letter-spacing: 3px;
            }

            .logo-img {
                height: 35px;
            }
            
            h1 {
                font-size: 3rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            h3 {
                font-size: 1.8rem;
            }
            
            .hero {
                background-image: url('images/hero-mobile.jpeg');
            }

            .hero h1 {
                font-size: 3.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title {
                margin-bottom: 60px;
            }
            
            .section-title h2 {
                padding-bottom: 15px;
            }
            
            .section-title h2:after {
                width: 70px;
            }
            
            .btn {
                padding: 18px 35px;
                font-size: 0.9rem;
            }
            
            .collection-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .collection-content {
                padding: 25px;
            }
            
            .testimonial-content {
                padding: 50px 30px;
            }
            
            .testimonial-content:before {
                left: 30px;
                top: 30px;
                font-size: 6rem;
            }
            
            .contact-form {
                padding: 50px 30px;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 576px) {
            :root {
                --section-spacing: 80px;
            }
            
            .container {
                padding: 0 20px;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 16px 30px;
                font-size: 0.9rem;
            }
            
            .section-title h2:after {
                width: 50px;
            }
            
            .hero {
                min-height: 90vh;
            }
            
            .about-features {
                margin-top: 40px;
            }
            
            .feature-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .collection-tab {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
            
            .collection-actions {
                flex-direction: column;
            }
            
            .gallery-grid {
                grid-template-rows: repeat(3, 200px);
                gap: 15px;
            }
            
            .testimonial-author {
                flex-direction: column;
                text-align: center;
            }
            
            .modal-actions {
                flex-direction: column;
            }
            
            .modal-features ul {
                grid-template-columns: 1fr;
            }
        }

        /* ===== ANIMATIONS ===== */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        .float-animation {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
            }
        }

        .pulse-animation {
            animation: pulse 2s infinite;
        }

        .deep-shadow {
            box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
        }

        .gold-gradient-text {
          background: -webkit-linear-gradient(45deg, var(--color-gold-dark), var(--color-gold-light));
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* ===== CUSTOM UTILITIES ===== */
        .mb-10 { margin-bottom: 10px; }
        .mb-20 { margin-bottom: 20px; }
        .mb-30 { margin-bottom: 30px; }
        .mb-40 { margin-bottom: 40px; }
        .mb-50 { margin-bottom: 50px; }
        .mb-60 { margin-bottom: 60px; }
        .mt-10 { margin-top: 10px; }
        .mt-20 { margin-top: 20px; }
        .mt-30 { margin-top: 30px; }
        .mt-40 { margin-top: 40px; }
        .mt-50 { margin-top: 50px; }
        .mt-60 { margin-top: 60px; }

        .opacity-0 { opacity: 0; }
        .opacity-5 { opacity: 0.05; }
        .opacity-10 { opacity: 0.1; }
        .opacity-20 { opacity: 0.2; }
        .opacity-30 { opacity: 0.3; }
        .opacity-40 { opacity: 0.4; }
        .opacity-50 { opacity: 0.5; }
        .opacity-60 { opacity: 0.6; }
        .opacity-70 { opacity: 0.7; }
        .opacity-80 { opacity: 0.8; }
        .opacity-90 { opacity: 0.9; }
        .opacity-100 { opacity: 1; }

        .scale-95 { transform: scale(0.95); }
        .scale-100 { transform: scale(1); }
        .scale-105 { transform: scale(1.05); }

        .hidden { display: none !important; }
        .visible { display: block; }

        .gold-gradient {
            background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .text-shadow {
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .zigzag-pattern {
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23d4af37' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

        /* ===== CUSTOM SCROLLBAR ===== */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

        ::-webkit-scrollbar-track {
            background-color: var(--color-bg-alt);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb {
            background-color: var(--color-gold-light);
            border-radius: 4px;
            transition: var(--transition-fast);
        }

        ::-webkit-scrollbar-thumb:hover {
            background-color: var(--color-gold);
        }

        /* ===== PRINT STYLES ===== */
        @media print {
            .loader,
            .scroll-top,
            .cart-sidebar,
            .modal,
            .hero-slider-controls,
            .btn,
            .nav-menu,
            .mobile-toggle {
                display: none !important;
            }
            
            body {
                color: #000;
                background: #fff;
            }
            
            .container {
                max-width: 100%;
                padding: 0;
            }
            
            section {
                padding: 20px 0;
                break-inside: avoid;
            }
            
            h1, h2, h3, h4, h5, h6 {
                color: #000;
            }
        }

        @media (max-width: 768px) {
            .hide-on-mobile {
                display: none;
            }
        }
    
