/* ==========================================================================
   SEVEN HEAVEN - LUXURY FASHION BOUTIQUE STYLESHEET
   Pure CSS3 with Custom Properties, Glassmorphism, Animations & Micro-Interactions
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN SYSTEM & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
    --gold: #C9A34E;
    --gold-light: #F5D88D;
    --gold-dark: #8F6C20;
    --gold-gradient: linear-gradient(135deg, #F5D88D 0%, #C9A34E 50%, #8F6C20 100%);
    --gold-glow: 0 0 25px rgba(201, 163, 78, 0.4);
    
    --bg-dark: #0D0D0F;
    --bg-dark-secondary: #141418;
    --bg-card: rgba(22, 22, 27, 0.85);
    --bg-card-hover: rgba(30, 30, 38, 0.95);
    
    --text-light: #FFFFFF;
    --text-muted: #A0A0B0;
    --text-dark: #111115;
    
    --border-gold: rgba(201, 163, 78, 0.3);
    --border-gold-bright: rgba(201, 163, 78, 0.8);
    --border-light: rgba(255, 255, 255, 0.1);
    
    --font-heading: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition-fast: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-luxury: 0 30px 60px rgba(0, 0, 0, 0.6);
    --glass-backdrop: blur(16px) saturate(180%);
}

/* Reset & Base Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    cursor: default;
}

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

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

button, input, textarea {
    font-family: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: none;
}

ul {
    list-style: none;
}

/* Layout Container */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-padding {
    padding: 100px 0;
}

/* --------------------------------------------------------------------------
   2. CUSTOM CURSOR
   -------------------------------------------------------------------------- */
.custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-follower {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}

/* Cursor Hover states */
body.cursor-active .custom-cursor {
    width: 14px;
    height: 14px;
    background: var(--gold-light);
}

body.cursor-active .custom-cursor-follower {
    width: 54px;
    height: 54px;
    border-color: var(--gold-light);
    background: rgba(201, 163, 78, 0.08);
}

@media (max-width: 1024px) {
    .custom-cursor, .custom-cursor-follower {
        display: none !important;
    }
}

/* --------------------------------------------------------------------------
   3. PRELOADER
   -------------------------------------------------------------------------- */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.loader-content {
    text-align: center;
    max-width: 320px;
}

.logo-emblem {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    animation: floatGlow 3s ease-in-out infinite;
}

.loader-official-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--gold);
    box-shadow: 0 0 30px rgba(201, 163, 78, 0.6);
    object-fit: cover;
}

.header-official-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    box-shadow: 0 0 12px rgba(201, 163, 78, 0.4);
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-logo:hover .header-official-logo {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 0 20px var(--gold);
}

.footer-official-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    box-shadow: 0 0 10px rgba(201, 163, 78, 0.4);
    object-fit: cover;
}

.loader-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 6px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: 4px;
}

.loader-subtitle {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.loader-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--gold-gradient);
    animation: loadProgress 2s ease-in-out forwards;
}

@keyframes loadProgress {
    0% { width: 0%; }
    50% { width: 60%; }
    100% { width: 100%; }
}

@keyframes floatGlow {
    0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 10px rgba(201,163,78,0.3)); }
    50% { transform: translateY(-8px); filter: drop-shadow(0 0 25px rgba(201,163,78,0.7)); }
}

/* --------------------------------------------------------------------------
   4. SCROLL PROGRESS BAR
   -------------------------------------------------------------------------- */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 1001;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gold-gradient);
    box-shadow: 0 0 10px var(--gold);
}

/* --------------------------------------------------------------------------
   5. TOP ANNOUNCEMENT BAR
   -------------------------------------------------------------------------- */
