/* ==========================================================================
   ARJUNFANCYSTORE — Modern Fashion & Lifestyle Marketplace CSS
   Brand Colors: Royal Blue, Black, White, Gold Premium Accent, Soft Beige
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,600&display=swap');

:root {
    --primary-blue: #0B2545;
    --royal-blue: #133E87;
    --royal-blue-light: #1D4ED8;
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #AA820A;
    --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    --gold-shimmer: linear-gradient(90deg, #D4AF37 0%, #FFE082 50%, #D4AF37 100%);
    --black: #111827;
    --charcoal: #1F2937;
    --gray-dark: #374151;
    --gray-mid: #6B7280;
    --gray-light: #E5E7EB;
    --gray-subtle: #F3F4F6;
    --white: #FFFFFF;
    --soft-beige: #FBF8F2;
    --beige-accent: #F4EDE2;
    --danger: #EF4444;
    --success: #10B981;
    --warning: #F59E0B;
    
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-luxury: 'Playfair Display', Georgia, serif;
    
    --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.05);
    --shadow-md: 0 4px 20px rgba(11, 37, 69, 0.08);
    --shadow-lg: 0 10px 30px rgba(11, 37, 69, 0.12);
    --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.25);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--soft-beige);
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    padding-bottom: 70px; /* Space for mobile sticky bottom navigation */
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.25;
}

.font-luxury {
    font-family: var(--font-luxury);
}

/* Announcement Top Bar */
.announcement-bar {
    background: var(--primary-blue);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 7px 12px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.announcement-bar span {
    color: var(--gold);
    font-weight: 600;
}

/* Main Header */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 990;
    box-shadow: 0 2px 10px rgba(11, 37, 69, 0.08);
    border-bottom: 1px solid var(--gray-light);
    width: 100%;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 16px;
    width: 100%;
}

@media (max-width: 768px) {
    .header-inner {
        height: 56px;
        gap: 8px;
    }
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-luxury);
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--primary-blue);
    text-transform: uppercase;
    white-space: nowrap;
}

.brand-logo .brand-highlight {
    color: var(--gold-dark);
}

.brand-logo i {
    color: var(--gold);
    font-size: 1.35rem;
}

@media (max-width: 768px) {
    .brand-logo {
        font-size: 1.18rem;
        gap: 6px;
        letter-spacing: 0.2px;
    }
    .brand-logo i {
        font-size: 1.05rem;
    }
}

@media (max-width: 380px) {
    .brand-logo {
        font-size: 1.02rem;
        gap: 4px;
    }
    .brand-logo i {
        font-size: 0.95rem;
    }
}

/* Search Bar (Desktop) */
.header-search {
    flex: 1;
    max-width: 480px;
    position: relative;
    display: none;
}

@media (min-width: 768px) {
    .header-search {
        display: block;
    }
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: var(--soft-beige);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-full);
    padding: 4px 6px 4px 18px;
    transition: var(--transition);
}

.search-input-wrapper:focus-within {
    border-color: var(--royal-blue);
    box-shadow: 0 0 0 3px rgba(19, 62, 135, 0.15);
    background: var(--white);
}

.search-input-wrapper input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.9rem;
    color: var(--black);
}

.search-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

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

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

@media (max-width: 768px) {
    .header-actions {
        gap: 6px;
    }
}

.action-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-blue);
    font-size: 1.25rem;
    position: relative;
    padding: 6px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 768px) {
    .action-icon {
        font-size: 1.15rem;
        padding: 4px 6px;
    }
}

@media (max-width: 380px) {
    .action-icon {
        font-size: 1.05rem;
        padding: 4px;
    }
}

.action-icon:hover {
    color: var(--gold-dark);
}

.action-icon .action-label {
    font-size: 0.7rem;
    font-weight: 500;
    margin-top: 2px;
    display: none;
}

@media (min-width: 1024px) {
    .action-icon .action-label {
        display: block;
    }
}

.badge-count {
    position: absolute;
    top: 0;
    right: -2px;
    background: var(--gold-dark);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    background: transparent;
    border: none;
    color: var(--primary-blue);
    cursor: pointer;
    padding: 6px;
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        font-size: 1.18rem;
        padding: 4px;
    }
}

@media (min-width: 992px) {
    .mobile-nav-toggle {
        display: none;
    }
}

/* Mega Navigation Bar (Desktop) */
.desktop-nav-bar {
    background: var(--primary-blue);
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 992px) {
    .desktop-nav-bar {
        display: block;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-block;
    padding: 13px 16px;
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.06);
}

.nav-link.badge-offer {
    color: var(--gold-light);
    font-weight: 700;
}

