/* main.css — Bold, joyful, tropical brand. Fredoka One + Nunito. */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;500;600;700&display=swap');

/* ─── Brand palette: hot pink, coral, teal, golden yellow ────────────────── */
:root {
    --brand-pink: #E91E8C;
    --brand-pink-tint-10: rgba(233, 30, 140, 0.1);
    --brand-pink-tint-20: rgba(233, 30, 140, 0.2);
    --brand-coral: #FF6B35;
    --brand-teal: #00B4D8;
    --brand-yellow: #FFD60A;
    --brand-gold: #C9A84C;
    --brand-dark: #1A1A2E;
    --brand-white: #FFFFFF;
    --brand-light: #FFF5F7;
    --brand-teal-soft: #E8F8FC;

    --text: #1A1A2E;
    --text-muted: rgba(26, 26, 46, 0.72);
    --text-light: rgba(255, 255, 255, 0.95);

    --border: rgba(233, 30, 140, 0.2);
    --shadow-pink: 0 6px 24px rgba(233, 30, 140, 0.12);
    --shadow-pink-deep: 0 8px 32px rgba(233, 30, 140, 0.25);

    --radius-sm: 14px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --space-section: 140px;
    --space-block: 40px;
    --space-inline: 28px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    background: var(--brand-white);
    line-height: 1.65;
    overflow-x: hidden;
    font-size: 17px;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4 {
    font-family: 'Fredoka One', cursive;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.container {
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
}

a {
    color: var(--brand-pink);
    text-decoration-color: rgba(233, 30, 140, 0.45);
    transition: color 0.25s ease;
}

a:hover {
    color: var(--brand-coral);
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: transparent;
    padding: 20px 0;
    box-shadow: none;
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
    transition: box-shadow 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
}

.main-nav.scrolled {
    background: rgba(233, 30, 140, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-pink-deep);
}

.nav-menu a {
    color: var(--brand-white);
}

.nav-menu a::after {
    background: var(--brand-yellow);
}

.nav-container {
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.nav-container .nav-logo {
    flex: 0 0 auto;
}

.nav-logo a {
    text-decoration: none;
    color: var(--brand-white);
}

.logo-text,
.nav-logo a {
    text-decoration: none;
    color: var(--brand-white);
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
}

.nav-container .nav-menu {
    flex: 1 1 auto;
    justify-content: center;
    gap: 48px;
}

.nav-cta {
    display: flex;
    align-items: center;
    margin-left: auto;
    padding-right: 8px;
    min-width: 44px;
}

.nav-container .nav-cta {
    flex: 0 0 auto;
}


.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    color: var(--brand-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    letter-spacing: 0.02em;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--brand-yellow);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: white;
    text-decoration: none;
    cursor: pointer;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0;
}

.cart-icon svg {
    width: 26px;
    height: 26px;
    stroke: white;
    fill: none;
    display: block;
}

.cart-icon:hover svg {
    stroke: var(--brand-yellow);
}

.cart-count,
#cartCount {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--brand-yellow);
    color: var(--brand-dark);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-family: 'Nunito', sans-serif;
    pointer-events: none;
}

.cart-icon.has-items .cart-count {
    animation: cart-pulse 0.6s ease-out;
}

@keyframes cart-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--brand-white);
    font-size: 22px;
    cursor: pointer;
    padding: 12px;
    min-width: 48px;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 20px;
    box-sizing: border-box;
    background: linear-gradient(135deg, rgba(255, 248, 243, 0.35) 0%, rgba(245, 238, 255, 0.35) 100%), linear-gradient(135deg, #FF6B35 0%, #FF9A3C 40%, #E91E8C 100%);
    background-attachment: scroll;
    overflow: hidden;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(255, 214, 10, 0.15) 0%, transparent 8%),
        radial-gradient(circle at 85% 70%, rgba(0, 180, 216, 0.12) 0%, transparent 10%),
        radial-gradient(circle at 60% 40%, rgba(255, 214, 10, 0.1) 0%, transparent 6%),
        radial-gradient(circle at 30% 80%, rgba(0, 180, 216, 0.08) 0%, transparent 7%);
    pointer-events: none;
}