.top-bar {
    background: linear-gradient(90deg, #1C170E 0%, #332812 50%, #1C170E 100%);
    border-bottom: 1.5px solid var(--gold);
    padding: 10px 0;
    font-size: 0.82rem;
    color: #F7EBD4;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1000;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pulse-badge {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    margin-right: 10px;
    box-shadow: 0 0 10px rgba(201, 163, 78, 0.6);
    animation: pulseBadge 1.8s infinite;
}

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

.top-bar-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-link {
    color: var(--text-muted);
}

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

.sep {
    color: var(--border-gold);
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}

/* --------------------------------------------------------------------------
   6. SITE HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(13, 13, 15, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1.5px solid var(--border-gold-bright);
    transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
    padding: 14px 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
}

.site-header.scrolled {
    background: rgba(13, 13, 15, 0.98);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    border-bottom-color: var(--gold);
}

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

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon-wrap {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 5px rgba(201, 163, 78, 0.4));
    transition: transform 0.3s;
}

.brand-logo:hover .header-logo-svg {
    transform: rotate(5deg) scale(1.05);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-tagline {
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Navigation Links */
.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 6px 0;
}

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

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

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

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.action-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--gold-glow);
}

.action-btn:hover .nav-icon-svg {
    fill: var(--bg-dark);
}

.nav-icon-svg {
    width: 20px;
    height: 20px;
    fill: var(--text-light);
    transition: fill 0.2s;
}

.badge-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    z-index: 1;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    box-shadow: 0 10px 25px rgba(201, 163, 78, 0.3);
}

.btn-gold:hover {
    box-shadow: 0 15px 35px rgba(201, 163, 78, 0.5);
    transform: translateY(-3px);
}

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

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

.btn-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    color: var(--text-light);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
}

.btn-whatsapp-sm {
    padding: 10px 18px;
    font-size: 0.75rem;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #25D366;
}

.btn-whatsapp-sm:hover {
    background: #25D366;
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-full {
    width: 100%;
}

.btn-arrow, .btn-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    justify-content: center;
    cursor: pointer;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background: var(--gold-light);
    border-radius: 2px;
    transition: var(--transition-fast);
}

@media (max-width: 992px) {
    .main-nav, .header-call-btn {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
}

/* --------------------------------------------------------------------------
   7. MOBILE DRAWER & SEARCH OVERLAY
   -------------------------------------------------------------------------- */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--bg-dark-secondary);
    border-left: 1px solid var(--border-gold);
    z-index: 10000;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-luxury);
}

.mobile-drawer.open {
    right: 0;
}

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

.drawer-close {
    font-size: 2rem;
    color: var(--gold-light);
    cursor: pointer;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.mobile-link {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    color: var(--text-light);
}

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

.drawer-footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.drawer-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 15, 0.95);
    backdrop-filter: var(--glass-backdrop);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.search-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.search-box-container {
    width: 90%;
    max-width: 600px;
    text-align: center;
    position: relative;
}

.search-close {
    position: absolute;
    top: -60px;
    right: 0;
    font-size: 2.5rem;
    color: var(--gold-light);
    cursor: pointer;
}

.search-box-container h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.search-input-wrap {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    padding: 6px;
    border-radius: 4px;
}

.search-input-wrap input {
    flex: 1;
    padding: 14px 18px;
    font-size: 1rem;
    color: #fff;
}

.search-submit-btn {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    padding: 0 24px;
    font-weight: 700;
    border-radius: 3px;
    cursor: pointer;
}

.search-suggestions {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.suggest-tag {
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-size: 0.75rem;
}

.suggest-tag:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

/* --------------------------------------------------------------------------
   8. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 13, 15, 0.55) 0%, rgba(13, 13, 15, 0.25) 50%, rgba(13, 13, 15, 0.85) 100%);
    z-index: 2;
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    filter: brightness(0.95) contrast(1.05);
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
    transform: scale(1.08);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 880px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 22px;
    background: rgba(13, 13, 15, 0.85);
    border: 1.5px solid var(--gold);
    border-radius: 30px;
    font-size: 0.78rem;
    letter-spacing: 3px;
    color: var(--gold-light);
    margin-bottom: 24px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(201, 163, 78, 0.35);
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    color: #FFFFFF;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.95), 0 2px 6px rgba(0, 0, 0, 0.9);
}

.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8));
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
}

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

/* Animated Scroll Down Mouse */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
    opacity: 0.75;
    transition: opacity 0.3s;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gold-light);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

