/* ============================================================
   GLOBAL CSS — Hematka Ice Cream
   All section classes prefixed with "home-"
   Font Awesome 6 via CDN
   4-space indentation throughout
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple:       #6c257d;
    --purple-dark:  #5a195e;
    --purple-deep:  #3d1f47;
    --purple-light: #f6effc;
    --purple-pale:  #fbf2f9;
    --pink:         #ff4f8b;
    --white:        #ffffff;
    --text:         #333333;
    --text-muted:   #5d425e;
    --radius-sm:    10px;
    --radius-md:    18px;
    --radius-lg:    26px;
    --shadow-sm:    0 8px 24px rgba(103,38,118,0.10);
    --shadow-md:    0 20px 45px rgba(103,38,118,0.12);
    --shadow-lg:    0 40px 90px rgba(0,0,0,0.20);
    --transition:   0.28s ease;
    --container:    1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background: var(--white);
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ---------- Utility ---------- */
.home-container {
    width: 90%;
    max-width: var(--container);
    margin-inline: auto;
}

/* ============================================================
   HEADER
   ============================================================ */
header {
    background: var(--purple);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 18px rgba(0,0,0,0.18);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    width: 90%;
    max-width: var(--container);
    margin-inline: auto;
}

.header-logo {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -2px;
    text-transform: lowercase;
    line-height: 1;
    flex-shrink: 0;
}

.header-nav {
    flex: 1;
}

.header-nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.header-nav-list a {
    color: #fbf1ff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color var(--transition);
    white-space: nowrap;
    position: relative;
}

.header-nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width var(--transition);
    border-radius: 2px;
}

.header-nav-list a:hover {
    color: var(--white);
}

.header-nav-list a:hover::after {
    width: 100%;
}

.header-shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--purple);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    box-shadow: 0 14px 28px rgba(0,0,0,0.14);
    transition: transform var(--transition), box-shadow var(--transition);
    flex-shrink: 0;
    white-space: nowrap;
}

.header-shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.22);
}

/* Mobile hamburger */
.header-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.header-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.header-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.header-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.header-mobile-nav {
    display: none;
    background: var(--purple-dark);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.header-mobile-nav.open {
    max-height: 500px;
    padding: 16px 0;
}

.header-mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 90%;
    margin: auto;
}

.header-mobile-nav ul li a {
    display: block;
    padding: 12px 0;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color var(--transition);
}

.header-mobile-nav ul li a:hover {
    color: var(--white);
}

.header-mobile-nav .header-mobile-shop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 14px 0 4px;
    padding: 11px 24px;
    background: var(--white);
    color: var(--purple);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 13px;
}

/* ============================================================
   BANNER SLIDER
   ============================================================ */
.home-slider-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    background: var(--purple-pale);
}

.home-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.home-slider-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-slide {
    min-width: 100vw;
    height: 620px;
    flex: 0 0 100vw;
    overflow: hidden;
    position: relative;
}

.home-slide img {
    width: 100%;
    height: 100%;
    object-position: center;
}

/* Arrow buttons */
.home-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.42);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
    transition: background var(--transition), transform var(--transition);
    backdrop-filter: blur(4px);
}

.home-slider-arrow:hover {
    background: rgba(0,0,0,0.65);
    transform: translateY(-50%) scale(1.08);
}

.home-slider-arrow.prev {
    left: 24px;
}

.home-slider-arrow.next {
    right: 24px;
}

/* Dots */
.home-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.home-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.home-slider-dot.active {
    background: var(--white);
    transform: scale(1.3);
}

/* ============================================================
   ABOUT / OVERVIEW
   ============================================================ */
.home-about {
    padding: 90px 0 70px;
    background: var(--purple-pale);
}

.home-about-inner {
    display: grid;
    gap: 56px;
}

.home-about-copy {
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
}

.home-about-copy p {
    color: var(--purple-deep);
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 32px;
}

.home-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    border: 2px solid var(--purple);
    border-radius: var(--radius-sm);
    color: var(--purple);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.home-about-btn:hover {
    background: var(--purple);
    color: var(--white);
    transform: translateY(-2px);
}

/* Stats grid */
.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.home-stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    animation: home-fadeUp 0.7s ease both;
}

.home-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.home-stat-card:nth-child(1) { animation-delay: 0.1s; }
.home-stat-card:nth-child(2) { animation-delay: 0.2s; }
.home-stat-card:nth-child(3) { animation-delay: 0.3s; }
.home-stat-card:nth-child(4) { animation-delay: 0.4s; }

.home-stat-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    font-size: 26px;
    border-radius: 18px;
    background: rgba(108,37,125,0.08);
    color: var(--purple);
}

.home-stat-value {
    font-size: 48px;
    font-weight: 900;
    color: #1f1225;
    margin-bottom: 10px;
    line-height: 1;
}

.home-stat-label {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================================
   PRODUCTS HERO (purple band)
   ============================================================ */
.home-products-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 160px;
    background: linear-gradient(160deg, #6d2570 0%, #5b195c 100%);
    color: var(--white);
}

.home-products-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 50px;
}

.home-products-hero-img-wrap {
    display: flex;
    justify-content: center;
}

.home-products-hero-img {
    width: min(100%, 520px);
    border-radius: 30px;
    box-shadow: 0 40px 90px rgba(0,0,0,0.28);
    animation: home-floatImg 5s ease-in-out infinite;
}

@keyframes home-floatImg {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}