.seasonal-section {
    display: block !important;
    visibility: visible !important;
    background: var(--brand-light);
    padding: var(--space-section) 0;
    margin: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
    min-height: 400px;
}

.seasonal-section.seasonal-section-hidden {
    display: none !important;
    min-height: 0;
}

.seasonal-section.seasonal-populated {
    display: block !important;
    visibility: visible !important;
}

.seasonal-section .container {
    padding-bottom: 24px;
}

.seasonal-placeholder-msg {
    color: var(--text-muted);
    font-size: 17px;
    margin-top: 8px;
}

.seasonal-slider {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    min-height: 420px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.seasonal-slides {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
    will-change: transform;
}

.seasonal-slide {
    flex: 0 0 100%;
    min-width: 0;
    display: flex;
    justify-content: center;
    padding: 0 24px;
}

.seasonal-card {
    display: grid;
    grid-template-columns: minmax(0, 55%) minmax(0, 45%);
    gap: 48px;
    align-items: center;
    background: var(--brand-white);
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow: 0 12px 48px rgba(233, 30, 140, 0.15);
    width: 100%;
    max-width: 1100px;
    overflow: hidden;
}

.seasonal-card::before {
    content: '';
    grid-column: 1 / -1;
    height: 8px;
    background: linear-gradient(90deg, var(--brand-pink), var(--brand-coral));
}

.seasonal-image-wrapper {
    position: relative;
    width: 100%;
    min-height: 320px;
    max-height: 400px;
    border-radius: 0;
    overflow: hidden;
    background: var(--brand-light);
}

.seasonal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.seasonal-image.hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.seasonal-card:hover .seasonal-image.hover {
    opacity: 1;
}

.seasonal-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 32px 32px 32px 0;
}

.seasonal-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--brand-dark);
    margin-bottom: 4px;
}

.seasonal-description {
    font-size: 17px;
    color: rgba(58, 58, 58, 0.85);
}

.seasonal-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-pink);
}

.seasonal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--brand-white);
    border: 2px solid rgba(233, 30, 140, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: var(--shadow-pink);
    color: var(--brand-pink);
    z-index: 2;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.seasonal-arrow-prev {
    left: 24px;
}

.seasonal-arrow-next {
    right: 24px;
}

.seasonal-arrow:hover {
    background: var(--brand-pink);
    color: var(--brand-white);
    box-shadow: var(--shadow-pink-deep);
}

.seasonal-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.seasonal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.12);
    cursor: pointer;
}

.seasonal-dot.active {
    background: var(--brand-pink);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 16px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: 0 32px;
        gap: 48px;
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-text {
        align-items: flex-start;
    }
}

.hero-text h1 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2rem, 8vw, 4rem);
    color: white;
    margin: 0;
    text-align: center;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: clamp(3rem, 8vw, 6rem);
        text-align: left;
    }
}

