@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0f4c3a;
    --primary-light: #186a53;
    --primary-ultra-light: #f0fdf4;
    --secondary: #2a9d8f;
    --accent: #e76f51;
    --accent-hover: #dd5e3f;
    --neutral-dark: #0f172a;
    --neutral-grey: #475569;
    --neutral-light-grey: #94a3b8;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 25px -5px rgba(15, 76, 58, 0.08), 0 8px 10px -6px rgba(15, 76, 58, 0.04);
    --shadow-lg: 0 20px 40px -15px rgba(15, 76, 58, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--neutral-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    padding: 40px 0;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--neutral-dark);
    font-weight: 700;
    line-height: 1.25;
}

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

/* Header & Sticky Navbar */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 4px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo i {
    color: var(--secondary);
    font-size: 1.8rem;
    transform: rotate(-10deg);
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--neutral-grey);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.cart-icon {
    position: relative;
}

.cart-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-ultra-light);
    color: var(--primary);
    transition: var(--transition);
}

.cart-icon a:hover {
    background-color: var(--primary);
    color: white;
    transform: scale(1.05);
}

.cart-icon span {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid white;
    animation: bounceBadge 0.3s ease-out;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* ===== HERO SECTION — Dark Green Split Layout ===== */
.hero-main {
    background: linear-gradient(135deg, #0b3d2e 0%, #0f4c3a 45%, #165c48 100%);
    min-height: 580px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-bottom: none;
    margin-top: -40px;
}

/* Subtle dot-grid texture overlay */
.hero-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Large ambient glow blobs */
.hero-main::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.hero-main-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ---- LEFT: Text panel ---- */
.hero-left {
    color: white;
}

.hero-left .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.hero-left .hero-tag i {
    color: var(--accent);
}

.hero-left h1 {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    color: white;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-left h1 .hero-accent-word {
    color: var(--accent);
    /* coral/orange */
}

.hero-left .hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 36px;
}

.hero-left .hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Primary filled button on dark bg */
.btn-hero-primary {
    background: var(--accent);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 28px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(231, 111, 81, 0.35);
    text-decoration: none;
}

.btn-hero-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(231, 111, 81, 0.45);
    color: white;
}

/* Ghost/outline button on dark bg */
.btn-hero-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 30px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
    transform: translateY(-2px);
}

/* ---- RIGHT: Visual image panel ---- */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 420px;
}

/* Decorative arch shape behind image */
.hero-arch {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 340px;
    height: 400px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 200px 200px 0 0;
    z-index: 0;
}

/* Circular product image display */
.hero-img-circle {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    border: 6px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 0 0 12px rgba(255, 255, 255, 0.05),
        0 30px 70px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

/* Individual cycling images */
.hero-cycle-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.hero-cycle-img.active {
    opacity: 1;
}

/* Subtle ring pulse around the circle */
.hero-img-ring {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    animation: ringPulse 3s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.hero-img-ring-2 {
    width: 400px;
    height: 400px;
    border-color: rgba(255, 255, 255, 0.06);
    animation-delay: 1s;
}

@keyframes ringPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.04);
        opacity: 0.5;
    }
}

/* ---- Floating UI cards ---- */
.hero-float-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 11px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
    z-index: 5;
    font-family: var(--font-heading);
    white-space: nowrap;
    pointer-events: none;
}

/* Top-left card — current product info */
.hero-float-top {
    top: 28px;
    left: -10px;
    animation: cardFloat 4s ease-in-out infinite;
}