.home-products-hero-copy {
    padding: 20px 0;
}

.home-products-label {
    display: inline-block;
    margin-bottom: 18px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #ffc6eb;
    font-size: 12px;
    font-weight: 700;
}

.home-products-hero-copy h2 {
    font-size: clamp(1.9rem, 3vw, 3.2rem);
    line-height: 1.1;
    max-width: 560px;
    margin-bottom: 32px;
    color: var(--white);
    font-weight: 800;
}

.home-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    border: 2px solid rgba(255,255,255,0.85);
    border-radius: 50px;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: background var(--transition), transform var(--transition);
}

.home-outline-btn:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-2px);
}

/* Wave divider */
.home-products-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 130px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 130' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M0,80 C240,20 360,130 720,80 C1080,30 1200,90 1440,60 L1440,130 L0,130 Z'/%3E%3C/svg%3E") no-repeat bottom/cover;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.home-product-cards {
    background: var(--white);
    padding: 10px 0 10px;
}

.home-product-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.home-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 420px;
    background: var(--purple-light);
    padding: 44px 28px 36px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    opacity: 0;
    transform: translateY(28px);
}

.home-product-card.home-is-visible {
    animation: home-fadeUp 0.75s ease forwards;
}

.home-product-card.home-delay-1 { animation-delay: 0.15s; }
.home-product-card.home-delay-2 { animation-delay: 0.30s; }
.home-product-card.home-delay-3 { animation-delay: 0.45s; }

.home-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(111,43,142,0.18);
}

.home-product-card img {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto 26px;
    transition: transform 0.4s ease;
}

.home-product-card:hover img {
    transform: scale(1.05);
}

.home-product-card h3 {
    margin-bottom: 24px;
    font-size: 20px;
    color: #5a1f56;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.home-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--purple);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: background var(--transition), transform var(--transition);
    min-width: 170px;
}

.home-card-btn:hover {
    background: #8f4edf;
    transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    position: relative;
    background: var(--purple);
    color: var(--white);
    overflow: hidden;
    padding: 130px 0 0;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M0,80 C120,120 240,40 360,60 C480,80 600,120 720,100 C840,80 960,20 1080,40 C1200,60 1320,120 1440,90 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat top/cover;
}

.footer-top {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 48px;
}

.footer-brand-logo {
    font-size: 3.6rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: lowercase;
    color: var(--white);
    line-height: 1;
}

.footer-brand-tag {
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-top: 8px;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-contact-grid h3 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-contact-grid p,
.footer-contact-grid a {
    font-size: 0.92rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.78);
    text-decoration: none;
}

.footer-contact-grid a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    flex-wrap: wrap;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-menu a {
    color: rgba(255,255,255,0.85);
    transition: color var(--transition);
}

.footer-menu a:hover {
    color: var(--white);
}

.footer-menu span {
    color: rgba(255,255,255,0.3);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-btn {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    font-size: 1rem;
    transition: background var(--transition), transform var(--transition);
}

.footer-social-btn:hover {
    background: rgba(255,255,255,0.22);
    transform: translateY(-2px);
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.18);
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 0 28px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
}

.footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-policy a {
    color: rgba(255,255,255,0.82);
    transition: color var(--transition);
}

.footer-policy a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes home-fadeUp {
    from {
        opacity: 0;
        transform: translateY(36px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes home-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Page load entrance for header elements */
.home-anim-delay-1 { animation: home-fadeUp 0.7s ease 0.05s both; }
.home-anim-delay-2 { animation: home-fadeUp 0.7s ease 0.15s both; }
.home-anim-delay-3 { animation: home-fadeUp 0.7s ease 0.25s both; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 991px)
   ============================================================ */
@media (max-width: 991px) {
    /* Header */
    .header-nav,
    .header-shop-btn {
        display: none;
    }

    .header-hamburger {
        display: flex;
    }

    .header-mobile-nav {
        display: block;
    }

    /* Stats */
    .home-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Products hero */
    .home-products-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home-products-hero-copy {
        order: -1;
    }

    .home-products-hero-copy h2 {
        margin-inline: auto;
    }

    /* Product cards */
    .home-product-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
    /* Slider */
    .home-slide {
        height: 260px;
    }

    .home-slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .home-slider-arrow.prev { left: 10px; }
    .home-slider-arrow.next { right: 10px; }

    /* About */
    .home-about {
        padding: 60px 0 50px;
    }

    .home-about-copy p {
        font-size: 16px;
    }

    .home-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .home-stat-value {
        font-size: 36px;
    }

    /* Products hero */
    .home-products-hero {
        padding: 70px 0 140px;
    }

    .home-products-hero-copy h2 {
        font-size: 1.75rem;
    }

    /* Product cards */
    .home-product-cards-grid {
        grid-template-columns: 1fr;
    }

    .home-product-card {
        opacity: 1;
        transform: none;
        animation: none;
    }

    /* Footer */
    .footer-contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-nav-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-brand-logo {
        font-size: 2.6rem;
    }
}



/* =====================================
            ABOUT-US
===================================== */
/* ============================================================
   ABOUT US PAGE CSS — Ideal Ice Cream
   All section classes prefixed with "about-us-"
   Font Awesome 6 via CDN
   4-space indentation throughout
   ============================================================ */

/* ---------- Import Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ============================================================
   ABOUT US — PAGE HERO BANNER
   ============================================================ */
.about-us-hero {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #3d1f47 0%, #6c257d 45%, #9b3ab5 100%);
}

.about-us-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 80% 50%, rgba(255,79,139,0.18) 0%, transparent 65%),
        radial-gradient(ellipse 50% 80% at 10% 80%, rgba(108,37,125,0.35) 0%, transparent 60%);
    pointer-events: none;
}

/* Decorative floating circles */
.about-us-hero::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 60px solid rgba(255,255,255,0.05);
    pointer-events: none;
}

