@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@100..900&display=swap');


    /* ============================================
           CSS VARIABLES / THEME SYSTEM
           ============================================ */
        :root,
        [data-theme="light"] {
            --bg-primary: #F8F5F0;
            --bg-secondary: #FFFFFF;
            --bg-card: #FFFFFF;
            --bg-navbar: rgba(248, 245, 240, 0.95);
            --bg-footer: #111111;
            --text-primary: #2E2E2E;
            --text-secondary: #6B6B6B;
            --text-muted: #999999;
            --gold: #C6A75E;
            --gold-light: #D4BA7A;
            --gold-dark: #A8893E;
            --gold-gradient: linear-gradient(135deg, #C6A75E, #D4BA7A, #C6A75E);
            --border-color: rgba(0, 0, 0, 0.08);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
            --overlay: rgba(248, 245, 240, 0.9);
            --card-hover-shadow: 0 12px 40px rgba(198, 167, 94, 0.15);
            --testimonial-bg: #F3EDE4;
            --input-bg: #F8F5F0;
            --badge-bg: rgba(198, 167, 94, 0.1);
        }

        [data-theme="dark"] {
            --bg-primary: #111111;
            --bg-secondary: #1A1A1A;
            --bg-card: #1E1E1E;
            --bg-navbar: rgba(17, 17, 17, 0.95);
            --bg-footer: #0A0A0A;
            --text-primary: #F0EDE8;
            --text-secondary: #B0A898;
            --text-muted: #6B6B6B;
            --gold: #C6A75E;
            --gold-light: #D4BA7A;
            --gold-dark: #A8893E;
            --gold-gradient: linear-gradient(135deg, #C6A75E, #D4BA7A, #C6A75E);
            --border-color: rgba(255, 255, 255, 0.08);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
            --overlay: rgba(17, 17, 17, 0.9);
            --card-hover-shadow: 0 12px 40px rgba(198, 167, 94, 0.1);
            --testimonial-bg: #1A1A1A;
            --input-bg: #2E2E2E;
            --badge-bg: rgba(198, 167, 94, 0.15);
        }

        /* ============================================
           GLOBAL STYLES
           ============================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Noto Sans Thai", sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            transition: background-color 0.4s ease, color 0.4s ease;
            overflow-x: hidden;
            line-height: 1.7;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: "Noto Sans Thai", sans-serif;
            font-weight: 600;
            line-height: 1.3;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

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

        ::selection {
            background: var(--gold);
            color: #FFFFFF;
        }

        /* ============================================
           SCROLLBAR
           ============================================ */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-primary);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--gold);
            border-radius: 3px;
        }

        /* ============================================
           NAVBAR
           ============================================ */
        .navbar {
            background: var(--bg-navbar);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 18px 0;
            transition: all 0.4s ease;
            border-bottom: 1px solid transparent;
            z-index: 1050;
        }

        .navbar.scrolled {
            padding: 12px 0;
            box-shadow: var(--shadow-sm);
            border-bottom-color: var(--border-color);
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--gold) !important;
            letter-spacing: 4px;
            /* text-transform: uppercase; */
        }

        .navbar-brand span {
            font-weight: 400;
            color: var(--text-primary);
        }

        .navbar-nav .nav-link {
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 1.5px;
            /* text-transform: uppercase; */
            color: var(--text-primary) !important;
            padding: 8px 20px !important;
            position: relative;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 30px;
        }

        .navbar-nav .nav-link:hover {
            color: var(--gold) !important;
        }

        .nav-icons {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--border-color);
            background: transparent;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        .nav-icon-btn:hover {
            border-color: var(--gold);
            color: var(--gold);
            background: var(--badge-bg);
        }

        .nav-icon-btn .badge {
            position: absolute;
            top: -2px;
            right: -2px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--gold);
            color: #fff;
            font-size: 0.65rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        .theme-toggle {
            background: var(--badge-bg);
            border: 1px solid var(--gold);
            color: var(--gold);
        }

        .theme-toggle:hover {
            background: var(--gold);
            color: #fff;
        }

        /* Offcanvas */
        .offcanvas {
            background: var(--bg-secondary);
            max-width: 320px;
        }

        .offcanvas-header {
            border-bottom: 1px solid var(--border-color);
        }

        .offcanvas .nav-link {
            font-size: 1rem;
            padding: 15px 0 !important;
            border-bottom: 1px solid var(--border-color);
        }

        .offcanvas .btn-close {
            filter: var(--text-primary);
        }

        /* ============================================
           SECTION STYLES
           ============================================ */
        .section-padding {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            font-family: 'Poppins', sans-serif;
            font-size: 0.75rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 12px;
            display: block;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .section-desc {
            font-size: 1rem;
            color: var(--text-secondary);
            max-width: 520px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .gold-divider {
            width: 60px;
            height: 2px;
            background: var(--gold-gradient);
            margin: 20px auto;
            border-radius: 2px;
        }

        /* ============================================
           BUTTONS
           ============================================ */
        .btn-gold {
            background: var(--gold-gradient);
            color: #FFFFFF;
            border: none;
            padding: 14px 40px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            border-radius: 0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-gold::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-gold:hover::before {
            left: 100%;
        }

        .btn-gold:hover {
            background: linear-gradient(135deg, #D4BA7A, #C6A75E, #A8893E);
            color: #FFFFFF;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(198, 167, 94, 0.35);
        }

        .btn-gold-outline {
            background: transparent;
            color: var(--gold);
            border: 1.5px solid var(--gold);
            padding: 14px 40px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            border-radius: 0;
            transition: all 0.3s ease;
        }

        .btn-gold-outline:hover {
            background: var(--gold);
            color: #FFFFFF;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(198, 167, 94, 0.35);
        }

        .btn-teal {
            background: linear-gradient(135deg, #008080, #20B2AA, #008080);
            color: #FFFFFF;
            border: none;
            padding: 14px 40px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            border-radius: 0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-teal::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-teal:hover::before {
            left: 100%;
        }

        .btn-teal:hover {
            background: linear-gradient(135deg, #20B2AA, #008080, #006666);
            color: #FFFFFF;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 128, 128, 0.35);
        }

        .btn-teal-outline {
            background: transparent;
            color: #008080;
            border: 1.5px solid #008080;
            padding: 14px 40px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            border-radius: 0;
            transition: all 0.3s ease;
        }

        .btn-teal-outline:hover {
            background: #008080;
            color: #FFFFFF;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 128, 128, 0.35);
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero-section {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120%;
            background: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?w=1920&q=80') center center / cover no-repeat;
            will-change: transform;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg,
                rgba(17, 17, 17, 0.7) 0%,
                rgba(17, 17, 17, 0.4) 50%,
                rgba(17, 17, 17, 0.6) 100%
            );
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: #FFFFFF;
        }

        .hero-badge {
            display: inline-block;
            font-size: 0.7rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--gold);
            border: 1px solid rgba(198, 167, 94, 0.4);
            padding: 8px 24px;
            margin-bottom: 30px;
            font-weight: 500;
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 24px;
            color: #FFFFFF;
        }

        .hero-title .gold-text {
            color: var(--gold);
            font-style: italic;
        }

        .hero-desc {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.75);
            max-width: 480px;
            margin-bottom: 40px;
            line-height: 1.9;
            font-weight: 300;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-btn-primary {
            background: var(--gold-gradient);
            color: #FFFFFF;
            border: none;
            padding: 16px 48px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .hero-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(198, 167, 94, 0.4);
            color: #FFFFFF;
        }

        .hero-btn-secondary {
            background: transparent;
            color: #FFFFFF;
            border: 1.5px solid rgba(255, 255, 255, 0.4);
            padding: 16px 48px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .hero-btn-secondary:hover {
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-3px);
        }

        .hero-scroll {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
        }

        .hero-scroll .mouse {
            width: 24px;
            height: 38px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            margin: 0 auto 8px;
            position: relative;
        }

        .hero-scroll .mouse::after {
            content: '';
            width: 3px;
            height: 8px;
            background: var(--gold);
            border-radius: 2px;
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            animation: scrollDown 1.5s ease-in-out infinite;
        }

        @keyframes scrollDown {
            0% { opacity: 1; transform: translateX(-50%) translateY(0); }
            100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
        }

        .hero-scroll span {
            font-size: 0.65rem;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        /* ============================================
           FEATURES BAR
           ============================================ */
        .features-bar {
            background: var(--bg-secondary);
            border-bottom: 1px solid var(--border-color);
            padding: 30px 0;
        }

        .feature-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            padding: 10px;
        }

        .feature-item i {
            font-size: 1.5rem;
            color: var(--gold);
        }

        .feature-item .feature-text h6 {
            font-family: 'Poppins', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 2px;
            color: var(--text-primary);
        }

        .feature-item .feature-text p {
            font-size: 0.75rem;
            color: var(--text-secondary);
            margin: 0;
        }

        /* ============================================
           PRODUCT CARDS
           ============================================ */
        .product-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            transition: all 0.4s ease;
            overflow: hidden;
            position: relative;
            margin-bottom: 30px;
        }

        .product-card:hover {
            box-shadow: var(--card-hover-shadow);
            transform: translateY(-8px);
            border-color: rgba(198, 167, 94, 0.2);
        }

        .product-image {
            position: relative;
            overflow: hidden;
            aspect-ratio: 3 / 4;
            background: #F0EBE3;
        }

        [data-theme="dark"] .product-image {
            background: #2A2A2A;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.08);
        }

        .product-badges {
            position: absolute;
            top: 16px;
            left: 16px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            z-index: 2;
        }

        .product-badge {
            display: inline-block;
            padding: 4px 12px;
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .product-badge.new {
            background: var(--gold);
            color: #FFFFFF;
        }

        .product-badge.sale {
            background: #C0392B;
            color: #FFFFFF;
        }

        .product-actions {
            position: absolute;
            top: 16px;
            right: 16px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            opacity: 0;
            transform: translateX(20px);
            transition: all 0.3s ease;
            z-index: 2;
        }

        .product-card:hover .product-actions {
            opacity: 1;
            transform: translateX(0);
        }

        .product-action-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }

        .product-action-btn:hover {
            background: var(--gold);
            color: #FFFFFF;
            border-color: var(--gold);
        }

        .product-action-btn.wishlisted {
            background: var(--gold);
            color: #FFFFFF;
            border-color: var(--gold);
        }

        .product-quick-add {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 14px;
            background: rgba(198, 167, 94, 0.95);
            color: #FFFFFF;
            text-align: center;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            cursor: pointer;
            border: none;
            display: block;
            width: 100%;
        }

        .product-card:hover .product-quick-add {
            transform: translateY(0);
        }

        .product-info {
            padding: 20px;
        }

        .product-category {
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 6px;
        }

        .product-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text-primary);
            transition: color 0.3s ease;
        }

        .product-card:hover .product-name {
            color: var(--gold);
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-bottom: 10px;
        }

        .product-rating i {
            color: var(--gold);
            font-size: 0.75rem;
        }

        .product-rating span {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-left: 4px;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .product-price .current {
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--gold);
        }

        .product-price .original {
            font-size: 0.85rem;
            color: var(--text-muted);
            text-decoration: line-through;
        }

        /* Filter Buttons */
        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 28px;
            border: 1px solid var(--border-color);
            background: transparent;
            color: var(--text-secondary);
            font-family: 'Poppins', sans-serif;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--gold);
            color: #FFFFFF;
            border-color: var(--gold);
        }

        /* ============================================
           COLLECTION SECTION
           ============================================ */
        .collection-section {
            background: var(--bg-secondary);
        }

        .collection-item {
            position: relative;
            overflow: hidden;
            margin-bottom: 24px;
            cursor: pointer;
        }

        .collection-item.tall {
            height: 500px;
        }

        .collection-item.short {
            height: 238px;
        }

        .collection-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

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

        .collection-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(17, 17, 17, 0.3);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 40px;
            transition: all 0.4s ease;
        }

        .collection-item:hover .collection-overlay {
            background: rgba(17, 17, 17, 0.55);
            backdrop-filter: blur(4px);
        }

        .collection-overlay .collection-count {
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 8px;
            font-weight: 500;
        }

        .collection-overlay h3 {
            font-size: 1.8rem;
            color: #FFFFFF;
            margin-bottom: 6px;
        }

        .collection-overlay p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
        }

        .collection-link {
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }

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

        .collection-link:hover {
            color: var(--gold-light);
        }

        /* ============================================
           ABOUT / STORY SECTION
           ============================================ */
        .story-section {
            position: relative;
        }

        .story-image {
            position: relative;
            overflow: hidden;
        }

        .story-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .story-image .floating-badge {
            position: absolute;
            bottom: -20px;
            right: 40px;
            background: var(--gold);
            color: #FFF;
            padding: 24px;
            text-align: center;
        }

        .floating-badge .number {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            display: block;
            line-height: 1;
        }

        .floating-badge .label {
            font-size: 0.65rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
        }

        .story-content {
            padding-left: 60px;
        }

        .story-features {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 30px;
        }

        .story-feature {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            flex: 0 0 calc(50% - 15px);
        }

        .story-feature i {
            font-size: 1.3rem;
            color: var(--gold);
            margin-top: 3px;
        }

        .story-feature h6 {
            font-family: 'Poppins', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .story-feature p {
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin: 0;
        }

        /* ============================================
           PRODUCT DETAIL MODAL
           ============================================ */
        .modal-content {
            background: var(--bg-card);
            color: var(--text-primary);
            border: none;
            border-radius: 0;
        }

        .modal-header {
            background: var(--bg-card);
            border-bottom: 1px solid var(--border-color);
        }

        .modal-title {
            color: var(--text-primary);
        }

        .modal-body {
            background: var(--bg-card);
            color: var(--text-primary);
        }

        .modal-footer {
            background: var(--bg-card);
            border-top: 1px solid var(--border-color);
        }

        .modal-header .btn-close {
            filter: var(--close-filter, none);
        }

        [data-theme="dark"] .modal-header .btn-close {
            filter: invert(1) grayscale(1) brightness(1.5);
        }

        /* Modal form elements */
        .modal .form-control,
        .modal .form-select {
            background-color: var(--input-bg);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
            border-radius: 0;
            font-size: 0.9rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .modal .form-control:focus,
        .modal .form-select:focus {
            background-color: var(--input-bg);
            color: var(--text-primary);
            border-color: var(--gold);
            box-shadow: 0 0 0 0.2rem rgba(198, 167, 94, 0.15);
        }

        .modal .form-control::placeholder {
            color: var(--text-muted);
        }

        .modal .form-label {
            color: var(--text-secondary);
            font-size: 0.75rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .detail-gallery {
            position: relative;
        }

        .detail-main-image {
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
            cursor: zoom-in;
        }

        .detail-thumbnails {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .detail-thumb {
            width: 70px;
            height: 70px;
            object-fit: cover;
            cursor: pointer;
            border: 2px solid transparent;
            transition: border-color 0.3s ease;
            opacity: 0.6;
        }

        .detail-thumb:hover,
        .detail-thumb.active {
            border-color: var(--gold);
            opacity: 1;
        }

        .detail-info .detail-category {
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 8px;
        }

        .detail-info .detail-title {
            font-size: 1.8rem;
            margin-bottom: 12px;
        }

        .detail-info .detail-price {
            font-size: 1.5rem;
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 20px;
        }

        .detail-info .detail-desc {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            border: 1px solid var(--border-color);
            display: inline-flex;
            margin-bottom: 20px;
        }

        .qty-btn {
            width: 44px;
            height: 44px;
            border: none;
            background: transparent;
            color: var(--text-primary);
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .qty-btn:hover {
            background: var(--badge-bg);
            color: var(--gold);
        }

        .qty-input {
            width: 60px;
            height: 44px;
            border: none;
            border-left: 1px solid var(--border-color);
            border-right: 1px solid var(--border-color);
            text-align: center;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            background: transparent;
            color: var(--text-primary);
        }

        .qty-input:focus {
            outline: none;
        }

        .detail-actions {
            display: flex;
            gap: 12px;
            margin-bottom: 30px;
        }

        /* Tabs */
        .detail-tabs .nav-tabs {
            border-bottom: 1px solid var(--border-color);
        }

        .detail-tabs .nav-tabs .nav-link {
            border: none;
            color: var(--text-secondary);
            font-size: 0.8rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 12px 24px;
            font-weight: 500;
            border-bottom: 2px solid transparent;
            background: transparent;
        }

        .detail-tabs .nav-tabs .nav-link.active {
            color: var(--gold);
            border-bottom-color: var(--gold);
            background: transparent;
        }

        .detail-tabs .tab-content {
            padding: 24px 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* ============================================
           TESTIMONIALS
           ============================================ */
        .testimonials-section {
            background: var(--testimonial-bg);
        }

        .testimonial-card {
            background: var(--bg-card);
            padding: 40px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            box-shadow: var(--card-hover-shadow);
        }

        .testimonial-quote {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 16px;
        }

        .testimonial-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-style: italic;
            color: var(--text-primary);
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .testimonial-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 12px;
            border: 2px solid var(--gold);
            padding: 2px;
        }

        .testimonial-name {
            font-family: 'Poppins', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .testimonial-role {
            font-size: 0.75rem;
            color: var(--text-muted);
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .testimonial-rating {
            color: var(--gold);
            font-size: 0.8rem;
        }

        /* Carousel Controls */
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 40px;
            height: 40px;
            background: none;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }

        .carousel-nav-btn {
            width: 44px;
            height: 44px;
            border: 1px solid var(--border-color);
            background: transparent;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-nav-btn:hover {
            background: var(--gold);
            color: #FFFFFF;
            border-color: var(--gold);
        }

        /* ============================================
           NEWSLETTER CTA
           ============================================ */
        .newsletter-section {
            position: relative;
            padding: 100px 0;
            background: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=1920&q=80') center center / cover no-repeat;
        }

        .newsletter-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(17, 17, 17, 0.85);
        }

        .newsletter-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #FFFFFF;
        }

        .newsletter-content h2 {
            font-size: 2.5rem;
            color: #FFFFFF;
            margin-bottom: 16px;
        }

        .newsletter-content p {
            color: rgba(255, 255, 255, 0.6);
            max-width: 480px;
            margin: 0 auto 40px;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 0;
        }

        .newsletter-form input {
            flex: 1;
            padding: 16px 24px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: transparent;
            color: #FFFFFF;
            font-family: 'Poppins', sans-serif;
            font-size: 0.85rem;
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--gold);
        }

        .newsletter-form button {
            padding: 16px 36px;
            background: var(--gold);
            color: #FFFFFF;
            border: 1px solid var(--gold);
            font-family: 'Poppins', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background: var(--gold-dark);
        }

        /* ============================================
           INSTAGRAM FEED
           ============================================ */
        .instagram-section {
            padding: 0;
        }

        .instagram-grid {
            display: flex;
            overflow: hidden;
        }

        .instagram-item {
            flex: 1;
            aspect-ratio: 1;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

        .instagram-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .instagram-item:hover img {
            transform: scale(1.1);
        }

        .instagram-item .insta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(198, 167, 94, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .instagram-item:hover .insta-overlay {
            opacity: 1;
        }

        .insta-overlay i {
            color: #FFFFFF;
            font-size: 1.5rem;
        }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            background: var(--bg-footer);
            color: rgba(255, 255, 255, 0.7);
            padding: 80px 0 30px;
        }

        .footer-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gold);
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .footer-desc {
            font-size: 0.85rem;
            line-height: 1.8;
            margin-bottom: 24px;
            max-width: 300px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .footer-social a:hover {
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(198, 167, 94, 0.1);
        }

        .footer h5 {
            font-family: 'Poppins', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #FFFFFF;
            margin-bottom: 24px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

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

        .footer-links a {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--gold);
            padding-left: 6px;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 0.85rem;
        }

        .footer-contact li i {
            color: var(--gold);
            margin-top: 4px;
        }

        .footer-newsletter input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            background: transparent;
            color: #FFFFFF;
            font-family: 'Poppins', sans-serif;
            font-size: 0.85rem;
            margin-bottom: 12px;
        }

        .footer-newsletter input::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }

        .footer-newsletter input:focus {
            outline: none;
            border-color: var(--gold);
        }

        .footer-newsletter button {
            width: 100%;
            padding: 12px;
            background: var(--gold);
            color: #FFFFFF;
            border: none;
            font-family: 'Poppins', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .footer-newsletter button:hover {
            background: var(--gold-dark);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 50px;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-bottom p {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
            margin: 0;
        }

        .footer-payments {
            display: flex;
            gap: 12px;
        }

        .footer-payments i {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.3);
        }

        /* ============================================
           BACK TO TOP
           ============================================ */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 48px;
            height: 48px;
            background: var(--gold);
            color: #FFFFFF;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 4px 15px rgba(198, 167, 94, 0.3);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            background: var(--gold-dark);
            transform: translateY(-3px);
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1199px) {
            .hero-title {
                font-size: 3.5rem;
            }
            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 991px) {
            .hero-title {
                font-size: 3rem;
            }
            .story-content {
                padding-left: 0;
                margin-top: 40px;
            }
            .story-image img {
                height: 400px;
            }
            .collection-item.tall {
                height: 400px;
            }
        }

        @media (max-width: 767px) {
            .section-padding {
                padding: 60px 0;
            }
            .hero-section {
                min-height: 600px;
            }
            .hero-title {
                font-size: 2.2rem;
            }
            .hero-desc {
                font-size: 0.9rem;
            }
            .hero-buttons {
                flex-direction: column;
            }
            .hero-btn-primary,
            .hero-btn-secondary {
                text-align: center;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .collection-item.tall,
            .collection-item.short {
                height: 300px;
            }
            .testimonial-card {
                padding: 30px 20px;
            }
            .newsletter-form {
                flex-direction: column;
            }
            .newsletter-content h2 {
                font-size: 1.8rem;
            }
            .instagram-grid {
                flex-wrap: wrap;
            }
            .instagram-item {
                flex: 0 0 33.333%;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .story-feature {
                flex: 0 0 100%;
            }
        }

        @media (max-width: 575px) {
            .hero-title {
                font-size: 1.8rem;
            }
            .feature-item {
                justify-content: flex-start;
            }
        }

        /* ============================================
           ANIMATION HELPERS
           ============================================ */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Quick view modal zoom */
        .zoom-lens {
            cursor: zoom-in;
            position: relative;
            overflow: hidden;
        }

        .zoom-lens:hover img {
            transform: scale(1.5);
        }

        .zoom-lens img {
            transition: transform 0.4s ease;
        }

        /* Load More Button */
        .load-more-wrapper {
            text-align: center;
            margin-top: 40px;
        }

        /* Toast notification */
        .toast-notification {
            position: fixed;
            bottom: 90px;
            right: 30px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            padding: 16px 24px;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 9999;
            transform: translateX(120%);
            transition: transform 0.4s ease;
        }

        .toast-notification.show {
            transform: translateX(0);
        }

        .toast-notification i {
            color: var(--gold);
            font-size: 1.2rem;
        }

        .toast-notification span {
            font-size: 0.85rem;
            font-weight: 500;
        }