/* Bottom-right card — trust/rating */
.hero-float-bottom {
    bottom: 28px;
    right: -16px;
    animation: cardFloat 4s ease-in-out infinite 1.8s;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero-float-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-float-avatar.accent-bg {
    background: linear-gradient(135deg, var(--accent), #d45a3a);
}

.hero-float-label {
    display: flex;
    flex-direction: column;
}

.hero-float-label strong {
    font-size: 0.85rem;
    color: var(--neutral-dark);
    font-weight: 700;
    line-height: 1.2;
}

.hero-float-label span {
    font-size: 0.75rem;
    color: var(--neutral-light-grey);
    font-weight: 500;
}

.hero-float-action {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.hero-float-action.accent-bg {
    background: var(--accent);
}

/* Image dot indicators (small dots below circle) */
.hero-img-dots {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 6;
}

.hero-img-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
}

.hero-img-dot.active {
    background: white;
    width: 22px;
    border-radius: 4px;
}

/* Progress bar (bottom of section) */
.hero-img-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    width: 0%;
    z-index: 10;
    transition: width 0.1s linear;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .hero-main-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 60px 24px;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .hero-left .hero-desc {
        max-width: 100%;
    }

    .hero-left .hero-cta-row {
        justify-content: center;
    }

    .hero-right {
        height: 340px;
    }

    .hero-img-circle {
        width: 250px;
        height: 250px;
    }

    .hero-img-ring {
        width: 290px;
        height: 290px;
    }

    .hero-img-ring-2 {
        width: 330px;
        height: 330px;
    }

    .hero-arch {
        width: 260px;
        height: 300px;
    }

    .hero-float-top {
        left: 0;
        top: 10px;
    }

    .hero-float-bottom {
        right: 0;
        bottom: 10px;
    }
}

@media (max-width: 600px) {
    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-float-card {
        display: none;
    }
}

/* ===== NEWS BANNER (Below Hero) ===== */
.news-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 12px 0;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    white-space: nowrap;
    display: flex;
    z-index: 20;
}

.news-banner-track {
    display: flex;
    animation: marquee 25s linear infinite;
    min-width: 200%;
}

.news-banner:hover .news-banner-track {
    animation-play-state: paused;
}

.news-banner-content {
    padding: 0 40px;
    display: inline-block;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-main {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    min-height: 580px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

/* Decorative blobs */
.hero-slider::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-slider::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -60px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(231, 111, 81, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Slides track */
.hero-slides-track {
    display: flex;
    width: 100%;
    transition: none;
    will-change: transform;
}

/* Individual slide */
.hero-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    padding: 60px 0;
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1), transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    pointer-events: auto;
}

.hero-slide.leaving {
    opacity: 0;
    transform: translateX(-60px);
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

/* Slide layout: text left, image right */
.hero-slide-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Text side */
.hero-text {
    z-index: 2;
}

.hero-text .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(42, 157, 143, 0.1);
    border: 1px solid rgba(42, 157, 143, 0.25);
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--primary);
    letter-spacing: -1px;
    font-family: var(--font-heading);
}

.hero-text .hero-category {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--neutral-grey);
    margin-bottom: 16px;
    line-height: 1.7;
    max-width: 440px;
}

.hero-text .hero-price-block {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 32px;
}

.hero-text .hero-price {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.hero-text .hero-price-label {
    font-size: 0.9rem;
    color: var(--neutral-light-grey);
    font-weight: 500;
}

.hero-text .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Image side */
.hero-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-image-blob {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
    background: rgba(42, 157, 143, 0.08);
    animation: blobMorph 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes blobMorph {

    0%,
    100% {
        border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
    }

    33% {
        border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%;
    }

    66% {
        border-radius: 55% 45% 60% 40% / 40% 60% 45% 55%;
    }
}

.hero-product-img {
    position: relative;
    z-index: 1;
    width: 340px;
    height: 340px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 30px 80px -20px rgba(15, 76, 58, 0.25), 0 0 0 8px rgba(255, 255, 255, 0.8);
    transition: transform 0.4s ease;
    background: white;
}

.hero-slide.active .hero-product-img {
    animation: imgFloat 4s ease-in-out infinite;
}

@keyframes imgFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

/* Floating badge on image */
.hero-img-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: white;
    border-radius: 14px;
    padding: 10px 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    animation: badgePop 0.6s 0.4s both cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-img-badge i {
    font-size: 1.1rem;
    color: var(--secondary);
}

@keyframes badgePop {
    from {
        opacity: 0;
        transform: scale(0.6) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Navigation arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-color);
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    outline: none;
}

.hero-arrow:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(15, 76, 58, 0.25);
}

.hero-arrow.prev {
    left: 24px;
}

.hero-arrow.next {
    right: 24px;
}

/* Dot indicators */
.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(15, 76, 58, 0.2);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
    outline: none;
}

.hero-dot.active {
    width: 28px;
    border-radius: 4px;
    background: var(--primary);
}

/* Progress bar */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    width: 0%;
    transition: width 0.1s linear;
    z-index: 10;
}

/* Slide counter */
.hero-counter {
    position: absolute;
    top: 28px;
    right: 80px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--neutral-grey);
    z-index: 10;
}