/* Dropdown / Mega Menu */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 650px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    border-top: 3px solid var(--gold);
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
}

.nav-item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 12px;
    border-bottom: 2px solid var(--gold-light);
    padding-bottom: 6px;
    letter-spacing: 0.5px;
}

.mega-col ul {
    list-style: none;
}

.mega-col li {
    margin-bottom: 8px;
}

.mega-col a {
    color: var(--gray-dark);
    font-size: 0.88rem;
    display: block;
    transition: var(--transition);
}

.mega-col a:hover {
    color: var(--royal-blue-light);
    transform: translateX(4px);
}

/* Mobile Drawer Navigation */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 37, 69, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 1001;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
}

.mobile-drawer.active {
    left: 0;
}

.drawer-header {
    padding: 18px 20px;
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
}

.drawer-body {
    padding: 16px 0;
    flex: 1;
}

.drawer-nav {
    list-style: none;
}

.drawer-nav-item {
    border-bottom: 1px solid var(--gray-light);
}

.drawer-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-weight: 600;
    color: var(--primary-blue);
}

.drawer-nav-link:hover {
    background: var(--soft-beige);
    color: var(--gold-dark);
}

.drawer-footer {
    padding: 18px 20px;
    background: var(--soft-beige);
    border-top: 1px solid var(--gray-light);
    font-size: 0.85rem;
}

/* Sticky Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--white);
    border-top: 1px solid var(--gray-light);
    box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 980;
}

@media (min-width: 992px) {
    .mobile-bottom-nav {
        display: none;
    }
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-mid);
    font-size: 0.72rem;
    font-weight: 500;
    position: relative;
    width: 20%;
    padding: 6px 0;
}

.bottom-nav-item i {
    font-size: 1.25rem;
    margin-bottom: 2px;
    transition: var(--transition);
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
    color: var(--primary-blue);
    font-weight: 700;
}

.bottom-nav-item.active i {
    color: var(--gold-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: var(--primary-blue);
    color: var(--white);
    overflow: hidden;
}

.hero-slider-item {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    padding: 40px 0;
    background-size: cover;
    background-position: center;
}

@media (min-width: 768px) {
    .hero-slider-item {
        min-height: 520px;
        padding: 60px 0;
    }
}

@media (max-width: 640px) {
    .hero-slider-item {
        min-height: 260px;
        padding: 24px 0;
    }
    .hero-title {
        font-size: 1.55rem !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
    }
    .hero-subtitle {
        font-size: 0.82rem !important;
        line-height: 1.4 !important;
        margin-bottom: 16px !important;
    }
    .hero-badge {
        font-size: 0.72rem !important;
        padding: 4px 10px !important;
        margin-bottom: 8px !important;
    }
    .hero-btns .btn {
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 37, 69, 0.92) 0%, rgba(11, 37, 69, 0.7) 50%, rgba(11, 37, 69, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-family: var(--font-luxury);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.4rem;
        line-height: 1.15;
        margin-bottom: 16px;
    }
}

.hero-subtitle {
    font-size: 0.92rem;
    color: #E2E8F0;
    margin-bottom: 22px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 30px;
        line-height: 1.6;
    }
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-gold {
    background: var(--gold-dark);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background: #8E6B05;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--royal-blue);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.82rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

/* Flash Sale / Promotion Banner */
.flash-sale-bar {
    background: linear-gradient(135deg, #7C1824 0%, #B91C1C 50%, #991B1B 100%);
    color: var(--white);
    padding: 24px 0;
    position: relative;
    overflow: hidden;
}

.flash-sale-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .flash-sale-inner {
        flex-direction: row;
        text-align: left;
    }
}

.flash-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
}

.flash-title span {
    color: #FDE047;
}

.countdown-box {
    display: flex;
    gap: 10px;
}

.countdown-item {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    min-width: 54px;
}

.countdown-num {
    font-size: 1.25rem;
    font-weight: 800;
    color: #FDE047;
    line-height: 1;
}

.countdown-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #E5E7EB;
    margin-top: 2px;
}

/* Section Common Styling */
.section {
    padding: 50px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 70px 0;
    }
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 36px auto;
}

.section-badge {
    display: inline-block;
    color: var(--gold-dark);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
}

.section-title {
    font-family: var(--font-luxury);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.4rem;
    }
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--gray-mid);
}

/* Category Showcase Cards */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--white);
    transition: var(--transition);
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

@media (min-width: 768px) {
    .category-card {
        height: 340px;
    }
}

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

.category-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 37, 69, 0) 40%, rgba(11, 37, 69, 0.85) 100%);
    z-index: 1;
}