.scroll-text {
    font-size: 0.65rem;
    letter-spacing: 2px;
}

/* --------------------------------------------------------------------------
   9. SECTION HEADINGS & DIVIDERS
   -------------------------------------------------------------------------- */
.section-subtitle {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
}

.gold-divider {
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 16px auto 20px;
    border-radius: 2px;
    position: relative;
}

.gold-divider::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    top: -2.5px;
    left: calc(50% - 4px);
}

.gold-divider-left {
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 16px 0 24px;
    border-radius: 2px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    font-weight: 300;
}

/* --------------------------------------------------------------------------
   10. FEATURED CATEGORIES SECTION (21 CARDS)
   -------------------------------------------------------------------------- */
.categories-section {
    background: var(--bg-dark-secondary);
    position: relative;
}

.category-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 40px;
}

.cat-tab {
    padding: 10px 22px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cat-tab:hover, .cat-tab.active {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    font-weight: 700;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(201, 163, 78, 0.3);
}

/* Grid Layout for Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.category-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s;
    height: 380px;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury), var(--gold-glow);
    border-color: var(--border-gold-bright);
}

.category-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

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

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,13,15,0.1) 0%, rgba(13,13,15,0.85) 75%, rgba(13,13,15,0.98) 100%);
    transition: opacity 0.3s;
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    z-index: 2;
    transform: translateY(10px);
    transition: transform 0.4s var(--transition-smooth);
}

.category-card:hover .category-info {
    transform: translateY(0);
}

.cat-tag {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.cat-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 4px;
    font-weight: 600;
}

.cat-count {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

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

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

.cat-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s;
}

.cat-link:hover svg {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   11. NEW ARRIVALS & PRODUCTS SECTION
   -------------------------------------------------------------------------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--border-gold-bright);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold-gradient);
    color: var(--bg-dark);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 3px;
    letter-spacing: 1px;
    z-index: 3;
}

.wishlist-icon-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(13, 13, 15, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: var(--transition-fast);
}

.wishlist-icon-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--gold-light);
    stroke-width: 2;
    transition: fill 0.3s, stroke 0.3s;
}

.wishlist-icon-btn.active svg, .wishlist-icon-btn:hover svg {
    fill: #E74C3C;
    stroke: #E74C3C;
}

.product-img-wrap {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    background: #000;
}

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

.primary-img {
    position: relative;
    z-index: 1;
}

.hover-img {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 2;
}

.product-card:hover .hover-img {
    opacity: 1;
    transform: scale(1.05);
}

.quick-view-btn {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(13, 13, 15, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 10px 24px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0;
    z-index: 3;
    transition: var(--transition-fast);
    width: 80%;
}

.product-card:hover .quick-view-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.quick-view-btn:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

.product-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.stars {
    color: #F1C40F;
}

.rating-val {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
}

.product-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    margin-top: auto;
}

.discount-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-light);
}

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

.save-tag {
    font-size: 0.65rem;
    background: rgba(46, 204, 113, 0.15);
    color: #2ECC71;
    border: 1px solid rgba(46, 204, 113, 0.4);
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   12. WHY CHOOSE SEVEN HEAVEN (8 FEATURE CARDS)
   -------------------------------------------------------------------------- */
.why-choose-section {
    background: radial-gradient(circle at top right, rgba(201, 163, 78, 0.08) 0%, transparent 60%),
                var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-luxury);
    border-color: var(--border-gold-bright);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(201, 163, 78, 0.1);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-fast);
}

.feature-icon-wrap svg {
    width: 28px;
    height: 28px;
    fill: var(--gold-light);
}

.feature-card:hover .feature-icon-wrap {
    background: var(--gold);
    box-shadow: var(--gold-glow);
    transform: scale(1.1);
}