.hero-counter .current {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Responsive hero slider */
@media (max-width: 900px) {
    .hero-slide-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.4rem;
    }

    .hero-text p {
        max-width: 100%;
    }

    .hero-text .hero-ctas {
        justify-content: center;
    }

    .hero-text .hero-price-block {
        justify-content: center;
    }

    .hero-image-wrap {
        order: -1;
    }

    .hero-product-img {
        width: 240px;
        height: 240px;
    }

    .hero-image-blob {
        width: 280px;
        height: 280px;
    }

    .hero-slider {
        min-height: auto;
    }

    .hero-img-badge {
        left: 0;
    }

    .hero-arrow {
        display: none;
    }
}

/* Legacy static hero (kept as fallback class) */
.hero-static {
    background: radial-gradient(circle at 80% 20%, #f0fdf4 0%, #ffffff 100%);
    padding: 100px 0 80px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    text-align: left;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--primary);
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--neutral-grey);
    margin-bottom: 32px;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 30px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    box-shadow: 0 4px 14px rgba(231, 111, 81, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 111, 81, 0.4);
}

.btn-secondary {
    background-color: var(--primary-ultra-light);
    color: var(--primary);
}

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

.btn-danger {
    background-color: #fee2e2;
    color: #ef4444;
}

.btn-danger:hover {
    background-color: #ef4444;
    color: white;
}

/* Category Section */
.categories {
    padding: 60px 0;
}

.categories h2,
.featured h2 {
    font-size: 2.2rem;
    margin-bottom: 32px;
    text-align: center;
    position: relative;
}

.categories h2::after,
.featured h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--secondary);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* ===== CATEGORY SHOWCASE SECTION ===== */
.cat-showcase-section {
    padding: 72px 0;
    background: #f8fafc;
}

.cat-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 12px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--secondary);
    background: rgba(42, 157, 143, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2rem;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 6px;
    text-align: left;
}

.section-subtitle {
    color: var(--neutral-grey);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.cat-view-all {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: var(--transition);
}

.cat-view-all:hover {
    opacity: 0.75;
}

/* ===== COMPACT HORIZONTAL TAB RAIL ===== */
.cat-tab-rail {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px 2px 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.cat-tab-rail::-webkit-scrollbar {
    display: none;
}

/* Individual Tab Button */
.cat-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border: none;
    background: transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    min-width: 160px;
    text-align: left;
    font-family: var(--font-body);
    position: relative;
}

.cat-tab:hover {
    background: var(--primary-ultra-light);
}

/* Active tab: dark filled */
.cat-tab.active {
    background: var(--neutral-dark);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.18);
}

/* Square thumbnail inside tab */
.cat-tab-thumb {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
}

.cat-tab.active .cat-tab-thumb {
    border-color: rgba(255, 255, 255, 0.2);
}

.cat-tab-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.cat-tab:hover .cat-tab-thumb img {
    transform: scale(1.08);
}

/* Text labels */
.cat-tab-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.cat-tab-num {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--neutral-light-grey);
    white-space: nowrap;
}

.cat-tab.active .cat-tab-num {
    color: rgba(255, 255, 255, 0.55);
}

.cat-tab-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--neutral-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 110px;
}

.cat-tab.active .cat-tab-name {
    color: white;
}

.cat-tab-count {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
    background: rgba(42, 157, 143, 0.1);
    border-radius: 20px;
    padding: 1px 8px;
    display: inline-block;
    width: fit-content;
    margin-top: 2px;
}

.cat-tab.active .cat-tab-count {
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.15);
}

/* ===== SHOWCASE BODY: Banner + Products ===== */
.cat-showcase-body {
    position: relative;
    transition: opacity 0.3s ease;
}

.cat-showcase-body.cat-loading {
    opacity: 0.4;
    pointer-events: none;
}

/* Category Banner Card */
.cat-banner {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    animation: fadeInUp 0.35s ease both;
}

.cat-banner:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.cat-banner-img {
    position: relative;
    width: 140px;
    height: 110px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--border-color);
}

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

.cat-banner-count {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.65);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.cat-banner-info {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cat-banner-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
}

.cat-banner-name {
    font-size: 1.6rem;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.cat-banner-desc {
    color: var(--neutral-grey);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
    max-width: 560px;
}

.cat-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}

