/* ============================================
   Sevens Gold - Premium Jewelry Website
   Tanishq-Inspired Luxury Theme
   ============================================ */

:root {
    /* Primary Colors */
    --gold-primary: #d4af37;
    --gold-light: #f4e4bc;
    --gold-dark: #aa8c2c;
    --gold-shimmer: linear-gradient(90deg, #d4af37, #f4e4bc, #d4af37);
    --maroon: #800020;
    --maroon-deep: #4a0012;
    --emerald: #046307;

    /* Neutral Colors */
    --black: #1a1a1a;
    --deep-black: #0a0a0a;
    --dark-gray: #333333;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --cream: #faf7f2;
    --white: #ffffff;

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --shadow-gold: 0 4px 20px rgba(212,175,55,0.25);

    /* Transitions */
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   Keyframe Animations
   ============================================ */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

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

@keyframes goldPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(212,175,55,0.2); }
}

@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

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

@keyframes slideLineGrow {
    from { width: 0; }
    to { width: 60px; }
}

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

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

@keyframes rotateIn {
    from { transform: rotate(-180deg) scale(0); opacity: 0; }
    to { transform: rotate(0) scale(1); opacity: 1; }
}

@keyframes heroParticle {
    0% { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
    20% { opacity: 1; transform: scale(1); }
    100% { transform: translateY(-100vh) translateX(100px) scale(0); opacity: 0; }
}

/* ============================================
   Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--black);
    line-height: 1.3;
}

a {
    color: var(--gold-dark);
    text-decoration: none;
    transition: color 0.3s var(--ease-smooth);
}

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

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

::selection {
    background: var(--gold-primary);
    color: var(--white);
}

/* ============================================
   Buttons
   ============================================ */
.btn-gold {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white);
    border: none;
    padding: 14px 36px;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.4s var(--ease-smooth);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    position: relative;
    overflow: hidden;
}

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

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

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

.btn-outline-gold {
    background: transparent;
    color: var(--gold-dark);
    border: 2px solid var(--gold-primary);
    padding: 12px 36px;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.4s var(--ease-smooth);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   Gold Rate Ticker
   ============================================ */
.gold-rate-ticker {
    background: var(--deep-black);
    color: var(--gold-light);
    padding: 8px 0;
    font-size: 13px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(212,175,55,0.15);
}

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

.ticker-label {
    font-weight: 600;
    color: var(--gold-primary);
}

.rate-item {
    padding: 0 15px;
    border-right: 1px solid rgba(212,175,55,0.2);
}

.rate-item:last-of-type {
    border-right: none;
}

.rate-item strong {
    color: var(--white);
}

.ticker-date {
    font-size: 11px;
    opacity: 0.6;
}

/* ============================================
   Header & Navigation
   ============================================ */
/* ---- Modern Navigation ---- */
.main-header {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.22,1,0.36,1);
    border-bottom: 1px solid rgba(212,175,55,0.08);
}

.main-header.scrolled {
    background: rgba(255,255,255,0.99);
    box-shadow: 0 4px 40px rgba(0,0,0,0.06), 0 1px 0 rgba(212,175,55,0.12);
    padding: 0;
}

.main-header.scrolled .navbar {
    padding: 6px 0;
}

.main-header.scrolled .logo-image {
    max-height: 36px;
}

.main-header.scrolled .logo-tagline {
    opacity: 0;
    max-height: 0;
    margin: 0;
}

.navbar {
    padding: 12px 0;
    transition: padding 0.5s cubic-bezier(0.22,1,0.36,1);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    position: relative;
}

.logo-image {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    transition: max-height 0.5s cubic-bezier(0.22,1,0.36,1);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1;
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 9px;
    color: var(--gray);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--font-body);
    margin-top: 2px;
    transition: all 0.4s ease;
    max-height: 20px;
    overflow: hidden;
}

/* Nav Links - Modern Animated */
.navbar-nav .nav-item {
    overflow: hidden;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-gray);
    padding: 10px 16px;
    transition: color 0.35s ease, letter-spacing 0.35s ease;
    position: relative;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    transition: width 0.4s cubic-bezier(0.22,1,0.36,1);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(212,175,55,0.04) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: calc(100% - 32px);
}

.navbar-nav .nav-link:hover::after {
    opacity: 1;
}

.navbar-nav .nav-link:hover {
    color: var(--gold-primary);
    letter-spacing: 1.2px;
}

.navbar-nav .nav-link.active {
    color: var(--gold-primary);
}

/* Modern Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 4px;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    transition: border-color 0.3s ease;
}

.nav-hamburger:hover {
    border-color: var(--gold-primary);
}

.nav-hamburger:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(212,175,55,0.2);
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--gold-primary);
    transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
    transform-origin: center;
}

.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mega Menu - Modern */
.mega-dropdown {
    position: static;
}

.mega-menu {
    width: 100%;
    border: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 1px 0 rgba(212,175,55,0.15);
    padding: 0;
    border-top: 2px solid var(--gold-primary);
    animation: megaMenuReveal 0.4s cubic-bezier(0.22,1,0.36,1);
    transform-origin: top center;
}

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

.mega-menu-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 0;
    padding: 30px;
}

.mega-col {
    padding: 0 25px;
    border-right: 1px solid rgba(212,175,55,0.1);
}

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

.mega-title {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold-dark);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212,175,55,0.15);
}

.mega-link {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: var(--dark-gray);
    font-size: 14px;
    transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
    position: relative;
}

.mega-link::before {
    content: '';
    position: absolute;
    left: -10px;
    width: 2px;
    height: 0;
    background: var(--gold-primary);
    transition: height 0.3s ease;
    border-radius: 1px;
}

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

.mega-link:hover::before {
    height: 100%;
}

.mega-link i {
    width: 24px;
    color: var(--gold-primary);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mega-link:hover i {
    transform: scale(1.15);
}

.mega-featured-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 10px;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.mega-featured-card:hover {
    transform: scale(1.02);
}

.mega-featured-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
    animation: megaShimmer 4s ease infinite;
}

@keyframes megaShimmer {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10%, 10%); }
}

.mega-featured-content {
    position: relative;
    z-index: 1;
}

.mega-featured-content span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-light);
    font-weight: 500;
}

.mega-featured-content h5 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--white);
    margin: 8px 0 15px;
}

