/* ============================================================================
   MODERN THEME - E-Commerce Design System
   Color: Navy #0B1426, Cream #F8F5F0, Coral #E07A5F, Sage #81B29A
   Typography: Outfit (headings), Inter (body)
   ============================================================================ */

/* === CSS Variables === */
:root {
    /* Primary Palette */
    --navy: #0B1426;
    --navy-light: #162039;
    --navy-lighter: #1E2D4F;
    --cream: #F8F5F0;
    --cream-dark: #EDE8E0;
    --ivory: #FFFDF9;
    --white: #ffffff;

    /* Accent Colors */
    --coral: #E07A5F;
    --coral-light: #F4A89A;
    --coral-dark: #C2634A;
    --sage: #81B29A;
    --sage-light: #A8D5BA;
    --sage-dark: #5E8C73;
    --gold: #C9A96E;
    --gold-light: #DFC28D;

    /* Neutral */
    --text-primary: #1A1A2E;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;
    --border-color: #E5E7EB;
    --border-soft: rgba(0, 0, 0, 0.06);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 64px;
    --space-3xl: 96px;

    /* Sizes */
    --container-max: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 16px 50px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 2px 16px rgba(11, 20, 38, 0.06);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* === Reset & Base === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
}

/* === Layout === */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    max-width: 100%;
    padding: 0 20px;
}

.section {
    padding: var(--space-3xl) 0;
}

.section-sm {
    padding: var(--space-xl) 0;
}

.text-center {
    text-align: center;
}

/* Grid Helpers */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

/* === Section Header === */
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-coral {
    background: var(--coral);
    color: var(--white);
}

.btn-coral:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 122, 95, 0.35);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11, 20, 38, 0.3);
}

.btn-outline {
    border: 2px solid var(--navy);
    color: var(--navy);
    background: transparent;
    padding: 12px 28px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-link {
    color: var(--coral);
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-fast);
}

.btn-link:hover {
    gap: 10px;
}

.btn-link i {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

/* === HEADER === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border-soft);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

/* Top Bar */
.header-topbar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    padding: 6px 0;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.topbar-inner a {
    color: rgba(255, 255, 255, 0.85);
}

.topbar-inner a:hover {
    color: var(--coral-light);
}

/* Topbar Search */
.topbar-search {
    flex: 1;
    max-width: 420px;
    position: relative;
}

.topbar-search input {
    width: 100%;
    padding: 6px 16px 6px 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
    font-family: var(--font-body);
}

.topbar-search input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.topbar-search input:focus {
    outline: none;
    border-color: var(--coral);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.2);
}

.topbar-search .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    pointer-events: none;
}

/* Main Header */
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 12px 20px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 42px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    align-items: center;
    line-height: 1.1;
}

.logo-text .brand-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 1px;
}

.logo-text .brand-tagline {
    font-size: 0.6rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

/* Navigation - Enhanced with Dropdown Menus */
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-item>a {
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    color: var(--text-primary) !important;
    padding: 10px 14px !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
}

.nav-item>a i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.nav-item:hover>a,
.nav-item>a:focus {
    color: var(--coral) !important;
    background: var(--cream) !important;
}

.nav-item.has-dropdown:hover>a i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--border-soft);
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block !important;
    padding: 10px 20px !important;
    font-size: 0.85rem !important;
    color: var(--text-primary) !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    border-left: 3px solid transparent !important;
}

.dropdown-menu a:hover {
    background: var(--cream) !important;
    color: var(--coral) !important;
    border-left-color: var(--coral) !important;
    padding-left: 24px !important;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-actions .action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    position: relative;
    transition: all var(--transition-fast);
    font-size: 1.05rem;
}

.header-actions .action-btn:hover {
    background: var(--cream);
    color: var(--coral);
}

.action-btn .badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--coral);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search Bar */
.search-bar {
    flex: 1;
    max-width: 380px;
    margin: 0 24px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-primary);
    background: var(--cream);
    transition: all var(--transition-fast);
    font-family: var(--font-body);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--coral);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.12);
}

.search-bar .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* === HERO SLIDER === */
.hero {
    position: relative;
    overflow: hidden;
    margin-top: 100px;
    /* Header offset */
}

.hero-slider {
    position: relative;
    height: 520px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide .hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 60px 50px;
    background: linear-gradient(transparent 0%, rgba(11, 20, 38, 0.85) 100%);
    color: var(--white);
}

.hero-slide .hero-content.hero-content-right {
    text-align: right;
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 20px;
    max-width: 420px;
}