.about-us-hero-deco {
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 40px solid rgba(255,79,139,0.1);
    pointer-events: none;
}

.about-us-hero-inner {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin-inline: auto;
    padding: 100px 0 90px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 40px;
}

.about-us-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    animation: about-us-fadeUp 0.6s ease 0.1s both;
}

.about-us-hero-breadcrumb a {
    color: rgba(255,255,255,0.6);
    transition: color 0.25s ease;
}

.about-us-hero-breadcrumb a:hover {
    color: #fff;
}

.about-us-hero-breadcrumb i {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
}

.about-us-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.02em;
    animation: about-us-fadeUp 0.7s ease 0.2s both;
}

.about-us-hero-title em {
    font-style: italic;
    color: #ffb3d6;
}

.about-us-hero-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    margin-top: 18px;
    max-width: 540px;
    line-height: 1.7;
    font-weight: 300;
    animation: about-us-fadeUp 0.7s ease 0.32s both;
}

.about-us-hero-since {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(10px);
    color: #fff;
    animation: about-us-fadeIn 1s ease 0.5s both;
}

.about-us-hero-since strong {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.about-us-hero-since span {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

/* Wave bottom of hero */
.about-us-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 90px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 90' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fdf4ff' d='M0,50 C300,0 600,90 900,45 C1100,15 1300,70 1440,40 L1440,90 L0,90 Z'/%3E%3C/svg%3E") no-repeat bottom/cover;
}

/* ============================================================
   ABOUT US — INTRO STRIP
   ============================================================ */
.about-us-intro {
    background: #fdf4ff;
    padding: 90px 0 80px;
    position: relative;
}

.about-us-intro-inner {
    width: 90%;
    max-width: 1200px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* Left: decorative motto block */
.about-us-intro-left {
    position: relative;
}

.about-us-intro-motto-wrap {
    position: relative;
    padding: 50px 44px;
    border-radius: 28px;
    background: linear-gradient(145deg, #6c257d, #9b3ab5);
    color: #fff;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(108,37,125,0.3);
}

.about-us-intro-motto-wrap::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 24px;
    font-family: 'Playfair Display', serif;
    font-size: 200px;
    color: rgba(255,255,255,0.07);
    line-height: 1;
    pointer-events: none;
}

.about-us-intro-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(255,255,255,0.14);
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 22px;
}

.about-us-intro-motto {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-style: italic;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 24px;
    color: #fff;
}

.about-us-intro-years-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.about-us-intro-years-num {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    color: #ffb3d6;
}

.about-us-intro-years-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255,255,255,0.8);
}

/* Floating accent dot */
.about-us-intro-dot {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ff4f8b;
    box-shadow: 0 12px 32px rgba(255,79,139,0.4);
}

/* Right: text paragraphs */
.about-us-intro-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-us-intro-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--purple);
    font-weight: 600;
}

.about-us-intro-label::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--pink);
    border-radius: 2px;
}

.about-us-intro-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 900;
    color: var(--purple-deep);
    line-height: 1.15;
}

.about-us-intro-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.85;
    color: #5a3d5f;
    font-weight: 300;
}

.about-us-intro-text + .about-us-intro-text {
    padding-top: 4px;
}

.about-us-intro-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    padding: 13px 30px;
    border-radius: 50px;
    background: var(--purple);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
    align-self: flex-start;
    box-shadow: 0 14px 32px rgba(108,37,125,0.25);
}

.about-us-intro-cta:hover {
    background: #8f3ea5;
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(108,37,125,0.35);
}

/* ============================================================
   ABOUT US — PHILOSOPHY / VALUES STRIP
   ============================================================ */
.about-us-values {
    padding: 80px 0 90px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.about-us-values::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(108,37,125,0.04) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(255,79,139,0.05) 0%, transparent 40%);
    pointer-events: none;
}

.about-us-values-inner {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1200px;
    margin-inline: auto;
}

.about-us-values-header {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: 60px;
}

.about-us-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 50px;
    background: var(--purple-light);
    font-family: 'DM Sans', sans-serif;
    font-size: 11.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--purple);
    font-weight: 600;
    margin-bottom: 16px;
}

.about-us-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--purple-deep);
    line-height: 1.1;
    margin-bottom: 14px;
}

.about-us-section-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 300;
}

/* Values cards grid */
.about-us-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-us-value-card {
    padding: 40px 28px 36px;
    border-radius: 24px;
    background: var(--purple-pale);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    opacity: 0;
    transform: translateY(32px);
}

.about-us-value-card.about-us-visible {
    animation: about-us-fadeUp 0.7s ease forwards;
}

.about-us-value-card:nth-child(1) { animation-delay: 0.08s; }
.about-us-value-card:nth-child(2) { animation-delay: 0.18s; }
.about-us-value-card:nth-child(3) { animation-delay: 0.28s; }
.about-us-value-card:nth-child(4) { animation-delay: 0.38s; }

.about-us-value-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--pink));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.about-us-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px rgba(108,37,125,0.14);
}

