/* ==========================================================================
   Phoenix Textiles - Modern Luxury Theme & Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Marcellus&family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    /* Attractive Typography System */
    --font-sans: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Marcellus', 'Cinzel', 'Playfair Display', Georgia, serif;
    --font-editorial: 'Marcellus', 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-brand: 'Cinzel', 'Marcellus', serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    --font-price: 'Outfit', sans-serif;

    --primary: #0f766e;
    --primary-dark: #115e59;
    --primary-light: #f0fdf4;
    --primary-gradient: linear-gradient(135deg, #0f766e 0%, #047857 100%);
    --accent: #d97706;
    --accent-dark: #b45309;
    --accent-light: #fef3c7;
    --text-heading: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg-page: #f8fafc;
    --bg-surface: #ffffff;
    --bg-alt: #f1f5f9;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --danger: #ef4444;
    --danger-light: #fee2e2;
    --success: #10b981;
    --success-light: #d1fae5;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --shadow-subtle: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-card: 0 4px 6px -1px rgba(0,0,0,0.06), 0 2px 4px -2px rgba(0,0,0,0.04);
    --shadow-hover: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --shadow-glow: 0 0 20px rgba(15, 118, 110, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Elements */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background-color: var(--bg-page);
    line-height: 1.65;
    padding-top: 115px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-heading);
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.28;
    letter-spacing: 0.015em;
}

.font-editorial {
    font-family: var(--font-editorial) !important;
    letter-spacing: 0.02em;
}

.font-brand {
    font-family: var(--font-brand) !important;
}

.font-accent {
    font-family: var(--font-accent) !important;
}

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

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

/* ==========================================================================
   Luxury Site Header & Navigation System
   ========================================================================== */

.luxury-site-header {
    width: 100%;
    z-index: 1040;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* Top Announcement Bar */
.top-announcement-bar {
    background: #090d16;
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 500;
    padding: 7px 0;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.announcement-pill {
    display: inline-flex;
    align-items: center;
    padding: 2px 9px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #fef08a;
    margin-right: 10px;
}

.announcement-text {
    font-size: 12px;
    color: #e2e8f0;
}

.top-bar-right a {
    color: #cbd5e1;
    font-size: 12px;
    transition: var(--transition);
    text-decoration: none;
}

.top-bar-right a:hover {
    color: #fef08a;
}

.top-bar-right .divider {
    color: rgba(255, 255, 255, 0.2);
}

.staff-portal-link {
    color: #fef08a !important;
    font-weight: 600;
}

/* Main Luxury Navbar */
.navbar-luxury {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    padding: 12px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-site-header.scrolled .navbar-luxury {
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.96);
}

/* Brand Identity */
.luxury-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.luxury-brand-logo {
    max-height: 44px;
    max-width: 140px;
    object-fit: contain;
}

.brand-monogram {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-brand);
    font-weight: 700;
    font-size: 22px;
    box-shadow: 0 4px 14px rgba(15, 118, 110, 0.35);
}

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

.luxury-brand-name {
    font-family: var(--font-brand);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-heading);
    letter-spacing: 0.04em;
    line-height: 1.1;
}

.luxury-brand-sub {
    font-family: var(--font-sans);
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    color: var(--accent);
    margin-top: 2px;
}

/* Luxury Center Nav Links */
.nav-link-custom {
    color: var(--text-heading) !important;
    font-weight: 600;
    font-size: 14.5px;
    padding: 8px 18px !important;
    position: relative;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 18px;
    right: 18px;
    height: 2.5px;
    background: var(--primary);
    border-radius: var(--radius-full);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    transform: scaleX(1);
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--primary) !important;
    background: transparent !important;
}

.nav-link-sale {
    color: #dc2626 !important;
    font-weight: 700;
}

.nav-link-sale::after {
    background: #ef4444;
}

.sale-flame-icon {
    color: #ef4444;
    animation: flamePulse 2s infinite ease-in-out;
}

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