.hero-content .btn-coral {
    padding: 14px 32px;
    font-size: 0.8rem;
}

.hero-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
}

.hero-dot.active {
    background: var(--coral);
    width: 28px;
    border-radius: var(--radius-full);
}

.hero-img-top {
    object-position: top !important;
}

/* === CATEGORY ICONS SLIDER === */
.category-section {
    background: var(--white);
    border-bottom: 1px solid var(--border-soft);
}

.category-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.category-slider-container {
    overflow: hidden;
    flex: 1;
}

.category-slider-track {
    display: flex;
    gap: 10px;
    transition: transform 0.4s ease;
}

.category-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 95px;
    text-decoration: none;
    padding: 10px 4px;
    transition: transform var(--transition-fast);
}

.category-icon-item:hover {
    transform: translateY(-4px);
}

.category-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all var(--transition-base);
}

.category-icon-circle img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.category-icon-item:hover .category-icon-circle {
    border-color: var(--coral);
    box-shadow: 0 4px 16px rgba(224, 122, 95, 0.15);
}

.category-icon-item h4 {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
}

.slider-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.slider-arrow:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* === FEATURED COLLECTIONS (2-col banner) === */
.featured-collection-section {
    background: var(--cream);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.featured-banner-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 320px;
    cursor: pointer;
}

.featured-banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-banner-card:hover img {
    transform: scale(1.05);
}

.banner-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(11, 20, 38, 0.7));
    color: var(--white);
}

.banner-overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.banner-overlay-content p {
    font-size: 0.875rem;
    opacity: 0.85;
    margin-bottom: 12px;
}

.banner-overlay-content .btn-link {
    color: var(--coral-light);
}

/* === PRODUCT CARDS (New Arrivals / Trending) === */
.product-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.premium-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
}

.product-card-new {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: all var(--transition-base);
    border: 1px solid var(--border-soft);
}

/* Anchor tag flex removed as it is now an absolute overlay */

.product-card-new:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-image-new {
    height: 220px;
    overflow: hidden;
    background: var(--cream);
}

.product-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-new:hover .product-image-new img {
    transform: scale(1.06);
}

.product-content {
    padding: 16px;
}

.product-content h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-weight {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--sage-dark);
    margin-bottom: 10px;
}

.product-weight i {
    font-size: 0.7rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-group {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
}

.old-price {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    z-index: 2;
    border: none;
    cursor: pointer;
}

.wishlist-btn:hover {
    color: var(--coral);
    background: var(--white);
}

.wishlist-btn.active {
    color: var(--coral);
}

.wishlist-btn.active i {
    font-weight: 900;
}

.add-to-cart-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--navy);
    color: var(--white);
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
}

.add-to-cart-btn:hover {
    background: var(--coral);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(224, 122, 95, 0.3);
}

.add-to-cart-btn.golden {
    background: var(--gold);
}

.add-to-cart-btn.golden:hover {
    background: var(--gold-light);
}

/* === TREND ALERT === */
.trend-alert-section {
    background: var(--cream);
}

.trend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.trend-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 360px;
    cursor: pointer;
}

.trend-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trend-card:hover img {
    transform: scale(1.05);
}

.trend-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(11, 20, 38, 0.8));
    color: var(--white);
}

.trend-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.trend-content p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* === INVESTMENT / SAVINGS SECTION === */
.savings-v3-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lighter) 100%);
}

.investment-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: var(--space-xl);
    justify-content: center;
}

.investment-tab-btn {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
    cursor: pointer;
    font-family: var(--font-body);
}

.investment-tab-btn:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.12);
}

.investment-tab-btn.active {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}

.savings-v3-container {
    position: relative;
}

.investment-pane {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.investment-pane.active {
    display: grid;
}

.savings-v3-content {
    color: var(--white);
}

.savings-v3-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.savings-v3-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(224, 122, 95, 0.15);
    color: var(--coral-light);
    border: 1px solid rgba(224, 122, 95, 0.2);
}

.savings-v3-badge.silver-badge {
    background: rgba(192, 192, 192, 0.12);
    color: #C0C0C0;
    border-color: rgba(192, 192, 192, 0.2);
}

.savings-v3-badge.copper-badge {
    background: rgba(184, 115, 51, 0.12);
    color: #D4956B;
    border-color: rgba(184, 115, 51, 0.2);
}

.savings-v3-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.savings-v3-title.silver-text {
    color: #E0E0E0;
}

