:root {
    --primary-blue: #1e3a8a;
    --secondary-sky: #38bdf8;
    --accent-amber: #f59e0b;
    --ink: #0f172a;
    --text-main: #1f2937;
    --muted-text: #64748b;
    --surface: #ffffff;
    --surface-soft: #f8fbff;
    --border-soft: rgba(30, 58, 138, 0.12);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    font-family: "Open Sans", sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at 15% 20%, rgba(56, 189, 248, 0.12), transparent 35%),
        radial-gradient(circle at 80% 0%, rgba(30, 58, 138, 0.1), transparent 45%),
        var(--surface-soft);
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: "Montserrat", sans-serif;
    color: var(--ink);
}

a {
    text-decoration: none;
}

/* ═══ FLOATING TRANSPARENT HEADER - ALL PAGES ═══ */
.navbar-koku {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom-color: transparent;
    box-shadow: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 100;
    margin: 15px 20px 0 20px;
    border-radius: 50px;
    width: calc(100% - 40px);
}

/* Navbar becomes solid white on scroll */
.navbar-koku.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(2, 136, 209, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0;
    border-radius: 0;
    width: 100%;
}

/* Navbar links - black text */
.navbar-koku.navbar-light .nav-link {
    color: #000000 !important;
    font-weight: 500;
    transition: color 0.3s ease;
    text-align: center;
}

.navbar-koku.navbar-light .nav-link:hover {
    color: #0288D1 !important;
}

.navbar-koku.scrolled.navbar-light .nav-link {
    color: #1a1a1a !important;
}

.navbar-koku.scrolled.navbar-light .nav-link:hover {
    color: #0288D1 !important;
}

.navbar-koku.navbar-light .nav-link.active {
    color: #0288D1 !important;
}

/* Navbar brand - black text */
.navbar-koku .navbar-brand {
    color: #000000 !important;
    font-weight: 800;
}

.navbar-koku.scrolled .navbar-brand {
    color: #000000 !important;
}

/* Auth buttons - floating style */
.navbar-koku .nav-item .btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 18px;
}

/* Login/Register button styling - all pages */
.navbar-koku .btn-outline-primary {
    border-color: #00BCD4;
    color: #00BCD4 !important;
    background: rgba(0, 188, 212, 0.1);
    font-weight: 600;
}

.navbar-koku .btn-outline-primary:hover {
    background-color: #00BCD4;
    border-color: #00BCD4;
    color: #FFFFFF !important;
}

.navbar-koku.scrolled .btn-outline-primary {
    border-color: #0288D1;
    color: #0288D1 !important;
}

.navbar-koku.scrolled .btn-outline-primary:hover {
    background-color: #0288D1;
    color: #FFFFFF !important;
    border-color: #0288D1;
}