/* Luxury Dropdown Menu */
.luxury-dropdown-menu {
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    animation: dropdownFadeIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

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

.luxury-dropdown-item {
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-body);
    transition: var(--transition);
}

.luxury-dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
    transform: translateX(3px);
}

.luxury-dropdown-item-header {
    color: var(--primary) !important;
    font-size: 13.5px;
}

/* Header Search Bar */
.header-search-form {
    position: relative;
    width: 290px;
}

.header-search-input {
    width: 100%;
    padding: 9px 18px 9px 42px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: #f8fafc;
    font-size: 13.5px;
    color: var(--text-heading);
    transition: var(--transition);
}

.header-search-input:focus {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
    outline: none;
}

.header-search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 13.5px;
    pointer-events: none;
}

/* Header Action Buttons */
.nav-action-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: #f8fafc;
    color: var(--text-heading);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.nav-action-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: rgba(15, 118, 110, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.18);
}

.nav-action-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 10px;
    font-weight: 800;
    min-width: 19px;
    height: 19px;
    line-height: 19px;
    border-radius: var(--radius-full);
    text-align: center;
    padding: 0 4px;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
    border: 2px solid #ffffff;
}

.toggler-icon-box {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--bg-alt);
    color: var(--text-heading);
    font-size: 16px;
    transition: var(--transition);
}

.luxury-nav-toggler:focus {
    outline: none;
    box-shadow: none;
}

.nav-action-btn-sm {
    width: 38px;
    height: 38px;
    font-size: 14px;
}

.nav-action-btn-sm .nav-action-badge {
    top: -4px;
    right: -4px;
    min-width: 17px;
    height: 17px;
    line-height: 17px;
    font-size: 9.5px;
}

.mobile-nav-account-card {
    background: #f8fafc;
    padding: 12px;
    border-radius: var(--radius-md);
}

@media (max-width: 991px) {
    body {
        padding-top: 100px;
    }
    .navbar-collapse {
        background: #ffffff;
        border-radius: var(--radius-lg);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
        padding: 18px;
        margin-top: 12px;
        border: 1px solid var(--border-color);
        max-height: 80vh;
        overflow-y: auto;
    }
    .header-search-form {
        width: 100%;
        margin-top: 4px;
        margin-bottom: 14px;
    }
    .navbar-nav {
        width: 100%;
    }
    .nav-item {
        width: 100%;
    }
    .nav-link-custom {
        padding: 10px 8px !important;
        border-bottom: 1px solid var(--border-light);
        width: 100%;
        justify-content: space-between;
    }
    .nav-link-custom::after {
        display: none;
    }
    .luxury-dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border: 1px solid var(--border-light) !important;
        background: var(--bg-page) !important;
        margin-top: 6px;
        margin-bottom: 8px;
    }
}

.btn-luxury {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-luxury-primary {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(15, 118, 110, 0.35);
}

.btn-luxury-primary:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 118, 110, 0.45);
}

.btn-luxury-accent {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}

.btn-luxury-accent:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45);
}

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

.btn-luxury-outline:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.badge-luxury-sale {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.badge-luxury-new {
    background: linear-gradient(135deg, #0f766e 0%, #047857 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   100% Full-Width Luxury Hero Slider (Swiper.js) & Showcase
   ========================================================================== */

.hero-fullscreen-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #090d16;
    margin-top: 0;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Real-time Autoplay Progress Timer Bar */
.hero-slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    z-index: 25;
}

.hero-slider-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #fef08a, #10b981);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.8);
    transition: width 0.1s linear;
}

.hero-swiper {
    width: 100%;
    height: 650px;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.swiper-slide-active .hero-slide-bg-img {
    transform: scale(1.08);
}

.hero-slide-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 13, 22, 0.95) 0%, rgba(9, 13, 22, 0.80) 42%, rgba(9, 13, 22, 0.35) 75%, rgba(9, 13, 22, 0.2) 100%);
    z-index: 2;
}