.cat-banner-btn:hover {
    background: var(--primary);
    color: white;
}

/* Products section under banner */
.cat-products-section {
    margin-top: 8px;
}

.cat-products-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--neutral-light-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

/* Empty state */
.cat-empty {
    text-align: center;
    padding: 48px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    color: var(--neutral-grey);
    grid-column: 1 / -1;
}

.cat-empty i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    opacity: 0.35;
    display: block;
}

.cat-empty p {
    margin: 0;
}

/* Product Section */
.featured {
    padding: 60px 0;
    background-color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 32px;
    margin: 30px 0;
}

.product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(42, 157, 143, 0.25);
}

.product-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--neutral-dark);
}

.product-card .category {
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-card .price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
}

.product-card .add-to-cart-circle:hover {
    background-color: var(--secondary) !important;
    transform: scale(1.08);
}

.stock-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
}

.in-stock-tag {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

/* Filters and Search Bar */
.filters-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background: white;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.search-form {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    background-color: var(--bg-main);
    border-radius: 30px;
    padding: 4px 6px 4px 16px;
    width: 100%;
    max-width: 400px;
    transition: var(--transition);
}

.search-form:focus-within {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.15);
    background-color: white;
}

.search-form input {
    border: none;
    background: transparent;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    width: 100%;
    color: var(--neutral-dark);
}

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

.search-form button:hover {
    background-color: var(--secondary);
    transform: scale(1.05);
}

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

.sort label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--neutral-grey);
}

.sort select {
    font-family: var(--font-body);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: white;
    outline: none;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--neutral-dark);
    transition: var(--transition);
}

.sort select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.15);
}

/* Category Filter Tags */
.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.category-tag {
    padding: 8px 18px;
    border-radius: 20px;
    background: white;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--neutral-grey);
    cursor: pointer;
    transition: var(--transition);
}

.category-tag:hover,
.category-tag.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Product Detail Page */
.product-detail {
    background-color: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 40px;
    box-shadow: var(--shadow-md);
    margin-top: 20px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.product-image img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background-color: var(--bg-main);
}

.product-info h1 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.product-info .category {
    font-size: 0.95rem;
    color: var(--neutral-light-grey);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.product-info .price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 20px;
}

.product-info .stock {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 24px;
}

.product-info .description {
    color: var(--neutral-grey);
    font-size: 1.05rem;
    margin-bottom: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.quantity-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: var(--bg-main);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    width: fit-content;
}

.quantity-box label {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
}

/* Custom quantity controls */
.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: white;
    overflow: hidden;
}

.qty-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--neutral-grey);
    transition: var(--transition);
}

.qty-btn:hover {
    background-color: var(--bg-main);
    color: var(--primary);
}

.qty-selector input {
    width: 45px;
    height: 36px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    outline: none;
    font-weight: 600;
    font-family: var(--font-body);
}

.related-products {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.related-products h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

/* Cart Page */
.cart-page {
    background-color: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.cart-page h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 40px;
}

.cart-table th {
    background-color: var(--primary-ultra-light);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 16px;
    text-align: left;
    font-size: 0.95rem;
    border-bottom: 2px solid var(--border-color);
}

.cart-table td {
    padding: 20px 16px;
    border-bottom: 1px solid var(--border-color);
    color: var(--neutral-dark);
}

.cart-table tr:hover td {
    background-color: #fafdfb;
}

.cart-table input.cart-qty {
    width: 60px;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    outline: none;
    font-weight: 600;
}

.remove-item {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.remove-item:hover {
    background-color: #fee2e2;
    transform: scale(1.1);
}

.cart-summary {
    max-width: 400px;
    margin-left: auto;
    background-color: var(--bg-main);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.cart-summary p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--neutral-grey);
    font-weight: 500;
}

.cart-summary .total {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: 16px;
    font-size: 1.35rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
}

.cart-summary .btn {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

/* Forms & Auth (Login / Register / Checkout) */
.form-container {
    max-width: 450px;
    background-color: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 40px;
    box-shadow: var(--shadow-md);
    margin: 40px auto;
}

.form-container h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 24px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--neutral-grey);
}

.form-container form input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.checkout form input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.checkout form select,
.form-group input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--neutral-dark);
    background-color: var(--bg-main);
    outline: none;
    transition: var(--transition);
}