.navbar-koku .btn-primary {
    background: linear-gradient(135deg, #0288D1, #01579B);
    border-color: transparent;
    color: #FFFFFF;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(2, 136, 209, 0.4);
}

.navbar-koku .btn-primary:hover {
    background: linear-gradient(135deg, #01579B, #0288D1);
    border-color: transparent;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(2, 136, 209, 0.6);
}

.navbar-koku.scrolled .btn-primary {
    background: linear-gradient(135deg, #0288D1, #01579B);
    border-color: transparent;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(2, 136, 209, 0.3);
}

/* ===== Navbar Logo ===== */
.navbar-logo {
    height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

/* ===== Brand Name Text ===== */
.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0072C6;
    margin-left: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

/* ===== Navbar Logo ===== */
.navbar-koku .navbar-brand {
    letter-spacing: 0.5px;
}

.navbar-koku .nav-link {
    font-weight: 500;
    margin-left: 0.2rem;
    margin-right: 0.2rem;
    border-radius: 12px;
    padding: 0.45rem 0.85rem;
    transition: all 0.25s ease;
}

.navbar-koku .nav-link:hover,
.navbar-koku .nav-link:focus {
    color: #0288D1 !important;
    background: rgba(2, 136, 209, 0.12);
}

.navbar-koku .nav-link.active {
    color: #0288D1 !important;
    background: rgba(2, 136, 209, 0.1);
}

.navbar-koku .dropdown-menu {
    border: 1px solid rgba(2, 136, 209, 0.2);
    border-radius: 14px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-koku .dropdown-item {
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    margin: 0 0.45rem;
    width: auto;
    color: #1a1a1a;
}

.navbar-koku .dropdown-item:hover {
    background: rgba(2, 136, 209, 0.14);
    color: #0288D1;
}

.navbar-koku .dropdown-item.text-danger:hover {
    background: rgba(220, 38, 38, 0.12);
    color: #dc2626;
}

.btn-admin {
    border-radius: 999px;
    font-weight: 700;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-admin:hover,
.btn-admin:focus {
    background: var(--primary-blue);
    color: #fff;
}

/* ===== Hero Sections ===== */
.hero {
    position: relative;
    color: #fff;
    padding: 130px 0 110px;
    overflow: hidden;
    background-image:
        linear-gradient(130deg, rgba(30, 58, 138, 0.94), rgba(14, 116, 144, 0.85)),
        url("https://images.unsplash.com/photo-1612831661233-3f20f1f5f34d?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero::before {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.36), transparent 70%);
    top: -120px;
    right: -100px;
}

.hero::after {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.3), transparent 70%);
    bottom: -120px;
    left: -90px;
}

.hero-kicker {
    display: inline-block;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 1rem;
    font-size: 0.86rem;
}

.hero h1,
.hero .lead {
    color: #fff;
}

.hero-min {
    position: relative;
    color: #fff;
    padding: 86px 0 72px;
    background-image: linear-gradient(125deg, rgba(30, 58, 138, 0.9), rgba(2, 132, 199, 0.82));
    overflow: hidden;
}

.hero-min h1 {
    color: #fff;
}

.hero-min p {
    color: rgba(255, 255, 255, 0.9);
}

.hero-min.hero-about {
    background-image:
        linear-gradient(130deg, rgba(30, 58, 138, 0.9), rgba(8, 145, 178, 0.86)),
        url("https://images.unsplash.com/photo-1556740765-1f5c5fa34f58?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
}

.hero-min.hero-contact {
    background-image:
        linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(14, 116, 144, 0.82)),
        url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
}

.hero-min.hero-gallery {
    background-image:
        linear-gradient(130deg, rgba(30, 58, 138, 0.9), rgba(2, 132, 199, 0.86)),
        url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
}

.hero-min.hero-products {
    background-image:
        linear-gradient(130deg, rgba(30, 58, 138, 0.92), rgba(14, 116, 144, 0.82)),
        url("https://images.unsplash.com/photo-1607619056574-7b8d3ee536b2?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
}

.hero-min.hero-admin {
    background-image:
        linear-gradient(130deg, rgba(15, 23, 42, 0.9), rgba(30, 58, 138, 0.88)),
        url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
}

/* ===== Section Layout ===== */
.section-space {
    padding: 82px 0;
}

.section-alt {
    background: linear-gradient(180deg, #f8fbff 0%, #edf6ff 100%);
}

.section-title {
    margin-bottom: 2.8rem;
}

.section-title h2 {
    margin-bottom: 0.7rem;
}

.section-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--secondary-sky), var(--primary-blue));
    margin: 0.9rem auto 0;
}

/* ===== Cards ===== */
.soft-card {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.soft-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 34px rgba(15, 23, 42, 0.12);
}

.feature-card i {
    display: inline-flex;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.12), rgba(56, 189, 248, 0.2));
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.cta-banner {
    background: linear-gradient(125deg, #1d4ed8, #0369a1);
    color: #fff;
    border-radius: 22px;
    padding: 2.2rem;
    box-shadow: 0 18px 38px rgba(30, 58, 138, 0.2);
}

.cta-banner h3,
.cta-banner p {
    color: #fff;
}

/* ===== Product Cards with Hover ===== */
.product-card {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.product-image-wrapper {
    overflow: hidden;
    border-radius: 18px;
    position: relative;
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
    filter: brightness(0.65);
}

/* Floating Overlay */
.product-hover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
    z-index: 2;
}

.product-card:hover .product-hover-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.overlay-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.overlay-unit {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

.overlay-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 6px;
}

.overlay-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 4px;
    text-align: center;
    line-height: 1.3;
}

.overlay-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    z-index: 3;
}

.overlay-enquiry-btn {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    border: none;
    padding: 8px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.overlay-enquiry-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
}

.product-card .card-body {
    padding: 1.15rem 1.2rem 1.35rem;
}

.product-category {
    color: var(--primary-blue);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-price {
    color: #0f766e;
    font-weight: 700;
}

.pill-filter .btn {
    border-radius: 999px;
    font-weight: 600;
    padding: 0.45rem 1rem;
}

/* ===== Gallery ===== */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.8rem 0.95rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.72), transparent);
    color: #fff;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* ===== Contact Info ===== */
.contact-info-card {
    border-radius: 18px;
    border: 1px solid var(--border-soft);
    padding: 1.2rem;
    background: #fff;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.contact-info-card i {
    color: var(--primary-blue);
    font-size: 1.15rem;
}

.info-label {
    color: var(--muted-text);
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== Footer ===== */
.footer-koku {
    margin-top: auto;
    background: linear-gradient(180deg, #0b1b44, #08122f);
    color: rgba(203, 213, 225, 0.86);
    padding: 2.5rem 0;
}

.footer-koku h6,
.footer-koku .brand {
    color: #fff;
}

.footer-koku a {
    color: rgba(203, 213, 225, 0.86);
    transition: color 0.2s ease;
}

.footer-koku a:hover {
    color: #fff;
}

/* ===== Admin ===== */
.admin-note {
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    color: #0f3d63;
    border-radius: 14px;
    padding: 0.95rem 1.05rem;
}

.stat-card {
    border-radius: 16px;
    border: 1px solid var(--border-soft);
}

.stat-card h3 {
    margin-bottom: 0;
}

.table-product-img {
    width: 66px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid var(--border-soft);
}

/* ===== Animations ===== */
.fade-up {
    animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger>* {
    animation: fadeUp 0.8s ease both;
}

.stagger>*:nth-child(2) {
    animation-delay: 0.12s;
}

.stagger>*:nth-child(3) {
    animation-delay: 0.24s;
}

.stagger>*:nth-child(4) {
    animation-delay: 0.36s;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .hero {
        padding: 108px 0 86px;
    }

    .section-space {
        padding: 68px 0;
    }

    .navbar-koku .nav-link {
        border-radius: 12px;
    }

    .navbar-logo {
        height: 34px;
    }
}

@media (max-width: 575px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-min {
        padding: 72px 0 56px;
    }

    .navbar-logo {
        height: 30px;
    }
}

/* ═══ HERO SLIDER STYLES ═══ */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background: #0a0a0a;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 0, 0) scale(1);
    z-index: 0;
    will-change: transform, opacity;
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.85s;
}

.hero-slide.is-entering,
.hero-slide.is-leaving,
.hero-slide.active {
    visibility: visible;
}

.hero-slide.is-entering,
.hero-slide.is-leaving {
    pointer-events: none;
}

.hero-slide.enter-from-right {
    transform: translate3d(12%, 0, 0) scale(1.02);
}

.hero-slide.enter-from-left {
    transform: translate3d(-12%, 0, 0) scale(1.02);
}

.hero-slide.is-leaving.exit-to-left {
    opacity: 0;
    transform: translate3d(-12%, 0, 0) scale(0.98);
}

.hero-slide.is-leaving.exit-to-right {
    opacity: 0;
    transform: translate3d(12%, 0, 0) scale(0.98);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
    z-index: 2;
    transition-delay: 0s;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 177.78vh;
    min-height: 100vh;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 60px 120px;
}

.hero-text-group {
    flex: 1;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: slideInLeft 0.8s ease-out forwards;
}

.hero-image-group {
    display: none;
}

.hero-image-wrapper {
    display: none;
}

.hero-image {
    display: none;
}

.hero-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    animation: fadeUp 0.6s ease-out 0.1s backwards;
}

.hero-heading {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 16px;
    word-break: break-word;
    animation: fadeUp 0.6s ease-out 0.2s backwards;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
    animation: fadeUp 0.6s ease-out 0.3s backwards;
}

.hero-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 520px;
    animation: fadeUp 0.6s ease-out 0.4s backwards;
}

.hero-cta-group {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 12;
    animation: fadeUp 0.6s ease-out 0.5s backwards;
}

.hero-cta-group .btn {
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
}

.hero-cta-group .btn-light {
    background: #FFFFFF;
    color: #3D3D3D;
    border: 2px solid #FFFFFF;
}

.hero-cta-group .btn-light:hover {
    background: #F5F3EF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-cta-group .btn-outline-light {
    color: #FFFFFF;
    border-color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.hero-cta-group .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Slider Controls */
.hero-controls {
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

.slider-dot.active {
    background: #FFFFFF;
    width: 36px;
    border-radius: 6px;
    border-color: #FFFFFF;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade animation for elements */
.fade-up {
    animation: fadeUp 0.6s ease-out forwards;
}

/* Responsive Hero Slider */
@media (max-width: 1024px) {
    .hero-slider-container {
        min-height: 500px;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }

    .hero-text-group {
        max-width: 100%;
    }

    .hero-image-group {
        max-width: 100%;
    }

    .hero-image-wrapper {
        max-width: 400px;
        aspect-ratio: 4 / 3;
    }

    .hero-heading {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-slider-container {
        min-height: 600px;
    }

    .hero-content {
        padding: 30px 15px;
    }

    .hero-heading {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .hero-cta-group {
        gap: 12px;
    }

    .hero-cta-group .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-controls {
        display: none;
    }

    .hero-image-wrapper {
        max-width: 100%;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 576px) {
    .hero-slider-container {
        min-height: 500px;
    }

    .hero-content {
        padding: 20px 15px;
    }

    .hero-heading {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-kicker {
        font-size: 12px;
    }

    .hero-cta-group .btn {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════════
   NEW HOMEPAGE SECTIONS - Interactive Design
   ═══════════════════════════════════════════════════════════════ */

/* ═══ TOP BAR ═══ */
.top-bar {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.top-bar a {
    color: #38bdf8;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}

.top-bar a:hover {
    color: #7dd3fc;
}

/* ═══ FEATURES BAR ═══ */
.features-bar {
    background: #ffffff;
    padding: 28px 0;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 14px;
    transition: all 0.3s ease;
    cursor: default;
}

.feature-item:hover {
    background: linear-gradient(135deg, #f0f9ff, #e8f4fd);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.feature-item i {
    font-size: 28px;
    color: #0288D1;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(2, 136, 209, 0.12), rgba(56, 189, 248, 0.15));
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-item h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.feature-item p {
    margin: 0;
    font-size: 12px;
    color: #64748b;
}

/* ═══ SECTION HEADER ═══ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 10px;
}

.section-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    color: #0f172a;
}

.view-all {
    font-size: 14px;
    font-weight: 600;
    color: #0288D1;
    text-decoration: none;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
}

.view-all:hover {
    color: #01579B;
    gap: 6px;
}

.view-all i {
    transition: transform 0.25s ease;
}

.view-all:hover i {
    transform: translateX(4px);
}

/* ═══ BEST PRODUCTS ═══ */
.best-products-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.best-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.best-product-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.best-product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.bp-gradient-1 {
    background: linear-gradient(145deg, #667eea 0%, #764ba2 100%);
}

.bp-gradient-2 {
    background: linear-gradient(145deg, #f093fb 0%, #f5576c 100%);
}

.bp-gradient-3 {
    background: linear-gradient(145deg, #4facfe 0%, #00f2fe 100%);
}

.bp-wishlist {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.bp-wishlist:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.15);
}

.bp-wishlist.active {
    background: #ef4444;
    border-color: #ef4444;
}

.bp-wishlist.active i {
    font-weight: 900;
}

.best-product-img {
    padding: 24px 24px 0;
    text-align: center;
}

.best-product-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.5s ease;
}

.best-product-card:hover .best-product-img img {
    transform: scale(1.05);
}

.best-product-info {
    padding: 20px 24px 24px;
    color: #fff;
}

.best-product-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.best-product-desc {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 16px;
    line-height: 1.5;
}

.best-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.best-product-price {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
}

.best-product-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 8px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.best-product-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* ═══ PRODUCTS REVEAL GRID ═══ */
.products-reveal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* ═══ DEALS SECTION ═══ */
.deals-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fcd34d 100%);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2);
    position: relative;
    overflow: hidden;
}

.deals-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.badge-sale {
    background: #dc2626;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
}

.countdown {
    display: flex;
    gap: 16px;
}

.countdown-item {
    text-align: center;
    min-width: 72px;
}

.countdown-item .number {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 12px 8px;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.countdown-item .label {
    font-size: 12px;
    font-weight: 600;
    color: #92400e;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ═══ REVIEWS SECTION ═══ */
.reviews-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
}

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.reviews-header h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 8px;
}

.reviews-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.marquee-track {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.marquee-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 5;
    pointer-events: none;
}

.marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, #0f172a, transparent);
}

.marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, #0f172a, transparent);
}

.marquee-scroll {
    display: flex;
    gap: 20px;
    width: max-content;
}

.marquee-left {
    animation: marqueeLeft 35s linear infinite;
}

.marquee-right {
    animation: marqueeRight 35s linear infinite;
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.marquee-scroll:hover {
    animation-play-state: paused;
}

.review-card {
    min-width: 320px;
    max-width: 360px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 22px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.review-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.review-card-head img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.review-card-author {
    flex: 1;
}

.review-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-card-author span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

.verify-icon {
    flex-shrink: 0;
}

.review-text {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* ═══ CTA MARQUEE SECTION ═══ */
.cta-marquee-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #0ea5e9 100%);
    padding: 80px 0 60px;
    overflow: hidden;
    position: relative;
}

.cta-marquee-inner {
    text-align: center;
}

.cta-content {
    max-width: 640px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.cta-content h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: #fff;
    color: #1e3a8a;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    color: #1e3a8a;
}

.cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

.cta-marquee-track {
    position: relative;
    overflow: hidden;
}

.cta-marquee-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.cta-marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, #1e3a8a, transparent);
}

.cta-marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, #0ea5e9, transparent);
}

.cta-marquee-scroll {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: ctaMarquee 20s linear infinite;
}

@keyframes ctaMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.cta-marquee-item {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    padding: 0 6px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: opacity 0.15s ease;
}

/* ═══ CART SIDEBAR ═══ */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -440px;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    background: #ffffff;
    z-index: 1060;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-sidebar.active {
    right: 0;
}

.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.cart-sidebar-header h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
}

.cart-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}

.cart-close:hover {
    color: #ef4444;
}

.cart-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty i {
    font-size: 48px;
    color: #cbd5e1;
    margin-bottom: 16px;
    display: block;
}

.cart-empty h4 {
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
}

.cart-empty p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
    align-items: center;
}

.cart-item img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #e5e7eb;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h5 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px;
    color: #1e293b;
}

.cart-item-info .cart-item-price {
    font-size: 13px;
    color: #0f766e;
    font-weight: 700;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-qty button {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    color: #334155;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.cart-item-qty button:hover {
    background: #e2e8f0;
}

.cart-item-qty span {
    font-weight: 600;
    font-size: 14px;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 14px;
    padding: 4px;
    transition: color 0.2s;
}

.cart-item-remove:hover {
    color: #ef4444;
}

.cart-sidebar-footer {
    padding: 20px 24px;
    border-top: 1px solid #e5e7eb;
    background: #f8fafc;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.cart-total .label {
    font-weight: 600;
    color: #64748b;
}

.cart-total .amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
}

.btn-cart {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.35);
    color: #fff;
}

/* ═══ TOAST NOTIFICATIONS ═══ */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-item {
    background: #0f172a;
    color: #fff;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastIn 0.4s ease;
    max-width: 350px;
}

.toast-item.success {
    border-left: 4px solid #22c55e;
}

.toast-item.error {
    border-left: 4px solid #ef4444;
}

.toast-item i {
    font-size: 16px;
}

.toast-item.success i {
    color: #22c55e;
}

.toast-item.error i {
    color: #ef4444;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ═══ BTN ARROW ANIMATION ═══ */
.btn-arrow {
    position: relative;
    overflow: hidden;
}

.btn-arrow::after {
    content: '→';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    transition: right 0.3s ease;
    font-weight: 700;
}

.btn-arrow:hover {
    padding-right: 44px;
}

.btn-arrow:hover::after {
    right: 16px;
}

/* ═══ RESPONSIVE - NEW SECTIONS ═══ */
@media (max-width: 991px) {
    .best-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .deals-section {
        padding: 36px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .best-products-grid {
        grid-template-columns: 1fr;
    }

    .best-product-img img {
        height: 180px;
    }

    .feature-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }

    .deals-section {
        padding: 28px;
    }

    .countdown-item .number {
        font-size: 1.5rem;
    }

    .reviews-header h2 {
        font-size: 1.5rem;
    }

    .review-card {
        min-width: 280px;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-marquee-item {
        font-size: 1.3rem;
    }

    .cart-sidebar {
        width: 100%;
        max-width: 100vw;
    }
}

@media (max-width: 576px) {
    .top-bar {
        font-size: 11px;
        padding: 8px 12px;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .deals-section {
        padding: 20px;
        border-radius: 16px;
    }

    .countdown-item {
        min-width: 56px;
    }

    .countdown-item .number {
        font-size: 1.3rem;
        padding: 8px 6px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCTS PAGE
   ═══════════════════════════════════════════════════════════════ */

/* ═══ BREADCRUMB ═══ */
.breadcrumb {
    font-size: 14px;
}

.breadcrumb-item a {
    color: #0288D1;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: #01579B;
}

.breadcrumb-item.active {
    color: #64748b;
    font-weight: 500;
}

/* ═══ FILTERS SIDEBAR ═══ */
.filters-sidebar {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    position: sticky;
    top: 100px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.filter-group {
    border-top: 1px solid #f1f5f9;
    padding-top: 18px;
    margin-top: 18px;
}

.filter-group h6 {
    font-weight: 700;
    font-size: 14px;
    color: #1e293b;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.filter-group h6 i {
    font-size: 11px;
    color: #94a3b8;
    transition: transform 0.2s;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #475569;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 8px;
    transition: all 0.2s;
}

.filter-option:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.filter-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #0288D1;
    border-radius: 4px;
    cursor: pointer;
}

.price-range {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-range input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
    background: #f8fafc;
}

.price-range input:focus {
    border-color: #0288D1;
    background: #fff;
}

.price-range span {
    color: #94a3b8;
    font-weight: 600;
}

/* ═══ PRODUCTS GRID ═══ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

/* ═══ PRODUCT CARD ═══ */
.product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

/* Card Image Wrapper */
.card-img-wrap {
    position: relative;
    overflow: hidden;
    background: #f8fafc;
    aspect-ratio: 1 / 1;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .card-img-wrap img {
    transform: scale(1.08);
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 3;
}

.product-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.badge-sale {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: #fff;
    box-shadow: 0 3px 10px rgba(220, 38, 38, 0.3);
}

.product-badge.badge-new {
    background: linear-gradient(135deg, #059669, #10b981);
    color: #fff;
    box-shadow: 0 3px 10px rgba(5, 150, 105, 0.3);
}

/* Wishlist Button */
.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    color: #94a3b8;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.wishlist-btn:hover {
    background: #fff;
    color: #ef4444;
    transform: scale(1.1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.wishlist-btn.active {
    color: #ef4444;
    background: #fff;
}

.wishlist-btn.active i {
    animation: heartBeat 0.4s ease;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.3);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

/* Product Hover Actions */
.product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 0;
    padding: 0;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 4;
}

.product-card:hover .product-actions {
    transform: translateY(0);
}

.product-action-btn {
    flex: 1;
    padding: 12px;
    border: none;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-action-btn.add-cart {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #fff;
}

.product-action-btn.add-cart:hover {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
}

.product-action-btn.quick-view {
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    backdrop-filter: blur(8px);
}

.product-action-btn.quick-view:hover {
    background: #f1f5f9;
}

/* Card Body */
.product-card .card-body {
    padding: 18px;
}

.product-card .product-category {
    font-size: 11px;
    font-weight: 600;
    color: #0288D1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-name a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s;
}

.product-name a:hover {
    color: #0288D1;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.product-rating .stars {
    display: flex;
    gap: 2px;
}

.product-rating .stars i {
    font-size: 12px;
    color: #f59e0b;
}

.product-rating .count {
    font-size: 12px;
    color: #94a3b8;
}

/* Product Price */
.product-card .product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price-current {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
}

.price-original {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: line-through;
}

.price-discount {
    font-size: 11px;
    font-weight: 700;
    color: #dc2626;
    background: #fef2f2;
    padding: 2px 8px;
    border-radius: 6px;
}

/* ═══ CART SIDEBAR OPEN STATE (products page uses .open) ═══ */
.cart-sidebar.open {
    right: 0;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ═══ CART ITEM (products page variant) ═══ */
.cart-item-img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.cart-item .cart-item-price {
    font-size: 13px;
    color: #0f766e;
    font-weight: 700;
    margin-bottom: 6px;
}

.cart-item .cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    color: #334155;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

/* ═══ TOAST (products page variant) ═══ */
.toast-container .toast {
    background: #0f172a;
    color: #fff;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: toastIn 0.4s ease;
    max-width: 370px;
}

.toast-container .toast.success {
    border-left: 4px solid #22c55e;
}

.toast-container .toast.error {
    border-left: 4px solid #ef4444;
}

.toast-container .toast i {
    font-size: 18px;
}

.toast-container .toast.success i {
    color: #22c55e;
}

.toast-container .toast.error i {
    color: #ef4444;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 2px;
}

.toast-message {
    font-size: 13px;
    opacity: 0.85;
}

/* ═══ RESPONSIVE — PRODUCTS PAGE ═══ */
@media (max-width: 991px) {
    .filters-sidebar {
        position: static;
        margin-bottom: 20px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-actions {
        transform: translateY(0);
        position: relative;
    }

    .product-action-btn {
        padding: 10px;
        font-size: 12px;
    }

    .product-name {
        font-size: 13px;
    }

    .price-current {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .card-img-wrap {
        aspect-ratio: 4 / 3;
    }
}

/* ===== Top Bar ===== */
.top-bar {
    background: linear-gradient(135deg, var(--primary-blue), #2563eb);
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* ===== Badge Primary ===== */
.badge-primary {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(56, 189, 248, 0.15));
    color: var(--primary-blue);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(30, 58, 138, 0.18);
}

/* ===== Stat Number Counter ===== */
.stat-card {
    padding: 1.8rem 1rem;
    background: var(--surface);
    text-align: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 0.4rem;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--muted-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ===== Features Grid ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.feature-card h4 {
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--ink);
    font-size: 1.1rem;
}

.feature-card p {
    color: var(--muted-text);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), #2563eb, #0891b2);
    color: #fff;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.12);
    top: -100px;
    right: -80px;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.1);
    bottom: -60px;
    left: -40px;
}

.cta-section h2 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}

/* ===== Button Arrow ===== */
.btn-arrow {
    position: relative;
    padding-right: 2.8rem;
}

.btn-arrow::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.btn-arrow:hover::after {
    transform: translateY(-50%) translateX(4px);
}

/* ===== Slide Right Animation ===== */
.slide-right {
    animation: slideRight 0.8s ease both;
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== About Page Responsive ===== */
@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 575px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .top-bar {
        font-size: 0.72rem;
        padding: 6px 12px;
    }
}

/* ===== Cart Icon Badge ===== */
.cart-icon-btn {
    cursor: pointer;
    font-size: 1.1rem;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: -4px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50px;
    padding: 0 4px;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
}

.cart-badge:empty,
.cart-badge[data-count="0"] {
    display: none;
}

/* ===== Cart Sidebar ===== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100%;
    background: #fff;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-sidebar.active {
    right: 0;
}

.cart-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--border-soft);
    background: linear-gradient(135deg, #f8fbff, #edf6ff);
}

.cart-sidebar-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--ink);
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--muted-text);
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.cart-close:hover {
    color: var(--ink);
    transform: rotate(90deg);
}

.cart-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

.cart-sidebar-footer {
    border-top: 1px solid var(--border-soft);
    padding: 1.2rem 1.5rem;
    background: #fafbfc;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.cart-total .label {
    color: var(--muted-text);
}

.cart-total .amount {
    color: var(--ink);
    font-size: 1.15rem;
}

.btn-cart {
    background: linear-gradient(135deg, var(--primary-blue), #2563eb);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cart:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

/* ===== Cart Items ===== */
.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-soft);
}

.cart-item img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid var(--border-soft);
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h5 {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--ink);
}

.cart-item-price {
    font-size: 0.82rem;
    color: var(--muted-text);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-item-qty button {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid var(--border-soft);
    background: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cart-item-qty button:hover {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}

.cart-item-qty span {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    padding: 4px;
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.cart-item-remove:hover {
    transform: scale(1.2);
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--muted-text);
}

.cart-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.cart-empty h4 {
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.cart-empty p {
    margin-bottom: 1.5rem;
}

/* ===== Toast Notifications ===== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast-item {
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: toastSlideIn 0.3s ease;
}

.toast-item.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.toast-item.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ═══ PRODUCT SHOWCASE SECTION ═══ */
.product-showcase-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(56, 189, 248, 0.1));
    padding: 30px;
    height: 500px;
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    animation: productFloat 3s ease-in-out infinite;
}

@keyframes productFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Like Badge Animation */
.product-like-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff4757;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 71, 87, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

.product-like-badge:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(255, 71, 87, 0.6);
}

.product-like-badge i {
    font-size: 1.8rem;
    margin-bottom: 2px;
}

.like-count {
    font-size: 0.7rem;
    line-height: 1;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(255, 71, 87, 0.4);
    }
    50% {
        box-shadow: 0 8px 28px rgba(255, 71, 87, 0.7);
    }
}

/* Product Benefits Section */
.product-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(30, 58, 138, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(30, 58, 138, 0.12);
    transform: translateX(8px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e3a8a, #38bdf8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.4rem;
}

.benefit-item h5 {
    margin-bottom: 0.3rem;
    color: #0f172a;
}

.product-features {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(56, 189, 248, 0.08));
    padding: 1.5rem;
    border-radius: 14px;
    border-left: 4px solid #1e3a8a;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.6rem 0;
    color: #1f2937;
    font-weight: 500;
    display: flex;
    align-items: center;
    animation: slideInLeft 0.5s ease both;
}

.feature-list li:nth-child(1) { animation-delay: 0.1s; }
.feature-list li:nth-child(2) { animation-delay: 0.2s; }
.feature-list li:nth-child(3) { animation-delay: 0.3s; }
.feature-list li:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in {
    animation: slideInLeft 0.6s ease both;
}

.slide-in:nth-child(1) { animation-delay: 0.2s; }
.slide-in:nth-child(2) { animation-delay: 0.4s; }
.slide-in:nth-child(3) { animation-delay: 0.6s; }

/* ═══ INFOGRAPHIC LAYOUT STYLES ═══ */
.product-infographic {
    position: relative;
    margin: 3rem 0 4rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 3rem 2rem;
    align-items: start;
    justify-items: center;
}

.infographic-center {
    grid-column: 2;
    grid-row: 2;
    z-index: 10;
    width: 100%;
    max-width: 280px;
}

.infographic-top {
    grid-column: 1 / -1;
    grid-row: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.infographic-bottom {
    grid-column: 1 / -1;
    grid-row: 3;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* Spec Box Styling */
.spec-box {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    animation: specBoxFadeIn 0.6s ease both;
}

.spec-box:hover {
    border-color: #1e3a8a;
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15);
    transform: translateY(-4px);
}

.spec-box-top-left { animation-delay: 0.1s; }
.spec-box-top-center { animation-delay: 0.2s; }
.spec-box-top-right { animation-delay: 0.3s; }
.spec-box-bottom-left { animation-delay: 0.4s; }
.spec-box-bottom-center { animation-delay: 0.5s; }
.spec-box-bottom-right { animation-delay: 0.6s; }

@keyframes specBoxFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.spec-content h5 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.spec-content p {
    margin: 0;
    font-size: 0.85rem;
}

/* Arrow Connectors */
.arrow-connector {
    position: absolute;
    background: linear-gradient(135deg, #1e3a8a, #38bdf8);
    opacity: 0;
    animation: arrowFadeIn 0.8s ease forwards;
}

@keyframes arrowFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.6;
    }
}

.arrow-connector.arrow-top-left {
    width: 2px;
    height: 60px;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.7s;
}

.arrow-connector.arrow-top-left::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #1e3a8a;
}

.arrow-connector.arrow-top-center {
    width: 2px;
    height: 60px;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.7s;
}

.arrow-connector.arrow-top-center::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #1e3a8a;
}

.arrow-connector.arrow-top-right {
    width: 2px;
    height: 60px;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.7s;
}

.arrow-connector.arrow-top-right::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #1e3a8a;
}

.arrow-connector.arrow-bottom-left {
    width: 2px;
    height: 60px;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.7s;
}

.arrow-connector.arrow-bottom-left::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #1e3a8a;
}

.arrow-connector.arrow-bottom-center {
    width: 2px;
    height: 60px;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.7s;
}

.arrow-connector.arrow-bottom-center::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #1e3a8a;
}

.arrow-connector.arrow-bottom-right {
    width: 2px;
    height: 60px;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.7s;
}

.arrow-connector.arrow-bottom-right::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #1e3a8a;
}

/* Feature Highlights */
.feature-highlight {
    padding: 1.5rem 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    animation: featureSlideUp 0.6s ease both;
}

.feature-highlight:nth-child(1) { animation-delay: 0.1s; }
.feature-highlight:nth-child(2) { animation-delay: 0.2s; }
.feature-highlight:nth-child(3) { animation-delay: 0.3s; }

@keyframes featureSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-highlight:hover {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.12), rgba(56, 189, 248, 0.12));
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.15);
}

.feature-highlight i {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #1e3a8a, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-infographic {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .infographic-center {
        grid-column: 1;
        grid-row: 1;
    }
    
    .infographic-top {
        grid-column: 1;
        grid-row: 2;
        grid-template-columns: 1fr 1fr;
    }
    
    .infographic-bottom {
        grid-column: 1;
        grid-row: 3;
        grid-template-columns: 1fr 1fr;
    }
    
    .spec-box-top-left:last-child,
    .spec-box-bottom-left:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
    
    .arrow-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .product-infographic {
        gap: 1.5rem;
    }
    
    .infographic-top,
    .infographic-bottom {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .spec-box {
        padding: 1rem;
    }
    
    .spec-box h5 {
        font-size: 0.9rem;
    }
    
    .spec-box p {
        font-size: 0.8rem;
    }
}

/* ═══ PROFESSIONAL PRODUCT SHOWCASE ═══ */
.professional-showcase-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    margin: 3rem 0;
}