.about-us-value-card:hover::after {
    transform: scaleX(1);
}

.about-us-value-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(108,37,125,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--purple);
    margin-bottom: 22px;
    transition: background 0.28s ease, color 0.28s ease;
}

.about-us-value-card:hover .about-us-value-icon {
    background: var(--purple);
    color: #fff;
}

.about-us-value-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--purple-deep);
    margin-bottom: 12px;
}

.about-us-value-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}

/* ============================================================
   ABOUT US — FOUNDERS SECTION
   ============================================================ */
.about-us-founders {
    padding: 90px 0 100px;
    background: linear-gradient(180deg, #fdf4ff 0%, #f8eaff 100%);
    position: relative;
}

.about-us-founders-inner {
    width: 90%;
    max-width: 1200px;
    margin-inline: auto;
}

.about-us-founders-header {
    text-align: center;
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: 70px;
}

/* Founder card — alternating layout */
.about-us-founder-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 90px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.about-us-founder-block.about-us-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-us-founder-block:last-child {
    margin-bottom: 0;
}

/* Reverse on even block */
.about-us-founder-block.about-us-reverse {
    direction: rtl;
}

.about-us-founder-block.about-us-reverse > * {
    direction: ltr;
}

/* Portrait side */
.about-us-founder-portrait {
    position: relative;
}

.about-us-founder-img-frame {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(145deg, #e8d5f5, #c9a8e0);
    aspect-ratio: 4/5;
    max-width: 400px;
    margin-inline: auto;
    box-shadow: 0 36px 72px rgba(108,37,125,0.2);
}

/* Founder photo placeholder */
.about-us-founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Accent blob behind portrait */
.about-us-founder-portrait::before {
    content: '';
    position: absolute;
    top: -24px;
    left: -24px;
    right: 24px;
    bottom: 24px;
    border-radius: 36px;
    background: linear-gradient(145deg, rgba(108,37,125,0.12), rgba(255,79,139,0.08));
    z-index: 0;
}

.about-us-founder-img-frame {
    position: relative;
    z-index: 1;
}

/* Role badge */
.about-us-founder-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    z-index: 2;
    padding: 12px 22px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--purple), #9b3ab5);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 14px 28px rgba(108,37,125,0.35);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Content side */
.about-us-founder-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-us-founder-era {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    border-radius: 50px;
    background: var(--purple-light);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--purple);
    font-weight: 600;
    align-self: flex-start;
}

.about-us-founder-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 900;
    color: var(--purple-deep);
    line-height: 1.1;
}

.about-us-founder-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 17px;
    color: var(--purple);
    border-left: 3px solid var(--pink);
    padding-left: 16px;
}

.about-us-founder-bio {
    font-family: 'DM Sans', sans-serif;
    font-size: 15.5px;
    color: #5a3d5f;
    line-height: 1.85;
    font-weight: 300;
}

/* Key facts chips */
.about-us-founder-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.about-us-fact-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 50px;
    background: var(--white);
    border: 1px solid rgba(108,37,125,0.2);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--purple-deep);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.about-us-fact-chip i {
    color: var(--purple);
    font-size: 12px;
}

/* Divider between founder blocks */
.about-us-founders-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(108,37,125,0.2), transparent);
    margin-bottom: 90px;
}

/* ============================================================
   ABOUT US — TIMELINE STRIP
   ============================================================ */
.about-us-timeline {
    padding: 90px 0 100px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-us-timeline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(108,37,125,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.about-us-timeline-inner {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 900px;
    margin-inline: auto;
}

.about-us-timeline-header {
    text-align: center;
    margin-bottom: 70px;
}

/* Vertical line */
.about-us-timeline-track {
    position: relative;
    padding-left: 0;
}

.about-us-timeline-track::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(108,37,125,0.3) 8%, rgba(108,37,125,0.3) 92%, transparent);
    transform: translateX(-50%);
}

/* Individual milestone */
.about-us-milestone {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    gap: 0;
    margin-bottom: 52px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-us-milestone.about-us-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-us-milestone:last-child {
    margin-bottom: 0;
}

/* Dot in center */
.about-us-milestone-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.about-us-milestone-dot-inner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), #9b3ab5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(108,37,125,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-us-milestone:hover .about-us-milestone-dot-inner {
    transform: scale(1.12);
    box-shadow: 0 12px 32px rgba(108,37,125,0.4);
}

/* Content side (left or right) */
.about-us-milestone-content {
    padding: 24px 28px;
    border-radius: 20px;
    background: var(--purple-pale);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-us-milestone:hover .about-us-milestone-content {
    box-shadow: 0 16px 40px rgba(108,37,125,0.12);
    transform: translateY(-3px);
}

/* Left-side content: text align right */
.about-us-milestone-left {
    text-align: right;
}

/* Right-side content: text align left, plus empty placeholder on left */
.about-us-milestone-right {
    text-align: left;
    grid-column: 3;
}

.about-us-milestone-empty {
    /* Spacer for alternating layout */
}

/* For odd milestones: content on left */
.about-us-milestone:nth-child(odd) .about-us-milestone-content {
    grid-column: 1;
    text-align: right;
}

.about-us-milestone:nth-child(odd) .about-us-milestone-dot {
    grid-column: 2;
}

.about-us-milestone:nth-child(odd) .about-us-milestone-empty {
    grid-column: 3;
}

/* For even milestones: content on right */
.about-us-milestone:nth-child(even) .about-us-milestone-empty {
    grid-column: 1;
}

.about-us-milestone:nth-child(even) .about-us-milestone-dot {
    grid-column: 2;
}

.about-us-milestone:nth-child(even) .about-us-milestone-content {
    grid-column: 3;
    text-align: left;
}

.about-us-milestone-year {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--purple);
    line-height: 1;
    margin-bottom: 6px;
}