.form-group input[type="checkbox"],
.form-group input[type="radio"] {
    width: auto;
    padding: 0;
    margin-right: 10px;
    border: none;
    background: transparent;
    vertical-align: middle;
}

.form-group input[type="checkbox"]:focus,
.form-group input[type="radio"]:focus {
    outline: 1px solid var(--secondary);
    box-shadow: none;
}

.form-container form input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):focus,
.checkout form input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):focus,
.checkout form select:focus,
.form-group input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.15);
}

.form-container form input {
    margin-bottom: 16px;
}

.form-container button {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.form-container p {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--neutral-grey);
}

.form-container p a {
    color: var(--secondary);
    font-weight: 600;
}

.form-container p a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Error/Success Feedbacks */
.error {
    background-color: #fee2e2;
    color: #b91c1c;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border-left: 4px solid #ef4444;
}

.success {
    background-color: #dcfce7;
    color: #15803d;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border-left: 4px solid #22c55e;
}

/* Checkout Page Grid */
.checkout {
    background-color: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.checkout h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.checkout-summary-box {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    height: fit-content;
}

.checkout-summary-box h3 {
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.checkout-summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.checkout-summary-total {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: 16px;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary);
}

/* User Profile & Dashboard Stats */
.profile {
    background-color: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.profile h1 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: var(--primary);
}

.profile-info {
    background-color: var(--primary-ultra-light);
    border: 1px solid rgba(15, 76, 58, 0.1);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 40px;
}

.profile-info h3 {
    color: var(--primary);
    margin-bottom: 12px;
}

.order-history h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th {
    background-color: var(--primary-ultra-light);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 14px;
    text-align: left;
    border-bottom: 2px solid var(--border-color);
}

.orders-table td {
    padding: 14px;
    border-bottom: 1px solid var(--border-color);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    text-align: center;
}

.status-pending {
    background-color: #fef3c7;
    color: #d97706;
}

.status-processing {
    background-color: #e0f2fe;
    color: #0284c7;
}

.status-shipped {
    background-color: #ede9fe;
    color: #7c3aed;
}

.status-delivered {
    background-color: #dcfce7;
    color: #15803d;
}

/* Stats Cards (Admin) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.stats-grid div,
.stats-card {
    background: white;
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: left;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.stats-grid div:hover,
.stats-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stats-card-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: 8px;
}

.stats-card-label {
    font-size: 0.9rem;
    color: var(--neutral-grey);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Toast Notifications Container */
#toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 350px;
}