.savings-v3-title.copper-text {
    color: #D4956B;
}

.savings-v3-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
}

.savings-v3-steps {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.v3-step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.v3-step-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(224, 122, 95, 0.15);
    color: var(--coral-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.v3-step-text h5 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.v3-step-text p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.savings-v3-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-v3-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--coral);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-v3-primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
}

.btn-silver-primary {
    background: #A0A0A0;
}

.btn-silver-primary:hover {
    background: #888;
}

.btn-copper-primary {
    background: #B87333;
}

.btn-copper-primary:hover {
    background: #9A5E28;
}

.live-rate-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.rate-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: rateBlinkModern 1.5s ease infinite;
}

@keyframes rateBlinkModern {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.savings-v3-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gullak-visual {
    position: relative;
    text-align: center;
}

.gullak-visual img {
    max-height: 340px;
    width: auto;
    position: relative;
    z-index: 1;
}

.gullak-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 122, 95, 0.2), transparent 70%);
    z-index: 0;
}

.gullak-glow.silver-glow {
    background: radial-gradient(circle, rgba(192, 192, 192, 0.15), transparent 70%);
}

.gullak-glow.copper-glow {
    background: radial-gradient(circle, rgba(184, 115, 51, 0.15), transparent 70%);
}

/* === FEATURED SHOWCASE (Collections) === */
.featured-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 220px);
    gap: 16px;
}

.featured-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.featured-item.large {
    grid-row: span 2;
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-item:hover img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(11, 20, 38, 0.7));
    color: var(--white);
}

.featured-overlay h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-meta .price {
    font-size: 0.95rem;
    font-weight: 700;
}

.featured-meta .old-price {
    font-size: 0.8rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-left: 6px;
}

/* === WEDDING EDIT === */
.wedding-grid {
    gap: 20px;
}

.wedding-edit-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 380px;
    cursor: pointer;
}

.wedding-edit-card.featured {
    height: 400px;
}

.wedding-edit-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wedding-edit-card:hover img {
    transform: scale(1.05);
}

.wedding-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    background: linear-gradient(transparent, rgba(11, 20, 38, 0.75));
    color: var(--white);
}

.wedding-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.wedding-content a {
    color: var(--coral-light);
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* === GIFTING STUDIO === */
.gifting-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 16px;
}

.gift-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gift-card.main {
    grid-row: span 2;
}

.gift-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gift-card:hover img {
    transform: scale(1.05);
}

.gift-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(11, 20, 38, 0.65));
    color: var(--white);
}

.gift-overlay h4 {
    font-size: 1rem;
    font-weight: 600;
}

/* === MORE COLLECTION === */
.more-collection-section {
    background: var(--white);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.collection-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-card:hover img {
    transform: scale(1.05);
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(11, 20, 38, 0.7));
    color: var(--white);
    display: flex;
    align-items: flex-end;
}

.collection-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.collection-content p {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* === VIRTUAL TRY-ON === */
.virtual-tryon-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.tryon-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.tryon-image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.tryon-image-frame img {
    width: 100%;
    border-radius: var(--radius-xl);
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(11, 20, 38, 0.85);
    backdrop-filter: blur(6px);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.floating-badge i {
    color: var(--coral);
}

.tryon-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.tryon-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.tryon-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: center;
}

.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    background: rgba(224, 122, 95, 0.1);
    color: var(--coral);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.app-buttons {
    display: flex;
    gap: 12px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    color: var(--white);
    transition: all var(--transition-fast);
}

.app-btn.apple {
    background: var(--navy);
}

.app-btn.google {
    background: var(--navy);
}

.app-btn:hover {
    transform: translateY(-2px);
}

.app-btn i {
    font-size: 1.3rem;
}

.app-btn small {
    font-size: 0.65rem;
    display: block;
    opacity: 0.7;
}

.app-btn strong {
    font-size: 0.85rem;
    display: block;
}

/* === VIDEO CAMPAIGN === */
.video-section-redesigned {
    position: relative;
    padding: 0;
}

.video-container {
    position: relative;
    height: 440px;
    overflow: hidden;
}

.video-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 20, 38, 0.8) 0%, rgba(11, 20, 38, 0.4) 100%);
}

.video-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
}

.video-text-box {
    max-width: 480px;
    color: var(--white);
}

.video-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--coral-light);
    margin-bottom: 12px;
    font-weight: 600;
    display: block;
}

.video-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.video-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

.video-play-box {
    text-align: center;
}

.play-btn-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--coral);
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    padding-left: 5px;
}