.feature-card:hover .feature-icon-wrap svg {
    fill: var(--bg-dark);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   13. FASHION GALLERY SECTION (MASONRY)
   -------------------------------------------------------------------------- */
.gallery-section {
    background: var(--bg-dark-secondary);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 40px;
}

.g-filter {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.g-filter:hover, .g-filter.active {
    background: var(--gold);
    color: var(--bg-dark);
    font-weight: 700;
    border-color: var(--gold);
}

.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
}

.gallery-item.g-tall {
    grid-row: span 2;
}

.gallery-item.g-wide {
    grid-column: span 2;
}

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

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

.g-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(13,13,15,0.9) 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.g-tag {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--gold-light);
    text-transform: uppercase;
}

.g-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #fff;
}

.g-zoom-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(201, 163, 78, 0.85);
    color: var(--bg-dark);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media (max-width: 992px) {
    .masonry-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item.g-wide {
        grid-column: span 1;
    }
}

@media (max-width: 600px) {
    .masonry-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
    .gallery-item.g-tall {
        grid-row: span 1;
    }
}

/* --------------------------------------------------------------------------
   14. ABOUT SEVEN HEAVEN SECTION
   -------------------------------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
}

.main-about-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.gold-frame-border {
    position: absolute;
    inset: -12px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    z-index: -1;
    pointer-events: none;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-gold-bright);
    padding: 20px 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-luxury);

}

.exp-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-light);
}

.exp-label {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--gold-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.about-stats-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 36px;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-name {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-experience-badge {
        right: 10px;
        bottom: 10px;
    }
}

/* --------------------------------------------------------------------------
   15. CUSTOMER REVIEWS (TESTIMONIAL SLIDER)
   -------------------------------------------------------------------------- */
.testimonials-section {
    background: var(--bg-dark-secondary);
    overflow: hidden;
}

.testimonials-slider-container {
    max-width: 900px;
    margin: 40px auto 0;
    position: relative;
}

.testimonials-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
    min-width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 45px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-luxury);
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--border-gold);
    position: absolute;
    top: 15px;
    left: 30px;
}

.review-text {
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin: 20px 0 30px;
    line-height: 1.8;
}

.reviewer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
}

.reviewer-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 2px;
}

.reviewer-location {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

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

.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    background: var(--gold);
    color: var(--bg-dark);
    box-shadow: var(--gold-glow);
}

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

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

.dot.active {
    width: 28px;
    border-radius: 10px;
    background: var(--gold-gradient);
}

/* --------------------------------------------------------------------------
   16. STORE INFORMATION CARD SECTION
   -------------------------------------------------------------------------- */
.store-info-section {
    background: linear-gradient(180deg, var(--bg-dark-secondary) 0%, var(--bg-dark) 100%);
}

.store-card-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.store-glass-card {
    background: rgba(22, 22, 27, 0.9);
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--border-gold-bright);
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: var(--shadow-luxury), var(--gold-glow);
    position: relative;
    overflow: hidden;
}

.store-header {
    text-align: center;
    margin-bottom: 40px;
}

.store-badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.store-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.store-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.store-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.store-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-gold);
}

.detail-icon {
    font-size: 1.8rem;
}

.detail-text strong {
    font-family: var(--font-heading);
    color: var(--gold-light);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 4px;
}

.detail-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.store-buttons-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   17. CONTACT FORM SECTION
   -------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-info-col {
    padding-right: 20px;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: #fff;
}

.contact-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.c-method {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid var(--border-gold);
}

.c-icon {
    font-size: 1.5rem;
}

.c-method h4 {
    font-family: var(--font-heading);
    color: var(--gold-light);
    font-size: 1rem;
}

.c-method p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Form Styling */
.luxury-contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-gold-bright);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-luxury);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 24px;
    text-align: center;
}

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

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    color: #fff;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-input:focus {
    border-color: var(--gold-light);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(201, 163, 78, 0.2);
}