.toast {
    background-color: var(--neutral-dark);
    color: white;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(100px);
    opacity: 0;
    animation: slideIn 0.3s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-success {
    border-left: 4px solid var(--secondary);
}

.toast i {
    color: var(--secondary);
    font-size: 1.1rem;
}

/* Footer Section */
footer {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 50px 0 30px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer .container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    text-align: left;
}

footer .container > div:nth-child(1) {
    text-align: left;
}

footer .container > div:nth-child(2) {
    text-align: center;
}

footer .container > div:nth-child(3) {
    text-align: right;
}

/* Make only the column heading align left while keeping column content right-aligned */
footer .container > div:nth-child(3) h4 {
    text-align: left;
}

footer p {
    opacity: 0.8;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

footer a {
    color: white;
    text-decoration: underline;
    opacity: 0.9;
}

footer a:hover {
    color: var(--secondary);
}

footer .social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 20px;
}

footer .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

footer .social-icons a:hover {
    background-color: var(--secondary);
    color: white;
    transform: scale(1.1);
}

/* Footer Mobile Optimization */
@media (max-width: 768px) {
    footer {
        padding: 48px 0 140px;
        margin-top: 60px;
        text-align: left;
    }

    footer .container {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        padding: 0 24px;
        max-width: 100%;
        text-align: left;
    }

    footer .container > div {
        text-align: left !important;
    }

    footer .container > div:nth-child(2) {
        text-align: left !important;
    }

    footer .container > div:nth-child(3) {
        text-align: left !important;
    }

    footer p {
        font-size: 0.9rem;
    }

    footer .social-icons {
        justify-content: flex-start;
        margin-top: 16px;
        margin-bottom: 16px;
    }

    footer .social-icons a {
        width: 32px;
        height: 32px;
    }

    footer a {
        font-size: 0.9rem;
    }

    main {
        padding-bottom: max(100px, calc(100px + env(safe-area-inset-bottom)));
    }
}

@media (max-width: 480px) {
    footer {
        padding: 40px 0 120px;
    }

    footer .container {
        gap: 24px !important;
        padding: 0 16px;
    }

    footer p {
        font-size: 0.85rem;
    }

    footer .social-icons a {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
}

/* Admin Dashboard layout tweaks */
.admin-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

/* Animations */
@keyframes slideIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounceBadge {
    0% {
        transform: scale(0.3);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive Media Queries */
@media (max-width: 992px) {

    .product-detail-grid,
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-image img {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block !important;
        z-index: 1000;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary);
        background: none;
        border: none;
        padding: 8px;
        margin-right: 16px;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .hamburger:hover {
        transform: scale(1.1);
    }

    .hamburger i {
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .nav-links {
        display: none !important;
        flex-direction: column;
        width: 100%;
        background: white;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid var(--border-color);
        max-height: calc(100vh - 140px);
        overflow-y: auto;
        z-index: 998;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .nav-links.active {
        display: flex !important;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links.active li {
        margin-bottom: 2px;
    }

    .nav-links.active a {
        padding: 4px 0;
        display: flex;
        gap: 12px;
        font-size: 1rem;
    }

    .header-flex {
        position: relative;
    }

    .cart-icon {
        margin-left: auto;
        margin-right: 16px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .cart-table th,
    .cart-table td {
        padding: 10px;
        font-size: 0.85rem;
    }
}

/* ===== EXTRA POLISH & ENHANCEMENTS ===== */

/* Add-to-cart button full width on product cards */
.product-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
}

/* Textarea in form groups */
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--neutral-dark);
    background-color: var(--bg-main);
    outline: none;
    transition: var(--transition);
    resize: vertical;
    min-height: 120px;
}

.form-group textarea:focus {
    border-color: var(--secondary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.15);
}

/* File input styling */
input[type="file"] {
    width: 100%;
    padding: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--neutral-grey);
    background-color: var(--bg-main);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

input[type="file"]:hover {
    border-color: var(--secondary);
    background-color: rgba(42, 157, 143, 0.04);
}

/* Trust badges / feature strip on homepage */
.trust-strip {
    background-color: white;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 28px 0;
}

.trust-strip-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--neutral-grey);
    font-weight: 600;
    font-size: 0.95rem;
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.trust-badge span {
    font-family: var(--font-heading);
}

/* Hero decorative shapes */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(42, 157, 143, 0.1);
    border: 1px solid rgba(42, 157, 143, 0.2);
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Section headings with leading line accent */
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.section-label::before {
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    background: var(--secondary);
    border-radius: 2px;
}

.section-label span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Empty state message */
.empty-state {
    text-align: center;
    padding: 80px 24px;
    color: var(--neutral-grey);
}

.empty-state i {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--neutral-grey);
}

.empty-state p {
    margin-bottom: 24px;
    font-size: 0.95rem;
}

/* Page section padding consistency */
.section-pad {
    padding: 70px 0;
}

/* Smooth fade-in animation on page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card,
.category-card,
.stats-card,
.form-container,
.product-detail,
.cart-page,
.checkout,
.profile {
    animation: fadeInUp 0.4s ease forwards;
}

/* Staggered animation for product grid children */
.product-grid .product-card:nth-child(2) {
    animation-delay: 0.05s;
}

.product-grid .product-card:nth-child(3) {
    animation-delay: 0.10s;
}

.product-grid .product-card:nth-child(4) {
    animation-delay: 0.15s;
}

.product-grid .product-card:nth-child(5) {
    animation-delay: 0.20s;
}

.product-grid .product-card:nth-child(6) {
    animation-delay: 0.25s;
}

/* Staggered animation for category grid children */
.category-grid .category-card:nth-child(2) {
    animation-delay: 0.05s;
}

.category-grid .category-card:nth-child(3) {
    animation-delay: 0.10s;
}

.category-grid .category-card:nth-child(4) {
    animation-delay: 0.15s;
}

.category-grid .category-card:nth-child(5) {
    animation-delay: 0.20s;
}

/* Highlighted active nav link */
.nav-links a.active {
    color: var(--primary);
    font-weight: 700;
}

.nav-links a.active::after {
    width: 100%;
}

/* Back link style */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neutral-grey);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--primary);
    gap: 12px;
}

/* Cart item image */
.cart-item-img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

