/* ==================== TANISHQ-INSPIRED DESIGN SYSTEM ==================== */

/* CSS Variables - Clean & Minimal Palette */
:root {
    /* Colors - Inspired by Tanishq */
    --white: #FFFFFF;
    --cream: #FAF9F7;
    --light-gray: #F5F5F5;
    --border-color: #E8E8E8;
    --text-dark: #1A1A1A;
    --text-primary: #2C2C2C;
    --text-secondary: #666666;
    --text-light: #999999;
    --gold: #C9A961;
    --gold-light: #D4B574;
    --gold-dark: #B8984E;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    /* Transitions */
    --transition: 0.3s ease;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

    /* Theme Specific */
    --theme-bg: var(--white);
    --theme-accent: var(--gold);
    --theme-accent-hover: var(--gold-dark);
    --theme-shadow: var(--shadow-md);
    --theme-radius: 2px;
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    font-size: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body>* {
    font-size: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul,
ol {
    list-style: none;
}

/* ==================== TYPOGRAPHY ==================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.875rem;
}

p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== UTILITIES ==================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-2xl) 0;
}

.section-sm {
    padding: var(--space-xl) 0;
}

.text-center {
    text-align: center;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--theme-radius);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold);
}

.btn-outline {
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--white);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background: var(--gold-dark);
}

/* ==================== HEADER ==================== */
.top-bar {
    background: var(--cream);
    border-bottom: 1px solid var(--border-color);
    padding: 4px 0;
    margin-top: 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.gold-rates {
    display: flex;
    gap: var(--space-md);
}

.gold-rates span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.gold-rates i {
    color: var(--gold);
    font-size: 0.875rem;
}

.top-links {
    display: flex;
    gap: var(--space-md);
}

.top-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
}

.top-links a:hover {
    color: var(--gold);
}

.header {
    background: var(--white);
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    gap: var(--space-lg);
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo span {
    color: var(--gold);
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 5px;
}

.search-box {
    flex: 1;
    max-width: 500px;
}

.search-box form {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 0.875rem;
    background: var(--light-gray);
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box button:hover {
    background: var(--gold-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.header-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-primary);
    transition: var(--transition);
}

.header-action i {
    font-size: 1.25rem;
}

.header-action span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-action:hover {
    color: var(--gold);
}

/* Account Dropdown */
.account-dropdown {
    position: relative;
}

.auth-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 0;
    padding-top: 20px;
    display: none;
    z-index: 1001;
    margin-top: 0;
}

/* Bridge element to prevent dropdown from closing */
.account-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

.account-dropdown:hover .auth-dropdown-menu {
    display: block;
}

.auth-dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: var(--text-primary);
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
}

.auth-dropdown-menu a i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    color: var(--gold);
    font-size: 1rem;
}

.auth-dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--gold);
}

.auth-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -7px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-left: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    transform: rotate(45deg);
}

.header-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none !important;
    color: inherit;
}

.header-action .badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    background: var(--gold);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 18px;
    text-align: center;
    padding: 0;
    box-sizing: border-box;
}

/* Navigation */
.nav {
    background: var(--white);
    border-bottom: none;
    position: relative;
}

.nav-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 2px 0;
    flex-wrap: nowrap;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-dark);
    padding: 8px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-link i {
    font-size: 0.95rem;
    color: #777;
    transition: var(--transition);
}