.hero-subheadline {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-subheadline {
        font-size: 23px;
        text-align: left;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-actions {
        flex-direction: row;
        max-width: none;
        margin: 0;
    }
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
    width: 100%;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: 2px solid white;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 30px;
    text-decoration: none;
    width: fit-content;
    max-width: 200px;
    align-self: center;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-instagram:hover {
    background: white;
    color: var(--brand-pink);
}

.btn-instagram svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 0;
    padding: 0;
    padding-bottom: 0;
    background: none;
    border: none;
}

.hero-illustration {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    display: block;
    margin: 0 auto;
    border: 4px solid var(--brand-pink);
    box-shadow: 0 8px 32px rgba(233, 30, 140, 0.25);
}

@media (min-width: 768px) {
    .hero-illustration {
        width: 260px;
        height: 260px;
    }
}

/* Marquee strip */
.hero-marquee-wrap {
    width: 100%;
    overflow: hidden;
    background: var(--brand-pink);
    padding: 12px 0;
    white-space: nowrap;
}

.hero-marquee {
    display: inline-flex;
    animation: marquee-scroll 24s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.hero-marquee span,
.marquee-item {
    display: inline-block;
    padding: 0 32px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.hero-marquee span::after,
.marquee-item::after {
    content: '·';
    padding-left: 32px;
    color: var(--brand-yellow);
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-marquee {
        animation: none;
    }
}

/* ─── Buttons: bold primary / secondary hierarchy ────────────────────────── */
.btn-primary {
    background: var(--brand-pink);
    color: var(--brand-white);
    padding: 20px 40px;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    box-shadow: 0 4px 20px rgba(233, 30, 140, 0.35);
    font-family: 'Nunito', sans-serif;
}

.btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 28px rgba(233, 30, 140, 0.5);
}

.btn-secondary {
    background: var(--brand-white);
    color: var(--brand-pink);
    padding: 20px 40px;
    font-size: 17px;
    font-weight: 700;
    border: 2px solid var(--brand-pink);
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    font-family: 'Nunito', sans-serif;
}

.btn-secondary:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 24px rgba(233, 30, 140, 0.25);
}

.about-section {
    background: var(--brand-pink-tint-10), var(--brand-teal-soft);
    padding: var(--space-section) 0;
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
}

.about-layout {
    display: grid;
    grid-template-columns: 45% 1fr;
    align-items: center;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 520px;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.about-image-frame {
    width: 100%;
    max-width: 480px;
    margin-left: -8%;
    padding: 0;
    background: var(--brand-light);
    border-radius: 50%;
    border: 4px solid var(--brand-pink);
    overflow: hidden;
}

.about-illustration {
    width: 100%;
    height: auto;
    border-radius: 50%;
    display: block;
}

.about-text {
    padding: 60px 48px 60px 24px;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--brand-dark);
    margin-bottom: 24px;
}

.about-pull-quote {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    font-style: italic;
    font-weight: 700;
    color: var(--brand-pink);
    margin: 0 0 28px 0;
    line-height: 1.3;
}

.about-text p {
    font-size: 18px;
    line-height: 1.85;
    margin-bottom: 32px;
    color: var(--text-muted);
}

.values-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.value-pill {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.value-pill-pink {
    background: rgba(233, 30, 140, 0.2);
    color: var(--brand-pink);
}

.value-pill-yellow {
    background: rgba(255, 214, 10, 0.35);
    color: var(--brand-dark);
}

.products-showcase {
    background: var(--brand-pink-tint-10), var(--brand-white);
    padding: 60px 0;
    overflow: hidden;
    overflow-x: hidden;
}

.products-showcase .container,
.products-showcase .section-title,
.products-showcase .section-subtitle {
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box;
    max-width: 100%;
    overflow-wrap: break-word;
}

@media (min-width: 769px) {
    .products-showcase .container {
        padding: 0 32px !important;
    }
}

@media (max-width: 768px) {
    .products-showcase .section-title {
        margin-left: 0;
        transform: none;
    }
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--brand-dark);
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 0.03em;
    padding: 0 16px;
    overflow-wrap: break-word;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 19px;
    margin-bottom: 64px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
    overflow-wrap: break-word;
    line-height: 1.6;
}

#productsGrid,
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    padding: 0 16px;
}

@media (min-width: 768px) {
    #productsGrid,
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        padding: 0;
    }
}

@media (min-width: 1200px) {
    #productsGrid,
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ─── Product cards (classes from load_products.js) ────────────────────────── */
.product-card {
    display: flex;
    flex-direction: column;
    background: var(--brand-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(233, 30, 140, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(233, 30, 140, 0.2);
}

.product-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity 0.3s ease;
}

.product-image.primary {
    opacity: 1;
}

.product-image.hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-image-wrapper:hover .product-image.hover {
    opacity: 1;
}

.product-image-wrapper:hover .product-image.primary {
    opacity: 0;
}

.product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 12px;
    gap: 6px;
}

@media (min-width: 769px) {
    .product-info {
        padding: 16px;
    }
}

.product-info h3 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(0.85rem, 2.5vw, 1.1rem);
    color: var(--brand-dark);
    margin: 0;
    line-height: 1.2;
}