/* Quantity input fix for cart */
.cart-qty {
    width: 65px;
    text-align: center;
    padding: 8px 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.cart-qty:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.15);
}

/* Table responsive wrapper */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
}

/* Inline form (sort form) */
.inline-form {
    display: inline;
}

/* Admin specific quick badge */
.admin-badge {
    background-color: rgba(231, 111, 81, 0.1);
    color: var(--accent);
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    margin-left: 8px;
    vertical-align: middle;
}

/* ===== SHOP PAGE LAYOUT ===== */
.shop-header-banner {
    background: var(--primary-ultra-light);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.shop-header-banner h1 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.shop-header-banner p {
    font-size: 1.1rem;
    color: var(--neutral-grey);
    max-width: 600px;
    margin-bottom: 20px;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--neutral-light-grey);
}

.breadcrumb a {
    color: var(--secondary);
    font-weight: 600;
}

.breadcrumb a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar */
.shop-sidebar {
    background: transparent;
}

.sidebar-search {
    display: flex;
    margin-bottom: 30px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.sidebar-search input {
    flex: 1;
    border: none;
    padding: 12px 16px;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.sidebar-search button {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 0 16px;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-search button:hover {
    background: var(--primary);
}

.sidebar-widget {
    margin-bottom: 36px;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-ultra-light);
}

/* Price Filter */
.price-filter-slider {
    position: relative;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    margin: 20px 0 30px 0;
}

.price-filter-slider .slider-track {
    position: absolute;
    height: 100%;
    background: var(--secondary);
    left: 0%;
    right: 0%;
    border-radius: 3px;
}

.price-filter-slider .handle {
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    background: var(--secondary);
    border: 2px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.price-filter-slider .handle.left {
    left: 0%;
}

.price-filter-slider .handle.right {
    left: 100%;
}

.price-filter-inputs {
    display: flex;
    gap: 12px;
    align-items: center;
}

.price-filter-inputs .input-group {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: var(--radius-sm);
    padding: 0 10px;
    flex: 1;
}

.price-filter-inputs .currency {
    color: var(--neutral-light-grey);
    font-weight: 600;
}

.price-filter-inputs input {
    width: 100%;
    border: none;
    padding: 8px 6px;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

/* Sidebar Categories */
.sidebar-categories {
    list-style: none;
}

.sidebar-categories li {
    margin-bottom: 12px;
}

.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--neutral-grey);
    font-size: 0.95rem;
    transition: var(--transition);
}


.sidebar-categories a span {
    color: var(--neutral-light-grey);
    font-size: 0.85rem;
}

.sidebar-categories a:hover,
.sidebar-categories a.active {
    color: var(--secondary);
    font-weight: 600;
}

.sidebar-categories a.active span {
    color: var(--secondary);
}

/* Shop Main Content */
.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.results-count {
    color: var(--neutral-grey);
    font-size: 0.95rem;
}

.shop-sort select {
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background-color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--neutral-dark);
    outline: none;
    cursor: pointer;
    min-width: 220px;
}

.shop-sort select:focus {
    border-color: var(--secondary);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
}

/* ===== ADMIN LAYOUT ===== */
.admin-body {
    background-color: var(--bg-main);
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    height: 100vh;
    overflow: hidden;
}

.admin-layout {
    display: flex;
    height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background-color: #1f2937;
    /* Dark slate */
    color: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.admin-logo {
    padding: 24px;
    background-color: #111827;
    /* Darker slate */
    border-bottom: 1px solid #374151;
}

.admin-logo a {
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-nav {
    flex: 1;
    padding: 24px 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
}

.admin-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-right: 8px;
}

.admin-nav-links li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    color: #9ca3af;
    font-weight: 600;
    transition: all 0.2s ease;
}

.admin-nav-links li a:hover,
.admin-nav-links li a.active {
    background-color: #374151;
    color: white;
    border-left: 4px solid var(--primary);
}

.admin-main {
    flex: 1;
    margin-left: 260px;
    /* Offset for sidebar */
    display: flex;
    flex-direction: column;
    background-color: #f9fafb;
    height: 100vh;
    min-width: 0;
    overflow: hidden;
}

.admin-topbar {
    height: 70px;
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.admin-topbar h2 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--neutral-dark);
}

.admin-user-info {
    font-weight: 600;
    color: var(--neutral-grey);
}