.about-us-milestone-event {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--purple-deep);
    font-weight: 500;
    line-height: 1.5;
}

.about-us-milestone-detail {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 4px;
    font-weight: 300;
}

/* ============================================================
   ABOUT US — ACHIEVEMENTS STATS BANNER
   ============================================================ */
.about-us-stats {
    padding: 90px 0;
    background: linear-gradient(135deg, #3d1f47 0%, #6c257d 60%, #9b3ab5 100%);
    position: relative;
    overflow: hidden;
}

.about-us-stats::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 80px solid rgba(255,255,255,0.04);
    pointer-events: none;
}

.about-us-stats::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 60px solid rgba(255,79,139,0.08);
    pointer-events: none;
}

.about-us-stats-inner {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1200px;
    margin-inline: auto;
}

.about-us-stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-us-stats-header .about-us-section-tag {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
}

.about-us-stats-header .about-us-section-title {
    color: #fff;
}

.about-us-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-us-stat-card {
    padding: 40px 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    opacity: 0;
    transform: translateY(28px);
}

.about-us-stat-card.about-us-visible {
    animation: about-us-fadeUp 0.7s ease forwards;
}

.about-us-stat-card:nth-child(1) { animation-delay: 0.05s; }
.about-us-stat-card:nth-child(2) { animation-delay: 0.15s; }
.about-us-stat-card:nth-child(3) { animation-delay: 0.25s; }
.about-us-stat-card:nth-child(4) { animation-delay: 0.35s; }

.about-us-stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.14);
}

.about-us-stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ffb3d6;
    margin: 0 auto 20px;
}

.about-us-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.about-us-stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
    font-weight: 400;
}

/* ============================================================
   ABOUT US — PHILOSOPHY / MISSION
   ============================================================ */
.about-us-mission {
    padding: 90px 0 100px;
    background: #fdf4ff;
}

.about-us-mission-inner {
    width: 90%;
    max-width: 1200px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-us-mission-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-us-mission-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: #5a3d5f;
    line-height: 1.85;
    font-weight: 300;
}

.about-us-mission-highlight {
    padding: 28px 32px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--purple), #9b3ab5);
    color: #fff;
    margin-top: 8px;
}

.about-us-mission-highlight p {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
}

/* Right side: stacked award chips */
.about-us-mission-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-us-mission-right-header {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--purple-deep);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-us-mission-right-header i {
    color: var(--purple);
    font-size: 20px;
}

.about-us-award-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    opacity: 0;
    transform: translateX(20px);
}

.about-us-award-row.about-us-visible {
    animation: about-us-slideLeft 0.6s ease forwards;
}

.about-us-award-row:nth-child(2) { animation-delay: 0.1s; }
.about-us-award-row:nth-child(3) { animation-delay: 0.18s; }
.about-us-award-row:nth-child(4) { animation-delay: 0.26s; }
.about-us-award-row:nth-child(5) { animation-delay: 0.34s; }

.about-us-award-row:hover {
    transform: translateX(-4px);
    box-shadow: var(--shadow-md);
}

.about-us-award-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.about-us-award-icon.gold {
    background: rgba(255, 193, 7, 0.15);
    color: #c99400;
}

.about-us-award-icon.silver {
    background: rgba(158, 158, 158, 0.15);
    color: #757575;
}

.about-us-award-icon.bronze {
    background: rgba(175, 106, 53, 0.15);
    color: #af6a35;
}

.about-us-award-icon.best {
    background: rgba(108, 37, 125, 0.12);
    color: var(--purple);
}

.about-us-award-details {
    flex: 1;
}

.about-us-award-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--purple-deep);
}

.about-us-award-count {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.about-us-award-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--purple);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes about-us-fadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes about-us-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes about-us-slideLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 991px)
   ============================================================ */
@media (max-width: 991px) {
    .about-us-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-us-hero-since {
        display: none;
    }

    .about-us-hero-breadcrumb {
        justify-content: center;
    }

    .about-us-intro-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-us-intro-dot {
        display: none;
    }

    .about-us-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-us-founder-block,
    .about-us-founder-block.about-us-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 40px;
    }

    .about-us-founder-block.about-us-reverse > * {
        direction: ltr;
    }

    .about-us-founder-portrait {
        max-width: 400px;
        margin-inline: auto;
    }

    .about-us-founder-img-frame {
        aspect-ratio: 3/2;
    }

    .about-us-founder-avatar i {
        font-size: 70px;
    }

    .about-us-milestone {
        grid-template-columns: 40px 1fr;
    }

    .about-us-timeline-track::before {
        left: 20px;
        transform: none;
    }

    /* Override all milestone nth-child column assignments on tablet */
    .about-us-milestone:nth-child(odd) .about-us-milestone-content,
    .about-us-milestone:nth-child(even) .about-us-milestone-content {
        grid-column: 2;
        text-align: left;
    }

    .about-us-milestone:nth-child(odd) .about-us-milestone-dot,
    .about-us-milestone:nth-child(even) .about-us-milestone-dot {
        grid-column: 1;
        grid-row: 1;
    }

    .about-us-milestone:nth-child(odd) .about-us-milestone-empty,
    .about-us-milestone:nth-child(even) .about-us-milestone-empty {
        display: none;
    }

    .about-us-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-us-mission-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
    .about-us-hero {
        min-height: 360px;
    }

    .about-us-hero-inner {
        padding: 80px 0 70px;
    }

    .about-us-hero-wave {
        height: 60px;
    }

    .about-us-values-grid {
        grid-template-columns: 1fr;
    }

    .about-us-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .about-us-stat-number {
        font-size: 38px;
    }

    .about-us-founders-divider {
        margin-bottom: 60px;
    }

    .about-us-founder-block {
        margin-bottom: 60px;
    }

    .about-us-milestone {
        grid-template-columns: 36px 1fr;
    }

    .about-us-milestone-dot-inner {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .about-us-timeline-track::before {
        left: 18px;
    }

    .about-us-intro-motto-wrap {
        padding: 36px 28px;
    }

    .about-us-founder-badge {
        bottom: -12px;
        right: 0;
        font-size: 11px;
        padding: 9px 16px;
    }
}