.product-description {
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    color: var(--text-muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--brand-pink);
    margin: 0;
}

.btn-add-to-cart {
    margin-top: auto;
    width: 100%;
    background: var(--brand-coral);
    color: var(--brand-white);
    border: none;
    border-radius: 0 0 16px 16px;
    padding: 10px 6px;
    font-family: 'Fredoka One', cursive;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s ease;
    min-height: 44px;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

@media (max-width: 480px) {
    .btn-add-to-cart {
        font-size: 0.8rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.btn-add-to-cart:hover {
    background: var(--brand-pink);
}

/* ─── Founder Section ────────────────────────────────────────────────────── */
.founder-section {
    background: var(--brand-light);
    padding: 80px 0;
}

.founder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    background: var(--brand-white);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: var(--shadow-pink);
    max-width: 800px;
    margin: 40px auto 0;
}

@media (min-width: 768px) {
    .founder-card {
        flex-direction: row;
        align-items: flex-start;
        gap: 48px;
        padding: 48px;
    }
}

.founder-image-wrap {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--brand-pink);
    box-shadow: 0 8px 24px rgba(233, 30, 140, 0.2);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .founder-image-wrap {
        width: 200px;
        height: 200px;
        margin: 0;
    }
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.founder-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

@media (min-width: 768px) {
    .founder-text {
        text-align: left;
    }
}

.founder-tag {
    display: inline-block;
    background: var(--brand-pink-tint-10);
    color: var(--brand-pink);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    align-self: center;
}

@media (min-width: 768px) {
    .founder-tag {
        align-self: flex-start;
    }
}

.founder-name {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--brand-dark);
    margin: 0;
}

.founder-quote {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    color: var(--text-muted);
    line-height: 1.7;
    border-left: 4px solid var(--brand-pink);
    padding-left: 16px;
    margin: 0;
    font-style: italic;
}

@media (max-width: 767px) {
    .founder-quote {
        border-left: none;
        border-top: 4px solid var(--brand-pink);
        padding-left: 0;
        padding-top: 16px;
    }
}

.founder-stats {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 8px;
}

@media (min-width: 768px) {
    .founder-stats {
        justify-content: flex-start;
    }
}

.founder-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

@media (min-width: 768px) {
    .founder-stat {
        align-items: flex-start;
    }
}

.stat-number {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    color: var(--brand-pink);
    line-height: 1;
}

.stat-label {
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ─── Email signup bar ───────────────────────────────────────────────────── */
.email-signup-bar {
    background: var(--brand-coral);
    padding: 48px 24px;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
}

.email-signup-inner {
    max-width: 640px;
    margin: 0 auto;
}

.email-signup-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.email-signup-input {
    flex: 1;
    min-width: 220px;
    padding: 18px 24px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
}

.email-signup-input::placeholder {
    color: var(--text-muted);
}

.btn-email-signup {
    background: var(--brand-pink);
    color: var(--brand-white);
    padding: 18px 32px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-email-signup:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 24px rgba(233, 30, 140, 0.4);
}

/* ─── Footer: dark bg, brand statement, pink accent ──────────────────────── */
.main-footer {
    background: var(--brand-dark);
    color: var(--text-light);
    padding: 80px 0 48px;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
}

.footer-brand-statement {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--brand-white);
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.2;
    padding: 0 20px;
    overflow-wrap: break-word;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 56px;
}

.footer-column h4 {
    color: var(--brand-white);
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0;
}

.footer-column a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.footer-column a,
.footer-column p {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 15px;
}

.footer-column a:hover {
    color: var(--brand-pink);
}

.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-white);
    transition: color 0.2s ease;
}

.social-icons a:hover {
    color: var(--brand-yellow);
}