.admin-content-wrapper {
    padding: 32px;
    flex: 1 1 auto;
    height: calc(100vh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Invisible scrollbars but keep scrolling functional */
.admin-nav,
.admin-content-wrapper {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.admin-nav::-webkit-scrollbar,
.admin-content-wrapper::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

/* ===== SHOP PAGE MOBILE RESPONSIVE ===== */
@media (max-width: 900px) {
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .shop-sidebar {
        order: -1;
        margin-bottom: 24px;
        padding: 20px;
        background: white;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-sm);
    }

    .shop-header-banner {
        padding: 36px 0;
    }

    .shop-header-banner h1 {
        font-size: 2rem;
    }

    .shop-header-banner p {
        font-size: 0.95rem;
    }

    .shop-controls {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .shop-sort select {
        min-width: unset;
        width: 100%;
    }

    .shop-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }

    .sidebar-search input {
        min-height: 44px;
    }

    .price-filter-inputs {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .shop-header-banner {
        padding: 24px 0;
    }

    .shop-header-banner h1 {
        font-size: 1.6rem;
    }

    .shop-header-banner p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .shop-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .shop-sidebar {
        padding: 16px;
    }

    .sidebar-widget h3 {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .sidebar-categories a {
        padding: 8px 0;
        font-size: 0.9rem;
    }
}

/* Responsive: mobile cart hides image */
@media (max-width: 640px) {
    .cart-item-img {
        display: none;
    }

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

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .trust-strip-inner {
        gap: 24px;
    }

    .filters-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-form {
        max-width: 100%;
    }

    .form-container {
        padding: 28px 20px;
    }
}

/* Redesigned Homepage Card & Banner Styles */
.active-category-banner {
    display: flex;
    align-items: center;
    gap: 32px;
    background: linear-gradient(135deg, var(--primary-ultra-light) 0%, rgba(42, 157, 143, 0.08) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.active-category-banner:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-card-badges {
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 5;
}

.badge-featured {
    background: var(--badge-featured, var(--neutral-dark)) !important;
    color: white !important;
}

.badge-sale {
    background: var(--badge-sale, #22c55e) !important;
    color: white !important;
}

.badge-new {
    background: var(--badge-new, #3b82f6) !important;
    color: white !important;
}

.add-to-cart-circle {
    transition: var(--transition);
}

.add-to-cart-circle:hover {
    background-color: var(--secondary) !important;
    transform: scale(1.08) rotate(90deg);
}

.trust-card-banner {
    transition: var(--transition);
}

.trust-card-banner:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}


/* ===== Category Showcase Responsive ===== */
@media (max-width: 768px) {
    .cat-tab-rail {
        padding: 8px;
        gap: 6px;
    }

    .cat-tab {
        min-width: 130px;
        padding: 8px 12px;
        gap: 10px;
    }

    .cat-tab-thumb {
        width: 36px;
        height: 36px;
    }

    .cat-tab-name {
        max-width: 80px;
    }

    .cat-banner {
        padding: 20px;
        flex-direction: column;
    }

    .cat-banner-img {
        width: 100%;
        height: 160px;
    }

    .cat-banner-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== Admin Layout Mobile Responsive ===== */
.admin-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--neutral-dark);
    cursor: pointer;
    padding: 4px;
}

.admin-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 90;
    opacity: 0;
    transition: opacity 0.3s;
}

@media (max-width: 1024px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .admin-main {
        margin-left: 0;
    }

    .admin-mobile-toggle {
        display: block;
    }

    .sidebar-open .admin-sidebar {
        transform: translateX(0);
    }

    .sidebar-open .admin-overlay {
        display: block;
        opacity: 1;
    }
}

@media (max-width: 640px) {
    .admin-content-wrapper {
        padding: 16px;
    }

    .admin-topbar {
        padding: 0 16px;
    }

    .admin-topbar h2 {
        font-size: 1.1rem;
    }

    .admin-user-info span {
        display: none;
    }
}

/* News / Advert Banner */
.news-banner {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    white-space: nowrap;
    position: relative;
    z-index: 10;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.news-banner-track {
    display: inline-block;
    animation: newsScroll 25s linear infinite;
}

.news-banner-content {
    display: inline-block;
    padding: 0 50px;
}

@keyframes newsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.news-banner:hover .news-banner-track {
    animation-play-state: paused;
}