/* ===================================
            Products 
=================================== */
/* ============================================================
   PRODUCTS PAGE CSS — Ideal Ice Cream
   All section classes prefixed with "products-"
   Font Awesome 6 via CDN
   4-space indentation throughout
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES (global tokens, shared with style.css system)
   ============================================================ */
:root {
    --purple:         #6c257d;
    --purple-dark:    #5a195e;
    --purple-deep:    #3d1f47;
    --purple-light:   #f6effc;
    --purple-pale:    #fbf2f9;
    --pink:           #ff4f8b;
    --white:          #ffffff;
    --text:           #333333;
    --text-muted:     #5d425e;
    --radius-sm:      10px;
    --radius-md:      18px;
    --radius-lg:      26px;
    --shadow-sm:      0 8px 24px rgba(103,38,118,0.10);
    --shadow-md:      0 20px 45px rgba(103,38,118,0.12);
    --shadow-lg:      0 40px 90px rgba(0,0,0,0.20);
    --transition:     0.28s ease;
    --container:      1200px;

    /* Products-page exclusive tokens */
    --prod-ink:       #12061a;
    --prod-cream:     #fdf6ee;
    --prod-gold:      #c9a84c;
    --prod-gold-lt:   #f0d898;
    --prod-surface:   #1c0e28;
    --prod-border:    rgba(201,168,76,0.22);
    --prod-font-disp: 'Cormorant Garamond', Georgia, serif;
    --prod-font-body: 'Outfit', sans-serif;
}

/* ============================================================
   PRODUCTS — PAGE HERO
   ============================================================ */
.products-hero {
    position: relative;
    overflow: hidden;
    background: var(--purple);
    min-height: 420px;
    display: flex;
    align-items: flex-end;
}

/* Radial glow blobs */
.products-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 70% at 100% 0%,   rgba(108,37,125,0.55) 0%, transparent 65%),
        radial-gradient(ellipse 45% 55% at 0%   100%, rgba(255,79,139,0.18) 0%, transparent 60%);
    pointer-events: none;
}

/* Grain texture overlay */
.products-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.6;
}

.products-hero-inner {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: var(--container);
    margin-inline: auto;
    padding: 110px 0 64px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 32px;
}

/* Breadcrumb */
.products-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-family: var(--prod-font-body);
    font-size: 11.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    animation: products-fadeUp 0.6s ease 0.1s both;
}

.products-hero-breadcrumb a {
    color: rgba(255,255,255,0.45);
    transition: color var(--transition);
}

.products-hero-breadcrumb a:hover {
    color: var(--prod-gold-lt);
}

.products-hero-breadcrumb i {
    font-size: 9px;
    color: rgba(255,255,255,0.25);
}

/* Kicker */
.products-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px;
    border: 1px solid var(--prod-border);
    border-radius: 50px;
    font-family: var(--prod-font-body);
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--prod-gold);
    margin-bottom: 18px;
    animation: products-fadeUp 0.6s ease 0.18s both;
}

.products-hero-kicker i {
    font-size: 9px;
}

/* Headline */
.products-hero-title {
    font-family: var(--prod-font-disp);
    font-size: clamp(3.2rem, 7vw, 6.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 0.96;
    letter-spacing: -0.01em;
    animation: products-fadeUp 0.7s ease 0.26s both;
}

.products-hero-title em {
    font-style: italic;
    color: var(--prod-gold-lt);
}

/* Subtext */
.products-hero-sub {
    font-family: var(--prod-font-body);
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    margin-top: 20px;
    max-width: 500px;
    line-height: 1.75;
    animation: products-fadeUp 0.7s ease 0.34s both;
}

/* Right count badge */
.products-hero-badge {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid var(--prod-border);
    background: rgba(201,168,76,0.08);
    backdrop-filter: blur(12px);
    animation: products-fadeIn 1s ease 0.5s both;
}

.products-hero-badge strong {
    font-family: var(--prod-font-disp);
    font-size: 40px;
    font-weight: 700;
    color: var(--prod-gold-lt);
    line-height: 1;
}

.products-hero-badge span {
    font-family: var(--prod-font-body);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

/* Wave divider bottom of hero */
.products-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fdf6ee' d='M0,40 C200,80 400,10 720,45 C960,70 1200,15 1440,35 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat bottom/cover;
}

/* ============================================================
   PRODUCTS — FILTER BAR
   ============================================================ */
.products-filter-bar {
    background: var(--purple-pale);
    padding: 36px 0 28px;
    border-bottom: 1px solid rgba(108,37,125,0.08);
    position: sticky;
    top: 0;
    z-index: 90;
    box-shadow: 0 4px 24px rgba(18,6,26,0.07);
}

.products-filter-inner {
    width: 90%;
    max-width: var(--container);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.products-filter-label {
    font-family: var(--prod-font-body);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    flex-shrink: 0;
}

.products-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}

.products-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    border-radius: 50px;
    border: 1.5px solid rgba(108,37,125,0.2);
    background: transparent;
    font-family: var(--prod-font-body);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
    white-space: nowrap;
}