.play-btn-large:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(224, 122, 95, 0.4);
}

.play-btn-large .ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--coral);
    animation: ripple-modern 2s ease infinite;
}

@keyframes ripple-modern {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.play-label {
    display: block;
    margin-top: 12px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
}

/* === TESTIMONIALS === */
.testimonial-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.testimonial-card .stars {
    margin-bottom: 16px;
    color: var(--coral);
    font-size: 0.85rem;
    display: flex;
    gap: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* === BLOG / EDITORIAL === */
.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-soft);
    transition: all var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.4;
}

.read-more {
    color: var(--coral);
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.read-more:hover {
    gap: 10px;
}

/* === INSTAGRAM FEED === */
.instagram-feed-section {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.insta-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.insta-logo {
    font-size: 1.8rem;
    color: var(--coral);
    margin-bottom: 8px;
}

.insta-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.insta-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.insta-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.insta-item:hover img {
    transform: scale(1.08);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(224, 122, 95, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.insta-overlay i {
    color: var(--white);
    font-size: 1.5rem;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-footer {
    text-align: center;
    margin-top: var(--space-lg);
}

.btn-insta-follow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    border: 2px solid var(--coral);
    color: var(--coral);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.btn-insta-follow:hover {
    background: var(--coral);
    color: var(--white);
}

/* === ASSURANCE / PROMISE === */
.assurance-item {
    text-align: center;
    padding: 20px;
}

.assurance-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(224, 122, 95, 0.1);
    color: var(--coral);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 12px;
}

.assurance-item h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.assurance-item p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* === FOOTER === */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand .footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-brand .footer-logo span {
    color: var(--coral);
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-fast);
    font-size: 0.85rem;
}

.footer-social a:hover {
    background: var(--coral);
    color: var(--white);
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--coral-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
    color: var(--coral-light);
}

/* === SCROLL REVEAL ANIMATIONS === */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* === UTILITY === */
.bg-cream {
    background: var(--cream);
}

.bg-white {
    background: var(--white);
}

.bg-navy {
    background: var(--navy);
    color: var(--white);
}

/* === PAGE-LEVEL STYLES === */

/* Cart Page */
.cart-container {
    max-width: 1000px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--border-soft);
    align-items: center;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--cream);
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.cart-item-details .item-weight {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.cart-item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-control button {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-control span {
    width: 32px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.remove-btn {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.remove-btn:hover {
    color: var(--coral);
}

/* Cart Summary */
.cart-summary {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
}

.summary-row.total {
    font-size: 1.1rem;
    font-weight: 700;
    border-top: 2px solid var(--border-color);
    padding-top: 16px;
    margin-top: 8px;
}

.checkout-btn {
    width: 100%;
    margin-top: 20px;
}

/* Login/Register */
.auth-container {
    max-width: 440px;
    margin: 140px auto 60px;
    padding: 0 20px;
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-soft);
}

.auth-card h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 8px;
    color: var(--navy);
}

.auth-card .subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: all var(--transition-fast);
    color: var(--text-primary);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Jewellery Listing */
.listing-container {
    margin-top: 100px;
}

.filter-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--border-soft);
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

/* Product Details */
.product-detail-container {
    margin-top: 110px;
    padding-bottom: 60px;
}

.product-gallery {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--cream);
}

.product-info h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.product-info .product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 16px;
}

/* Orders */
.orders-container {
    max-width: 900px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.order-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
    transition: all var(--transition-fast);
}

.order-card:hover {
    box-shadow: var(--shadow-md);
}

/* Page Banner (for secondary pages) */
.page-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lighter) 100%);
    padding: 60px 0 40px;
    margin-top: 100px;
    text-align: center;
    color: var(--white);
}

.page-banner h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-banner p {
    font-size: 0.95rem;
    opacity: 0.7;
}

.page-content {
    padding: 60px 0;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--text-secondary);
}

.breadcrumb a:hover {
    color: var(--coral);
}

.breadcrumb .sep {
    color: var(--text-muted);
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 14px 24px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    font-size: 0.85rem;
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 20, 38, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 90%;
    padding: 32px;
    box-shadow: var(--shadow-xl);
}

/* Empty States */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: var(--space-xl);
}

.pagination .page-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.pagination .page-btn:hover {
    border-color: var(--coral);
    color: var(--coral);
}

.pagination .page-btn.active {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}

/* Hamburger (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--navy);
    transition: all var(--transition-fast);
    border-radius: 2px;
}