.info-boxes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.pro-info-box {
    background: white;
    border: 2px solid #e0e7ff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.08);
}

.pro-info-box:hover {
    border-color: #38bdf8;
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.15);
    transform: translateY(-6px);
}

.pro-icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #1e3a8a, #38bdf8);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
    transition: all 0.3s ease;
}

.pro-info-box:hover .pro-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.professional-product-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2rem 0;
}

.professional-product-img {
    transition: all 0.4s ease;
    filter: drop-shadow(0 8px 24px rgba(30, 58, 138, 0.12));
    animation: professionalProductSlide 0.8s ease both;
}

@keyframes professionalProductSlide {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.professional-product-img:hover {
    filter: drop-shadow(0 12px 32px rgba(30, 58, 138, 0.2));
    transform: scale(1.03);
}

/* Features Row */
.professional-features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.08);
}

.pro-feature-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.pro-feature-item:hover {
    transform: translateY(-4px);
}

.pro-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1e3a8a 0%, #38bdf8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.2);
    transition: all 0.3s ease;
}

.pro-feature-item:hover .pro-feature-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 10px 24px rgba(30, 58, 138, 0.3);
}

.pro-feature-item h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design for Professional Showcase */
@media (max-width: 768px) {
    .info-boxes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .pro-info-box {
        padding: 1.5rem 1.2rem;
    }
    
    .pro-icon-wrapper {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }
    
    .professional-features-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .professional-product-img {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .professional-features-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pro-feature-item h6 {
        font-size: 0.9rem;
    }
}