.products-filter-chip:hover {
    background: var(--purple-light);
    border-color: var(--purple);
    color: var(--purple);
    transform: translateY(-1px);
}

.products-filter-chip.products-active {
    background: var(--purple);
    border-color: var(--purple);
    color: #fff;
}

.products-filter-count {
    font-family: var(--prod-font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.products-filter-count span {
    font-weight: 700;
    color: var(--purple);
}

/* ============================================================
   PRODUCTS — MAIN GRID SECTION
   ============================================================ */
.products-grid-section {
    background: var(--purple-pale);
    padding: 60px 0 100px;
}

.products-grid-inner {
    width: 90%;
    max-width: var(--container);
    margin-inline: auto;
}

/* Masonry-inspired asymmetric grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ============================================================
   PRODUCTS — PRODUCT CARD
   ============================================================ */
.products-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(18,6,26,0.07);
    border: 1px solid rgba(108,37,125,0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(36px);
    cursor: pointer;
}

.products-card.products-card-visible {
    animation: products-fadeUp 0.65s cubic-bezier(0.16,1,0.3,1) forwards;
}

/* Stagger delays */
.products-card:nth-child(1)  { animation-delay: 0.05s; }
.products-card:nth-child(2)  { animation-delay: 0.13s; }
.products-card:nth-child(3)  { animation-delay: 0.21s; }
.products-card:nth-child(4)  { animation-delay: 0.29s; }
.products-card:nth-child(5)  { animation-delay: 0.37s; }
.products-card:nth-child(6)  { animation-delay: 0.45s; }
.products-card:nth-child(7)  { animation-delay: 0.53s; }
.products-card:nth-child(8)  { animation-delay: 0.61s; }
.products-card:nth-child(9)  { animation-delay: 0.69s; }

.products-card:hover {
    transform: translateY(-10px) scale(1.012);
    box-shadow: 0 28px 60px rgba(108,37,125,0.18);
}

/* Featured / tall card (first item) */
.products-card.products-card-featured {
    grid-column: span 2;
    flex-direction: row;
    min-height: 360px;
}

.products-card.products-card-featured .products-card-img-wrap {
    width: 50%;
    flex-shrink: 0;
}

.products-card.products-card-featured .products-card-body {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.products-card.products-card-featured .products-card-title {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
}

.products-card.products-card-featured .products-card-desc {
    display: block;
}

/* Image wrapper */
.products-card-img-wrap {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #f5e8ff, #eedcff);
    aspect-ratio: 4 / 3;
}

.products-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.16,1,0.3,1);
    display: block;
}

.products-card:hover .products-card-img-wrap img {
    transform: scale(1.07);
}

/* Colour-coded accent top bar */
.products-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--pink));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.products-card:hover .products-card-accent {
    transform: scaleX(1);
}

/* Category pill on image */
.products-card-pill {
    position: absolute;
    bottom: 14px;
    left: 14px;
    padding: 5px 14px;
    border-radius: 50px;
    background: rgba(18,6,26,0.72);
    backdrop-filter: blur(8px);
    font-family: var(--prod-font-body);
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--prod-gold-lt);
    font-weight: 600;
}

/* Card body */
.products-card-body {
    padding: 28px 26px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

/* Number + title row */
.products-card-num {
    font-family: var(--prod-font-disp);
    font-size: 13px;
    font-weight: 600;
    color: var(--purple);
    letter-spacing: 0.12em;
    opacity: 0.55;
}

.products-card-title {
    font-family: var(--prod-font-disp);
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 700;
    color: var(--prod-ink);
    line-height: 1.15;
    letter-spacing: -0.01em;
    transition: color var(--transition);
}

.products-card:hover .products-card-title {
    color: var(--purple);
}

.products-card-desc {
    font-family: var(--prod-font-body);
    font-size: 13.5px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    display: none; /* shown only on featured */
}

/* Flavour chips (mini tags) */
.products-card-flavours {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}

.products-flavour-chip {
    padding: 3px 11px;
    border-radius: 50px;
    background: var(--purple-light);
    font-family: var(--prod-font-body);
    font-size: 11px;
    color: var(--purple);
    font-weight: 500;
}

/* CTA row */
.products-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 6px;
    border-top: 1px solid rgba(108,37,125,0.08);
}

.products-card-link {
    font-family: var(--prod-font-body);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--purple);
    color: var(--white);
    letter-spacing: 0.04em;
    transition: background var(--transition), transform var(--transition);
    min-width: 170px;
}

.products-card-link i {
    font-size: 11px;
    transition: transform var(--transition);
}