.mega-featured-link {
    color: var(--gold-primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mega-featured-link::after {
    content: '\2192';
    transition: transform 0.3s ease;
}

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

.mega-featured-link:hover::after {
    transform: translateX(4px);
}

.mega-footer {
    background: rgba(212,175,55,0.04);
    padding: 14px 30px;
    text-align: center;
    border-top: 1px solid rgba(212,175,55,0.1);
}

.mega-view-all {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

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

.mega-view-all i {
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-size: 11px;
}

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

/* Header Action Buttons */
.header-actions {
    display: flex;
    gap: 8px;
}

.header-actions .btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
    position: relative;
    overflow: hidden;
}

.header-actions .btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

.header-actions .btn:hover::before {
    transform: scale(1);
}

.btn-search {
    background: rgba(212,175,55,0.06);
    color: var(--dark-gray);
    border: 1px solid rgba(212,175,55,0.15);
}

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

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

.btn-search i,
.btn-whatsapp i {
    position: relative;
    z-index: 1;
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    border: none;
}

.btn-whatsapp::before {
    background: #128c7e;
}

.btn-whatsapp:hover {
    color: var(--white);
    transform: scale(1.08);
}

/* ============================================
   Section Headers (Ornamental)
   ============================================ */
.section-tag {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    color: var(--gold-primary);
    display: block;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.section-tag.light {
    color: var(--gold-light);
}

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

.section-header h2 {
    font-size: 40px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.section-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.section-ornament span {
    display: block;
    width: 50px;
    height: 1px;
    background: var(--gold-primary);
}

.section-ornament i {
    color: var(--gold-primary);
    font-size: 10px;
}

.section-header p {
    color: var(--gray);
    max-width: 550px;
    margin: 0 auto;
    font-size: 15px;
}

/* ============================================
   Hero Section - Full Screen Cinematic
   ============================================ */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    height: 100vh;
    min-height: 600px;
    max-height: 1000px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-default {
    background: linear-gradient(135deg, var(--deep-black), var(--dark-gray));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.35) 50%,
        rgba(0,0,0,0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 850px;
    padding: 20px;
}

/* Gold accent line above title */
.hero-line-top {
    width: 60px;
    height: 2px;
    background: var(--gold-primary);
    margin: 0 auto 25px;
    opacity: 0;
    animation: heroLineExpand 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

@keyframes heroLineExpand {
    from { width: 0; opacity: 0; }
    to { width: 60px; opacity: 1; }
}

.hero-title {
    font-size: 58px;
    color: var(--white);
    margin-bottom: 22px;
    text-shadow: none;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 1px;
    opacity: 0;
    animation: heroTitleReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

@keyframes heroTitleReveal {
    from { opacity: 0; transform: translateY(30px); letter-spacing: 6px; }
    to { opacity: 1; transform: translateY(0); letter-spacing: 1px; }
}

.hero-subtitle {
    font-size: 17px;
    margin-bottom: 35px;
    opacity: 0;
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.85);
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

/* Modern hero button */
.btn-hero-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 0;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1s forwards;
}

.btn-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-primary);
    transition: left 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
}

.btn-hero-modern:hover {
    color: var(--black);
    border-color: var(--gold-primary);
}

.btn-hero-modern:hover::before {
    left: 0;
}

.btn-hero-modern .btn-arrow {
    display: inline-flex;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-hero-modern:hover .btn-arrow {
    transform: translateX(6px);
}

/* Hero Controls - Minimal */
.hero-control {
    width: 60px;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.hero-control:hover {
    opacity: 1;
}

.hero-control-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-control:hover .hero-control-icon {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--black);
    transform: scale(1.1);
}

/* Scroll Indicator - Mouse */
.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.4s forwards;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
}

.scroll-dot {
    width: 3px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 2px;
    margin-top: 6px;
    animation: scrollDotBounce 1.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes scrollDotBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* ============================================
   Explore Section (Quick Links)
   ============================================ */
.explore-section {
    padding: 100px 0;
    background: var(--cream);
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.explore-card {
    position: relative;
    padding: 45px 30px;
    background: var(--white);
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.5s var(--ease-smooth);
    border: 1px solid rgba(0,0,0,0.05);
}

.explore-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    opacity: 0;
    transition: opacity 0.5s var(--ease-smooth);
}

.explore-card:hover .explore-card-bg {
    opacity: 1;
}

.explore-card-content {
    position: relative;
    z-index: 1;
}

.explore-icon {
    width: 80px;
    height: 80px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold-primary);
    margin: 0 auto 20px;
    transition: all 0.5s var(--ease-smooth);
    border: 2px solid var(--gold-light);
}

.explore-card:hover .explore-icon {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
    transform: scale(1.1);
}

.explore-card h4 {
    font-size: 20px;
    color: var(--black);
    margin-bottom: 5px;
    transition: color 0.5s ease;
}

.explore-card:hover h4 {
    color: var(--white);
}

.explore-card p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 15px;
    transition: color 0.5s ease;
}

.explore-card:hover p {
    color: rgba(255,255,255,0.8);
}

.explore-link {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--gold-primary);
    transition: all 0.5s ease;
}

.explore-card:hover .explore-link {
    color: var(--white);
}

.explore-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.explore-card:hover .explore-link i {
    transform: translateX(5px);
}

/* ============================================
   Products Section
   ============================================ */
.products-section {
    padding: 100px 0;
}

.new-arrivals-section {
    background: var(--cream);
}

.product-card {
    background: var(--white);
    overflow: hidden;
    transition: all 0.5s var(--ease-smooth);
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-smooth);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

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

.overlay-text {
    color: var(--white);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 10px 25px;
    transform: translateY(15px);
    transition: transform 0.4s var(--ease-smooth);
}

.product-card:hover .overlay-text {
    transform: translateY(0);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

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

.product-badge.bestseller {
    background: var(--maroon);
    color: var(--white);
}

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

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

.btn-action {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-smooth);
    color: var(--dark-gray);
    font-size: 13px;
}

.btn-action:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: scale(1.1);
}

.product-info {
    padding: 18px 20px;
}

.product-category {
    font-size: 11px;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.product-info h5 {
    font-size: 16px;
    margin: 8px 0;
}

.product-info h5 a {
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.product-info h5 a:hover {
    color: var(--gold-primary);
}

.product-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 10px;
}

.product-price {
    font-weight: 600;
    color: var(--gold-dark);
    font-size: 15px;
}

.no-products {
    font-family: var(--font-accent);
    font-size: 20px;
    color: var(--gray);
    font-style: italic;
}

/* ============================================
   Craftsmanship Parallax Section
   ============================================ */
.craft-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.craft-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="60" height="60" fill="%230a0a0a"/><circle cx="30" cy="30" r="1" fill="%23d4af37" opacity="0.1"/></svg>');
    background-color: var(--deep-black);
}