.hero-slide-container {
    position: relative;
    z-index: 3;
    padding-top: 25px;
    padding-bottom: 25px;
}

.hero-slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-bottom: 22px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.hero-slide-tag.tag-gold {
    color: #fef08a;
    border: 1px solid rgba(254, 240, 138, 0.4);
    background: rgba(254, 240, 138, 0.12);
}

.hero-slide-tag.tag-emerald {
    color: #6ee7b7;
    border: 1px solid rgba(110, 231, 183, 0.4);
    background: rgba(16, 185, 129, 0.14);
}

.hero-slide-tag.tag-ruby {
    color: #fca5a5;
    border: 1px solid rgba(252, 165, 165, 0.4);
    background: rgba(239, 68, 68, 0.14);
}

.hero-slide-tag.tag-sapphire {
    color: #93c5fd;
    border: 1px solid rgba(147, 197, 253, 0.4);
    background: rgba(59, 130, 246, 0.14);
}

.hero-slide-heading {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.18;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-gold-text {
    background: linear-gradient(135deg, #fef08a 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.hero-slide-desc {
    font-size: 17px;
    color: #e2e8f0;
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.hero-slide-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.65s;
}

.hero-slide-card {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    text-align: left;
    color: white;
    max-width: 370px;
    margin-left: auto;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-slide-card.card-kanjivaram {
    background: rgba(30, 20, 10, 0.45);
    border-color: rgba(245, 158, 11, 0.35);
}

.hero-slide-card.card-menswear {
    background: rgba(6, 30, 26, 0.5);
    border-color: rgba(110, 231, 183, 0.3);
}

.hero-slide-card.card-sale {
    background: rgba(38, 10, 18, 0.5);
    border-color: rgba(252, 165, 165, 0.3);
}

.hero-slide-card.card-fabrics {
    background: rgba(15, 23, 42, 0.55);
    border-color: rgba(147, 197, 253, 0.3);
}

.hero-card-meta-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.65);
}

/* Swiper Active Slide Content Animations */
.swiper-slide-active .hero-slide-tag,
.swiper-slide-active .hero-slide-heading,
.swiper-slide-active .hero-slide-desc,
.swiper-slide-active .hero-slide-btns {
    opacity: 1;
    transform: translateY(0);
}

.swiper-slide-active .hero-slide-card {
    opacity: 1;
    transform: translateX(0);
}

/* Slider Nav Arrows */
.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 46%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}

.hero-slider-prev {
    left: 30px;
}

.hero-slider-next {
    right: 30px;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 25px rgba(15, 118, 110, 0.6);
}

/* Slide Counter */
.hero-slider-counter {
    position: absolute;
    bottom: 28px;
    left: 40px;
    z-index: 15;
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: var(--font-price);
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-slider-counter #heroCurrentSlide {
    font-size: 24px;
    color: #fef08a;
    font-weight: 800;
}

.hero-slider-counter .divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
}