.products-card:hover .products-card-link {
    color: var(--purple);
    background:var(--purple-pale);
    gap: 12px;
}

.products-card:hover .products-card-link i {
    transform: translateX(3px);
}

/* Icon circle on card footer right */
.products-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(108,37,125,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--purple);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    flex-shrink: 0;
}

.products-card:hover .products-card-icon {
    background: var(--purple);
    
    color: #fff;
    border-color: var(--purple);
}

/* ============================================================
   PRODUCTS — PROMO BANNER (between grid rows)
   ============================================================ */
.products-promo-band {
    background: linear-gradient(110deg, var(--purple-deep) 0%, var(--purple) 60%, #9b3ab5 100%);
    border-radius: var(--radius-lg);
    padding: 48px 52px;
    margin: 12px 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.products-promo-band.products-card-visible {
    opacity: 1;
    transform: translateY(0);
}

.products-promo-band::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 56px solid rgba(255,255,255,0.06);
    pointer-events: none;
}

.products-promo-text {
    flex: 1;
}

.products-promo-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--prod-font-body);
    font-size: 10.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--prod-gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.products-promo-title {
    font-family: var(--prod-font-disp);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
}

.products-promo-title em {
    font-style: italic;
    color: var(--prod-gold-lt);
}

.products-promo-sub {
    font-family: var(--prod-font-body);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    margin-top: 10px;
    line-height: 1.65;
    max-width: 480px;
}

.products-promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 30px;
    border-radius: 50px;
    background: var(--white);
    color: var(--purple);
    font-family: var(--prod-font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.products-promo-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.26);
}

/* ============================================================
   PRODUCTS — BOTTOM CTA STRIP
   ============================================================ */
.products-cta-strip {
    background: var(--prod-ink);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.products-cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 30% 50%, rgba(108,37,125,0.4) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 80% 50%, rgba(255,79,139,0.12) 0%, transparent 55%);
    pointer-events: none;
}

.products-cta-inner {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.products-cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid var(--prod-border);
    font-family: var(--prod-font-body);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--prod-gold);
}

.products-cta-title {
    font-family: var(--prod-font-disp);
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.products-cta-title em {
    font-style: italic;
    color: var(--prod-gold-lt);
}

.products-cta-sub {
    font-family: var(--prod-font-body);
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    max-width: 520px;
}

.products-cta-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.products-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 34px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--purple), #9b3ab5);
    color: #fff;
    font-family: var(--prod-font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    box-shadow: 0 16px 36px rgba(108,37,125,0.45);
    transition: transform var(--transition), box-shadow var(--transition);
}

.products-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(108,37,125,0.6);
}

.products-cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 32px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85);
    font-family: var(--prod-font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.products-cta-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
    transform: translateY(-3px);
}

/* ============================================================
   PRODUCTS — ANIMATIONS
   ============================================================ */
@keyframes products-fadeUp {
    from {
        opacity: 0;
        transform: translateY(36px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes products-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes products-shimmer {
    0%   { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}

/* Skeleton loader (before images load) */
.products-card-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #ede0f5 25%, #f5ecfc 50%, #ede0f5 75%);
    background-size: 800px 100%;
    animation: products-shimmer 1.6s infinite linear;
    z-index: 1;
    transition: opacity 0.4s;
}

.products-card-img-wrap.products-img-loaded::before {
    opacity: 0;
    pointer-events: none;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 991px)
   ============================================================ */
@media (max-width: 991px) {
    /* Hero */
    .products-hero-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .products-hero-badge {
        display: none;
    }

    /* Grid: 2 columns */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Featured card reverts to single column */
    .products-card.products-card-featured {
        grid-column: span 2;
        flex-direction: column;
    }

    .products-card.products-card-featured .products-card-img-wrap {
        width: 100%;
        aspect-ratio: 16 / 7;
    }

    .products-card.products-card-featured .products-card-body {
        padding: 32px 28px;
    }

    /* Promo band stacks */
    .products-promo-band {
        flex-direction: column;
        align-items: flex-start;
        padding: 36px 32px;
    }

    .products-promo-cta {
        align-self: flex-start;
    }

    /* Filter chips allow scroll */
    .products-filter-inner {
        gap: 14px;
    }

    .products-filter-chips {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .products-filter-chips::-webkit-scrollbar {
        display: none;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
    /* Hero */
    .products-hero {
        min-height: 340px;
    }

    .products-hero-inner {
        padding: 90px 0 56px;
    }

    .products-hero-wave {
        height: 56px;
    }

    /* Filter */
    .products-filter-bar {
        padding: 22px 0 18px;
    }

    .products-filter-label {
        display: none;
    }

    .products-filter-count {
        display: none;
    }

    /* Grid: 1 column */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .products-card.products-card-featured {
        grid-column: span 1;
        flex-direction: column;
    }

    .products-card.products-card-featured .products-card-img-wrap {
        width: 100%;
        aspect-ratio: 4 / 3;
    }

    /* No stagger on mobile — show all immediately */
    .products-card {
        opacity: 1;
        transform: none;
        animation: none !important;
    }

    /* Promo */
    .products-promo-band {
        padding: 28px 24px;
        border-radius: var(--radius-md);
    }

    /* CTA */
    .products-cta-strip {
        padding: 70px 0;
    }

    .products-cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .products-cta-btn-primary,
    .products-cta-btn-outline {
        width: 100%;
        justify-content: center;
        max-width: 320px;
    }
}