.social-icon-instagram svg {
    fill: currentColor;
    width: 22px;
    height: 22px;
}

.footer-love .fa-heart {
    color: var(--brand-pink);
    margin: 0 2px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 4px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.7);
}
.modal.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal.is-open .modal-content {
    margin: 0;
}

.modal-content {
    background: var(--brand-white);
    margin: 10% auto;
    padding: 32px;
    border-radius: 24px;
    max-width: 560px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.modal-content h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: var(--brand-dark);
    margin-bottom: 24px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text);
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--brand-pink);
}

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    .hero-content {
        padding: 0 24px;
    }
    .hero-text {
        padding-left: 0;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .about-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        min-height: auto;
    }
    .about-image {
        justify-content: center;
    }
    .about-image-frame {
        margin-left: 0;
        max-width: 360px;
    }
    .about-text {
        padding: 0 24px 40px;
        text-align: center;
    }
    .values-pills {
        justify-content: center;
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    .main-nav {
        padding: 14px 0;
    }
    .nav-container {
        padding: 0 16px;
        justify-content: space-between;
    }
    .nav-container .nav-logo {
        flex: 0 0 auto;
        text-align: left;
    }
    .nav-container .nav-cta {
        margin-left: auto;
        flex: 0 0 auto;
    }
    .logo-text {
        font-size: 20px;
    }
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
    }
    .cart-icon {
        -webkit-tap-highlight-color: transparent;
    }
    .hero-section {
        clip-path: none;
        padding-top: calc(80px + env(safe-area-inset-top, 0));
        padding-bottom: 80px;
        gap: 40px;
    }
    .hero-content {
        gap: 24px;
    }
    .hero-text {
        text-align: center;
    }
    .hero-text h1 {
        font-size: clamp(2rem, 7vw, 4rem);
        line-height: 1.1;
    }
    .hero-subheadline {
        font-size: 18px;
        margin-bottom: 24px;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 12px;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        border-radius: 30px;
    }
    .btn-primary,
    .btn-secondary {
        padding: 16px 28px;
        font-size: 16px;
        min-height: 48px;
    }
    .about-section {
        padding: 60px 0;
        clip-path: none;
    }
    .about-text h2 {
        font-size: 28px;
    }
    .about-text p {
        font-size: 16px;
    }
    .about-pull-quote {
        font-size: 1.5rem;
    }
    .products-showcase {
        padding: 60px 0;
        clip-path: none;
    }
    .section-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
    .product-description {
        font-size: 14px;
    }
    .product-price {
        font-size: 20px;
    }
    .btn-add-to-cart {
        width: 100%;
        min-height: 48px;
        padding: 10px 6px;
        font-size: 0.85rem;
        white-space: nowrap;
        -webkit-tap-highlight-color: transparent;
    }
    .email-signup-bar {
        clip-path: none;
    }
    .email-signup-form {
        flex-direction: column;
    }
    .email-signup-input {
        min-width: 100%;
    }
    .seasonal-section {
        padding: 40px 0 30px;
        clip-path: none;
    }
    .seasonal-slide {
        padding: 0 5px;
    }
    .seasonal-card {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .seasonal-image-wrapper {
        min-height: 220px;
        max-height: 320px;
    }
    .seasonal-title {
        font-size: 24px;
    }
    .seasonal-description {
        font-size: 15px;
    }
    .seasonal-price {
        font-size: 22px;
    }
    .seasonal-arrow {
        min-width: 44px;
        min-height: 44px;
        font-size: 20px;
    }
    .seasonal-dot {
        width: 14px;
        height: 14px;
    }
    .main-footer {
        padding: 50px 0 24px;
        clip-path: none;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }
    .footer-column h4 {
        margin-bottom: 8px;
        font-size: 1rem;
    }
    .footer-column a,
    .footer-column p {
        font-size: 15px;
    }
    .footer-column ul li {
        margin-bottom: 4px;
    }
    .footer-column ul li a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .social-icons a {
        min-width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    .hero-section {
        padding: 80px 16px 64px;
        gap: 36px;
    }
    .hero-content {
        padding: 0 16px;
    }
    .hero-text h1 {
        font-size: clamp(2.25rem, 8vw, 3.5rem);
    }
    .hero-subheadline {
        font-size: 16px;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
    }
    .section-title {
        font-size: 24px;
    }
    .footer-brand-statement {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .seasonal-section {
        padding: 32px 0 24px;
    }
    .seasonal-slider {
        margin-left: calc(-50vw + 50%);
        width: 100vw;
    }
    .seasonal-image-wrapper {
        min-height: 180px;
        max-height: 260px;
    }
    .seasonal-card {
        grid-template-columns: 1fr;
        padding: 16px;
    }
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 20px;
    border-bottom: 1px solid rgba(233, 30, 140, 0.3);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info h4 {
    color: var(--text);
    font-weight: 700;
    margin-bottom: 8px;
}

.cart-item-info p {
    color: rgba(58, 58, 58, 0.7);
    font-size: 14px;
    margin: 4px 0;
}

.cart-item-price {
    color: var(--brand-coral) !important;
    font-weight: 700 !important;
    font-size: 18px !important;
}

.btn-remove {
    background: none;
    border: none;
    color: var(--brand-pink);
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    line-height: 32px;
    transition: color 0.3s ease;
    min-height: 44px;
}

.btn-remove:hover {
    color: var(--brand-coral);
}

.app-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    left: 20px;
    max-width: 400px;
    margin-left: auto;
    background: var(--brand-pink);
    color: var(--brand-white);
    padding: 14px 24px;
    border-radius: 50px;
    z-index: 10000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    font-weight: 600;
    text-align: center;
}
@media (max-width: 768px) {
    .app-notification {
        top: max(90px, env(safe-area-inset-top, 0) + 70px);
        left: 16px;
        right: 16px;
        max-width: none;
        padding: 16px 20px;
    }
}

.cart-total {
    padding: 20px 0;
    border-top: 1px solid rgba(233, 30, 140, 0.3);
    margin-top: 20px;
}

.cart-total p {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-pink);
    text-align: right;
}

#cartModal .btn-primary,
#checkoutBtn {
    background: var(--brand-pink);
    color: var(--brand-white);
    border-radius: 30px;
    font-size: 1.1rem;
    padding: 16px;
    width: 100%;
}