/* Slider Pagination Dots */
.hero-swiper .swiper-pagination {
    bottom: 28px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 15;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    border-radius: var(--radius-full);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-swiper .swiper-pagination-bullet-active {
    width: 38px;
    background: linear-gradient(135deg, #fef08a 0%, #f59e0b 100%);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
}

/* Collection Tabs Bar */
.hero-collection-tabs-bar {
    position: relative;
    z-index: 10;
    background: rgba(15, 23, 42, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-tab-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hero-tab-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #fef08a);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-tab-item:hover,
.hero-tab-item.active {
    background: rgba(255, 255, 255, 0.06);
}

.hero-tab-item.active::after {
    width: 100%;
}

.hero-tab-num {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.hero-tab-item.active .hero-tab-num {
    color: #fef08a;
}

.hero-tab-info {
    display: flex;
    flex-direction: column;
}

.hero-tab-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.hero-tab-sub {
    font-size: 11px;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-tab-item.active .hero-tab-sub {
    color: #cbd5e1;
}

@media (max-width: 991px) {
    .hero-swiper {
        height: 520px;
    }
    .hero-slide-heading {
        font-size: 38px;
    }
    .hero-slide-desc {
        font-size: 15px;
        max-width: 100%;
    }
    .hero-slider-prev,
    .hero-slider-next {
        width: 42px;
        height: 42px;
        left: 12px;
    }
    .hero-slider-next {
        right: 12px;
    }
}

@media (max-width: 768px) {
    .hero-slide-scrim {
        background: linear-gradient(180deg, rgba(9, 13, 22, 0.70) 0%, rgba(9, 13, 22, 0.90) 100%);
    }
}

@media (max-width: 576px) {
    .hero-swiper {
        height: clamp(400px, 78vh, 470px);
    }
    .hero-slide-tag {
        padding: 5px 12px;
        font-size: 9.5px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
    .hero-slide-heading {
        font-size: clamp(22px, 6.2vw, 30px);
        line-height: 1.22;
        margin-bottom: 10px;
    }
    .hero-slide-desc {
        font-size: 13px;
        line-height: 1.45;
        margin-bottom: 18px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .hero-slider-prev,
    .hero-slider-next {
        display: none;
    }
    .hero-slide-btns {
        gap: 8px;
    }
    .hero-slide-btns .btn-luxury {
        padding: 9px 14px;
        font-size: 12px;
        flex: 1 1 auto;
        text-align: center;
    }
    .hero-slider-counter {
        bottom: 16px;
        left: 16px;
        font-size: 11px;
    }
    .hero-slider-counter #heroCurrentSlide {
        font-size: 18px;
    }
    .hero-swiper .swiper-pagination {
        bottom: 16px !important;
    }
    .hero-swiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    .hero-swiper .swiper-pagination-bullet-active {
        width: 22px;
    }
}

/* ==========================================================================
   Hero Section (Legacy Banner Fallback)
   ========================================================================== */

.hero-luxury-banner {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f766e 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    color: white;
    padding: 70px 50px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-hover);
}

.hero-luxury-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at 80% 20%, rgba(217, 119, 6, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    color: #fef08a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.18;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 17px;
    color: #e2e8f0;
    max-width: 540px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* ==========================================================================
   Category Showcase Cards
   ========================================================================== */

.category-luxury-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-surface);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    height: 260px;
    display: block;
    text-decoration: none !important;
}

.category-luxury-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.category-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0.1) 0%, rgba(15,23,42,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: white;
    transition: var(--transition);
}

.category-card-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}

.category-card-count {
    font-size: 13px;
    color: #fef08a;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   Product Cards
   ========================================================================== */

.product-luxury-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-luxury-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(15, 118, 110, 0.4);
}

.product-img-wrapper {
    position: relative;
    height: 270px;
    background-color: var(--bg-alt);
    overflow: hidden;
}

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

.product-luxury-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

.product-badge-float {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
}

.product-wishlist-float {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-wishlist-float:hover,
.product-wishlist-float.active {
    background: var(--danger-light);
    color: var(--danger);
    transform: scale(1.1);
}

.product-quick-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(180deg, transparent 0%, rgba(15,23,42,0.7) 100%);
    display: flex;
    gap: 8px;
    justify-content: center;
    transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.product-luxury-card:hover .product-quick-actions {
    bottom: 0;
}

.product-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category-meta {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 6px;
}

.product-title-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px;
    line-height: 1.45;
}

.product-title-link:hover {
    color: var(--primary);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #f59e0b;
    margin-bottom: 12px;
}

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

.product-price-row {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
}

.product-current-price {
    font-family: var(--font-price);
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.product-old-price {
    font-family: var(--font-price);
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-savings-pill {
    margin-left: auto;
    font-size: 11px;
    font-weight: 700;
    color: var(--danger);
    background: var(--danger-light);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
}

/* ==========================================================================
   Voucher Promo Banner
   ========================================================================== */

.voucher-luxury-banner {
    background: linear-gradient(135deg, #fef3c7 0%, #ffedd5 100%);
    border: 2px dashed #f59e0b;
    border-radius: var(--radius-xl);
    padding: 35px 40px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

.voucher-code-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 2px solid #d97706;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: 800;
    color: #d97706;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.15);
}

.btn-copy-code {
    background: var(--primary);
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-copy-code:hover {
    background: var(--primary-dark);
}

/* ==========================================================================
   Pillars / Features Bar
   ========================================================================== */

.feature-pillar-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.feature-pillar-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary);
}

.feature-pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.feature-pillar-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-heading);
}

.feature-pillar-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer-luxury {
    background: #0f172a;
    color: #94a3b8;
    padding-top: 60px;
    padding-bottom: 30px;
    margin-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-luxury h5 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

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

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

.footer-links-list a {
    color: #94a3b8;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links-list a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
}

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

.footer-bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    margin-top: 40px;
    font-size: 13px;
}

/* ==========================================================================
   Comprehensive Responsive System & Breakpoint Framework
   ========================================================================== */

/* Main Container & Compact Grid Gutters */
.main-content-container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Header Typography */
.section-pre-title {
    font-size: 11.5px;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 2px;
}

.section-main-title {
    font-size: clamp(22px, 3.8vw, 32px);
    line-height: 1.25;
}

.view-all-link {
    font-size: 13.5px;
    white-space: nowrap;
    transition: var(--transition);
}

.view-all-link:hover {
    transform: translateX(3px);
}

/* Compact Mobile Gutters & Card Styling */
@media (max-width: 576px) {
    .main-content-container {
        padding-left: 10px;
        padding-right: 10px;
    }
    .row-compact-mobile {
        margin-left: -5px;
        margin-right: -5px;
    }
    .row-compact-mobile > [class*="col-"] {
        padding-left: 5px;
        padding-right: 5px;
    }
}

/* ==========================================================================
   Trust Pillars Responsive Grid
   ========================================================================== */
.feature-pillar-box {
    height: 100%;
    display: flex;
    align-items: center;
}

.feature-pillar-content {
    flex-grow: 1;
    min-width: 0;
}

@media (max-width: 991px) {
    .trust-pillars-row > div {
        margin-bottom: 12px;
    }
    .feature-pillar-box {
        padding: 16px 14px;
        gap: 12px;
    }
    .feature-pillar-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .feature-pillar-title {
        font-size: 13.5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .feature-pillar-desc {
        font-size: 11.5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 576px) {
    .feature-pillar-box {
        padding: 12px 10px;
        gap: 10px;
        border-radius: var(--radius-md);
    }
    .feature-pillar-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
        border-radius: var(--radius-sm);
    }
    .feature-pillar-title {
        font-size: 12.5px;
    }
    .feature-pillar-desc {
        font-size: 10.5px;
    }
}

/* ==========================================================================
   Category Showcase Cards Responsive
   ========================================================================== */
@media (max-width: 991px) {
    .category-luxury-card {
        height: 220px;
    }
    .category-card-overlay {
        padding: 18px 16px;
    }
    .category-card-name {
        font-size: 19px;
    }
    .category-card-count {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .category-luxury-card {
        height: 175px;
        border-radius: var(--radius-md);
    }
    .category-card-overlay {
        padding: 12px 10px;
    }
    .category-card-name {
        font-size: 15px;
        margin-bottom: 2px;
    }
    .category-card-count {
        font-size: 10.5px;
    }
}

/* ==========================================================================
   Product Cards 2-Column Responsive Grid
   ========================================================================== */
@media (max-width: 991px) {
    .product-img-wrapper {
        height: 230px;
    }
    .product-body {
        padding: 14px 12px 16px;
    }
    .product-title-link {
        font-size: 14px;
        height: 40px;
    }
    .product-current-price {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .product-luxury-card {
        border-radius: var(--radius-md);
    }
    .product-img-wrapper {
        height: 185px;
    }
    .product-badge-float {
        top: 8px;
        left: 8px;
    }
    .product-badge-float .badge-luxury-sale {
        font-size: 9.5px;
        padding: 2px 7px;
    }
    .product-wishlist-float {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    .product-body {
        padding: 10px 8px 12px;
    }
    .product-category-meta {
        font-size: 9.5px;
        margin-bottom: 2px;
    }
    .product-title-link {
        font-size: 12.5px;
        height: 34px;
        line-height: 1.35;
        margin-bottom: 4px;
    }
    .product-rating {
        font-size: 9.5px;
        margin-bottom: 6px;
        gap: 2px;
    }
    .product-rating-count {
        font-size: 9.5px;
    }
    .product-price-row {
        padding-top: 6px;
        gap: 4px 6px;
        flex-wrap: wrap;
        align-items: baseline;
    }
    .product-current-price {
        font-size: 15.5px;
    }
    .product-old-price {
        font-size: 11.5px;
    }
    .product-savings-pill {
        font-size: 9px;
        padding: 1px 4px;
        margin-left: 0;
    }
    .product-mobile-buy-btn .btn {
        font-size: 11.5px;
        padding: 5px 8px;
    }
}

/* ==========================================================================
   Voucher Promo Banner Responsive
   ========================================================================== */
@media (max-width: 991px) {
    .voucher-luxury-banner {
        padding: 28px 24px;
        margin: 35px 0;
    }
    .voucher-banner-heading {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .voucher-luxury-banner {
        padding: 20px 15px;
        margin: 25px 0;
        border-radius: var(--radius-lg);
    }
    .voucher-banner-heading {
        font-size: 20px;
    }
    .voucher-banner-sub {
        font-size: 12.5px;
    }
    .voucher-code-badge {
        width: 100%;
        justify-content: space-between;
        font-size: 15px;
        padding: 8px 12px;
        margin-top: 10px;
    }
    .btn-copy-code {
        padding: 5px 10px;
        font-size: 11px;
    }
}

/* ==========================================================================
   Header & Announcement Bar Extra Small Screens (< 480px)
   ========================================================================== */
@media (max-width: 480px) {
    body {
        padding-top: 92px;
    }
    .top-announcement-bar {
        padding: 4px 0;
    }
    .announcement-pill {
        font-size: 9px;
        padding: 1px 6px;
        margin-right: 6px;
    }
    .announcement-text {
        font-size: 10.5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 250px;
    }
    .luxury-brand-logo {
        max-height: 34px;
        max-width: 100px;
    }
    .brand-monogram {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    .luxury-brand-name {
        font-size: 18px;
    }
    .luxury-brand-sub {
        font-size: 8px;
        letter-spacing: 1.5px;
    }
    .nav-action-btn-sm {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    .toggler-icon-box {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}

/* ==========================================================================
   Footer Responsive
   ========================================================================== */
@media (max-width: 991px) {
    .footer-luxury {
        padding-top: 45px;
        padding-bottom: 25px;
        margin-top: 50px;
    }
    .footer-brand-col {
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .footer-luxury {
        padding-top: 35px;
        padding-bottom: 20px;
        margin-top: 35px;
    }
    .footer-luxury h5 {
        font-size: 15px;
        margin-bottom: 14px;
    }
    .footer-links-list li {
        margin-bottom: 8px;
    }
    .footer-links-list a {
        font-size: 13px;
    }
    .footer-contact-item {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .footer-bottom-bar {
        margin-top: 25px;
        padding-top: 18px;
        font-size: 12px;
    }
}
