/* ============================================
   LUMIÈRE JEWELS - Main Stylesheet
   Premium Jewelry E-commerce Design
   ============================================ */

/* ============================================
   FONTS
   ============================================ */
@font-face {
    font-family: "Playfair";
    src: url("../../assets/fonts/PlayfairDisplay-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Primary Colors */
    --primary-gold: #C9A962;
    --primary-gold-dark: #A88B4A;
    --primary-gold-light: #E8D5A8;
    --primary-gold-glow: rgba(201, 169, 98, 0.15);
    
    /* Neutral Colors */
    --champagne: #F7F3EB;
    --charcoal: #2C2C2C;
    --soft-black: #1A1A1A;
    --pearl-white: #FDFCFA;
    --rose-gold: #B76E79;
    --platinum: #E5E4E2;
    --silver: #C0C0C0;
    
    /* Text Colors */
    --text-dark: #2C2C2C;
    --text-medium: #666666;
    --text-light: #999999;
    
    /* Shadows */
    --shadow-soft: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.12);
    --shadow-strong: rgba(0, 0, 0, 0.18);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.9rem;
    background-color: var(--pearl-white);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    letter-spacing: 0.01em;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
    font-size: 0.9rem;
    line-height: 1.7;
}

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

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

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    background: linear-gradient(90deg, var(--soft-black) 0%, var(--charcoal) 100%);
    color: var(--primary-gold-light);
    padding: 10px 0;
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.announcement-bar a {
    color: var(--primary-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.announcement-bar a:hover {
    color: var(--primary-gold-light);
}

/* ============================================
   TOP NAVIGATION BAR
   ============================================ */
.top-nav {
    background: var(--pearl-white);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.7rem;
}

.top-nav-link {
    color: var(--text-medium);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 15px;
    border-right: 1px solid rgba(0,0,0,0.08);
}

.top-nav-link:last-child {
    border-right: none;
}

.top-nav-link:hover {
    color: var(--primary-gold);
}

.top-nav-link i {
    font-size: 0.85rem;
}

/* ============================================
   MAIN HEADER
   ============================================ */
.main-header {
    background: var(--pearl-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow-soft);
}

.header-main {
    padding: 8px 0;
    border-bottom: none;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: logoFadeIn 0.8s ease-out;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(201, 169, 98, 0.4));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-brand {
    font-family: 'Playfair', Georgia, 'Times New Roman', serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #8B7355 50%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: goldShine 3s ease-in-out infinite;
}

.logo-tagline {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--text-medium);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 2px;
}

.logo:hover .logo-brand {
    animation: goldShine 1s ease-in-out infinite;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes goldShine {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Hide logo text on small screens */
@media (max-width: 768px) {
    .logo-text {
        display: none;
    }
    .logo-img {
        height: 45px;
    }
}

/* Legacy logo icon support */
.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    animation: logoShine 3s ease-in-out infinite;
}

@keyframes logoShine {
    0%, 100% { transform: rotate(45deg) translateX(-100%); }
    50% { transform: rotate(45deg) translateX(100%); }
}

/* Header Icons */
.header-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.header-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    font-size: 1.15rem;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.header-icon:hover {
    background: var(--champagne);
    color: var(--primary-gold);
}

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

/* Search Box */
.search-box {
    position: relative;
    max-width: 280px;
}

.search-input {
    width: 100%;
    padding: 12px 45px 12px 18px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 25px;
    font-size: 0.85rem;
    background: var(--champagne);
    transition: var(--transition-normal);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: white;
    box-shadow: 0 0 0 3px var(--primary-gold-glow);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-gold);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.search-btn:hover {
    background: var(--primary-gold-dark);
}

/* ============================================
   HEADER INLINE NAVIGATION
   ============================================ */
.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
}

.search-overlay-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.search-overlay-form {
    display: flex;
    align-items: center;
    position: relative;
    flex: 1;
}

.search-overlay-input {
    width: 100%;
    min-width: 500px;
    padding: 20px 60px 20px 25px;
    border: 2px solid rgba(201, 169, 98, 0.4);
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition-normal);
    letter-spacing: 0.03em;
}

.search-overlay-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-overlay-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.2);
}

.search-overlay-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-gold);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.search-overlay-btn:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-50%) scale(1.05);
}

.search-overlay-close {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: var(--transition-normal);
}

.search-overlay-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

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

.search-suggestions .text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.search-suggestions .search-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    font-size: 0.8rem;
    margin: 0 4px;
}

.search-suggestions .search-tag:hover {
    background: var(--primary-gold);
    color: white;
    border-color: var(--primary-gold);
}

@media (max-width: 768px) {
    .search-overlay-container {
        padding-top: 80px;
    }

    .search-overlay-input {
        min-width: auto;
        width: 100%;
        font-size: 1rem;
        padding: 16px 50px 16px 20px;
    }

    .search-overlay-btn {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   MEGA MENU NAVIGATION
   ============================================ */
.nav-wrapper {
    background: var(--pearl-white);
    border-bottom: 2px solid var(--primary-gold);
    position: relative;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 15px 20px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    position: relative;
    transition: var(--transition-normal);
}

.nav-link i.bi-chevron-down {
    font-size: 0.55rem;
    margin-left: 3px;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i.bi-chevron-down {
    transform: rotate(180deg);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.nav-item:hover .nav-link,
.nav-item.active .nav-link {
    color: var(--primary-gold);
}

.nav-item:hover .nav-link::before,
.nav-item.active .nav-link::before {
    width: 100%;
}

/* Mega Menu (base - overridden by enhanced animation below) */

.mega-menu-inner {
    display: grid;
    gap: 0;
}

/* Mega Menu Columns */
.mega-col {
    padding: 25px 20px;
    border-right: 1px solid rgba(0,0,0,0.06);
    min-width: 170px;
    flex-shrink: 0;
}

.mega-col:last-child {
    border-right: none;
}

.mega-col-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.mega-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    margin: 0;
}

.mega-links a {
    font-size: 0.82rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    transition: var(--transition-fast);
    text-decoration: none;
}

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

.mega-links a i {
    font-size: 0.75rem;
    color: var(--primary-gold);
    opacity: 0;
    transition: var(--transition-fast);
}

.mega-links a:hover i {
    opacity: 1;
}

/* Shape Grid in Mega Menu */
.shape-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.shape-item {
    text-align: center;
    padding: 12px 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.shape-item:hover {
    background: var(--champagne);
}

.shape-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shape-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--text-medium);
    stroke-width: 1.5;
    fill: none;
    transition: var(--transition-normal);
}

.shape-item:hover .shape-icon svg {
    stroke: var(--primary-gold);
}

.shape-name {
    font-size: 0.7rem;
    color: var(--text-medium);
    letter-spacing: 0.05em;
}

.shape-item:hover .shape-name {
    color: var(--primary-gold);
}

/* Featured Box in Mega Menu */
.mega-featured {
    padding: 0;
    background: var(--champagne);
    position: relative;
    overflow: hidden;
}

.mega-featured-content {
    padding: 35px 30px;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mega-featured-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.mega-featured-title {
    font-family: 'Playfair', Georgia, 'Times New Roman', serif;
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 15px;
    line-height: 1.3;
}

.mega-featured-text {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.6;
}

.mega-featured-image {
    margin-top: auto;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

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

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

.mega-featured-btns {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.mega-btn {
    flex: 1;
    padding: 12px 15px;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--charcoal);
    background: white;
    color: var(--charcoal);
    transition: var(--transition-normal);
}

.mega-btn:hover {
    background: var(--charcoal);
    color: white;
}

.mega-btn.primary {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: white;
}

.mega-btn.primary:hover {
    background: var(--primary-gold-dark);
    border-color: var(--primary-gold-dark);
}

/* View All Link */
.mega-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-gold);
    border-top: 1px solid rgba(0,0,0,0.08);
}

.mega-view-all:hover {
    color: var(--primary-gold-dark);
}

.mega-view-all i {
    transition: var(--transition-fast);
}

.mega-view-all:hover i {
    transform: translateX(5px);
}

/* Education Links */
.mega-education {
    background: var(--soft-black);
    padding: 25px 30px;
    margin-top: 0;
}

.mega-education-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mega-education-col h4 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.mega-education-col a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    padding: 6px 0;
}

.mega-education-col a:hover {
    color: white;
}

/* View All link in mega menu columns */
.mega-view-all {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-fast);
}

.mega-view-all:hover {
    color: var(--primary-gold-dark);
    gap: 8px;
}

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

.mega-col-title a:hover {
    color: var(--primary-gold);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 35px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(201, 169, 98, 0.35);
    color: white;
}

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

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

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

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

.btn-dark {
    background: var(--charcoal);
    color: white;
}

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

.btn-white {
    background: white;
    color: var(--charcoal);
}

.btn-white:hover {
    background: var(--champagne);
}

.btn-sm {
    padding: 12px 25px;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 20px 50px;
    font-size: 0.85rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--champagne) 0%, var(--pearl-white) 50%, var(--platinum) 100%);
    overflow: hidden;
}

/* Banner Carousel */
.hero-banner-section {
    position: relative;
    overflow: hidden;
}

.hero-banner-section .carousel,
.hero-banner-section .carousel-inner,
.hero-banner-section .carousel-item {
    height: auto;
}

/* Each banner slide */
.banner-slide {
    position: relative;
    min-height: 80vh;
}

.banner-slide .banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay when image is present */
.banner-slide.has-image .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
}

/* Gradient background when no image */
.banner-slide.no-image {
    background: linear-gradient(135deg, var(--champagne) 0%, var(--pearl-white) 50%, var(--platinum) 100%);
}

/* Image-only banner */
.banner-slide.banner-image-only {
    min-height: 80vh;
}

/* Banner text content */
.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 60px 0;
}

.min-vh-80 {
    min-height: 80vh;
}

/* Banner label */
.banner-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 1px solid;
    animation: fadeInUp 0.8s ease;
}