.craft-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.95), rgba(26,26,26,0.9));
}

.craft-title {
    font-size: 50px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.craft-line {
    width: 80px;
    height: 2px;
    background: var(--gold-primary);
    margin-bottom: 25px;
}

.craft-description {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.craft-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.craft-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
    font-size: 14px;
}

.craft-feature i {
    color: var(--gold-primary);
    font-size: 18px;
}

/* ============================================
   Categories Section
   ============================================ */
.categories-section {
    padding: 100px 0;
    background: var(--white);
}

.categories-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.category-card {
    display: block;
    text-align: center;
    text-decoration: none;
    transition: transform 0.5s var(--ease-smooth);
}

.category-card:hover {
    transform: translateY(-8px);
}

.category-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 18px;
    position: relative;
    border: 3px solid transparent;
    background-image: linear-gradient(var(--white), var(--white)), var(--gold-shimmer);
    background-origin: border-box;
    background-clip: content-box, border-box;
    transition: all 0.5s var(--ease-smooth);
}

.category-card:hover .category-image {
    animation: goldPulse 1.5s ease infinite;
}

.category-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
    transition: left 0.6s ease;
}

.category-card:hover .category-shimmer {
    left: 100%;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-smooth);
}

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

.category-card h5 {
    font-size: 15px;
    color: var(--dark-gray);
    margin-bottom: 3px;
    transition: color 0.3s ease;
}

.category-card:hover h5 {
    color: var(--gold-dark);
}

.product-count {
    font-size: 12px;
    color: var(--gray);
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.stats-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><rect width="40" height="40" fill="transparent"/><path d="M0 20h40M20 0v40" stroke="rgba(255,255,255,0.06)" stroke-width="1"/></svg>');
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 25px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    display: inline;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* ============================================
   Bridal Section - Split Layout
   ============================================ */
.bridal-section {
    overflow: hidden;
}

.bridal-image-col {
    min-height: 550px;
}

.bridal-image-wrapper {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.bridal-image-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--ease-smooth);
}

.bridal-image-col:hover .bridal-image-inner {
    transform: scale(1.03);
}

.bridal-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80"><circle cx="40" cy="40" r="30" fill="none" stroke="rgba(212,175,55,0.08)" stroke-width="0.5"/><circle cx="40" cy="40" r="15" fill="none" stroke="rgba(212,175,55,0.05)" stroke-width="0.5"/></svg>');
    pointer-events: none;
}

.bridal-content-col {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
    display: flex;
    align-items: center;
}

.bridal-content-inner {
    padding: 60px 80px;
    max-width: 600px;
}

.bridal-content-inner h2 {
    font-size: 42px;
    color: var(--gold-light);
    margin-bottom: 0;
}

.bridal-divider {
    width: 60px;
    height: 2px;
    background: var(--gold-primary);
    margin: 20px 0;
}

.bridal-content-inner p {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.bridal-highlights {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.bridal-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
    font-size: 13px;
}

.bridal-highlight i {
    color: var(--gold-primary);
}

/* ============================================
   Trust Section
   ============================================ */
.trust-section {
    padding: 80px 0;
    background: var(--cream);
}

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

.trust-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    transition: all 0.5s var(--ease-smooth);
    border: 1px solid rgba(0,0,0,0.05);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.trust-icon-wrap {
    width: 70px;
    height: 70px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.5s var(--ease-smooth);
    border: 2px solid var(--gold-light);
}

.trust-icon-wrap i {
    font-size: 26px;
    color: var(--gold-primary);
    transition: transform 0.5s var(--ease-smooth);
}

.trust-card:hover .trust-icon-wrap {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
}

.trust-card:hover .trust-icon-wrap i {
    color: var(--white);
    transform: rotateY(360deg);
}

.trust-card h5 {
    font-size: 16px;
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   Newsletter Section - Luxury
   ============================================ */
.newsletter-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.newsletter-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--deep-black);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect width="100" height="100" fill="transparent"/><circle cx="50" cy="50" r="1" fill="%23d4af37" opacity="0.08"/><circle cx="0" cy="0" r="1" fill="%23d4af37" opacity="0.08"/><circle cx="100" cy="100" r="1" fill="%23d4af37" opacity="0.08"/></svg>');
}

.newsletter-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212,175,55,0.15);
    padding: 60px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h3 {
    font-size: 34px;
    color: var(--white);
    margin-bottom: 12px;
}

.newsletter-content p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
    font-size: 15px;
}

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

.newsletter-input-wrap input {
    flex: 1;
    padding: 16px 24px;
    border: 1px solid rgba(212,175,55,0.3);
    border-right: none;
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

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

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

.newsletter-input-wrap .btn-gold {
    border-radius: 0;
    white-space: nowrap;
}

/* ============================================
   Footer
   ============================================ */
.main-footer {
    background: var(--deep-black);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.footer-brand p {
    color: var(--gold-light);
    margin-bottom: 15px;
    font-family: var(--font-accent);
    font-style: italic;
}

.footer-desc {
    color: rgba(255,255,255,0.5) !important;
    font-size: 14px;
    line-height: 1.7;
}

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

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    transition: all 0.4s var(--ease-smooth);
    border: 1px solid rgba(212,175,55,0.15);
}

.footer-social a:hover {
    background: var(--gold-primary);
    color: var(--deep-black);
    transform: translateY(-3px);
    border-color: var(--gold-primary);
}

.footer-top h5 {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-body);
    font-weight: 600;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-primary);
    transition: width 0.3s var(--ease-smooth);
}

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

.footer-links a:hover::before {
    width: 100%;
}

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

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

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

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

.trust-badges {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
}

.trust-badges span {
    font-size: 12px;
    color: var(--gold-light);
    letter-spacing: 1px;
}

.trust-badges i {
    margin-right: 6px;
}

/* ============================================
   Page Header (Inner Pages)
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--deep-black), var(--dark-gray));
    padding: 80px 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,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1" fill="%23d4af37" opacity="0.1"/></svg>');
}

.page-header h1 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 15px;
    position: relative;
}

.page-header .breadcrumb {
    justify-content: center;
    margin: 0;
    position: relative;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    letter-spacing: 1px;
}

.page-header .breadcrumb-item.active {
    color: var(--gold-primary);
}

/* ============================================
   Search Modal
   ============================================ */