.nav-link:hover,
.has-mega-menu:hover>.nav-link {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.nav-link:hover i,
.has-mega-menu:hover>.nav-link i {
    color: var(--gold);
}

/* Mega Menu */
.has-mega-menu {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mega Menu Wrapper - 4 Column Layout */
.mega-menu-wrapper {
    display: grid;
    grid-template-columns: 180px 1fr 300px;
    gap: 40px;
}

/* Left Sidebar */
.mega-menu-sidebar {
    background: var(--cream);
    border-radius: 12px;
    padding: 20px 16px;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list li {
    padding: 10px 16px;
    margin-bottom: 4px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.filter-list li:hover {
    background: rgba(255, 255, 255, 0.5);
    color: var(--text-primary);
}

.filter-list li.active {
    background: var(--white);
    color: var(--text-primary);
    font-weight: 500;
}

/* Center Main Content */
.mega-menu-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Grid Layout */
.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 28px;
}

.mega-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
    padding: 2px;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.mega-grid-item:hover {
    transform: translateY(-3px);
}

.mega-grid-item .mega-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mega-grid-item:hover .mega-icon {
    background: var(--gold);
    transform: scale(1.1);
}

.mega-grid-item .mega-icon i {
    font-size: 1.125rem;
    color: var(--gold);
    transition: color 0.2s ease;
}

.mega-grid-item:hover .mega-icon i {
    color: var(--white);
}

.mega-grid-item span {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 400;
}

.mega-grid-item:hover span {
    color: var(--gold);
    font-weight: 500;
}

/* CTA Banner */
.mega-menu-cta {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border-color);
}

.cta-images {
    display: flex;
    gap: 8px;
}

.cta-images img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-content {
    flex: 1;
}

.cta-content h5 {
    font-size: 1rem;
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.cta-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.cta-button {
    background: var(--gold);
    color: var(--white);
    padding: 10px 28px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: var(--gold-dark);
    transform: scale(1.05);
}

/* Right Promotional Section */
.mega-menu-promo {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.promo-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-content h4 {
    font-size: 0.975rem;
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.promo-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.promo-link {
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.promo-link:hover {
    gap: 10px;
}

.promo-link i {
    font-size: 0.75rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.75rem;
}


/* ==================== HERO SLIDER ==================== */
.hero {
    position: relative;
    overflow: visible;
    padding: 0 var(--space-md);
}

.hero-slider {
    position: relative;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
    border-radius: 16px;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    object-position: center;
}

.hero-img-top {
    object-position: top !important;
}

.hero-img-bottom {
    object-position: bottom !important;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    /* Move to the left */
    transform: translateY(-50%);
    text-align: left;
    /* Left align text */
    color: var(--white);
    z-index: 2;
    max-width: 550px;
    padding: var(--space-xl);
    background: rgba(15, 15, 15, 0.4);
    /* Glassmorphism backing */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    animation: contentFadeUp 1s ease forwards;
}

.hero-content-right {
    left: auto;
    right: 8%;
}

@keyframes contentFadeUp {
    from {
        opacity: 0;
        transform: translateY(-40%);
    }

    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    /* Bolder for modern look */
    margin-bottom: var(--space-sm);
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.hero-controls {
    position: absolute;
    bottom: 30px;
    left: 8%;
    display: flex;
    gap: 12px;
    z-index: 3;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide:nth-child(2).active~.hero-controls,
.hero-slide:nth-child(5).active~.hero-controls {
    left: auto;
    right: 8%;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .hero-content {
        left: 5%;
        right: 5%;
        max-width: 90%;
        padding: var(--space-md);
        text-align: center;
        background: rgba(15, 15, 15, 0.6);
        /* Darker for mobile readability */
    }

    .hero-content h2 {
        font-size: 2.25rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-controls {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

h2.section-title,
.section-title {
    font-size: 2.5rem !important;
    font-weight: 600 !important;
    margin-bottom: 8px;
    color: var(--text-dark);
    line-height: 1.2;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* ==================== CATEGORY ICONS ==================== */
.category-icons {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    padding: var(--space-md) 0;
    scrollbar-width: none;
}

.category-icons::-webkit-scrollbar {
    display: none;
}

.category-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    min-width: 100px;
    cursor: pointer;
    transition: var(--transition);
}

.category-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition);
}

.category-icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-icon-item:hover .category-icon-circle {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.category-icon-item h4 {
    font-size: 0.8125rem;
    font-weight: 500;
    text-align: center;
}

/* ==================== GRID LAYOUTS ==================== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-sm);
}

/* ==================== PRODUCT CARDS ==================== */
.product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-wishlist {
    opacity: 1;
}

.product-wishlist:hover {
    background: var(--gold);
    color: var(--white);
}

.product-info {
    padding: var(--space-md);
}

.product-info h3 {
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.product-price {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.price-current {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.price-original {
    font-size: 0.9375rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.btn-add-cart {
    width: 100%;
    padding: 12px;
    background: var(--text-primary);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2px;
    transition: var(--transition);
}

.btn-add-cart:hover {
    background: var(--gold);
}

/* ==================== BANNER CARDS ==================== */
.banner-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.banner-card:hover img {
    transform: scale(1.05);
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--white);
}

.banner-overlay h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: var(--space-xs);
    color: var(--white);
}

.banner-overlay p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== SCROLL REVEAL ANIMATIONS ==================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .hero-slider {
        height: 350px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .nav-list {
        gap: var(--space-md);
        overflow-x: auto;
    }

    .header-actions {
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 280px;
    }

    .hero {
        padding: 0 var(--space-sm);
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .grid-6 {
        grid-template-columns: 1fr;
    }

    .section {
        padding: var(--space-xl) 0;
    }
}

/* ==================== VIDEO SECTION ==================== */
.video-section {
    position: relative;
    height: 500px;
    background-color: var(--text-primary);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: var(--transition);
}

.video-section:hover .video-bg {
    transform: scale(1.05);
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 600px;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.play-btn i {
    font-size: 24px;
    color: var(--white);
    margin-left: 4px;
}

.play-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.play-btn:hover i {
    color: var(--text-primary);
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-card {
    background: var(--cream);
    padding: var(--space-lg);
    border-radius: 4px;
    text-align: center;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.stars {
    color: var(--gold);
    margin-bottom: var(--space-sm);
    font-size: 0.875rem;
}

.testimonial-text {
    font-size: 1rem;
    font-family: var(--font-serif);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    font-style: italic;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 8px;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ==================== BLOG CARDS ==================== */
.blog-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: var(--space-md) 0;
}

.blog-meta {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: var(--space-sm);
}

.read-more {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.read-more:hover {
    color: var(--gold-dark);
}

/* ==================== ASSURANCE ==================== */
.assurance-item {
    text-align: center;
    padding: var(--space-md);
    transition: var(--transition);
}

.assurance-item:hover {
    transform: translateY(-5px);
}

.assurance-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.assurance-icon i {
    font-size: 2.5rem;
    color: var(--gold);
}

.assurance-item h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

/* ==================== INSTAGRAM ==================== */
.instagram-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.instagram-overlay i {
    color: var(--white);
    font-size: 1.5rem;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

/* ==================== GOLD SAVINGS PLAN ==================== */
.savings-plan {
    background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
    color: var(--gold);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.savings-content {
    padding: var(--space-xl);
    flex: 1;
    max-width: 60%;
    z-index: 2;
}

.savings-content h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.savings-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

.savings-image {
    flex: 1;
    height: 400px;
    position: relative;
}

.savings-image img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.btn-savings {
    background: var(--gold);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    transition: var(--transition);
}

.btn-savings:hover {
    background: var(--white);
    color: var(--text-primary);
}

/* ==================== WEDDING EDIT ==================== */
.wedding-edit-card {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.wedding-edit-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.wedding-edit-card:hover img {
    transform: scale(1.1);
}

.wedding-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    color: var(--white);
    text-align: center;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.wedding-edit-card:hover .wedding-content {
    transform: translateY(0);
    padding-bottom: 50px;
}

.wedding-content h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 12px;
    font-family: var(--font-serif);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.wedding-content span {
    display: inline-block;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--gold);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

/* ==================== GIFTING STUDIO ==================== */
.gifting-grid {
    display: grid;
    grid-template-areas:
        "main r1c2 r1c3"
        "main r2c2 r2c3";
    gap: var(--space-md);
    height: 500px;
}

.gift-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.gift-card.main {
    grid-area: main;
}

.gift-card:nth-child(2) {
    grid-area: r1c2;
}

.gift-card:nth-child(3) {
    grid-area: r1c3;
}

.gift-card:nth-child(4) {
    grid-area: r2c2;
}

.gift-card:nth-child(5) {
    grid-area: r2c3;
}

.gift-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gift-card:hover img {
    transform: scale(1.1);
}

.gift-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}

.gift-card:hover .gift-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.gift-overlay h4 {
    color: var(--white);
    font-size: 1.5rem;
    font-family: var(--font-serif);
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--white);
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    transition: all 0.4s ease;
}

.gift-card:hover .gift-overlay h4 {
    background: var(--white);
    color: var(--black);
    transform: scale(1.05);
}




/* ==================== VIRTUAL TRY-ON ==================== */
.try-on-section {
    background: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.try-on-container {
    display: flex;
    align-items: center;
    min-height: 400px;
}

.try-on-content {
    flex: 1;
    padding: var(--space-2xl);
    z-index: 2;
}

.try-on-image {
    flex: 1;
    height: 500px;
    position: relative;
}

.try-on-image img {
    position: absolute;
    bottom: 0;
    right: 0;
    max-height: 100%;
    width: auto;
}

.app-buttons {
    display: flex;
    gap: 16px;
    margin-top: var(--space-lg);
}

.app-btn {
    background: var(--text-primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    transition: var(--transition);
}

.app-btn:hover {
    background: var(--gold);
}

/* ==================== GOLD SAVINGS PLAN (Jar-Inspired Redesign) ==================== */
.savings-v3-section {
    padding: var(--space-2xl) 0;
    background: #fff;
}

.savings-v3-container {
    background: #0f0f0f;
    border-radius: 32px;
    padding: 50px 60px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 50px;
}

.investment-tabs-wrapper {
    width: 100%;
    /* Keep a subtle divider but less space */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.investment-tabs {
    display: flex;
    gap: 12px;
}

/* Background Subtle Glow */
.savings-v3-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.savings-v3-content {
    flex: 1.2;
    position: relative;
    z-index: 2;
}

.savings-v3-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.savings-v3-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
}

.savings-v3-title {
    font-size: 2.8rem;
    /* Reduced from 3.5rem */
    font-family: var(--font-serif);
    margin-bottom: 15px;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Tab Navigation */
.investment-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 8px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: relative;
    z-index: 10;
}

.investment-tabs::-webkit-scrollbar {
    display: none;
}

.investment-tab-btn {
    background: #f0f0f0;
    /* Slightly darker background for better contrast */
    border: 1px solid #ddd;
    color: #444;
    /* Darker text for visibility on light cream */
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    /* Bolder */
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    white-space: nowrap;
}

.investment-tab-btn.active {
    background: var(--gold);
    color: var(--text-primary);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.investment-tab-btn:hover:not(.active) {
    background: #eee;
    color: var(--text-primary);
}

/* Tab Panes */
.investment-pane {
    display: none;
    width: 100%;
    /* Ensure it takes full width when visible */
    animation: fadeIn 0.5s ease;
}

.investment-pane.active {
    display: flex;
    flex: 1;
    /* Expand to fill parent flex container */
    align-items: center;
    gap: 40px;
}

/* Old Bar visuals removed as images are used now */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Silver Specific Styling */
.silver-glow {
    background: radial-gradient(circle, rgba(192, 192, 192, 0.15) 0%, transparent 70%) !important;
}

.silver-asset {
    filter: grayscale(1) brightness(1.3) drop-shadow(0 20px 50px rgba(255, 255, 255, 0.2)) !important;
}

.silver-text {
    background: linear-gradient(135deg, #fff 0%, #888 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.silver-badge {
    color: #c0c0c0 !important;
    border-color: rgba(192, 192, 192, 0.2) !important;
}

.btn-silver-primary {
    background: #e0e0e0 !important;
    color: #111 !important;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1) !important;
}

.btn-silver-primary:hover {
    background: #fff !important;
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2) !important;
}

/* Copper Specific Styling */
.copper-glow {
    background: radial-gradient(circle, rgba(184, 115, 51, 0.2) 0%, transparent 70%) !important;
}

.copper-asset {
    filter: sepia(0.8) saturate(3) hue-rotate(-20deg) brightness(0.9) drop-shadow(0 20px 50px rgba(184, 115, 51, 0.4)) !important;
}

.copper-text {
    background: linear-gradient(135deg, #fff 0%, #b87333 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.copper-badge {
    color: #cd7f32 !important;
    border-color: rgba(205, 127, 50, 0.2) !important;
}

.btn-copper-primary {
    background: #b87333 !important;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(184, 115, 51, 0.2) !important;
}

.btn-copper-primary:hover {
    background: #cd7f32 !important;
    box-shadow: 0 15px 30px rgba(184, 115, 51, 0.4) !important;
}

.savings-v3-desc {
    font-size: 1rem;
    /* Reduced from 1.125rem */
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.6;
}

.savings-v3-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
}

.v3-step {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.v3-step-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
}

.v3-step-text h5 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--white);
}

.v3-step-text p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
}

.savings-v3-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-v3-primary {
    background: var(--gold);
    color: var(--text-primary);
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-v3-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
    background: #e5bd3d;
}

.live-rate-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.05);
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.rate-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 12px #22c55e;
    animation: pulse-green 2s infinite;
}

.live-rate-pill span {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
}

.savings-v3-visual {
    flex: 0.8;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* --- Investment Visual Transparency Logic --- */
.gullak-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float-v3 6s ease-in-out infinite;
    margin: 0 auto;
}

.gullak-visual img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    mix-blend-mode: screen;
    /* Removes black backgrounds seamlessly */
    transition: var(--transition);
}

/* Specific centering for subjects (Original Colors, Zoomed) */
#gold-pane .gullak-visual img {
    filter: brightness(1.05) contrast(1.05);
    /* subtle pop without color shift */
    mix-blend-mode: normal;
    transform: scale(1.2) translateY(-10%);
    /* Zoom into pendant and center vertically */
}

#silver-pane .gullak-visual img {
    filter: brightness(1.05) contrast(1.05);
    mix-blend-mode: normal;
    transform: scale(1.0) translateY(-5%);
    /* Zoom into bars and center */
}

#copper-pane .gullak-visual img {
    /* If copper is on white, use the inversion trick too */
    filter: invert(1) hue-rotate(180deg) brightness(1.5) contrast(1.2);
    mix-blend-mode: screen;
    transform: scale(1.1);
}

/* Enhanced Metal Glows */
#gold-pane .gullak-glow {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 75%);
}

#silver-pane .gullak-glow {
    background: radial-gradient(circle, rgba(192, 192, 192, 0.2) 0%, transparent 75%);
}

#copper-pane .gullak-glow {
    background: radial-gradient(circle, rgba(184, 115, 51, 0.4) 0%, transparent 75%);
}

/* ==================== JEWELLERY LISTING PAGE ==================== */
.listing-page {
    background: #fdfbf7;
    padding-bottom: 80px;
}

.breadcrumb-nav {
    padding: 20px 0;
    border-bottom: 1px solid #f0e6d6;
    background: #fff;
    margin-bottom: 40px;
}

.breadcrumb-nav a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
}

.breadcrumb-nav span {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.listing-main {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar Filters */
.listing-sidebar {
    background: #fff;
    border: 1px solid #f0e6d6;
    border-radius: 8px;
    padding: 25px;
    position: sticky;
    top: 100px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1.5px solid #f0e6d6;
}

.filter-header h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: #1a1a1a;
}

.clear-filters {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.filter-group {
    margin-bottom: 20px;
    border-bottom: 1px solid #f9f3e9;
    padding-bottom: 20px;
}

.filter-group.active .filter-title i {
    transform: rotate(180deg);
}

.filter-options {
    margin-top: 15px;
    display: none;
    flex-direction: column;
    gap: 12px;
}

.filter-group.active .filter-options {
    display: flex;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
    transition: color 0.2s;
}

.filter-checkbox:hover {
    color: var(--gold);
}

.filter-checkbox input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.filter-checkbox input:checked {
    background: var(--gold);
    border-color: var(--gold);
}

.filter-checkbox input:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.filter-checkbox input:hover {
    border-color: var(--gold);
}

/* Price Range Inputs */
.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.listing-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background: #fff;
    padding: 15px 25px;
    border: 1px solid #f0e6d6;
    border-radius: 8px;
}

.product-count span {
    font-size: 0.9rem;
    color: #666;
}

.listing-sort select {
    padding: 8px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
    background: #fff;
}

.no-results {
    text-align: center;
    padding: 100px 0;
    background: #fff;
    border-radius: 12px;
    border: 1px dashed #d1c1a1;
}

@media (max-width: 1024px) {
    .listing-main {
        grid-template-columns: 1fr;
    }

    .listing-sidebar {
        display: none;
        /* Hide for now, can be turned into a drawer later */
    }
}

/* Cleanup redundant styles */
.metal-bar,
.bar-shine,
.gold-bar,
.silver-bar,
.copper-bar {
    display: none !important;
}

.gullak-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    z-index: -1;
}

@keyframes float-v3 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 1100px) {
    .savings-v3-title {
        font-size: 2.8rem;
    }

    .savings-v3-container {
        gap: 40px;
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .savings-v3-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .savings-v3-desc {
        margin: 0 auto 40px;
    }

    .savings-v3-pills {
        justify-content: center;
    }

    .savings-v3-steps {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: left;
    }

    .v3-step {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .savings-v3-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-v3-primary {
        width: 100%;
        text-align: center;
    }

    .gullak-visual {
        max-width: 280px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .savings-plan {
        flex-direction: column;
        padding-bottom: 0;
    }

    .savings-content {
        max-width: 100%;
        text-align: center;
    }

    .savings-image {
        width: 100%;
        height: 250px;
    }

    .savings-image img {
        clip-path: none;
    }

    .gifting-grid {
        grid-template-areas:
            "main main"
            "r1c2 r1c3"
            "r2c2 r2c3";
        height: auto;
    }

    .gift-card.main {
        height: 300px;
    }

    .gift-card:not(.main) {
        height: 200px;
    }

    .try-on-container {
        flex-direction: column;
    }

    .try-on-image {
        height: 300px;
        width: 100%;
    }

    .try-on-image img {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .video-section {
        height: 350px;
    }
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.8);
    margin-top: var(--space-3xl);
}

.footer-top {
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
    font-family: var(--font-primary);
}

.footer-col p {
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: var(--space-sm);
    color: rgba(255, 255, 255, 0.7);
}

.footer-col p i {
    color: var(--gold);
    margin-right: 8px;
    width: 16px;
}

.social-icons {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-icons a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.newsletter-form {
    display: flex;
    margin-top: var(--space-sm);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.875rem;
    border-radius: 2px 0 0 2px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 12px 24px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0 2px 2px 0;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--gold-dark);
}

.footer-bottom {
    padding: var(--space-md) 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--gold);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: var(--space-lg);
    }

    .footer-col:nth-child(4),
    .footer-col:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }

    .footer-about {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-about {
        grid-column: span 1;
    }

    .gifting-grid {
        grid-template-areas:
            "main"
            "r1c2"
            "r1c3"
            "r2c2"
            "r2c3";
    }
}

/* Category Icons Slider */
.category-section {
    padding: 30px 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.category-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-slider-container {
    overflow: hidden;
    width: 100%;
}

.category-slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding: 10px 5px;
    /* Add padding for shadow visibility */
}

.category-icon-item {
    flex: 0 0 auto;
    width: 120px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.category-icon-item:hover {
    transform: translateY(-5px);
    opacity: 1;
}

.category-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon-item:hover .category-icon-circle {
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(180, 154, 86, 0.2);
}

.category-icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-icon-item:hover .category-icon-circle img {
    transform: scale(1.1);
}

.category-icon-item h4 {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
    transition: color 0.3s ease;
}

.category-icon-item:hover h4 {
    color: var(--gold);
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    z-index: 2;
}

.slider-arrow:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(180, 154, 86, 0.3);
}

@media (max-width: 768px) {
    .category-slider-track {
        gap: 20px;
    }

    .category-icon-item {
        width: 90px;
    }

    .category-icon-circle {
        width: 80px;
        height: 80px;
    }

    .category-icon-item h4 {
        font-size: 13px;
    }
}

/* ==================== NEW ARRIVALS REDESIGN ==================== */
.product-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 10px;
}

.product-card-new {
    background: #fff;
    border-radius: 8px;
    /* Slightly more squared/clean */
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    /* Very subtle shadow */
    transition: all 0.3s ease;
    border: 1px solid #f5f5f5;
}

.product-card-new:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    /* Lift effect */
    transform: translateY(-5px);
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: #fff;
    border: 1px solid #eee;
    /* Subtle border */
    border-radius: 4px;
    /* Rounded square like standard e-com */
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s;
}

.wishlist-btn:hover {
    color: #e74c3c;
    border-color: #e74c3c;
}

.product-image-new {
    width: 100%;
    aspect-ratio: 1/1;
    /* Square image */
    background: #fdfdfd;
    /* Very light bg for image */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    /* Padding for the product inside */
}

.product-image-new img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card-new:hover .product-image-new img {
    transform: scale(1.05);
    /* Subtle zoom */
}

.product-content {
    padding: 15px;
    background: #f9f9f9;
    /* Light gray background for content area as per request */
}

.product-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-weight {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #777;
    margin-bottom: 15px;
}

.product-weight i {
    color: #aaa;
    /* Check icon color */
    font-size: 10px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-footer .price {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    /* Bold black price */
}

/* Global Price Styling */
.price-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.old-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

.add-to-cart-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #FF6B6B;
    /* Reddish-orange color */
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #ff5252;
    transform: scale(1.1);
}

.add-to-cart-btn.golden {
    background: var(--gold);
    box-shadow: 0 4px 10px rgba(180, 154, 86, 0.4);
}

.add-to-cart-btn.golden:hover {
    background: #8e793e;
}

.add-to-cart-btn i {
    font-size: 14px;
}

/* Responsive Grid for New Arrivals */
@media (max-width: 992px) {
    .product-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .product-grid-new {
        grid-template-columns: 1fr;
    }
}

/* ==================== STATIC PAGE STYLES ==================== */
.page-header {
    background: #F8F8F8;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--text-secondary);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    margin: 0 5px;
}

.page-content {
    padding-bottom: 80px;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

.content-container p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

.content-container h2 {
    margin: 30px 0 20px;
    font-size: 1.8rem;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-box {
    background: #F9F9F9;
    padding: 30px;
    border-radius: 8px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Guides Styles */
.guide-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.guide-nav-link {
    padding: 8px 20px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.guide-nav-link:hover,
.guide-nav-link.active {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

/* ==================== FEATURED COLLECTIONS REDESIGN ==================== */
.featured-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: var(--space-md);
}

.featured-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.featured-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-item:hover img {
    transform: scale(1.1);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-md);
    opacity: 1;
    transition: var(--transition);
}

.featured-overlay h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-family: var(--font-serif);
    margin-bottom: 4px;
    transform: translateY(0);
    transition: var(--transition);
}

.featured-item.large .featured-overlay h3 {
    font-size: 2rem;
}

.featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.featured-meta .price {
    font-weight: 600;
    color: var(--gold-light);
    font-size: 1.1rem;
}

.featured-meta .old-price {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    margin-left: 8px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .featured-showcase {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .featured-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 600px) {
    .featured-showcase {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .featured-item.large {
        grid-column: span 1;
        grid-row: span 1;
        height: 350px;
    }
}

/* ==================== MORE COLLECTION ==================== */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.collection-card {
    position: relative;
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.collection-card:hover {
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.collection-card:hover img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0.9;
    transition: var(--transition);
}

.collection-content {
    transform: translateY(20px);
    transition: var(--transition);
}

.collection-card:hover .collection-content {
    transform: translateY(0);
}

.collection-content h3 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 8px;
    font-family: var(--font-serif);
    letter-spacing: 0.5px;
}

.collection-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 0;
    opacity: 0.8;
    transition: var(--transition);
}

.collection-card:hover .collection-content p {
    opacity: 1;
    color: var(--gold-light);
}

/* Add a decorative line on hover */
.collection-content::before {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--gold);
    margin-bottom: 12px;
    transition: width 0.4s ease;
}

.collection-card:hover .collection-content::before {
    width: 60px;
}

@media (max-width: 992px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .collection-grid {
        grid-template-columns: 1fr;
    }

    .collection-card {
        height: 350px;
    }
}

/* ==================== FEATURED COLLECTIONS (Top Section) ==================== */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.featured-banner-card {
    position: relative;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.featured-banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.featured-banner-card:hover img {
    transform: scale(1.05);
}

.banner-overlay-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    top: auto;
    background: rgba(15, 15, 15, 0.75);
    /* Darker backdrop */
    backdrop-filter: blur(12px);
    /* Blur for glass effect */
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    border-radius: 4px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    transition: var(--transition);
}

.banner-overlay-content h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 8px;
    font-family: var(--font-serif);
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
}

.banner-overlay-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    max-width: 100%;
    transform: translateY(0);
}

/* Hover Effect: Card rises slightly or border glows */
.featured-banner-card:hover .banner-overlay-content {
    background: rgba(15, 15, 15, 0.9);
    border-color: rgba(201, 169, 97, 0.4);
    /* Gold hint */
    transform: translateY(-5px);
}

.featured-banner-card:hover .banner-overlay-content h3,
.featured-banner-card:hover .banner-overlay-content p {
    transform: translateY(0);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
    width: fit-content;
    transition: var(--transition);
    opacity: 1;
}

.btn-link:hover {
    color: var(--white);
    border-bottom-color: var(--white);
    gap: 15px;

    .banner-overlay-content h3 {
        font-size: 1.5rem;
    }
}

/* ==================== VIRTUAL TRY-ON (Redesigned) ==================== */
.virtual-tryon-section {
    background: linear-gradient(135deg, #FBFBFB 0%, #F5F0E6 100%);
    /* Soft warm tech bg */
    padding: var(--space-2xl) 0;
    overflow: hidden;
}

.tryon-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

/* Left Image Column */
.tryon-image-col {
    flex: 1;
    position: relative;
}

.tryon-image-frame {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: var(--white);
    padding: 12px;
    /* Frame border effect */
    transform: perspective(1000px) rotateY(2deg);
    transition: transform 0.5s ease;
}

.tryon-image-frame:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.tryon-image-frame img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.floating-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 0.9rem;
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    color: var(--gold);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Right Content Column */
.tryon-content-col {
    flex: 1;
    padding-left: var(--space-lg);
}

.tryon-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.tryon-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 90%;
}

.tryon-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* App Buttons */
.app-buttons {
    display: flex;
    gap: 16px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--text-primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid transparent;
}

.app-btn:hover {
    background: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.app-btn.apple:hover {
    background: #000;
}

.app-btn.google:hover {
    background: #333;
}

.app-btn i {
    font-size: 1.75rem;
}

.app-btn div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-btn div small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.app-btn div strong {
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 992px) {
    .tryon-wrapper {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .tryon-content-col {
        padding-left: 0;
        text-align: center;
    }

    .tryon-desc {
        margin: 0 auto var(--space-xl);
    }

    .floating-badge {
        left: 0;
        top: -15px;
    }

    .tryon-features {
        align-items: center;
        text-align: left;
    }

    .feature-item {
        width: fit-content;
    }

    .app-buttons {
        justify-content: center;
    }
}

/* ==================== VIDEO CAMPAIGN (Redesigned) ==================== */
.video-section-redesigned {
    padding: 0;
    position: relative;
    height: 600px;
    background: #000;
}

.video-container {
    padding: 0;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.video-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.video-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.video-content-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    z-index: 2;
}

.video-text-box {
    max-width: 600px;
    color: var(--white);
}

.video-subtitle {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 600;
}

.video-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.1;
    font-family: var(--font-serif);
}

.video-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 500px;
}

.video-play-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.play-btn-large {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    position: relative;
}

.play-btn-large:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.1);
}

.play-btn-large .ripple {
    position: absolute;
    inset: -20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

.play-label {
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 900px) {
    .video-content-wrapper {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 60px;
    }

    .video-overlay-gradient {
        background: rgba(0, 0, 0, 0.65);
        /* More darken on mobile */
    }

    .video-text-box {
        margin: 0 auto;
    }

    .video-title {
        font-size: 2.5rem;
    }

    .video-desc {
        margin: 0 auto;
    }
}



@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-banner-card {
        height: 300px;
    }

    .banner-overlay-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 20px;
    }

    .banner-overlay-content h3 {
        font-size: 1.5rem;
    }
}

/* ==================== INSTAGRAM FEED (Redesigned) ==================== */
.instagram-feed-section {
    padding: var(--space-2xl) 0;
    text-align: center;
    background: #fff;
}

.insta-header {
    margin-bottom: 40px;
}

.insta-logo {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.insta-title {
    font-size: 2rem;
    font-family: var(--font-serif);
    margin-bottom: 8px;
    color: var(--text-primary);
}

.insta-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 5 columns by default */
    gap: 0;
    /* Seamless grid */
    overflow: hidden;
}

.insta-item {
    position: relative;
    aspect-ratio: 1/1;
    /* Perfect Square */
    overflow: hidden;
    cursor: pointer;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.insta-overlay i {
    font-size: 2rem;
    color: var(--white);
    transform: scale(0.8);
    transition: var(--transition);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-item:hover .insta-overlay i {
    transform: scale(1);
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-footer {
    margin-top: 40px;
}

.btn-insta-follow {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-insta-follow:hover {
    background: var(--text-primary);
    color: var(--white);
    border-color: var(--text-primary);
}

@media (max-width: 992px) {
    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 cols on tablet */
    }
}

@media (max-width: 576px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols on mobile */
    }

    .insta-title {
        font-size: 1.5rem;
    }
}

/* ==================== PREMIUM LISTING PAGE ==================== */
.listing-page-wrapper {
    background-color: #fcfbf9;
    padding-bottom: 60px;
}

.premium-top-banner-wide {
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
}

.full-banner-img-edge {
    width: 100%;
    height: auto;
    display: block;
    max-height: 350px;
    object-fit: cover;
}

.listing-utility-bar {
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    position: sticky;
    top: 80px;
    /* Offset by header height */
    z-index: 999;
}

.no-results-img {
    width: 200px;
    opacity: 0.6;
    margin-bottom: 30px;
    filter: sepia(0.2);
}

.utility-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb-nav-new {
    font-size: 0.8rem;
    color: #888;
}

.breadcrumb-nav-new a:hover {
    color: var(--gold);
}

.listing-count-results {
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
}

.listing-sort-new {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.listing-sort-new select {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    font-size: 0.85rem;
}

.listing-main-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    padding-top: 30px;
}

/* Sidebar Styling */
.premium-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-block {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-header-custom {
    background: var(--gold);
    /* Premium Navy from image */
    color: #fff !important;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header-custom h3 {
    font-size: 1rem;
    font-family: var(--font-primary);
    font-weight: 600;
    margin: 0;
    letter-spacing: 1px;
    color: #fff !important;
}

.clear-all-text {
    font-size: 0.75rem;
    color: #fff !important;
    opacity: 0.8;
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
}

.filter-section-custom {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-filter-title {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
}

.section-content {
    padding: 15px 20px;
}

.custom-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #555;
}

.custom-checkbox-label input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    border-radius: 2px;
    position: relative;
    transition: 0.2s;
}

.custom-checkbox-label input:checked+.checkmark {
    background: #C9A961 !important;
    border-color: #C9A961 !important;
}

.custom-checkbox-label input:checked+.checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 10px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkmark:hover {
    border-color: #C9A961;
}

.price-range-flex {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-range-flex input {
    width: 70px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
}

.go-btn {
    background: var(--gold);
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.sidebar-ad-img {
    width: 100%;
    border-radius: 8px;
}

/* Product Content Styling */
.premium-content-area {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.premium-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.premium-product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid transparent;
}

.premium-product-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: #eee;
}

.card-image-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f9f9f9;
}

.main-prod-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.5s;
}

.premium-product-card:hover .main-prod-img {
    transform: scale(1.1);
}

.wishlist-icon-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    z-index: 5;
    border: none;
    cursor: pointer;
}

.quick-view-overlay {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    background: var(--gold);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.quick-view-overlay:hover {
    background: var(--gold-dark);
}

.premium-product-card:hover .quick-view-overlay {
    bottom: 0;
}

.card-details-wrap {
    padding: 8px 15px 15px;
}

.product-sku {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.product-name-new {
    font-size: 0.95rem;
    font-family: var(--font-primary);
    color: #333 !important;
    margin-bottom: 2px;
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    text-overflow: ellipsis;
}

.product-weight-small {
    font-size: 0.75rem;
    color: #777;
    margin-bottom: 5px;
}

.price-stack {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
}

.old-price-small {
    font-size: 0.75rem;
    color: #999;
    text-decoration: line-through;
}

.product-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.new-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333 !important;
}

.discount-label {
    font-size: 0.75rem;
    color: #d63031;
    font-weight: 600;
    background: #ffebed;
    padding: 3px 8px;
    border-radius: 10px;
}

/* Inline Ad Blocks */
.grid-ad-block.square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.wide-listing-banner {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    margin: 20px 0;
    width: 100%;
}

.wide-listing-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay-text {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    color: #fff !important;
}

.banner-overlay-text h4 {
    font-size: 2rem;
    color: #fff !important;
    margin-bottom: 10px;
}

.banner-overlay-text p {
    color: #fff !important;
}

.shop-now-line {
    font-weight: 700;
    letter-spacing: 2px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 5px;
    width: fit-content;
    margin-top: 20px;
    color: #fff !important;
    text-decoration: none;
}

/* Footer SEO Area */
.listing-footer-about {
    margin-top: 80px;
    border-top: 1px solid #eee;
    padding-top: 50px;
}

.listing-footer-about h2 {
    text-align: center;
    margin-bottom: 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.about-item h5 {
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.seo-long-text {
    line-height: 2;
    color: #777;
    font-size: 0.9rem;
    text-align: justify;
}

.no-results-premium {
    text-align: center;
    padding: 100px 0;
}

.btn-clear-large {
    background: var(--gold);
    color: #fff;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 30px;
    border: none;
    cursor: pointer;
}

/* Sidebar toggle logic */
.filter-section-custom .section-content {
    display: none;
}

.filter-section-custom.active .section-content {
    display: block;
}

.filter-section-custom .section-title i {
    transition: transform 0.3s ease;
}

.filter-section-custom.active .section-title i {
    transform: rotate(180deg);
}

/* Responsive Listing */
@media (max-width: 1024px) {
    .listing-main-layout {
        grid-template-columns: 1fr;
    }

    .premium-sidebar {
        order: -1;
        /* Move to top on mobile */
    }
}

@media (max-width: 768px) {
    .premium-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .banner-overlay-text h4 {
        font-size: 1.5rem;
    }
}

/* ==================== TREND ALERT SECTION ==================== */
.trend-alert-section {
    padding: var(--space-2xl) 0;
}

.trend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.trend-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.trend-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.trend-card:hover img {
    transform: scale(1.05);
}

.trend-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
}

.trend-content h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}

.trend-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 768px) {
    .trend-grid {
        grid-template-columns: 1fr;
    }

    .trend-card {
        height: 300px;
    }
}