.banner-slide.has-image .banner-label {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.banner-slide.no-image .banner-label {
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

/* Banner title */
.banner-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.banner-slide.has-image .banner-title {
    color: #fff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.banner-slide.no-image .banner-title {
    color: var(--text-dark, #1a1a1a);
}

/* Banner description text */
.banner-text {
    font-size: 1.1rem;
    max-width: 540px;
    margin-bottom: 30px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.banner-slide.has-image .banner-text {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
}

.banner-slide.no-image .banner-text {
    color: var(--text-medium, #666);
}

/* Banner CTA buttons */
.banner-buttons {
    display: flex;
    gap: 15px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.banner-slide.has-image .banner-buttons .btn-outline {
    border-color: #fff;
    color: #fff;
}

.banner-slide.has-image .banner-buttons .btn-outline:hover {
    background: #fff;
    color: var(--charcoal);
}

/* Carousel indicators */
.hero-banner-section .carousel-indicators {
    margin-bottom: 30px;
}

.hero-banner-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 0.5;
    border: none;
    background-color: var(--primary-gold, #c9a962);
}

.hero-banner-section .carousel-indicators button.active {
    opacity: 1;
}

/* Carousel arrows */
.hero-banner-section .carousel-control-prev,
.hero-banner-section .carousel-control-next {
    width: 5%;
    opacity: 1;
    z-index: 5;
}

.hero-banner-section .carousel-control-prev-icon,
.hero-banner-section .carousel-control-next-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    background-size: 50%;
    padding: 10px;
}

.hero-banner-section .carousel-control-prev-icon:hover,
.hero-banner-section .carousel-control-next-icon:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 767px) {
    .banner-slide,
    .banner-slide.banner-image-only,
    .banner-content,
    .min-vh-80 {
        min-height: 60vh;
    }

    .banner-title {
        font-size: 1.6rem;
    }

    .banner-text {
        font-size: 0.95rem;
    }

    .banner-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .banner-content {
        padding: 40px 0;
    }

    /* Hide carousel arrows on mobile - use swipe instead */
    .hero-banner-section .carousel-control-prev,
    .hero-banner-section .carousel-control-next {
        display: none;
    }

    /* Make carousel indicators smaller on mobile */
    .hero-banner-section .carousel-indicators {
        bottom: 10px;
    }

    .hero-banner-section .carousel-indicators button {
        width: 8px;
        height: 8px;
    }
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(183, 110, 121, 0.08) 0%, transparent 50%);
}

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

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 1px solid var(--primary-gold);
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

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

.hero-text {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 500px;
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.3s both;
}

.hero-image img {
    max-width: 550px;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15));
}

.hero-badge {
    position: absolute;
    bottom: 80px;
    left: -30px;
    background: white;
    padding: 20px 30px;
    box-shadow: 0 15px 40px var(--shadow-medium);
    animation: float 3s ease-in-out infinite;
}

.hero-badge-title {
    font-family: 'Playfair', Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    color: var(--charcoal);
}

.hero-badge-text {
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================
   FEATURES BAR
   ============================================ */
.features-bar {
    background: var(--soft-black);
    padding: 25px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--platinum);
}

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

.feature-item span {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

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

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.2rem;
    color: var(--charcoal);
}

.section-text {
    max-width: 600px;
    margin: 20px auto 0;
    color: var(--text-medium);
}

/* ============================================
   CATEGORY CARDS
   ============================================ */
.category-card {
    position: relative;
    overflow: hidden;
    background: var(--champagne);
    height: 450px;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    transition: var(--transition-normal);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
}

.category-name {
    font-family: 'Playfair', Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
}

.category-count {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-gold-light);
}

.category-link {
    position: absolute;
    bottom: 35px;
    right: 35px;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition-normal);
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   STYLE CARDS
   ============================================ */
.style-card {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    text-decoration: none;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-soft);
    border-color: var(--primary-gold-light);
}

.style-icon {
    width: 60px;
    height: 60px;
    background: var(--champagne);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: var(--transition-normal);
}

.style-icon i {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.style-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.style-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-gold);
}

.style-card:hover .style-icon img {
    filter: brightness(0) invert(1);
}

.style-card:hover .style-icon svg {
    fill: white;
}

.style-card:hover .style-icon {
    background: var(--primary-gold);
}

.style-card:hover .style-icon i {
    color: white;
}

.style-name {
    font-family: 'Playfair', Georgia, 'Times New Roman', serif;
    font-size: 1.1rem;
    color: var(--charcoal);
    margin: 0;
    transition: var(--transition-normal);
}

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

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
    display: block;
    background: #fff;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid #f0ece4;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    border-color: var(--primary-gold-light);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

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

/* Product Image Container */
.product-card .product-image-container {
    position: relative;
    overflow: hidden;
    background: #f8f6f3;
}

.product-image-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

/* Slider dots */
.product-slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-slider-dots {
    opacity: 1;
}

.slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider-dot.active {
    background: #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    transform: scale(1.2);
}

/* Badge */
.product-image-container .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    background: var(--rose-gold);
    color: white;
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
}

.product-badge.new {
    background: var(--primary-gold);
}

.product-badge.sale {
    background: #c0392b;
}

.product-badge.bestseller {
    background: var(--primary-gold);
}

/* Prevent image/video download */
.product-image-container img,
.product-main-image-container img,
.product-main-image-container video,
.product-gallery-wrapper img,
.product-gallery-wrapper video,
.product-thumbnails img,
.lightbox-overlay img,
.lightbox-thumbs img {
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: auto;
    -webkit-touch-callout: none;
}