#searchModal .modal-content {
    background: transparent;
    border: none;
}

.search-input-group {
    display: flex;
    background: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.search-input-group input {
    flex: 1;
    padding: 22px 30px;
    border: none;
    font-size: 18px;
    font-family: var(--font-body);
}

.search-input-group input:focus {
    outline: none;
}

.search-input-group button {
    background: var(--gold-primary);
    border: none;
    padding: 22px 35px;
    color: var(--white);
    font-size: 18px;
    transition: background 0.3s ease;
}

.search-input-group button:hover {
    background: var(--gold-dark);
}

/* ============================================
   WhatsApp Widget
   ============================================ */
.whatsapp-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s var(--ease-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-toggle .wa-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: #ff4444;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.whatsapp-widget {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 350px;
    max-width: calc(100vw - 50px);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.2);
    z-index: 9998;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s var(--ease-smooth);
}

.whatsapp-widget.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-widget-header {
    background: linear-gradient(135deg, #075e54, #128c7e);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-avatar {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #25d366;
}

.header-text strong {
    display: block;
    color: var(--white);
    font-size: 16px;
}

.header-text span {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

.header-text span i {
    color: #25d366;
    font-size: 8px;
    margin-right: 5px;
}

.widget-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.widget-close:hover {
    opacity: 1;
}

.whatsapp-widget-body {
    padding: 20px;
    background: #e5ddd5;
    background-image: 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='%23ccc' fill-opacity='0.1'%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");
    max-height: 300px;
    overflow-y: auto;
}

.chat-bubble {
    background: var(--white);
    padding: 12px 15px;
    border-radius: 0 12px 12px 12px;
    max-width: 85%;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.chat-bubble p {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: var(--dark-gray);
}

.chat-bubble p:last-of-type {
    margin-bottom: 0;
}

.bubble-time {
    display: block;
    text-align: right;
    font-size: 11px;
    color: var(--gray);
    margin-top: 5px;
}

.quick-replies {
    margin-top: 15px;
}

.quick-replies > p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 10px;
}

.quick-replies button {
    display: block;
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 8px;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    text-align: left;
    font-size: 13px;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-replies button:hover {
    background: var(--gold-light);
    border-color: var(--gold-primary);
    color: var(--gold-dark);
}

.quick-replies button i {
    margin-right: 10px;
    color: var(--gold-primary);
}

.whatsapp-widget-footer {
    padding: 12px 15px;
    background: var(--white);
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 10px;
}

.whatsapp-widget-footer input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
}

.whatsapp-widget-footer input:focus {
    border-color: #25d366;
}

.whatsapp-widget-footer button {
    width: 40px;
    height: 40px;
    background: #25d366;
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: background 0.3s ease;
}

.whatsapp-widget-footer button:hover {
    background: #128c7e;
}

/* ============================================
   Filter Sidebar
   ============================================ */
.filter-sidebar {
    background: var(--white);
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold-light);
}

.filter-header h4 {
    margin: 0;
}

.clear-filters {
    font-size: 13px;
    color: var(--gold-dark);
}

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

.filter-group h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

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

.filter-list li {
    margin-bottom: 10px;
}

.filter-list a {
    display: flex;
    justify-content: space-between;
    color: var(--gray);
    padding: 5px 0;
    transition: all 0.3s ease;
}

.filter-list a:hover,
.filter-list a.active {
    color: var(--gold-dark);
    padding-left: 10px;
}

/* Sort Bar */
.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--cream);
    margin-bottom: 25px;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-options select {
    padding: 8px 15px;
    border: 1px solid #ddd;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: 80px 0;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--deep-black), var(--dark-gray));
    padding: 40px;
    color: var(--white);
}

.contact-info-card h3 {
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.contact-info-card > p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 20px;
    color: var(--gold-primary);
    margin-top: 3px;
}

.info-item h5 {
    color: var(--gold-light);
    font-size: 14px;
    margin-bottom: 5px;
}

.info-item p {
    margin: 0;
    color: rgba(255,255,255,0.7);
}

.info-item a {
    color: var(--gold-primary);
}

.contact-form-card {
    background: var(--white);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    margin-bottom: 10px;
}

.contact-form-card > p {
    color: var(--gray);
    margin-bottom: 25px;
}

/* ============================================
   About Page
   ============================================ */
.about-section {
    padding: 80px 0;
}

.about-image img {
    box-shadow: var(--shadow-md);
}

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

.about-content .lead {
    color: var(--gold-dark);
    font-size: 18px;
}