#checkoutBtn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Mobile: cart modal and notifications */
@media (max-width: 768px) {
    .modal.is-open {
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }
    .modal-content {
        margin: 0;
        max-width: 100%;
        width: 100%;
        border-radius: 24px;
        padding: 32px 24px;
        padding-bottom: calc(32px + env(safe-area-inset-bottom, 0));
        max-height: 90vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .modal-close {
        top: 12px;
        right: 12px;
        min-width: 48px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        -webkit-tap-highlight-color: transparent;
    }
    .cart-item {
        padding: 16px 0;
    }
    .cart-total {
        padding: 16px 0;
    }
    .cart-total p {
        font-size: 20px;
    }
    #checkoutBtn {
        min-height: 52px;
        font-size: 17px;
        width: 100%;
    }
    .btn-remove {
        min-width: 48px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
    }
}

/* Mobile Menu Styles */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
    .main-nav {
        height: 60px;
        padding: 0;
    }
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 16px;
    }
    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--brand-dark);
        flex-direction: column;
        padding: 20px 0;
        z-index: 999;
    }
    .nav-menu.mobile-active,
    .nav-menu.open,
    .nav-menu.active {
        display: flex;
    }
    .nav-menu li {
        width: 100%;
    }
    .nav-menu a {
        display: flex;
        align-items: center;
        padding: 16px 32px;
        font-size: 1.1rem;
        color: var(--brand-white);
        min-height: 44px;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
    }
    .nav-menu a::after {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav-overlay {
        display: block;
        pointer-events: none;
    }
    .nav-overlay.is-visible {
        pointer-events: auto;
        opacity: 1;
    }
}