.product-image-container,
.product-main-image-container,
.product-gallery-wrapper,
.lightbox-img-wrapper {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Wishlist action button */
.product-card-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-card-actions {
    opacity: 1;
}

.product-card-actions .product-action-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #888;
    transition: all 0.25s ease;
    padding: 0;
    line-height: 1;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.product-card-actions .product-action-btn:hover {
    color: #e74c3c;
    background: #fff;
    transform: scale(1.1);
}

.product-card-actions .wishlist-btn.active {
    color: #e74c3c;
    background: #fff;
    opacity: 1 !important;
}

/* Make active wishlist btn always visible */
.product-card .product-card-actions:has(.wishlist-btn.active) {
    opacity: 1;
}

.product-card-actions .wishlist-btn.active i {
    animation: heartBeat 0.3s ease;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.add-to-cart-btn.added {
    background: #27ae60 !important;
    border-color: #27ae60 !important;
}

/* Product Info */
.product-info {
    padding: 14px 16px 18px;
    text-align: left;
}

.product-category {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 4px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.product-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--charcoal);
    margin: 0 0 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
    transition: color 0.3s ease;
    font-family: inherit;
}

.product-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.product-price .old-price {
    text-decoration: line-through;
    color: #b5b5b5;
    font-weight: 400;
    font-size: 0.82rem;
}

/* Product Card Options (Shape, Metal, Carat) */
.card-options {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.card-option-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.card-option-row:last-child {
    margin-bottom: 0;
}

.card-option-label {
    font-size: 0.72rem;
    color: var(--text-medium);
    min-width: 38px;
    font-weight: 500;
}

.card-option-items {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-option-scroll {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    min-width: 0;
}

.card-option-scroll::-webkit-scrollbar {
    display: none;
}

.card-shape-item {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.card-shape-item:hover,
.card-shape-item.active {
    border-color: var(--charcoal);
}

.card-shape-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    opacity: 0.65;
    transition: opacity 0.2s;
}

.card-shape-item:hover img,
.card-shape-item.active img {
    opacity: 1;
}

.card-shape-text {
    font-size: 0.6rem;
    font-weight: 600;
    color: #666;
}

.card-metal-swatch {
    width: 28px;
    height: 20px;
    border-radius: 3px;
    border: 1.5px solid rgba(0,0,0,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    position: relative;
}

.card-metal-swatch:hover,
.card-metal-swatch.active {
    border-color: var(--charcoal);
    box-shadow: 0 0 0 1px var(--charcoal);
}

.card-metal-label {
    font-size: 0.55rem;
    font-weight: 700;
    color: rgba(0,0,0,0.5);
    line-height: 1;
    text-shadow: 0 0 2px rgba(255,255,255,0.8);
}

.card-carat-item {
    font-size: 0.72rem;
    color: var(--text-medium);
    padding: 2px 8px;
    border: 1.5px solid #e0e0e0;
    border-radius: 3px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.card-carat-item:hover,
.card-carat-item.active {
    border-color: var(--charcoal);
    color: var(--charcoal);
}

.card-option-arrow {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #999;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.card-option-arrow:hover {
    color: var(--charcoal);
}

.card-option-more {
    font-size: 0.65rem;
    color: #999;
    font-weight: 500;
    flex-shrink: 0;
}

.product-price .current-price {
    color: var(--charcoal);
}

/* Quick add btn removed - keeping selector for backward compat */
.quick-add-btn {
    display: none;
}

/* ============================================
   PROMOTIONAL BANNER
   ============================================ */
.promo-banner {
    position: relative;
    padding: 70px 0;
    background: linear-gradient(135deg, var(--soft-black) 0%, #2a2a2a 50%, var(--charcoal) 100%);
    overflow: hidden;
}

.promo-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(201, 169, 98, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(201, 169, 98, 0.1) 0%, transparent 40%);
}

.promo-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.promo-label {
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.promo-title {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 15px;
    line-height: 1.2;
}

.promo-title span {
    color: var(--primary-gold);
    font-style: italic;
}

.promo-text {
    font-size: 1rem;
    color: var(--platinum);
    max-width: 600px;
    margin: 0 auto 25px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px var(--shadow-soft);
    border: 1px solid rgba(201, 169, 98, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-stars {
    color: var(--primary-gold);
    margin-bottom: 25px;
    font-size: 1.2rem;
    letter-spacing: 5px;
}

.testimonial-text {
    font-family: 'Playfair', Georgia, 'Times New Roman', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 30px;
}

.testimonial-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.08em;
    margin: 0;
}

.testimonial-location {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 5px 0 0;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
    padding: 100px 0;
    background: var(--soft-black);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
}

.newsletter-text {
    color: var(--platinum);
    margin-bottom: 35px;
}

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

.newsletter-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: white;
    font-size: 0.9rem;
}

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

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

.newsletter-btn {
    background: var(--primary-gold);
    color: white;
    padding: 12px 28px;
    border: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-normal);
}

.newsletter-btn:hover {
    background: var(--primary-gold-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--charcoal);
    color: var(--platinum);
    padding: 80px 0 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 4px 15px rgba(255, 255, 255, 0.3));
}

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

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

.footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

.footer-title {
    font-family: 'Playfair', Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 25px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.footer-contact-item i {
    color: var(--primary-gold);
    margin-top: 3px;
}

.footer-contact-item span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-payment {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-payment-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.payment-icon {
    height: 24px;
    width: auto;
    border-radius: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 15px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--primary-gold);
}

.payment-methods {
    display: flex;
    gap: 15px;
}

.payment-methods i {
    font-size: 1.8rem;
    opacity: 0.6;
}

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

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-5px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1199px) {
    .mega-menu {
        min-width: 800px;
    }
    
    .mega-menu.wide {
        min-width: 100%;
        left: 0;
        transform: none;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .nav-wrapper {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .product-card-actions {
        opacity: 1;
    }

    .product-slider-dots {
        opacity: 1;
    }

    .product-info {
        padding: 12px 14px 16px;
    }

    .product-name {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .product-card {
        border-radius: 10px;
    }

    .product-info {
        padding: 10px 12px 14px;
    }

    .product-name {
        font-size: 0.82rem;
        margin-bottom: 6px;
    }

    .product-category {
        font-size: 0.6rem;
    }

    .product-price {
        font-size: 0.88rem;
    }

    .wishlist-actions {
        flex-direction: column;
        gap: 8px;
    }

    .wishlist-actions .btn {
        width: 100%;
    }
}

/* Extra Small Screens - Product Cards */
@media (max-width: 575px) {
    .product-card {
        border-radius: 8px;
    }

    .product-info {
        padding: 8px 10px 12px;
    }

    .product-category {
        font-size: 0.55rem;
        margin-bottom: 2px;
    }

    .product-name {
        font-size: 0.78rem;
        margin-bottom: 4px;
        -webkit-line-clamp: 2;
    }

    .product-price {
        font-size: 0.82rem;
        gap: 5px;
    }

    .product-price .old-price {
        font-size: 0.7rem;
    }

    .product-card-actions {
        top: 6px;
        right: 6px;
    }

    .product-card-actions .product-action-btn {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .product-image-container .product-badge {
        top: 8px;
        left: 8px;
        padding: 3px 8px;
        font-size: 0.6rem;
    }

    /* Section headers on mobile */
    .section-header {
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-label {
        font-size: 0.7rem;
    }
}

/* Very Small Screens */
@media (max-width: 375px) {
    .product-name {
        font-size: 0.72rem;
    }

    .product-price {
        font-size: 0.78rem;
    }

    .product-card-actions .product-action-btn {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .slider-dot {
        width: 4px;
        height: 4px;
    }
}

/* ============================================
   HOME PAGE MOBILE STYLES
   ============================================ */

/* Hero Section Mobile */
@media (max-width: 991px) {
    .hero {
        padding: 40px 0;
    }

    .hero .row {
        flex-direction: column-reverse;
    }

    .hero-content {
        text-align: center;
        padding-top: 30px;
    }

    .hero-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-badge {
        right: 0;
        bottom: -10px;
        padding: 12px 16px;
    }

    .hero-badge-title {
        font-size: 0.8rem;
    }

    .hero-badge-text {
        font-size: 0.65rem;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .hero {
        padding: 30px 0;
    }

    .hero-label {
        font-size: 0.65rem;
        padding: 6px 14px;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .hero-image {
        max-width: 250px;
    }

    .hero-badge {
        padding: 10px 14px;
    }

    .hero-badge-title {
        font-size: 0.7rem;
    }

    .hero-badge-text {
        font-size: 0.6rem;
    }
}

/* Features Bar Mobile */
@media (max-width: 575px) {
    .features-bar {
        padding: 15px 0;
    }

    .feature-item {
        flex-direction: column;
        gap: 5px;
        padding: 10px 5px;
    }

    .feature-item i {
        font-size: 1.2rem;
    }

    .feature-item span {
        font-size: 0.65rem;
        text-align: center;
    }
}

/* Category Cards Mobile */
@media (max-width: 767px) {
    .category-card,
    .category-card-wide {
        height: 180px !important;
        border-radius: 10px;
    }

    .category-overlay {
        padding: 15px;
    }

    .category-name {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .category-count {
        font-size: 0.65rem;
        margin-bottom: 8px;
    }

    .category-link {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        opacity: 1;
        transform: translateX(0);
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 575px) {
    .category-card,
    .category-card-wide {
        height: 150px !important;
        border-radius: 8px;
    }

    .category-overlay {
        padding: 12px;
    }

    .category-name {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }

    .category-count {
        display: none;
    }

    .category-link {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        opacity: 1;
        transform: translateX(0);
        bottom: 12px;
        right: 12px;
    }
}

@media (max-width: 400px) {
    .category-card,
    .category-card-wide {
        height: 120px !important;
    }

    .category-overlay {
        padding: 10px;
    }

    .category-name {
        font-size: 0.8rem;
    }

    .category-link {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
        bottom: 10px;
        right: 10px;
    }
}

/* Style Cards Mobile */
@media (max-width: 575px) {
    .style-card {
        padding: 15px 10px;
    }

    .style-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }

    .style-icon i {
        font-size: 1.3rem;
    }

    .style-icon img,
    .style-icon svg {
        width: 28px;
        height: 28px;
    }

    .style-name {
        font-size: 0.7rem;
    }
}

/* Testimonials Mobile */
@media (max-width: 575px) {
    .testimonial-card {
        padding: 20px;
    }

    .testimonial-stars {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .testimonial-author {
        font-size: 0.9rem;
    }

    .testimonial-location {
        font-size: 0.75rem;
    }
}

/* Promo Banner Mobile */
@media (max-width: 575px) {
    .promo-banner {
        padding: 50px 0;
    }

    .promo-label {
        font-size: 0.7rem;
    }

    .promo-title {
        font-size: 1.5rem;
    }

    .promo-text {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .promo-banner .btn-lg {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}

/* Newsletter Mobile */
@media (max-width: 575px) {
    .newsletter-section {
        padding: 40px 0;
    }

    .newsletter-title {
        font-size: 1.3rem;
    }

    .newsletter-text {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-input {
        padding: 14px 18px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .newsletter-btn {
        padding: 14px 24px;
        border-radius: 8px;
        width: 100%;
    }
}

/* General Mobile Button Sizing */
@media (max-width: 575px) {
    .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .text-center.mt-5 {
        margin-top: 1.5rem !important;
    }

    .section {
        padding: 40px 0;
    }
}

/* ============================================
   PAGE SPECIFIC STYLES
   ============================================ */

/* Page Header/Banner */
.page-header {
    background: linear-gradient(135deg, var(--champagne) 0%, var(--pearl-white) 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a962' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.8rem;
}

.breadcrumb a {
    color: var(--text-medium);
}

.breadcrumb a:hover {
    color: var(--primary-gold);
}

.breadcrumb span {
    color: var(--primary-gold);
}

.page-title {
    font-size: 3rem;
    color: var(--charcoal);
}

/* Products Page Styles */
.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.products-count {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.products-sort select {
    padding: 10px 35px 10px 15px;
    border: 1px solid rgba(0,0,0,0.15);
    background: white;
    font-size: 0.85rem;
    cursor: pointer;
}

/* Filter Sidebar */
.filter-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.filter-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    cursor: pointer;
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-gold);
}

/* Price Range Slider */
.price-range {
    padding: 10px 0;
}

.price-inputs {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.price-input {
    flex: 1;
}

.price-input label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-medium);
    margin-bottom: 5px;
}

.price-input input {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(0,0,0,0.15);
    font-size: 0.9rem;
}

/* Shape Filters */
.shape-filters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.shape-filter {
    text-align: center;
    padding: 10px 5px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.shape-filter:hover {
    border-color: var(--primary-gold);
    background: var(--primary-gold-glow);
}

.shape-filter.active {
    border-color: var(--primary-gold);
    background: var(--primary-gold-glow);
    box-shadow: 0 0 0 1px var(--primary-gold);
}

.shape-filter svg {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
}

.shape-filter span {
    display: block;
    font-size: 0.65rem;
    color: var(--text-medium);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 50px;
}

.page-link {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
    background: transparent;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.page-link:hover {
    background: var(--champagne);
    color: var(--primary-gold-dark);
}

.page-link.active {
    background: var(--primary-gold);
    color: #fff;
    box-shadow: 0 2px 8px rgba(201, 169, 98, 0.35);
}

.page-link.disabled {
    color: #ccc;
    pointer-events: none;
    cursor: default;
}

.page-link i {
    font-size: 0.75rem;
}

/* Product Detail Page */
.product-gallery {
    position: sticky;
    top: 100px;
}

.product-main-image {
    background: var(--champagne);
    padding: 40px;
    margin-bottom: 15px;
}

.product-main-image img {
    width: 100%;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    background: var(--champagne);
    padding: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: var(--primary-gold);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-detail-info {
    padding-left: 30px;
}

.product-detail-category {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.product-detail-title {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 15px;
}

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

.product-rating-stars {
    color: var(--primary-gold);
}

.product-rating-count {
    font-size: 0.85rem;
    color: var(--text-medium);
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 25px;
}

.product-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 30px;
}

.product-options {
    margin-bottom: 30px;
}

.option-group {
    margin-bottom: 25px;
}

.option-label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.metal-swatches {
    display: flex;
    gap: 8px;
}

.metal-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
}

.metal-option:hover,
.metal-option.active {
    border-color: var(--charcoal);
}

.metal-option.yellow-gold {
    background: linear-gradient(135deg, #FFD700, #DAA520);
}

.metal-option.white-gold {
    background: linear-gradient(135deg, #E8E8E8, #C0C0C0);
}

.metal-option.rose-gold {
    background: linear-gradient(135deg, #E8B4B8, #B76E79);
}

.metal-option.platinum {
    background: linear-gradient(135deg, #E5E4E2, #A8A8A8);
}

.size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-option {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.size-option:hover,
.size-option.active {
    border-color: var(--primary-gold);
    background: var(--primary-gold-glow);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(0,0,0,0.15);
    width: fit-content;
}

.qty-btn {
    width: 45px;
    height: 45px;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.qty-btn:hover {
    background: var(--champagne);
}

.qty-input {
    width: 60px;
    height: 45px;
    border: none;
    border-left: 1px solid rgba(0,0,0,0.15);
    border-right: 1px solid rgba(0,0,0,0.15);
    text-align: center;
    font-size: 1rem;
}

.product-actions-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.product-actions-btns .btn {
    flex: 1;
}

.btn-wishlist {
    width: 55px;
    flex: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Page */
.contact-info-card {
    background: white;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 25px var(--shadow-soft);
    height: 100%;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--primary-gold);
}

.contact-info-title {
    font-family: 'Playfair', Georgia, 'Times New Roman', serif;
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.contact-info-text {
    font-size: 0.88rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-form {
    background: white;
    padding: 35px;
    box-shadow: 0 10px 40px var(--shadow-soft);
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--charcoal);
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(0,0,0,0.12);
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px var(--primary-gold-glow);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* About Page */
.about-hero {
    position: relative;
    padding: 70px 0;
    background: var(--champagne);
}

.about-stats {
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    margin-top: 30px;
}

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

.stat-number {
    font-family: 'Playfair', Georgia, 'Times New Roman', serif;
    font-size: 2.8rem;
    color: var(--primary-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-medium);
    margin-top: 8px;
}

.timeline {
    position: relative;
    padding: 50px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-gold-light);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
}

.timeline-content {
    width: 45%;
    padding: 30px;
    background: white;
    box-shadow: 0 10px 40px var(--shadow-soft);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-year {
    font-family: 'Playfair', Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.timeline-text {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Design Studio Page */
.studio-hero {
    /* background: linear-gradient(135deg, var(--soft-black) 0%, var(--charcoal) 100%); */
    padding: 80px 0;
    text-align: center;
    /* color: white; */
}

.studio-hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.studio-hero-text {
    font-size: 1.1rem;
    /* color: var(--platinum); */
    max-width: 600px;
    margin: 0 auto 40px;
}

.studio-options {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.studio-option-card {
    background: white;
    padding: 50px 40px;
    text-align: center;
    width: 350px;
    transition: var(--transition-normal);
    cursor: pointer;
}

.studio-option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.studio-option-icon {
    width: 100px;
    height: 100px;
    background: var(--champagne);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.studio-option-icon i {
    font-size: 2.5rem;
    color: var(--primary-gold);
}

.studio-option-title {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.studio-option-text {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 25px;
}

/* Step Indicator */
.steps-indicator {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 50px 0;
}

.step {
    display: flex;
    align-items: center;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-medium);
    transition: var(--transition-normal);
}

.step.active .step-number,
.step.completed .step-number {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: white;
}

.step-line {
    width: 100px;
    height: 2px;
    background: rgba(0,0,0,0.1);
}

.step.completed + .step .step-line,
.step.active + .step .step-line {
    background: var(--primary-gold);
}

.step-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    white-space: nowrap;
    color: var(--text-medium);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    margin: 5px auto;
    transition: var(--transition-normal);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 1100;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Drawer */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: white;
    z-index: 1200;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    transform: translateX(320px);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--champagne);
}

.mobile-menu-header h4 {
    font-family: 'Playfair', Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    color: var(--charcoal);
    margin: 0;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--charcoal);
    transition: var(--transition-normal);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu-close:hover {
    background: var(--primary-gold);
    color: white;
    transform: rotate(90deg);
}

.mobile-menu-list {
    list-style: none;
    padding: 15px 0;
    margin: 0;
}

.mobile-menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: var(--transition-normal);
    position: relative;
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary-gold);
    transition: var(--transition-normal);
}

.mobile-menu-link:hover {
    background: var(--champagne);
    color: var(--primary-gold);
    padding-left: 30px;
}

.mobile-menu-link:hover::before {
    height: 60%;
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
    }
}

/* Hide mobile menu on desktop */
@media (min-width: 992px) {
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* ============================================
   MAIN NAVIGATION LIST STYLING
   ============================================ */
.main-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav .nav-item {
    list-style: none;
}

/* ============================================
   HEADER ANIMATIONS
   ============================================ */

/* Logo Animation */
.logo {
    animation: logoFadeIn 0.8s ease-out;
}

.logo:hover .logo-icon {
    animation: logoPulse 0.6s ease;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Header Icons Animation */
.header-icon {
    animation: iconFadeIn 0.6s ease-out backwards;
}

.header-icon:nth-child(1) { animation-delay: 0.1s; }
.header-icon:nth-child(2) { animation-delay: 0.2s; }
.header-icon:nth-child(3) { animation-delay: 0.3s; }
.header-icon:nth-child(4) { animation-delay: 0.4s; }

@keyframes iconFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-icon:hover {
    background: var(--champagne);
    color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 169, 98, 0.2);
}

.header-icon:hover .badge {
    animation: badgeBounce 0.5s ease;
}

@keyframes badgeBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Navigation Animation */
.nav-item {
    animation: navItemFadeIn 0.5s ease-out backwards;
}

.nav-item:nth-child(1) { animation-delay: 0.1s; }
.nav-item:nth-child(2) { animation-delay: 0.15s; }
.nav-item:nth-child(3) { animation-delay: 0.2s; }
.nav-item:nth-child(4) { animation-delay: 0.25s; }
.nav-item:nth-child(5) { animation-delay: 0.3s; }
.nav-item:nth-child(6) { animation-delay: 0.35s; }

@keyframes navItemFadeIn {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Nav Link Position */
.nav-link {
    position: relative;
}

/* Search Box Animation */
.search-box {
    animation: searchFadeIn 0.7s ease-out 0.3s backwards;
}

@keyframes searchFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: white;
    box-shadow: 0 0 0 4px var(--primary-gold-glow);
}

.search-btn {
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--primary-gold-dark);
    transform: scale(1.05);
}

/* Mega Menu Enhanced Animation */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(10px);
    background: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 3px solid var(--primary-gold);
    z-index: 1000;
    border-radius: 0 0 8px 8px;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Jewelry Mega Menu - positioned from left, columns side by side */
.jewelry-mega {
    left: 0;
    transform: translateY(10px);
    width: max-content;
    min-width: 400px;
    max-width: min(900px, 95vw);
}

.nav-item:hover .jewelry-mega {
    transform: translateY(0);
}

.jewelry-grid {
    display: flex;
    flex-wrap: nowrap;
}

/* Diamonds Dropdown */
.dropdown-menu-nav {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 1000;
}

.nav-item.has-dropdown {
    position: relative;
}

.nav-item.has-dropdown:hover .dropdown-menu-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-nav li a {
    display: block;
    padding: 10px 22px;
    color: var(--charcoal);
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.2s;
}

.dropdown-menu-nav li a:hover {
    background: var(--champagne);
    color: var(--primary-gold);
    padding-left: 26px;
}

.dropdown-section-title {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-medium, #888);
    padding: 10px 22px 4px;
    margin-top: 4px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.dropdown-section-title:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 6px;
}

/* Legacy Diamonds Mega Menu (unused) */
.diamonds-mega {
    left: 0;
    width: min(480px, 90vw);
}

.diamonds-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* Mega Menu Content - columns visible by default */

/* Featured Section in Mega Menu */
.mega-col-featured {
    background: linear-gradient(135deg, var(--champagne) 0%, var(--pearl-white) 100%);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mega-col-featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
    animation: featuredGlow 3s ease-in-out infinite;
}

@keyframes featuredGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.featured-badge {
    display: inline-block;
    background: var(--primary-gold);
    color: white;
    padding: 6px 16px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.featured-title {
    font-family: 'Playfair', Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.featured-text {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.featured-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.mega-col-featured:hover .featured-img {
    transform: scale(1.05);
}

/* Announcement Bar Enhanced Animation */
.announcement-bar {
    background: linear-gradient(90deg, var(--soft-black) 0%, var(--charcoal) 50%, var(--soft-black) 100%);
    background-size: 200% 100%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.announcement-bar span {
    display: inline-block;
    animation: textPulse 3s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

.announcement-bar strong {
    color: var(--primary-gold);
    animation: codeGlow 2s ease-in-out infinite;
}

@keyframes codeGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(201, 169, 98, 0.5);
    }
    50% {
        text-shadow: 0 0 15px rgba(201, 169, 98, 0.8), 0 0 25px rgba(201, 169, 98, 0.4);
    }
}

/* Top Nav Hover Effects */
.top-nav-link {
    position: relative;
    overflow: hidden;
}

.top-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

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

.top-nav-link i {
    transition: transform 0.3s ease;
}

.top-nav-link:hover i {
    transform: scale(1.2);
    color: var(--primary-gold);
}


/* ============================================
   WISHLIST PAGE STYLES
   ============================================ */
.wishlist-header {
    padding: 20px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.wishlist-count {
    font-size: 1rem;
    color: var(--text-medium);
    margin: 0;
}

.wishlist-count i {
    color: var(--rose-gold);
    margin-right: 8px;
}

.wishlist-card-wrapper {
    position: relative;
}

.wishlist-card-wrapper .product-card-actions {
    display: none;
}

.wishlist-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease;
    font-size: 0.7rem;
    color: #999;
}

.wishlist-remove:hover {
    background: #e74c3c;
    color: white;
    transform: rotate(90deg);
}

.wishlist-card-actions {
    padding: 0 12px 14px;
}

.wishlist-card-actions .btn {
    width: 100%;
    font-size: 0.75rem;
    padding: 8px 12px;
    border-radius: 6px;
}

.wishlist-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.wishlist-actions .btn {
    flex: 1;
}

.wishlist-actions .btn-outline {
    flex: 0;
    padding: 12px 15px;
}

/* Empty Wishlist */
.empty-wishlist {
    padding: 80px 0;
    text-align: center;
}

.empty-wishlist-content {
    max-width: 400px;
    margin: 0 auto;
}

.empty-wishlist-icon {
    width: 120px;
    height: 120px;
    background: var(--champagne);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.empty-wishlist-icon i {
    font-size: 3rem;
    color: var(--primary-gold);
}

.empty-wishlist h3 {
    font-family: 'Playfair', Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.empty-wishlist p {
    color: var(--text-medium);
    margin-bottom: 30px;
}

/* Wishlist Animation */
@keyframes fadeOutScale {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

/* ============================================
   CART PAGE STYLES
   ============================================ */
.cart-items-wrapper {
    background: white;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.cart-header {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-medium);
}

.cart-item {
    padding: 25px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.3s ease;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.cart-item-remove {
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    background: #f8f8f8;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--text-medium);
    transition: var(--transition-normal);
    z-index: 5;
}

.cart-item-remove:hover {
    background: #e74c3c;
    color: white;
}

.cart-product-image {
    width: 100px;
    height: 100px;
    background: var(--champagne);
    padding: 10px;
    flex-shrink: 0;
    margin-left: 35px;
}

.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-product-info {
    flex: 1;
}

.cart-product-category {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 5px;
    display: block;
}

.cart-product-name {
    font-family: 'Playfair', Georgia, 'Times New Roman', serif;
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.cart-product-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-medium);
}

.cart-price {
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    text-align: center;
}

.cart-quantity {
    display: flex;
    justify-content: center;
}

.quantity-selector-sm {
    transform: scale(0.85);
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Cart Summary */
.cart-summary {
    background: white;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 120px;
}

.cart-summary-title {
    font-family: 'Playfair', Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    color: var(--charcoal);
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-gold);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--text-medium);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-summary-row.discount-row {
    color: var(--primary-gold);
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal);
    border-top: 2px solid var(--charcoal);
    margin-top: 15px;
    margin-bottom: 25px;
}

/* Shipping Options */
.cart-shipping-options {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-option-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shipping-option {
    margin-bottom: 8px;
}

.shipping-option:last-child {
    margin-bottom: 0;
}

.shipping-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.shipping-radio:hover {
    border-color: var(--primary-gold);
}

.shipping-radio input[type="radio"] {
    display: none;
}

.shipping-radio input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary-gold);
}

.shipping-radio input[type="radio"]:checked + .radio-custom::after {
    transform: scale(1);
}

.shipping-radio input[type="radio"]:checked ~ .shipping-info .shipping-name {
    color: var(--charcoal);
    font-weight: 600;
}

.radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: var(--transition-normal);
}

.radio-custom::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-gold);
    transform: scale(0);
    transition: var(--transition-normal);
}

.shipping-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.shipping-name {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

.shipping-desc {
    font-size: 0.75rem;
    color: var(--text-light);
}

.shipping-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    white-space: nowrap;
}

/* Gift Packing */
.cart-gift-option {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.gift-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.gift-checkbox:hover {
    border-color: var(--primary-gold);
}

.gift-checkbox input[type="checkbox"] {
    display: none;
}

.gift-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

.gift-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    transform: scale(1);
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: var(--transition-normal);
}

.checkbox-custom::after {
    content: '\2713';
    position: absolute;
    top: -1px;
    left: 2px;
    font-size: 12px;
    color: white;
    transform: scale(0);
    transition: var(--transition-normal);
}

.gift-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gift-label {
    font-size: 0.9rem;
    color: var(--charcoal);
    font-weight: 500;
}

.gift-label i {
    color: var(--primary-gold);
    margin-right: 4px;
}

.gift-desc {
    font-size: 0.75rem;
    color: var(--text-light);
}

.gift-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    white-space: nowrap;
}

/* Coupon */
.cart-coupon {
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 10px;
}

.coupon-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 10px;
    display: block;
}

.coupon-input-group {
    display: flex;
    gap: 10px;
}

.coupon-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 0.9rem;
    text-transform: uppercase;
}

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

.coupon-btn {
    background: var(--charcoal);
    color: white;
    padding: 12px 20px;
    border: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-normal);
}

.coupon-btn:hover {
    background: var(--primary-gold);
}

.coupon-applied {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-gold-glow);
    padding: 12px 15px;
    border-radius: 5px;
}

.coupon-applied span {
    font-size: 0.85rem;
    color: var(--primary-gold-dark);
    font-weight: 500;
}

.coupon-applied i {
    margin-right: 8px;
}

.coupon-remove {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-medium);
    transition: var(--transition-normal);
}

.coupon-remove:hover {
    color: #e74c3c;
}

/* Trust Badges */
.cart-trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

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

.trust-badge i {
    font-size: 1.3rem;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 5px;
}

.trust-badge span {
    font-size: 0.7rem;
    color: var(--text-medium);
    letter-spacing: 0.05em;
}

/* Payment Methods */
.cart-payment-methods {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-payment-methods span {
    font-size: 0.75rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cart-payment-methods .payment-icon {
    height: 22px;
    width: auto;
}

.cart-payment-methods .payment-icons {
    gap: 10px;
}

/* Empty Cart */
.empty-cart {
    padding: 80px 0;
    text-align: center;
}

.empty-cart-content {
    max-width: 400px;
    margin: 0 auto;
}

.empty-cart-icon {
    width: 120px;
    height: 120px;
    background: var(--champagne);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.empty-cart-icon i {
    font-size: 3rem;
    color: var(--primary-gold);
}

.empty-cart h3 {
    font-family: 'Playfair', Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.empty-cart p {
    color: var(--text-medium);
    margin-bottom: 30px;
}

/* Cart Animations */
@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50px);
    }
}

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

/* Notification Toast */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 18px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification-success {
    border-left: 4px solid #27ae60;
}

.notification-success i {
    color: #27ae60;
    font-size: 1.3rem;
}

.notification-error {
    border-left: 4px solid #e74c3c;
}

.notification-error i {
    color: #e74c3c;
    font-size: 1.3rem;
}

.notification span {
    font-size: 0.9rem;
    color: var(--charcoal);
}

/* SweetAlert2 Theme Overrides */
.ff-swal-toast {
    font-family: var(--font-body, 'Inter', sans-serif) !important;
    font-size: 0.92rem !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
}

.ff-swal-toast .swal2-title {
    font-size: 0.92rem !important;
    font-weight: 500 !important;
    color: var(--text-primary, #1a1a1a) !important;
}

.swal2-popup.ff-swal-toast {
    padding: 10px 16px !important;
}

/* SweetAlert2 non-toast (modal) overrides */
.swal2-popup {
    font-family: var(--font-body, 'Inter', sans-serif) !important;
    border-radius: 12px !important;
}

.swal2-styled.swal2-confirm {
    background-color: var(--primary-gold, #c9a227) !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
}

.swal2-styled.swal2-confirm:hover {
    background-color: var(--primary-gold-dark, #b08d1e) !important;
}

.swal2-styled.swal2-cancel {
    border-radius: 8px !important;
}

.swal2-timer-progress-bar {
    background: var(--primary-gold, #c9a227) !important;
}

/* Added to Cart Button State */
.btn.added {
    background: #27ae60 !important;
    border-color: #27ae60 !important;
}

/* Cart Responsive */
@media (max-width: 991px) {
    .cart-summary {
        margin-top: 30px;
        position: static;
    }
}

@media (max-width: 767px) {
    .cart-items-wrapper {
        padding: 20px;
    }

    .cart-product {
        flex-direction: column;
        text-align: center;
    }

    .cart-product-image {
        margin-left: 0;
        width: 120px;
        height: 120px;
    }

    .cart-item-remove {
        top: auto;
        left: auto;
        right: 0;
        bottom: 0;
    }

    .cart-price {
        text-align: left;
        margin-top: 10px;
    }

    .cart-quantity {
        justify-content: flex-start;
        margin-top: 10px;
    }

    .cart-actions {
        flex-direction: column;
    }

    .cart-trust-badges {
        flex-wrap: wrap;
    }

    .wishlist-actions {
        flex-direction: column;
    }

    .wishlist-actions .btn-outline {
        flex: 1;
    }
}

/* ==========================================================================
   Product Detail Page Styles - Compact Version
   ========================================================================== */

/* Breadcrumb */
.breadcrumb-nav {
    font-size: 12px;
    color: #666;
}
.breadcrumb-nav a {
    color: var(--primary-gold);
    text-decoration: none;
}
.breadcrumb-nav span {
    margin: 0 6px;
    color: #999;
}

/* Product Detail Section */
.product-detail-section {
    padding: 20px 0 40px;
    background: #fff;
}

/* Product Gallery */
.product-gallery-wrapper {
    position: sticky;
    top: 80px;
}

.product-main-image-container {
    position: relative;
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}

/* Product Badges */
.product-badges-top {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
    z-index: 10;
}

.badge-bestseller, .badge-certified, .badge-sale, .badge-new {
    background: var(--primary-gold);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-sale {
    background: #c0392b;
}

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

.badge-certified {
    background: #2d6a4f;
}

/* Image Actions */
.image-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 6px;
    z-index: 10;
}

.image-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.image-action-btn:hover {
    background: var(--primary-gold);
    color: #fff;
}

.image-action-btn i {
    font-size: 14px;
}

/* Thumbnails */
.product-thumbnails {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.thumb-item {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    background: #f5f5f5;
}

.thumb-item:hover, .thumb-item.active {
    border-color: var(--primary-gold);
}

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

.thumb-video {
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-video i {
    font-size: 20px;
    color: var(--primary-gold);
}

/* Product Info */
.product-info-wrapper {
    padding-left: 20px;
}

.product-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.product-category-tag {
    font-size: 11px;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.product-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 5px 0;
    line-height: 1.3;
}

.product-sku {
    font-size: 11px;
    color: #999;
    margin: 0;
}

/* Share Dropdown */
.share-dropdown {
    position: relative;
}

.share-toggle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

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

.share-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 8px;
    display: none;
    gap: 5px;
    z-index: 100;
    margin-top: 5px;
}

.share-menu.show {
    display: flex;
}

.share-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.2s;
}

.share-link:hover {
    background: var(--primary-gold);
    color: #fff;
}

/* Rating Row */
.product-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.product-rating-row .stars {
    display: flex;
    gap: 2px;
}

.product-rating-row .stars i {
    color: #ffc107;
    font-size: 12px;
}

.rating-text {
    font-weight: 600;
    font-size: 13px;
}

.review-link {
    font-size: 12px;
    color: var(--primary-gold);
    text-decoration: none;
}

/* Price Box */
.product-price-box {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 15px;
}

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

.product-price-box .current-price {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
}

.product-price-box .original-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.discount-tag {
    background: #e74c3c;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.price-note {
    font-size: 11px;
    color: #666;
    margin: 0 0 8px;
}

.financing-row {
    font-size: 12px;
    color: #555;
    padding-top: 8px;
    border-top: 1px solid #e5e5e5;
}

.financing-row a {
    color: var(--primary-gold);
    margin-left: 8px;
}

/* Product Configuration */
.product-config {
    margin-bottom: 15px;
}

.config-row {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.config-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.config-row > label, .config-label-row label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.config-row > label i, .config-label-row label i {
    color: var(--primary-gold);
    font-size: 14px;
}

.config-row > label span, .config-label-row label span {
    color: var(--primary-gold);
    font-weight: 500;
}

.config-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.config-label-row a {
    font-size: 12px;
    color: var(--primary-gold);
    text-decoration: none;
}

/* Carat Options */
.carat-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.carat-btn {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.carat-btn:hover, .carat-btn.active {
    border-color: var(--primary-gold);
    background: #fffbf5;
}

.carat-btn .ct {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.carat-btn .price {
    display: block;
    font-size: 11px;
    color: #888;
}

.carat-btn.active .price {
    color: var(--primary-gold);
}

/* Shape Options */
.shape-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.shape-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 55px;
}

.shape-btn:hover, .shape-btn.active {
    border-color: var(--primary-gold);
    background: #fffbf5;
}

.shape-btn svg {
    width: 22px;
    height: 22px;
    color: #666;
}

.shape-btn.active svg {
    color: var(--primary-gold);
}

.shape-btn span {
    font-size: 10px;
    color: #666;
}

.shape-btn.active span {
    color: var(--primary-gold);
}

/* Metal Swatches - Compact colored squares with labels */
.metal-swatches {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.metal-swatch {
    min-width: 44px;
    height: 34px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0 6px;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.metal-swatch:hover {
    border-color: #999;
    transform: scale(1.05);
}

.metal-swatch.active {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 1px var(--primary-gold);
    transform: scale(1.05);
}

.metal-swatch-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(0,0,0,0.75);
    text-shadow: 0 1px 2px rgba(255,255,255,1), 0 0 6px rgba(255,255,255,1), 0 0 3px rgba(255,255,255,0.9);
    line-height: 1;
    letter-spacing: 0.03em;
    pointer-events: none;
}

/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
    padding: 8px;
}

.lightbox-close:hover {
    color: #fff;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-img-wrapper {
    max-width: 80vw;
    max-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.lightbox-img-wrapper img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 4px;
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 14px;
    letter-spacing: 0.1em;
}

.lightbox-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    max-width: 80vw;
    padding: 4px 0;
}

.lightbox-thumbs img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.2s;
}

.lightbox-thumbs img.active {
    border-color: var(--primary-gold);
    opacity: 1;
}

.lightbox-thumbs img:hover {
    opacity: 0.8;
}

@media (max-width: 767px) {
    .lightbox-img-wrapper {
        max-width: 95vw;
        max-height: 65vh;
    }

    .lightbox-img-wrapper img {
        max-height: 65vh;
    }

    .lightbox-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }

    .lightbox-thumbs img {
        width: 44px;
        height: 44px;
    }
}

/* Size Row */
.size-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.size-select {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: #fff;
    cursor: pointer;
}

.size-select:focus {
    border-color: var(--primary-gold);
    outline: none;
}

.sizer-link {
    font-size: 12px;
    color: var(--primary-gold);
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Engraving Row */
.engraving-row {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 12px;
}

.engraving-check {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: #333;
}

.engraving-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-gold);
}

.free-tag {
    background: #27ae60;
    color: #fff;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    margin-left: auto;
}

.engraving-input {
    display: none;
    margin-top: 10px;
}

.engraving-input.show {
    display: flex;
    align-items: center;
    gap: 8px;
}

.engraving-input input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
}

.char-count {
    font-size: 11px;
    color: #999;
}

/* ============================================
   Config Accordion
   ============================================ */
.config-accordion {
    border: 1px solid #e8e3dc;
    border-radius: 10px;
    overflow: hidden;
}

.config-acc-item {
    border-bottom: 1px solid #e8e3dc;
}

.config-acc-item:last-child {
    border-bottom: none;
}

.config-acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    cursor: pointer;
    background: #fff;
    transition: background 0.2s;
    user-select: none;
}

.config-acc-header:hover {
    background: #fffbf5;
}

.config-acc-left {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

.config-acc-left > i {
    font-size: 14px;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.swatch-mini {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.1);
}

.config-acc-title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.config-acc-value {
    font-size: 12px;
    color: var(--primary-gold);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.config-acc-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.config-acc-right a {
    font-size: 11px;
    color: var(--primary-gold);
    text-decoration: none;
    white-space: nowrap;
}

.config-acc-right a:hover {
    text-decoration: underline;
}

.config-acc-arrow {
    font-size: 12px;
    color: #999;
    transition: transform 0.3s;
}

.config-acc-item.open .config-acc-arrow {
    transform: rotate(180deg);
}

.config-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 16px;
    background: #fafafa;
}

.config-acc-item.open .config-acc-body {
    max-height: 300px;
    padding: 10px 16px 14px;
}

/* Override grid/flex sizing inside accordion */
.config-acc-body .carat-options {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}

.config-acc-body .metal-swatches {
    gap: 8px;
}

.config-acc-body .shape-btn {
    min-width: 50px;
    padding: 6px 10px;
}

.config-acc-body .carat-btn {
    padding: 8px 6px;
}

.config-acc-body .metal-swatch {
    min-width: 38px;
    height: 28px;
}

.config-acc-body .size-row {
    padding: 0;
}

.config-acc-body .config-info-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.config-info-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background: #fff;
    border: 1px solid #e0d6ca;
    border-radius: 20px;
    font-size: 12px;
    color: #555;
    font-weight: 500;
}

/* Product Actions */
.product-actions {
    margin-bottom: 15px;
}

.qty-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.qty-selector label {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.qty-controls {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.qty-controls button {
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}

.qty-controls button:hover {
    background: #e5e5e5;
}

.qty-controls input {
    width: 40px;
    height: 32px;
    border: none;
    text-align: center;
    font-size: 14px;
}

.action-btns {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.btn-add-cart {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-gold), #d4a853);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-cart:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(183, 141, 57, 0.3);
}

.btn-wishlist {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 18px;
    color: #666;
}

.btn-wishlist:hover, .btn-wishlist.active {
    border-color: #e74c3c;
    color: #e74c3c;
}

.btn-buy-now {
    width: 100%;
    padding: 12px 20px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-buy-now:hover {
    background: #333;
}

/* Info Strip */
.info-strip {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.info-item i {
    font-size: 20px;
    color: #27ae60;
}

.info-item strong {
    font-size: 13px;
    color: #27ae60;
    display: block;
}

.info-item span {
    font-size: 11px;
    color: #666;
}

.info-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid #e5e5e5;
}

.info-badges span {
    font-size: 11px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.info-badges i {
    color: var(--primary-gold);
    font-size: 12px;
}

/* Certification Strip */
.cert-strip {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 12px;
    background: #f8f8f8;
    border-radius: 8px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #666;
}

.cert-icon {
    width: 28px;
    height: 28px;
    background: var(--primary-gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
}

.cert-item i {
    font-size: 18px;
    color: var(--primary-gold);
}

/* Tabs Section */
.product-tabs-section {
    padding: 30px 0;
    background: #fafafa;
}

.tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
    overflow-x: auto;
}

.tabs-nav .tab-btn {
    padding: 12px 20px;
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: color 0.2s;
}

.tabs-nav .tab-btn:hover, .tabs-nav .tab-btn.active {
    color: var(--primary-gold);
}

.tabs-nav .tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gold);
}

.tabs-content {
    min-height: 200px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3, .tab-panel h4 {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.tab-panel p {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.feature-list li {
    padding: 8px 0;
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list li i {
    color: var(--primary-gold);
}

.highlight-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
}

.highlight-box h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.highlight-box h4 i {
    color: var(--primary-gold);
}

.highlight-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-box ul li {
    padding: 6px 0;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.highlight-box ul li:last-child {
    border-bottom: none;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table td {
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid #eee;
}

.specs-table td:first-child {
    color: #666;
    width: 40%;
}

.specs-table td:last-child {
    color: #333;
    font-weight: 500;
}

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

.shipping-list li {
    padding: 8px 0;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

/* Reviews Compact */
.reviews-wrapper {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: start;
}

.reviews-summary-compact {
    text-align: center;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #eee;
}

.reviews-summary-compact .rating-big {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
}

.reviews-summary-compact .stars-big {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin: 8px 0;
}

.reviews-summary-compact .stars-big i {
    color: #ffc107;
    font-size: 14px;
}

.reviews-summary-compact p {
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
}

.btn-write-review {
    padding: 10px 16px;
    background: var(--primary-gold);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.reviewer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info strong {
    font-size: 13px;
    color: #1a1a1a;
}

.reviewer-info .verified {
    font-size: 10px;
    color: #27ae60;
    margin-left: 6px;
}

.reviewer-info .verified i {
    font-size: 10px;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-top: 2px;
}

.review-stars i {
    color: #ffc107;
    font-size: 10px;
}

.review-date {
    font-size: 11px;
    color: #999;
}

.review-item h5 {
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.review-item p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.btn-load-more {
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    margin-top: 15px;
}

/* Related Section */
.related-section {
    padding: 40px 0;
    background: var(--champagne);
}

.related-section .section-title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 24px;
}

/* Size Chart Table */
.size-chart {
    width: 100%;
    border-collapse: collapse;
}

.size-chart th, .size-chart td {
    padding: 10px;
    text-align: center;
    border: 1px solid #eee;
    font-size: 13px;
}

.size-chart th {
    background: var(--primary-gold);
    color: #fff;
}

/* Guide Grid */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.guide-item {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
}

.guide-item h6 {
    font-size: 14px;
    color: var(--primary-gold);
    margin-bottom: 6px;
}

.guide-item p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Sticky Cart Bar */
.sticky-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
    padding: 10px 15px;
    display: none;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.sticky-cart-bar.show {
    transform: translateY(0);
}

.sticky-price {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.sticky-btn {
    padding: 10px 25px;
    background: var(--primary-gold);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Responsive */
@media (max-width: 992px) {
    .product-gallery-wrapper {
        position: static;
        margin-bottom: 20px;
    }

    .product-info-wrapper {
        padding-left: 0;
    }

    .sticky-cart-bar {
        display: flex;
    }

    .reviews-wrapper {
        grid-template-columns: 1fr;
    }

    .reviews-summary-compact {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
    }

    .reviews-summary-compact .rating-big {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 18px;
    }

    .product-price-box .current-price {
        font-size: 22px;
    }

    .carat-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .tabs-nav .tab-btn {
        padding: 10px 15px;
        font-size: 12px;
    }

    .guide-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .product-header-row {
        flex-direction: column;
        gap: 10px;
    }

    .share-dropdown {
        position: absolute;
        right: 0;
        top: 0;
    }

    .shape-options {
        justify-content: center;
    }

    .action-btns {
        flex-direction: column;
    }

    .btn-wishlist {
        width: 100%;
        height: 44px;
    }

    .cert-strip {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    /* Product Card - cleaned up, styles handled by main responsive rules above */
}

/* ============================================
   IMPROVED NAVBAR STYLES (2024)
   Based on Industry Best Practices
   ============================================ */

/* Simple Dropdown for About */
.dropdown-menu-simple {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: white;
    box-shadow: 0 15px 40px var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    border-top: 3px solid var(--primary-gold);
    z-index: 1000;
    padding: 15px 0;
}

.nav-item.has-dropdown:hover .dropdown-menu-simple {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu-simple ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu-simple ul li a {
    display: block;
    padding: 12px 25px;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.dropdown-menu-simple ul li a:hover {
    background: var(--champagne);
    color: var(--primary-gold);
    padding-left: 30px;
}

/* Featured Column Improvements */
.mega-col-featured {
    background: linear-gradient(135deg, var(--champagne) 0%, rgba(201, 169, 98, 0.1) 100%);
    display: flex;
    flex-direction: column;
    padding: 30px !important;
}

.featured-badge {
    display: inline-block;
    background: var(--primary-gold);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 12px;
    margin-bottom: 15px;
    width: fit-content;
}

.featured-title {
    font-family: 'Playfair', Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 10px;
    line-height: 1.3;
}

.featured-text {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.5;
}

.featured-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.mega-col-featured:hover .featured-img {
    transform: scale(1.03);
}

/* ============================================
   MOBILE SUBMENU STYLES
   ============================================ */
.mobile-submenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 1300;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
}

.mobile-submenu.active {
    transform: translateX(0);
}

.mobile-submenu-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--champagne);
}

.mobile-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: none;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    color: var(--charcoal);
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.mobile-back-btn:hover {
    background: var(--primary-gold);
    color: white;
}

.mobile-submenu-header h5 {
    font-family: 'Playfair', Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
    color: var(--charcoal);
    margin: 0;
}

.mobile-submenu ul {
    list-style: none;
    padding: 15px 0;
    margin: 0;
}

.mobile-submenu ul li a {
    display: block;
    padding: 14px 25px;
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: var(--transition-fast);
}

.mobile-submenu ul li a:hover {
    background: var(--champagne);
    color: var(--primary-gold);
    padding-left: 35px;
}

.mobile-submenu-section {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-medium, #888);
    padding: 12px 25px 4px;
    margin-top: 4px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.mobile-submenu-section:first-child {
    border-top: none;
    margin-top: 0;
}

.mobile-submenu-title {
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light) !important;
    padding: 20px 25px 10px !important;
    margin-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-submenu-title:first-child {
    margin-top: 0;
    border-top: none;
}

.mobile-submenu-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 15px 25px;
}

.view-all-link {
    color: var(--primary-gold) !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.view-all-link i {
    transition: transform 0.3s ease;
}

.view-all-link:hover i {
    transform: translateX(5px);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: auto;
    background: var(--champagne);
}

.mobile-footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--charcoal);
    padding: 10px 0;
}

.mobile-footer-link i {
    color: var(--primary-gold);
}

/* Mobile Menu Link with Chevron */
.mobile-menu-item.has-submenu .mobile-menu-link {
    cursor: pointer;
}

.mobile-menu-item.has-submenu .mobile-menu-link i {
    font-size: 0.75rem;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.mobile-menu-item.has-submenu .mobile-menu-link:hover i {
    color: var(--primary-gold);
    transform: translateX(3px);
}

/* ============================================
   MOBILE SEARCH OVERLAY
   ============================================ */
.mobile-search-overlay {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 1400;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.mobile-search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-search-container {
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.mobile-search-header h4 {
    font-family: 'Playfair', Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    color: var(--charcoal);
    margin: 0;
}

.mobile-search-close {
    width: 44px;
    height: 44px;
    background: var(--champagne);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--charcoal);
    transition: var(--transition-normal);
}

.mobile-search-close:hover {
    background: var(--primary-gold);
    color: white;
}

.mobile-search-box {
    position: relative;
    margin-bottom: 30px;
}

.mobile-search-input {
    width: 100%;
    padding: 18px 60px 18px 25px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-size: 1rem;
    background: var(--champagne);
    transition: var(--transition-normal);
}

.mobile-search-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: white;
    box-shadow: 0 0 0 4px var(--primary-gold-glow);
}

.mobile-search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-gold);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.mobile-search-btn:hover {
    background: var(--primary-gold-dark);
}

.mobile-search-suggestions h5 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 15px;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search-tag {
    display: inline-block;
    padding: 10px 18px;
    background: var(--champagne);
    border-radius: 25px;
    font-size: 0.85rem;
    color: var(--charcoal);
    transition: var(--transition-normal);
}

.search-tag:hover {
    background: var(--primary-gold);
    color: white;
}

/* ============================================
   RESPONSIVE NAVBAR ADJUSTMENTS
   ============================================ */
@media (max-width: 1400px) {
    .jewelry-mega {
        max-width: min(800px, 90vw);
    }

    .mega-col {
        padding: 20px 15px;
        min-width: 150px;
    }

    .nav-link {
        padding: 15px 14px;
        font-size: 0.7rem;
    }
}

@media (max-width: 1200px) {
    .jewelry-mega {
        max-width: min(700px, 90vw);
    }

    .mega-col {
        padding: 18px 12px;
        min-width: 140px;
    }

    .mega-links a {
        font-size: 0.78rem;
    }

    .nav-link {
        padding: 15px 12px;
        font-size: 0.68rem;
    }
}

@media (max-width: 991px) {
    .nav-wrapper {
        display: none;
    }

    .header-nav {
        display: none;
    }

    .mega-menu,
    .dropdown-menu-simple {
        display: none !important;
    }
}

/* Hide desktop search on mobile, show mobile search toggle */
@media (max-width: 991px) {
    .search-box {
        display: none;
    }

    #mobileSearchToggle {
        display: flex;
    }
}

@media (min-width: 992px) {
    .mobile-search-overlay {
        display: none !important;
    }

    #mobileSearchToggle {
        display: none !important;
    }
}

/* ============================================
   MOBILE RESPONSIVE FIXES (Comprehensive)
   ============================================ */

/* --- Header Icons: tighter on small screens --- */
@media (max-width: 767px) {
    .header-icons {
        gap: 2px;
    }

    .header-icon {
        width: 38px;
        height: 38px;
        font-size: 1.05rem;
    }

    .header-icon .badge {
        width: 16px;
        height: 16px;
        font-size: 0.55rem;
        top: 1px;
        right: 1px;
    }

    .logo-img {
        height: 38px;
    }

    .header-main {
        padding: 6px 0;
    }
}

@media (max-width: 400px) {
    .header-icons {
        gap: 0;
    }

    .header-icon {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    .logo-img {
        height: 32px;
    }
}

/* --- Announcement Bar: prevent overflow on mobile --- */
@media (max-width: 767px) {
    .announcement-bar {
        padding: 8px 10px;
        font-size: 0.65rem;
        letter-spacing: 0.08em;
    }

    .announcement-bar span {
        line-height: 1.4;
    }
}

@media (max-width: 400px) {
    .announcement-bar {
        font-size: 0.58rem;
        letter-spacing: 0.05em;
        padding: 6px 8px;
    }
}

/* --- Mobile Menu: fit very small screens --- */
@media (max-width: 350px) {
    .mobile-menu {
        width: 280px;
        left: -280px;
    }

    .mobile-menu.active {
        transform: translateX(280px);
    }

    .mobile-menu-link {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
}

/* --- Page Header: scale title for mobile --- */
@media (max-width: 767px) {
    .page-header {
        padding: 35px 0;
    }

    .page-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 575px) {
    .page-header {
        padding: 25px 0;
    }

    .page-title {
        font-size: 1.4rem;
    }

    .breadcrumb {
        font-size: 0.7rem;
        gap: 6px;
    }
}

/* --- Banner: extra small screen fixes --- */
@media (max-width: 575px) {
    .banner-slide,
    .banner-slide.banner-image-only,
    .banner-content,
    .min-vh-80 {
        min-height: 50vh;
    }

    .banner-title {
        font-size: 1.3rem;
    }

    .banner-label {
        font-size: 0.6rem;
        padding: 5px 12px;
        letter-spacing: 0.15em;
    }

    .banner-text {
        font-size: 0.85rem;
    }

    .banner-buttons .btn {
        padding: 10px 18px;
        font-size: 0.78rem;
    }
}

@media (max-width: 375px) {
    .banner-title {
        font-size: 1.15rem;
    }

    .hero-title {
        font-size: 1.25rem;
    }
}

/* --- Features Bar: prevent text overflow --- */
@media (max-width: 400px) {
    .feature-item span {
        font-size: 0.58rem;
        letter-spacing: 0.05em;
    }

    .feature-item i {
        font-size: 1rem;
    }
}

/* --- Contact/Info Cards: responsive padding --- */
@media (max-width: 767px) {
    .contact-info-card {
        padding: 20px 18px;
    }

    .contact-info-title {
        font-size: 1rem;
    }

    .contact-info-text {
        font-size: 0.82rem;
    }
}

/* --- Testimonials: single column on mobile --- */
@media (max-width: 767px) {
    .testimonial-text {
        font-size: 0.95rem;
    }
}

/* --- Promo Banner: smaller on mobile --- */
@media (max-width: 400px) {
    .promo-banner {
        padding: 35px 0;
    }

    .promo-title {
        font-size: 1.2rem;
    }

    .promo-text {
        font-size: 0.8rem;
    }

    .promo-label {
        font-size: 0.6rem;
        letter-spacing: 0.15em;
    }
}

/* --- Footer: responsive --- */
@media (max-width: 767px) {
    .footer {
        padding: 50px 0 20px;
    }

    .footer-logo-img {
        height: 38px;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-text {
        font-size: 0.82rem;
    }

    .footer-links a {
        font-size: 0.82rem;
    }

    .footer-contact-item span {
        font-size: 0.82rem;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
    }

    .footer-legal {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .payment-methods i {
        font-size: 1.4rem;
    }
}

@media (max-width: 575px) {
    .footer {
        padding: 35px 0 15px;
    }

    .footer-logo-img {
        height: 32px;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 12px;
        margin-top: 20px;
    }
}

/* --- Product Detail: mobile fixes --- */
@media (max-width: 767px) {
    .product-detail-section {
        padding: 10px 0 30px;
    }

    .product-thumbnails {
        gap: 6px;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
    }

    .thumb-item {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    .info-strip {
        padding: 10px;
    }

    .info-badges {
        flex-direction: column;
        gap: 6px;
    }

    .cert-strip {
        flex-wrap: wrap;
        gap: 8px;
    }

    .product-tabs-section {
        padding: 20px 0;
    }

    .specs-table td:first-child {
        width: 45%;
        font-size: 12px;
    }

    .specs-table td:last-child {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .product-title {
        font-size: 16px;
    }

    .product-price-box .current-price {
        font-size: 20px;
    }

    .product-price-box .original-price {
        font-size: 14px;
    }

    .config-acc-header {
        padding: 10px 12px;
    }

    .config-acc-title {
        font-size: 12px;
    }

    .config-acc-value {
        font-size: 11px;
        max-width: 120px;
    }

    .config-acc-body .carat-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .carat-btn .ct {
        font-size: 12px;
    }

    .carat-btn .price {
        font-size: 10px;
    }

    .metal-swatch {
        min-width: 30px;
        height: 22px;
    }

    .btn-add-cart {
        padding: 10px 14px;
        font-size: 13px;
    }

    .btn-buy-now {
        padding: 10px 14px;
        font-size: 13px;
    }

    .sticky-cart-bar {
        padding: 8px 12px;
    }

    .sticky-price {
        font-size: 16px;
    }

    .sticky-btn {
        padding: 8px 18px;
        font-size: 12px;
    }

    .size-row {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .sizer-link {
        justify-content: center;
    }
}

/* --- Cart Page: mobile fixes --- */
@media (max-width: 575px) {
    .cart-items-wrapper {
        padding: 15px;
    }

    .cart-product-image {
        width: 80px;
        height: 80px;
    }

    .cart-product-name {
        font-size: 0.95rem;
    }

    .cart-product-options {
        font-size: 0.75rem;
        gap: 8px;
    }

    .cart-summary {
        padding: 20px;
    }

    .cart-summary-title {
        font-size: 1.2rem;
    }

    .cart-summary-total {
        font-size: 1.1rem;
    }

    .coupon-input-group {
        flex-direction: column;
    }

    .coupon-btn {
        width: 100%;
    }

    .cart-trust-badges {
        gap: 10px;
    }

    .trust-badge i {
        font-size: 1.1rem;
    }

    .trust-badge span {
        font-size: 0.6rem;
    }
}

/* --- Wishlist: mobile fixes --- */
@media (max-width: 575px) {
    .empty-wishlist {
        padding: 40px 0;
    }

    .empty-wishlist-icon {
        width: 80px;
        height: 80px;
    }

    .empty-wishlist-icon i {
        font-size: 2rem;
    }

    .empty-wishlist h3 {
        font-size: 1.4rem;
    }
}

/* --- About Page: timeline mobile fix --- */
@media (max-width: 767px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px !important;
    }

    .timeline-year {
        font-size: 1.4rem;
    }

    .timeline-content {
        padding: 20px;
    }

    .about-stats {
        gap: 25px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* --- Design Studio: fix hardcoded widths --- */
@media (max-width: 767px) {
    .studio-options {
        flex-direction: column;
        align-items: center;
    }

    .studio-option-card {
        width: 100%;
        max-width: 350px;
        padding: 30px 25px;
    }

    .studio-hero-title {
        font-size: 2rem;
    }

    .studio-hero-text {
        font-size: 0.95rem;
    }

    .steps-indicator {
        flex-wrap: wrap;
        gap: 10px;
        margin: 30px 0;
    }

    .step-line {
        width: 40px;
    }

    .step-number {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .studio-hero {
        padding: 40px 0;
    }

    .studio-hero-title {
        font-size: 1.5rem;
    }

    .studio-option-card {
        padding: 25px 20px;
    }

    .studio-option-icon {
        width: 70px;
        height: 70px;
    }

    .studio-option-icon i {
        font-size: 1.8rem;
    }

    .studio-option-title {
        font-size: 1.2rem;
    }
}

/* --- Search Overlay: mobile improvements --- */
@media (max-width: 575px) {
    .search-suggestions .search-tag {
        padding: 6px 12px;
        font-size: 0.7rem;
        margin: 2px;
    }
}

/* --- Newsletter in promo section: mobile fix --- */
@media (max-width: 575px) {
    .promo-content .d-flex.gap-3 {
        gap: 8px !important;
    }

    .promo-content .btn {
        padding: 10px 16px;
        font-size: 0.78rem;
    }
}

/* --- Scroll to top: adjust for sticky cart bar on mobile --- */
@media (max-width: 992px) {
    .scroll-top {
        bottom: 70px;
    }
}

/* --- Toast notification: mobile position --- */
@media (max-width: 767px) {
    .toast-notification {
        top: auto;
        bottom: 80px;
        right: 15px;
        left: 15px;
        justify-content: center;
        font-size: 0.85rem;
        padding: 12px 18px;
    }
}

/* --- Shape filters in products page: responsive grid --- */
@media (max-width: 575px) {
    .shape-filters {
        grid-template-columns: repeat(3, 1fr);
    }

    .shape-filter {
        padding: 8px 4px;
    }

    .shape-filter svg {
        width: 24px;
        height: 24px;
    }

    .shape-filter span {
        font-size: 0.6rem;
    }
}

/* --- Pagination: mobile friendly --- */
@media (max-width: 575px) {
    .pagination {
        gap: 3px;
        margin-top: 30px;
    }

    .page-link {
        min-width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
}

/* --- Product sort toolbar: full width select on small screens --- */
@media (max-width: 400px) {
    .products-sort {
        width: 100%;
    }

    .products-sort select {
        width: 100%;
    }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--charcoal);
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    animation: slideUpCookie 0.4s ease-out;
}

@keyframes slideUpCookie {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-consent-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.cookie-consent-text i {
    font-size: 1.3rem;
    color: var(--primary-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-consent-text p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.cookie-consent-text a {
    color: var(--primary-gold);
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn-accept {
    background: var(--primary-gold);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.cookie-btn-accept:hover {
    background: var(--primary-gold-dark);
}

.cookie-btn-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.cookie-btn-decline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

@media (max-width: 767px) {
    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-text {
        flex-direction: column;
        align-items: center;
    }

    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn-accept,
    .cookie-btn-decline {
        flex: 1;
        padding: 12px 16px;
    }
}

/* ========================================
   AUTH PAGES (Login / Register / Account)
   ======================================== */

.auth-card {
    background: #fff;
    border: 1px solid var(--border-light, #e8e5e0);
    border-radius: 12px;
    padding: 35px 30px;
    height: 100%;
}

.auth-card-header {
    margin-bottom: 25px;
}

.auth-card-header h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-primary, #1a1a1a);
    margin-bottom: 6px;
}

.auth-card-header p {
    color: var(--text-medium, #666);
    font-size: 0.9rem;
    margin: 0;
}

.auth-field {
    margin-bottom: 18px;
}

.auth-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-primary, #1a1a1a);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.auth-field label span {
    color: #c9a227;
}

.auth-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-light, #e0dcd6);
    border-radius: 8px;
    padding: 0 14px;
    background: #fafaf9;
    transition: all 0.25s ease;
}

.auth-input-wrapper:focus-within {
    border-color: var(--primary-gold, #c9a227);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.08);
}

.auth-input-wrapper i {
    color: var(--text-light, #999);
    font-size: 1rem;
    flex-shrink: 0;
}

.auth-input-wrapper input {
    border: none;
    background: transparent;
    padding: 12px 10px;
    font-size: 0.92rem;
    width: 100%;
    outline: none;
    color: var(--text-primary, #1a1a1a);
}

.auth-input-wrapper input::placeholder {
    color: #bbb;
}

.auth-toggle-pass {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light, #999);
    padding: 4px;
    transition: color 0.2s;
}

.auth-toggle-pass:hover {
    color: var(--primary-gold, #c9a227);
}

.auth-error {
    display: block;
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 5px;
}

.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}

.auth-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-medium, #666);
    cursor: pointer;
}

.auth-checkbox input[type="checkbox"] {
    accent-color: var(--primary-gold, #c9a227);
    margin-top: 2px;
    flex-shrink: 0;
}

.auth-checkbox a {
    color: var(--primary-gold, #c9a227);
    text-decoration: underline;
}

.auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 24px;
    background: var(--primary-gold, #c9a227);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-btn:hover {
    background: var(--primary-gold-dark, #b08d1e);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.auth-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.auth-btn-outline {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: transparent;
    color: var(--primary-gold, #c9a227);
    border: 1.5px solid var(--primary-gold, #c9a227);
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-btn-outline:hover {
    background: var(--primary-gold, #c9a227);
    color: #fff;
}

.auth-divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-light, #e0dcd6);
}

.auth-divider span {
    background: #fff;
    padding: 0 16px;
    position: relative;
    color: var(--text-medium, #666);
    font-size: 0.85rem;
}

.auth-benefits {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light, #e0dcd6);
}

.auth-benefits h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary, #1a1a1a);
    margin-bottom: 12px;
}

.auth-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.auth-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--text-medium, #666);
}

.auth-benefits li i {
    color: var(--primary-gold, #c9a227);
    font-size: 0.95rem;
}

/* Account Dashboard */
.account-sidebar {
    background: #fff;
    border: 1px solid var(--border-light, #e8e5e0);
    border-radius: 12px;
    overflow: hidden;
}

.account-user-info {
    text-align: center;
    padding: 30px 20px 20px;
    border-bottom: 1px solid var(--border-light, #e8e5e0);
}

.account-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold, #c9a227), #e0c068);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 12px;
    letter-spacing: 1px;
}

.account-user-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 3px;
    color: var(--text-primary, #1a1a1a);
}

.account-user-info p {
    font-size: 0.82rem;
    color: var(--text-medium, #666);
    margin: 0;
    word-break: break-all;
}

.account-nav {
    padding: 10px 0;
}

.account-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-medium, #666);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.account-nav-link:hover,
.account-nav-link.active {
    color: var(--primary-gold, #c9a227);
    background: rgba(201, 162, 39, 0.04);
    border-left-color: var(--primary-gold, #c9a227);
}

.account-nav-link i {
    font-size: 1.05rem;
    width: 20px;
    text-align: center;
}

.account-nav-badge {
    margin-left: auto;
    background: var(--primary-gold, #c9a227);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
}

.account-logout-btn {
    width: 100%;
    background: none;
    cursor: pointer;
    border: none;
    border-top: 1px solid var(--border-light, #e8e5e0);
    margin-top: 5px;
    padding-top: 15px !important;
    color: #999;
    font-family: inherit;
}

.account-logout-btn:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.04);
    border-left-color: #dc3545;
}

.account-tab {
    display: none;
}

.account-tab.active {
    display: block;
}

.account-card {
    background: #fff;
    border: 1px solid var(--border-light, #e8e5e0);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 15px;
}

.account-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 5px;
    color: var(--text-primary, #1a1a1a);
}

.account-stat-card {
    background: #fff;
    border: 1px solid var(--border-light, #e8e5e0);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.account-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(201, 162, 39, 0.08);
    color: var(--primary-gold, #c9a227);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.account-stat-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-primary, #1a1a1a);
}

.account-stat-card p {
    font-size: 0.8rem;
    color: var(--text-medium, #666);
    margin: 0;
}

.account-quick-link {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.2s;
}

.account-quick-link:hover {
    border-color: var(--primary-gold, #c9a227);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.account-quick-link > i:first-child {
    font-size: 1.4rem;
    color: var(--primary-gold, #c9a227);
    flex-shrink: 0;
}

.account-quick-link > i:last-child {
    margin-left: auto;
    color: var(--text-light, #999);
}

.account-quick-link div h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.account-quick-link div p {
    font-size: 0.82rem;
    color: var(--text-medium, #666);
    margin: 0;
}

/* Auth responsive */
@media (max-width: 991px) {
    .auth-card {
        padding: 28px 22px;
    }

    .account-sidebar {
        margin-bottom: 15px;
    }

    .account-nav {
        display: flex;
        flex-wrap: wrap;
        padding: 10px;
        gap: 4px;
    }

    .account-nav-link {
        padding: 10px 14px;
        border-left: none;
        border-radius: 8px;
        font-size: 0.82rem;
        gap: 6px;
    }

    .account-nav-link:hover,
    .account-nav-link.active {
        border-left: none;
        background: rgba(201, 162, 39, 0.08);
    }

    .account-logout-btn {
        border-top: none;
        margin-top: 0;
        padding-top: 10px !important;
    }

    .account-user-info {
        padding: 20px 15px 15px;
    }

    .account-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .account-card {
        padding: 22px 18px;
    }
}

@media (max-width: 575px) {
    .auth-card {
        padding: 24px 18px;
        border-radius: 10px;
    }

    .auth-card-header h2 {
        font-size: 1.35rem;
    }

    .account-stat-card {
        padding: 16px;
    }

    .account-stat-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}