.mission-card {
    background: var(--white);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all 0.4s var(--ease-smooth);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mission-card .icon {
    width: 60px;
    height: 60px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: var(--cream);
    transition: all 0.4s var(--ease-smooth);
}

.value-card:hover {
    background: var(--gold-light);
    transform: translateY(-5px);
}

.value-card i {
    font-size: 40px;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s var(--ease-smooth);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px 15px 15px;
    color: var(--white);
    font-size: 14px;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

/* ============================================
   Product Detail Page
   ============================================ */
.product-gallery .main-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

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

.zoom-btn, .btn-360 {
    position: absolute;
    background: var(--white);
    border: none;
    padding: 10px 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.zoom-btn {
    top: 15px;
    right: 15px;
}

.btn-360 {
    bottom: 15px;
    left: 15px;
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.thumb {
    width: 80px;
    height: 80px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    flex-shrink: 0;
}

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

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

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

.product-category-tag {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gold-light);
    color: var(--gold-dark);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info-detail h1 {
    font-size: 32px;
    margin: 15px 0;
}

.product-sku {
    color: var(--gray);
    font-size: 14px;
}

.product-specs {
    margin: 25px 0;
    padding: 20px;
    background: var(--cream);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.spec-label {
    color: var(--gray);
}

.spec-value {
    font-weight: 600;
}

.price-info {
    margin: 25px 0;
    padding: 20px;
    background: var(--gold-light);
}

.price-note {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 10px;
}

.estimated-price {
    font-size: 24px;
    color: var(--gold-dark);
}

.estimated-price span {
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.product-trust-badges {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.product-trust-badges span {
    font-size: 13px;
    color: var(--emerald);
}

.product-trust-badges i {
    margin-right: 5px;
}

.product-actions-detail {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.btn-whatsapp-lg {
    flex: 1;
    background: #25d366;
    color: var(--white);
    padding: 15px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp-lg:hover {
    background: #128c7e;
    color: var(--white);
}

.btn-enquiry {
    flex: 1;
    background: var(--gold-primary);
    color: var(--white);
    padding: 15px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.stock-status {
    padding: 10px 15px;
    font-size: 14px;
    display: inline-block;
}

.stock-status.in_stock {
    background: #d4edda;
    color: #155724;
}

.stock-status.made_to_order {
    background: #fff3cd;
    color: #856404;
}

.stock-status.out_of_stock {
    background: #f8d7da;
    color: #721c24;
}

.related-products-section {
    padding: 60px 0;
    background: var(--cream);
}

.related-products-section h2 {
    margin-bottom: 30px;
}

/* ============================================
   Offers Page
   ============================================ */
.offer-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-smooth);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.offer-content {
    padding: 20px;
}

.offer-badge {
    display: inline-block;
    background: var(--maroon);
    color: var(--white);
    padding: 5px 12px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.offer-content h4 {
    margin-bottom: 10px;
}

.coupon-code {
    background: var(--gold-light);
    padding: 10px;
    margin: 15px 0;
    text-align: center;
}

.offer-validity {
    font-size: 13px;
    color: var(--gray);
}

.loyalty-section {
    padding: 80px 0;
    background: var(--cream);
}

.loyalty-benefits {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.loyalty-benefits li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.loyalty-benefits i {
    color: var(--gold-primary);
}

.loyalty-tiers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.tier {
    padding: 20px;
    text-align: center;
}

.tier h5 {
    margin-bottom: 5px;
}

.tier p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 10px;
}

.tier span {
    font-weight: 600;
}

.tier.bronze { background: #cd7f32; color: var(--white); }
.tier.silver { background: #c0c0c0; }
.tier.gold { background: var(--gold-primary); color: var(--white); }
.tier.platinum { background: #e5e4e2; }

/* ============================================
   Blog Page
   ============================================ */
.blog-section {
    padding: 60px 0;
}

.blog-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-smooth);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s var(--ease-smooth);
}

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold-primary);
    color: var(--white);
    padding: 5px 12px;
    font-size: 12px;
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-content h3 a {
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--gold-primary);
}

.read-more {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 8px 16px;
    background: var(--cream);
    font-size: 14px;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

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

/* ============================================
   Custom Design
   ============================================ */
.process-section {
    padding: 60px 0;
    background: var(--cream);
}

.process-step {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* Bridal Page */
.bridal-header {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
    padding: 80px 0;
}

.bridal-header p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
}

.bridal-intro {
    padding: 80px 0;
}

.lookbook-card {
    position: relative;
    overflow: hidden;
}

.lookbook-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s var(--ease-smooth);
}

.lookbook-card:hover img {
    transform: scale(1.05);
}

.lookbook-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px 20px 20px;
    color: var(--white);
}

.lookbook-content h4 {
    color: var(--gold-light);
    margin-bottom: 5px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.rating {
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark-gray);
    font-family: var(--font-accent);
    font-size: 17px;
}

.testimonial-author strong {
    display: block;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray);
}

.bridal-cta {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
}

/* Custom Form */
.custom-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.custom-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-features i {
    color: var(--gold-primary);
}

.custom-form-card {
    background: var(--white);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

/* Appointment Card */
.appointment-card {
    background: var(--gold-light);
    padding: 25px;
}

.appointment-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.appointment-card h4 i {
    color: var(--gold-dark);
}

/* Branch list */
.branch-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.branch-item {
    margin-bottom: 12px;
}

/* No Products */
.no-products-message {
    text-align: center;
    padding: 60px 20px;
    background: var(--cream);
}

.no-products-message i {
    font-size: 50px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

/* Form Styles */
.form-control, .form-select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 0;
}

.form-control:focus, .form-select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
}

/* WhatsApp Product Actions */
.product-wa-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-wa-inquiry {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #25d366;
    color: var(--white);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-wa-inquiry:hover {
    background: #128c7e;
    color: var(--white);
}

.btn-wa-share {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border: 1px solid #e0e0e0;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-wa-share:hover {
    background: #25d366;
    border-color: #25d366;
    color: var(--white);
}

/* Festive Themes */
.onam-theme .hero-slide {
    border-bottom: 5px solid var(--gold-primary);
}

.onam-theme .gold-rate-ticker {
    background: linear-gradient(90deg, #8B0000, #4a0000);
}

.vishu-theme .gold-rate-ticker {
    background: linear-gradient(90deg, #046307, #023003);
}

/* Hide old float button */
.whatsapp-float-container {
    display: none;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1199px) {
    .bridal-content-inner {
        padding: 50px 50px;
    }
}

@media (max-width: 991px) {
    .hero-slide {
        height: 70vh;
        min-height: 450px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .nav-hamburger {
        display: flex;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 24px 20px;
        margin-top: 12px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.08);
        border-radius: 0 0 12px 12px;
        border-top: 1px solid rgba(212,175,55,0.1);
        animation: mobileNavReveal 0.4s cubic-bezier(0.22,1,0.36,1);
    }

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

    .navbar-nav .nav-link {
        padding: 12px 0 !important;
        font-size: 14px;
        letter-spacing: 1.5px;
        border-bottom: 1px solid rgba(0,0,0,0.04);
    }

    .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .mega-menu {
        position: relative;
        box-shadow: none;
        border-top: none;
        border-radius: 0;
    }

    .mega-menu-inner {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 15px;
    }

    .mega-col {
        border-right: none;
        border-bottom: 1px solid rgba(212,175,55,0.08);
        padding: 10px 0;
    }

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

    .mega-featured-card {
        min-height: 120px;
    }

    .header-actions {
        margin-top: 15px;
        justify-content: center;
        padding-top: 15px;
        border-top: 1px solid rgba(212,175,55,0.1);
    }

    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .craft-title {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .bridal-content-inner {
        padding: 40px 30px;
    }

    .bridal-image-col {
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .hero-slide {
        height: 60vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-tag {
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .explore-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .explore-card {
        padding: 30px 20px;
    }

    .explore-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .trust-card {
        padding: 25px 15px;
    }

    .craft-title {
        font-size: 30px;
        text-align: center;
    }

    .craft-line {
        margin: 20px auto 25px;
    }

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

    .craft-features {
        justify-content: center;
    }

    .craft-section .btn {
        display: block;
        text-align: center;
    }

    .products-section {
        padding: 60px 0;
    }

    .categories-grid {
        gap: 20px;
    }

    .category-image {
        width: 100px;
        height: 100px;
    }

    .bridal-content-inner h2 {
        font-size: 32px;
    }

    .gold-rate-ticker {
        font-size: 11px;
    }

    .ticker-content {
        gap: 8px;
    }

    .rate-item {
        padding: 0 8px;
    }

    .newsletter-card {
        padding: 40px 25px;
    }

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

    .newsletter-input-wrap input {
        border-right: 1px solid rgba(212,175,55,0.3);
    }

    .newsletter-input-wrap .btn-gold {
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .bridal-highlights {
        flex-direction: column;
        gap: 12px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-header {
        padding: 50px 0;
    }

    .footer-bottom .row {
        text-align: center;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 10px;
    }

    .trust-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .explore-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-widget {
        right: 10px;
        bottom: 80px;
        width: calc(100vw - 20px);
    }

    .whatsapp-toggle {
        right: 15px;
        bottom: 15px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .hero-slide {
        height: 55vh;
        min-height: 350px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-tag {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-tag {
        font-size: 13px;
    }

    .section-ornament span {
        width: 30px;
    }

    .stat-number {
        font-size: 30px;
    }

    .craft-title {
        font-size: 26px;
    }

    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 26px;
    }

    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 11px;
    }

    .bridal-content-inner h2 {
        font-size: 26px;
    }

    .bridal-content-inner {
        padding: 30px 20px;
    }
}

/* iPhone XS / Small Phones (375px and below) */
@media (max-width: 375px) {
    .gold-rate-ticker {
        font-size: 10px;
        padding: 6px 0;
    }

    .ticker-content {
        gap: 5px;
    }

    .ticker-label {
        font-size: 10px;
    }

    .ticker-label i {
        display: none;
    }

    .rate-item {
        padding: 0 5px;
        font-size: 10px;
    }

    .ticker-date {
        display: none;
    }

    .navbar {
        padding: 10px 0;
    }

    .logo-image {
        max-height: 38px;
    }

    .logo-text {
        font-size: 22px;
    }

    .logo-tagline {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .nav-hamburger {
        width: 36px;
        height: 36px;
    }

    .hamburger-line {
        width: 18px;
    }

    .navbar-nav .nav-link {
        font-size: 13px !important;
        padding: 10px 0 !important;
        letter-spacing: 1px !important;
    }

    .hero-slide {
        height: 50vh;
        min-height: 300px;
    }

    .hero-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .btn-hero-modern {
        padding: 10px 20px;
        font-size: 11px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .section-tag {
        font-size: 12px;
    }

    .explore-card {
        padding: 20px 15px;
    }

    .explore-card h4 {
        font-size: 14px;
    }

    .explore-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .product-card .product-info h3 {
        font-size: 14px;
    }

    .product-card .product-info .price {
        font-size: 15px;
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 10px;
    }

    .craft-title {
        font-size: 22px;
    }

    .craft-description {
        font-size: 13px;
    }

    .trust-card h4 {
        font-size: 13px;
    }

    .newsletter-card {
        padding: 30px 15px;
    }

    .newsletter-title {
        font-size: 24px;
    }

    .newsletter-card p {
        font-size: 13px;
    }

    .page-header {
        padding: 35px 0;
    }

    .page-header h1 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .footer-top {
        padding: 40px 0 20px;
    }

    .footer-brand h3 {
        font-size: 22px;
    }

    .footer-desc {
        font-size: 12px;
    }

    .footer-top h5 {
        font-size: 14px;
    }

    .footer-links a,
    .footer-contact li {
        font-size: 12px;
    }

    .footer-bottom {
        font-size: 11px;
    }

    .trust-badges span {
        font-size: 11px;
    }

    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .whatsapp-widget {
        right: 5px;
        bottom: 70px;
        width: calc(100vw - 10px);
    }

    .whatsapp-toggle {
        right: 10px;
        bottom: 10px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .quick-replies button {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* ==========================================
   SCHEME PAGES - Customer Portal
   ========================================== */

/* Shared Buttons */
.btn-gold {
    background: var(--gold-primary);
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border-radius: 0;
}

.btn-gold:hover {
    background: #c49b2c;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}

.btn-outline-gold {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 11px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border-radius: 0;
}

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

/* Auth Pages (Login/Register) */
.scheme-auth-section {
    padding: 60px 0;
    background: var(--cream);
    position: relative;
}

.scheme-auth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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='%23d4af37' fill-opacity='0.03'%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");
    pointer-events: none;
}

.scheme-auth-card {
    background: #fff;
    padding: 45px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1;
}

.scheme-auth-card .auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.scheme-auth-card .auth-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-primary), #e8c44a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.scheme-auth-card .auth-icon i {
    font-size: 28px;
    color: #fff;
}

.scheme-auth-card .auth-header h2 {
    font-family: var(--font-accent);
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.scheme-auth-card .auth-header p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.scheme-auth-card .form-label {
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #555;
    margin-bottom: 6px;
}

.scheme-auth-card .form-control {
    border: 1px solid #e0d6c2;
    padding: 12px 15px;
    font-size: 15px;
    border-radius: 0;
    transition: border-color 0.3s;
}

.scheme-auth-card .form-control:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.scheme-auth-card .auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0ece3;
    font-size: 14px;
    color: #888;
}

.scheme-auth-card .auth-footer a {
    color: var(--gold-primary);
    font-weight: 600;
    text-decoration: none;
}

.scheme-auth-card .auth-footer a:hover {
    text-decoration: underline;
}

.scheme-auth-card .alert {
    border-radius: 0;
    font-size: 14px;
}

/* Dashboard Section */
.scheme-dashboard-section {
    padding: 40px 0 60px;
    background: var(--cream);
    min-height: 80vh;
}

.scheme-welcome {
    background: #fff;
    padding: 25px 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--gold-primary);
}

.scheme-welcome h3 {
    font-family: var(--font-accent);
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.scheme-welcome p {
    color: #888;
    margin: 0;
    font-size: 14px;
}

.scheme-welcome .text-md-end {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

@media (min-width: 768px) {
    .scheme-welcome .text-md-end {
        justify-content: flex-end;
    }
}

/* Stats Row */
.scheme-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.scheme-stat-card {
    background: #fff;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 18px;
}

.scheme-stat-card .stat-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.scheme-stat-card .stat-icon i {
    font-size: 22px;
    color: var(--gold-primary);
}

.scheme-stat-card .stat-info h4 {
    font-family: var(--font-accent);
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 2px;
}

.scheme-stat-card .stat-info span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
}

/* Section Card (dashboard, payment, history) */
.scheme-section-card {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.section-card-header {
    padding: 18px 25px;
    border-bottom: 1px solid #f0ece3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-card-header h4 {
    font-family: var(--font-accent);
    font-size: 18px;
    color: #1a1a1a;
    margin: 0;
}

.section-card-header a {
    color: var(--gold-primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-card-body {
    padding: 25px;
}

/* Active Scheme Card */
.active-scheme-card {
    background: #faf7f2;
    padding: 25px;
    border-left: 4px solid var(--gold-primary);
    height: 100%;
}

.active-scheme-card .scheme-card-top {
    margin-bottom: 15px;
}

.active-scheme-card .scheme-card-top h5 {
    font-family: var(--font-accent);
    font-size: 20px;
    color: #1a1a1a;
    margin: 8px 0 0;
}

.scheme-type-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.registration-code-badge {
    display: inline-block;
    background: var(--gold-primary);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 6px;
}

.scheme-code-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-dark);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.scheme-ledger-section {
    padding: 40px 0 60px;
    background: var(--cream-bg, #faf7f2);
    min-height: 60vh;
}

.scheme-type-badge.long_term {
    background: #e8f4fd;
    color: #0c5460;
}

.scheme-type-badge.short_term {
    background: #fff3cd;
    color: #856404;
}

/* Detail Row */
.detail-row,
.scheme-card-details .detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 14px;
}

.detail-row span { color: #888; }
.detail-row strong { color: #1a1a1a; }

/* Progress Bar */
.scheme-progress {
    margin-top: 15px;
}

.progress-bar-track {
    height: 8px;
    background: #e0d6c2;
    overflow: hidden;
    margin-bottom: 6px;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-primary), #e8c44a);
    transition: width 0.6s ease;
}

.progress-text {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-badge.status-approved {
    background: #d4edda;
    color: #155724;
}

.status-badge.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

/* Scheme List Page */
.scheme-list-section {
    padding: 60px 0;
    background: var(--cream);
    min-height: 80vh;
}

/* Plan Card */
.scheme-plan-card {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.scheme-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.plan-header {
    padding: 25px 25px 15px;
    position: relative;
}

.plan-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), #e8c44a);
}

.plan-header.short_term::after {
    background: linear-gradient(90deg, #fd7e14, #ffc107);
}

.plan-header .plan-type {
    display: inline-block;
    padding: 3px 10px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    background: rgba(212,175,55,0.1);
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.plan-header.short_term .plan-type {
    background: rgba(253,126,20,0.1);
    color: #fd7e14;
}

.plan-header h4 {
    font-family: var(--font-accent);
    font-size: 20px;
    color: #1a1a1a;
    margin: 0;
}

.plan-body {
    padding: 0 25px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plan-body .plan-amount {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0ece3;
    margin-bottom: 15px;
}

.plan-body .plan-amount .currency {
    font-family: var(--font-accent);
    font-size: 20px;
    color: var(--gold-primary);
    vertical-align: super;
}

.plan-body .plan-amount .amount {
    font-family: var(--font-accent);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
}

.plan-body .plan-amount .period {
    font-size: 14px;
    color: #888;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
}

.plan-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f5f0e8;
}

.plan-features li i {
    color: var(--gold-primary);
    margin-right: 8px;
    width: 16px;
}

.plan-features li i.fa-gift {
    color: #28a745;
}

/* Enroll Confirmation */
.scheme-enroll-section {
    padding: 60px 0;
    background: var(--cream);
    min-height: 80vh;
}

.enroll-card {
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

.enroll-header {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #fff;
    position: relative;
}

.enroll-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), #e8c44a);
}

.enroll-header.short_term::after {
    background: linear-gradient(90deg, #fd7e14, #ffc107);
}

.enroll-header .plan-type {
    display: inline-block;
    padding: 3px 12px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    background: rgba(212,175,55,0.2);
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.enroll-header h3 {
    font-family: var(--font-accent);
    font-size: 26px;
    margin: 0;
}

.enroll-body {
    padding: 30px;
}

.enroll-summary { margin-bottom: 25px; }

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0ece3;
    font-size: 14px;
}

.summary-row span { color: #888; }
.summary-row strong { color: #1a1a1a; font-size: 15px; }

.summary-row.highlight {
    background: rgba(212,175,55,0.05);
    margin: 0 -30px;
    padding: 12px 30px;
}

.summary-row.highlight strong { color: var(--gold-primary); }

.enroll-description {
    background: #faf7f2;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-left: 3px solid var(--gold-primary);
    font-size: 14px;
    color: #555;
}

.enroll-description p { margin: 0; }

/* Payment Page */
.scheme-pay-section {
    padding: 40px 0 60px;
    background: var(--cream);
    min-height: 80vh;
}

.scheme-pay-section .form-label {
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #555;
}

.scheme-pay-section .form-control,
.scheme-pay-section .form-select {
    border: 1px solid #e0d6c2;
    border-radius: 0;
    padding: 12px 15px;
}

.scheme-pay-section .form-control:focus,
.scheme-pay-section .form-select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

/* Payment History Item */
.payment-history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0ece3;
}

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

.payment-history-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.payment-history-item small {
    color: #888;
    font-size: 12px;
}

/* History Section */
.scheme-history-section {
    padding: 40px 0 60px;
    background: var(--cream);
    min-height: 80vh;
}

/* Scheme Table */
.scheme-table {
    width: 100%;
    border-collapse: collapse;
}

.scheme-table th {
    background: #1a1a1a;
    color: #fff;
    padding: 14px 18px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    white-space: nowrap;
}

.scheme-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #f0ece3;
    font-size: 14px;
    color: #555;
}

.scheme-table tr:hover {
    background: #faf7f2;
}

/* Scheme Responsive */
@media (max-width: 767px) {
    .scheme-auth-card {
        padding: 30px 25px;
    }

    .scheme-auth-card .auth-icon {
        width: 60px;
        height: 60px;
    }

    .scheme-auth-card .auth-icon i {
        font-size: 24px;
    }

    .scheme-auth-card .auth-header h2 {
        font-size: 24px;
    }

    .scheme-stats-row {
        grid-template-columns: 1fr;
    }

    .scheme-welcome {
        padding: 20px;
    }

    .scheme-welcome .row {
        text-align: center;
    }

    .scheme-welcome .text-md-end {
        margin-top: 15px;
    }

    .scheme-welcome h3 {
        font-size: 20px;
    }

    .btn-gold,
    .btn-outline-gold {
        padding: 10px 18px;
        font-size: 12px;
    }

    .plan-body .plan-amount .amount {
        font-size: 32px;
    }

    .plan-header {
        padding: 20px 20px 12px;
    }

    .plan-body {
        padding: 0 20px 20px;
    }

    .scheme-table th,
    .scheme-table td {
        padding: 10px 12px;
        font-size: 12px;
    }

    .section-card-header {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
    }

    .section-card-body {
        padding: 20px;
    }

    .active-scheme-card {
        padding: 20px;
    }

    .detail-row {
        font-size: 13px;
    }

    .enroll-header {
        padding: 25px 20px;
    }

    .enroll-header h3 {
        font-size: 22px;
    }

    .enroll-body {
        padding: 25px 20px;
    }

    .summary-row {
        font-size: 13px;
    }

    .summary-row.highlight {
        margin: 0 -20px;
        padding: 12px 20px;
    }

    .scheme-dashboard-section,
    .scheme-pay-section,
    .scheme-history-section {
        padding: 25px 0 40px;
    }

    .scheme-list-section,
    .scheme-enroll-section,
    .scheme-auth-section {
        padding: 40px 0;
    }

    .status-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .scheme-type-badge {
        font-size: 9px;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .scheme-stat-card {
        padding: 18px;
    }

    .scheme-stat-card .stat-icon {
        width: 45px;
        height: 45px;
    }

    .scheme-stat-card .stat-icon i {
        font-size: 18px;
    }

    .scheme-stat-card .stat-info h4 {
        font-size: 22px;
    }

    .scheme-stat-card .stat-info span {
        font-size: 10px;
    }

    .plan-body .plan-amount .amount {
        font-size: 28px;
    }

    .plan-body .plan-amount .currency {
        font-size: 16px;
    }

    .plan-features li {
        font-size: 13px;
    }

    .scheme-table th {
        font-size: 10px;
        padding: 8px 10px;
    }

    .scheme-table td {
        padding: 10px;
        font-size: 12px;
    }
}

/* iPhone XS / Small Phones - Scheme Pages */
@media (max-width: 375px) {
    .scheme-auth-card {
        padding: 25px 18px;
    }

    .scheme-auth-card .auth-icon {
        width: 55px;
        height: 55px;
    }

    .scheme-auth-card .auth-icon i {
        font-size: 22px;
    }

    .scheme-auth-card .auth-header h2 {
        font-size: 22px;
    }

    .scheme-auth-card .auth-header p {
        font-size: 13px;
    }

    .scheme-auth-card .form-label {
        font-size: 11px;
    }

    .scheme-auth-card .form-control {
        padding: 10px 12px;
        font-size: 14px;
    }

    .scheme-auth-card .auth-footer {
        font-size: 13px;
    }

    .btn-gold,
    .btn-outline-gold {
        padding: 10px 15px;
        font-size: 11px;
        letter-spacing: 0.3px;
    }

    .scheme-welcome {
        padding: 15px;
    }

    .scheme-welcome h3 {
        font-size: 18px;
    }

    .scheme-welcome p {
        font-size: 12px;
    }

    .scheme-welcome .btn-gold,
    .scheme-welcome .btn-outline-gold {
        padding: 8px 12px;
        font-size: 10px;
        margin-bottom: 5px;
    }

    .scheme-stat-card {
        padding: 15px;
        gap: 12px;
    }

    .scheme-stat-card .stat-icon {
        width: 40px;
        height: 40px;
    }

    .scheme-stat-card .stat-icon i {
        font-size: 16px;
    }

    .scheme-stat-card .stat-info h4 {
        font-size: 20px;
    }

    .scheme-stat-card .stat-info span {
        font-size: 9px;
    }

    .section-card-header {
        padding: 12px 15px;
    }

    .section-card-header h4 {
        font-size: 15px;
    }

    .section-card-header a {
        font-size: 11px;
    }

    .section-card-body {
        padding: 15px;
    }

    .active-scheme-card {
        padding: 15px;
    }

    .active-scheme-card .scheme-card-top h5 {
        font-size: 17px;
    }

    .detail-row {
        font-size: 12px;
        padding: 6px 0;
    }

    .scheme-progress {
        margin-top: 12px;
    }

    .progress-bar-track {
        height: 6px;
    }

    .progress-text {
        font-size: 11px;
    }

    .plan-header {
        padding: 18px 15px 10px;
    }

    .plan-header h4 {
        font-size: 17px;
    }

    .plan-body {
        padding: 0 15px 18px;
    }

    .plan-body .plan-amount {
        padding: 15px 0;
    }

    .plan-body .plan-amount .amount {
        font-size: 26px;
    }

    .plan-body .plan-amount .currency {
        font-size: 14px;
    }

    .plan-body .plan-amount .period {
        font-size: 12px;
    }

    .plan-features li {
        font-size: 12px;
        padding: 6px 0;
    }

    .enroll-header {
        padding: 20px 15px;
    }

    .enroll-header h3 {
        font-size: 20px;
    }

    .enroll-body {
        padding: 18px 15px;
    }

    .summary-row {
        font-size: 12px;
        padding: 10px 0;
    }

    .summary-row.highlight {
        margin: 0 -15px;
        padding: 10px 15px;
    }

    .enroll-description {
        padding: 12px 15px;
        font-size: 12px;
    }

    .form-check-label {
        font-size: 12px;
    }

    .scheme-pay-section .form-label {
        font-size: 11px;
    }

    .scheme-pay-section .form-control,
    .scheme-pay-section .form-select {
        padding: 10px 12px;
        font-size: 14px;
    }

    .payment-history-item {
        padding: 10px 0;
    }

    .payment-history-item strong {
        font-size: 14px;
    }

    .payment-history-item small {
        font-size: 11px;
    }

    .scheme-table th {
        font-size: 9px;
        padding: 8px 6px;
        letter-spacing: 0;
    }

    .scheme-table td {
        padding: 8px 6px;
        font-size: 11px;
    }

    .status-badge {
        font-size: 9px;
        padding: 2px 6px;
    }

    .scheme-dashboard-section,
    .scheme-pay-section,
    .scheme-history-section {
        padding: 20px 0 30px;
    }

    .scheme-list-section,
    .scheme-enroll-section {
        padding: 30px 0;
    }

    .scheme-auth-section {
        padding: 30px 0;
    }

    .scheme-section-card {
        margin-bottom: 15px;
    }
}