.category-card-content {
    position: relative;
    z-index: 2;
    padding: 16px;
    color: var(--white);
    text-align: center;
}

.category-card-name {
    font-family: var(--font-luxury);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.category-card-btn {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.category-card:hover .category-card-btn {
    color: var(--white);
    text-decoration: underline;
}

/* Product Grid (Desktop: 4, Tablet: 2-3, Mobile: 2) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

/* Product Card — Instagram Shopping & Boutique Style */
.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.4);
}

.product-img-wrapper {
    position: relative;
    padding-top: 125%; /* 4:5 Fashion Aspect Ratio */
    background: var(--soft-beige);
    overflow: hidden;
}

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

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

/* Badges / Labels */
.product-badge-group {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

.product-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.badge-bestseller {
    background: var(--gold-dark);
    color: var(--white);
}

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

.badge-trending {
    background: #9333EA;
    color: var(--white);
}

.badge-discount {
    background: #DC2626;
    color: var(--white);
}

.badge-limited {
    background: #EA580C;
    color: var(--white);
}

/* Floating Wishlist Button */
.wishlist-btn-float {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    color: var(--gray-dark);
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
}

.wishlist-btn-float:hover, .wishlist-btn-float.active {
    color: #E11D48;
    background: var(--white);
    transform: scale(1.1);
}

/* Product Card Details */
.product-details {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-brand {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-mid);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
    height: 2.7em;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.rating-count {
    color: var(--gray-mid);
    font-size: 0.7rem;
}

/* Pricing Section */
.product-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.price-current {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.price-original {
    font-size: 0.85rem;
    color: var(--gray-mid);
    text-decoration: line-through;
}

.price-discount-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: #DC2626;
    background: #FEE2E2;
    padding: 1px 6px;
    border-radius: var(--radius-sm);
}

/* Action Buttons */
.product-card-actions {
    margin-top: auto;
    display: flex;
    gap: 6px;
}

.btn-card-cart {
    flex: 1;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 8px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-card-cart:hover {
    background: var(--royal-blue);
}

.btn-card-buy {
    background: var(--gold-dark);
    color: var(--white);
    border: none;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-card-buy:hover {
    background: #8E6B05;
}

/* Customer Love / Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
}

.review-stars {
    color: var(--gold-dark);
    font-size: 1rem;
    margin-bottom: 12px;
}

.review-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.review-text {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 16px;
    font-style: italic;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--gray-light);
    padding-top: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--soft-beige);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.author-info h5 {
    font-size: 0.9rem;
    color: var(--primary-blue);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: #059669;
    font-weight: 600;
}

/* Value Propositions */
.value-props {
    background: var(--white);
    padding: 40px 0;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 992px) {
    .props-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.prop-card {
    display: flex;
    align-items: center;
    gap: 14px;
}

.prop-icon {
    width: 48px;
    height: 48px;
    background: var(--soft-beige);
    border: 1px solid var(--gold-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.prop-text h4 {
    font-size: 0.95rem;
    color: var(--primary-blue);
    margin-bottom: 2px;
}

.prop-text p {
    font-size: 0.8rem;
    color: var(--gray-mid);
}

/* Floating WhatsApp Shopping Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 74px;
    right: 14px;
    background: #25D366;
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 970;
    transition: var(--transition);
}

@media (min-width: 992px) {
    .whatsapp-float-btn {
        bottom: 30px;
        right: 30px;
        width: 56px;
        height: 56px;
        font-size: 1.9rem;
    }
}

.whatsapp-float-btn:hover {
    background: #20BA5A;
    transform: scale(1.08);
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: var(--black);
    color: var(--white);
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Footer */
.site-footer {
    background: var(--primary-blue);
    color: #CBD5E1;
    padding: 60px 0 20px 0;
    border-top: 4px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-col h4 {
    font-family: var(--font-luxury);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

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

.footer-col p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #CBD5E1;
    font-size: 0.88rem;
    transition: var(--transition);
}

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

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold);
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 0.82rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.payment-gateways {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-badge {
    background: var(--white);
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.72rem;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
}

/* Product Detail Page Styling */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
    width: 100%;
}

@media (min-width: 992px) {
    .product-detail-layout {
        grid-template-columns: 1.05fr 1fr;
        gap: 48px;
        margin-bottom: 50px;
    }
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

@media (min-width: 768px) {
    .gallery-container {
        flex-direction: row;
        gap: 16px;
    }
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

@media (min-width: 768px) {
    .gallery-thumbs {
        flex-direction: column;
        overflow-y: auto;
        overflow-x: hidden;
        max-height: 520px;
        width: 80px;
        flex-shrink: 0;
        padding-bottom: 0;
    }
}

.gallery-thumb-item {
    width: 64px;
    height: 76px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    flex-shrink: 0;
    background: var(--soft-beige);
}

@media (min-width: 768px) {
    .gallery-thumb-item {
        width: 76px;
        height: 90px;
    }
}

.gallery-thumb-item.active, .gallery-thumb-item:hover {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

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

.gallery-main {
    flex: 1;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--soft-beige);
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.gallery-main img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.05;
    max-height: 420px;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

@media (min-width: 768px) {
    .gallery-main img {
        height: 520px;
        max-height: 520px;
        aspect-ratio: auto;
    }
}

/* Variant Selectors */
.variant-block {
    margin-bottom: 18px;
    width: 100%;
}

.variant-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.size-selector-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.size-btn {
    border: 1px solid var(--gray-light);
    background: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.size-btn:hover, .size-btn.active {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    color: var(--white);
}

.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.color-pill {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid var(--gray-light);
    background: var(--white);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.color-pill.active, .color-pill:hover {
    border-color: var(--gold-dark);
    background: var(--gold-light);
    color: var(--black);
}

.quantity-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    background: var(--white);
    overflow: hidden;
    height: 44px;
}

.qty-btn {
    width: 36px;
    height: 100%;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-input {
    width: 44px;
    height: 100%;
    border: none;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    outline: none;
    background: transparent;
}

/* Modern Responsive Action Controls */
.product-actions-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    width: 100%;
}

.product-action-row-1 {
    display: flex;
    gap: 10px;
    align-items: stretch;
    width: 100%;
}

.product-action-row-1 .quantity-stepper {
    flex-shrink: 0;
}

.product-action-row-1 .btn-add-cart {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    height: 44px;
    white-space: nowrap;
    padding: 0 16px;
    border-radius: var(--radius-sm);
}

.product-action-row-1 .btn-wishlist-action {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 1.15rem;
    border-radius: var(--radius-sm);
}

.product-action-row-2 {
    width: 100%;
}

.product-action-row-2 .btn-buy-now {
    width: 100%;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    box-shadow: var(--shadow-gold);
    border-radius: var(--radius-sm);
}

.product-action-row-3 {
    width: 100%;
}

.product-action-row-3 .btn-whatsapp-order {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.4px;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
    transition: var(--transition);
    text-transform: uppercase;
}

.product-action-row-3 .btn-whatsapp-order:hover {
    background: #20BA5A;
    color: #fff;
    transform: translateY(-2px);
}

@media (min-width: 992px) {
    .product-actions-wrapper {
        gap: 12px;
    }
    .product-action-row-1 {
        gap: 12px;
    }
    .product-action-row-1 .quantity-stepper {
        height: 48px;
    }
    .product-action-row-1 .btn-add-cart {
        height: 48px;
        font-size: 0.95rem;
    }
    .product-action-row-1 .btn-wishlist-action {
        width: 48px;
        height: 48px;
    }
    .product-action-row-2 .btn-buy-now {
        height: 48px;
        font-size: 1rem;
    }
}

/* Spec Accordion / Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    margin-top: 14px;
    table-layout: fixed;
}

.specs-table th, .specs-table td {
    padding: 10px 10px;
    border-bottom: 1px solid var(--gray-light);
    vertical-align: top;
}

.specs-table th {
    text-align: left;
    color: var(--gray-mid);
    width: 36%;
    font-weight: 500;
}

.specs-table td {
    color: var(--black);
    font-weight: 600;
    width: 64%;
    word-break: break-word;
}

/* Shop Category Chips (Mobile & Tablet) */
.shop-category-chips {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0 16px 0;
    margin-bottom: 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.shop-category-chips::-webkit-scrollbar {
    display: none;
}

.chip-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 1px solid var(--gray-light);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-blue);
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}

.chip-item:hover, .chip-item.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.chip-item.chip-offer {
    border-color: #F87171;
    color: #DC2626;
}

.chip-item.chip-offer.active, .chip-item.chip-offer:hover {
    background: #DC2626;
    color: var(--white);
}

/* Shop Mobile Filter Drawer & Overlay */
.shop-filter-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 37, 69, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1010;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.shop-filter-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.shop-filter-drawer {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: var(--white);
    z-index: 1020;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}

.shop-filter-drawer.active {
    right: 0;
}

.filter-drawer-header {
    padding: 16px 20px;
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-drawer-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.filter-drawer-footer {
    padding: 14px 20px;
    background: var(--soft-beige);
    border-top: 1px solid var(--gray-light);
    display: flex;
    gap: 10px;
}

.mobile-filter-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

@media (min-width: 992px) {
    .mobile-filter-toggle-btn {
        display: none !important;
    }
}

.filter-indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: #DC2626;
    display: inline-block;
}

/* Order Tracker Stepper (6-Stage Pipeline matching user design) */
.tracking-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    border: 1px solid var(--gray-light);
}

.order-stepper-wrapper {
    width: 100%;
    overflow-x: auto;
    padding: 10px 4px 16px 4px;
    -webkit-overflow-scrolling: touch;
}

.order-stepper-wrapper::-webkit-scrollbar {
    height: 4px;
}

.order-stepper-wrapper::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.4);
    border-radius: 4px;
}

.stepper-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 20px 0 10px 0;
    min-width: 500px;
}

.stepper-progress-line {
    position: absolute;
    top: 21px;
    left: 42px;
    right: 42px;
    height: 4px;
    background: #E2E8F0;
    z-index: 1;
    border-radius: 2px;
}

.stepper-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #D4AF37 0%, #C59B27 100%);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.stepper-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #64748B;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

/* Active Step with Distinct Gold Halo Ring (Exact match to user uploaded picture) */
.stepper-step.active .step-circle {
    border: 2.5px solid #FFFFFF;
    background: #C59B27;
    color: #FFFFFF;
    box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.38), 0 3px 12px rgba(197, 155, 39, 0.45);
    transform: scale(1.06);
}

/* Completed Step */
.stepper-step.completed .step-circle {
    border: 2.5px solid #0B2545;
    background: #0B2545;
    color: #FFFFFF;
    box-shadow: 0 2px 6px rgba(11, 37, 69, 0.2);
}

.step-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748B;
    margin-top: 10px;
    white-space: nowrap;
}

.stepper-step.active .step-name {
    color: #0F172A;
    font-weight: 800;
}

.stepper-step.completed .step-name {
    color: #0B2545;
    font-weight: 700;
}

/* Invoice Styles */
.invoice-card {
    background: var(--white);
    max-width: 800px;
    margin: 30px auto;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
}

@media print {
    body {
        background: #fff !important;
        padding-bottom: 0 !important;
    }
    .site-header, .site-footer, .announcement-bar, .mobile-bottom-nav, .whatsapp-float-btn, .no-print {
        display: none !important;
    }
    .invoice-card {
        box-shadow: none !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
        max-width: 100% !important;
    }
}

/* ==========================================================================
   Account Dashboard Responsive System
   ========================================================================== */
.account-layout-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 30px;
    align-items: start;
    width: 100%;
}

.account-header-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .account-layout-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
    .account-header-card {
        padding: 18px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .account-header-card {
        padding: 16px;
    }
    .account-header-card h1 {
        font-size: 1.4rem !important;
    }
}

/* ==========================================================================
   1920x1080 (16:9) Widescreen Hero Banner & Slider
   ========================================================================== */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0B2545;
}

.hero-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.hero-slide {
    min-width: 100%;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

/* 1920x1080 widescreen container */
.hero-16-9-frame {
    position: relative;
    width: 100%;
    min-height: 540px;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
}

@media (min-width: 1200px) {
    .hero-16-9-frame {
        min-height: 600px;
    }
}

@media (max-width: 991px) {
    .hero-16-9-frame {
        min-height: 460px;
    }
}

@media (max-width: 640px) {
    .hero-16-9-frame {
        min-height: 320px;
        padding: 20px 0;
    }
}

/* Video Frame with interactive sound toggle */
.hero-video-widescreen {
    position: relative;
    width: 100%;
    max-width: 580px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55);
    border: 2px solid var(--gold);
    background: #000;
}

.hero-video-aspect {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.hero-video-aspect iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Slider Controls */
.hero-slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(11, 37, 69, 0.7);
    color: #fff;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.hero-slider-nav-btn:hover {
    background: var(--gold-dark);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-nav-btn.prev {
    left: 18px;
}

.hero-slider-nav-btn.next {
    right: 18px;
}

.hero-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1.5px solid rgba(212, 175, 55, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    width: 28px;
    border-radius: 6px;
    background: var(--gold);
    border-color: #fff;
}

/* Delivery Alarm & Pulse Animations */
@keyframes bellShake {
    0% { transform: rotate(0); }
    15% { transform: rotate(14deg); }
    30% { transform: rotate(-14deg); }
    45% { transform: rotate(10deg); }
    60% { transform: rotate(-10deg); }
    75% { transform: rotate(4deg); }
    100% { transform: rotate(0); }
}

.admin-alarm-bell i {
    animation: bellShake 2.2s infinite;
}