.form-label {
    position: absolute;
    left: 16px;
    top: 14px;
    color: var(--text-muted);
    font-size: 0.85rem;
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -10px;
    left: 10px;
    font-size: 0.7rem;
    background: var(--bg-dark);
    padding: 2px 8px;
    color: var(--gold-light);
    border-radius: 3px;
    border: 1px solid var(--border-gold);
}

.error-msg {
    font-size: 0.7rem;
    color: #E74C3C;
    display: none;
    margin-top: 4px;
}

.form-group.error .form-input {
    border-color: #E74C3C;
}

.form-group.error .error-msg {
    display: block;
}

/* Custom Luxury Checkbox */
.form-checkbox-group {
    margin-bottom: 24px;
    position: relative;
}

.custom-checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.custom-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    position: relative;
    top: 2px;
    transition: var(--transition-fast);
}

.custom-checkbox-container:hover .custom-checkmark {
    border-color: var(--gold-light);
    box-shadow: 0 0 8px rgba(201, 163, 78, 0.3);
}

.custom-checkbox-container input:checked ~ .custom-checkmark {
    background: var(--gold-gradient);
    border-color: var(--gold);
}

.custom-checkmark::after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--bg-dark);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox-container input:checked ~ .custom-checkmark::after {
    display: block;
}

.checkbox-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    transition: color 0.2s;
}

.custom-checkbox-container:hover .checkbox-text {
    color: rgba(255, 255, 255, 0.9);
}

.form-checkbox-group.error .custom-checkmark {
    border-color: #E74C3C;
}

.form-checkbox-group.error .error-msg {
    display: block;
}

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

/* --------------------------------------------------------------------------
   18. FOOTER SECTION
   -------------------------------------------------------------------------- */
.site-footer {
    background: #060608;
    border-top: 1px solid var(--border-gold);
    padding-top: 80px;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-svg {
    width: 36px;
    height: 36px;
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 2px;
}

.footer-text {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--gold-light);
}

.social-btn:hover {
    background: var(--gold);
    box-shadow: var(--gold-glow);
    transform: translateY(-3px);
}

.social-btn:hover svg {
    fill: var(--bg-dark);
}

.footer-heading {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

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

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.footer-info-text {
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom {
    padding: 24px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

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

/* --------------------------------------------------------------------------
   19. QUICK VIEW MODAL & TOAST NOTIFICATIONS
   -------------------------------------------------------------------------- */
.quick-modal {
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 15, 0.9);
    backdrop-filter: var(--glass-backdrop);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.quick-modal.active {
    opacity: 1;
    pointer-events: all;
}

.quick-modal-content {
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-gold-bright);
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
}

.quick-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 2rem;
    color: var(--gold-light);
    cursor: pointer;
    z-index: 10;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-img-col {
    height: 480px;
}

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

.modal-info-col {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.modal-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 2px 8px;
    border-radius: 3px;
    width: fit-content;
    margin-bottom: 8px;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
}

.modal-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.size-selector {
    margin-bottom: 24px;
}

.size-title {
    font-size: 0.8rem;
    color: var(--gold-light);
    display: block;
    margin-bottom: 8px;
}

.size-btns {
    display: flex;
    gap: 8px;
}

.size-btn {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: 1px solid var(--border-gold);
    color: #fff;
    cursor: pointer;
    font-weight: 600;
}

.size-btn.active, .size-btn:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

@media (max-width: 768px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }
    .modal-img-col {
        height: 250px;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: transform 0.3s;
}

.floating-whatsapp svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Scroll To Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
}

.scroll-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    background: var(--gold);
    color: var(--bg-dark);
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.progress-ring-circle {
    transition: stroke-dashoffset 0.35s;
    transform-origin: 50% 50%;
}

/* Toast Container */
.toast-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10005;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-msg {
    background: var(--bg-dark-secondary);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: var(--shadow-luxury);
    font-size: 0.85rem;
    animation: toastIn 0.4s ease forwards;
}

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

/* --------------------------------------------------------------------------
   20. REVEAL ANIMATIONS ON SCROLL
   -------------------------------------------------------------------------- */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}
