/* ============================================
   PAWS & CO. — Playful Pet Store Design System
   Fonts: Bagel Fat One + Fredoka + Nunito
   Style: Neo-brutalist, playful, fun, casual
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bagel+Fat+One&family=Fredoka:wght@400;500;600;700&family=Nunito:wght@400;600;700;800;900&display=swap');

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

:root {
    /* Playful palette */
    --yellow: #FFD84D;
    --yellow-dark: #F5B800;
    --coral: #FF7043;
    --coral-dark: #E85827;
    --sky: #5BC3EB;
    --sky-dark: #2FA7D6;
    --mint: #7FE6C4;
    --mint-dark: #43CBA5;
    --pink: #FF6B9D;
    --pink-dark: #E84982;
    --lilac: #C9A7FF;
    --cream: #FFF8E7;
    --cream-deep: #FFECC2;
    --ink: #1A1A1A;
    --white: #FFFFFF;
    --soft: #FDF6E3;

    /* Design tokens */
    --border: 3px solid var(--ink);
    --border-thick: 4px solid var(--ink);
    --shadow-sm: 4px 4px 0 var(--ink);
    --shadow: 6px 6px 0 var(--ink);
    --shadow-lg: 10px 10px 0 var(--ink);
    --radius: 16px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    /* Fonts */
    --font-display: 'Bagel Fat One', cursive;
    --font-head: 'Fredoka', sans-serif;
    --font-body: 'Nunito', sans-serif;

    --container: 1280px;
    --pad: clamp(1.25rem, 3vw, 2.5rem);
}

body {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ── Typography ────────────────────────── */
.display { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; line-height: 0.95; }
.head { font-family: var(--font-head); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }

h1 { font-family: var(--font-display); font-size: clamp(2.75rem, 8vw, 6rem); line-height: 0.95; letter-spacing: -0.02em; }
h2 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1; }
h3 { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-family: var(--font-head); font-weight: 700; font-size: 1.125rem; }

.eyebrow {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

/* ── Container ─────────────────────────── */
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }

/* ── Announcement Marquee ──────────────── */
.marquee {
    background: var(--ink);
    color: var(--yellow);
    padding: 0.65rem 0;
    overflow: hidden;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border-bottom: var(--border);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    padding-left: 3rem;
}

.marquee-track span { display: inline-flex; align-items: center; gap: 0.75rem; }

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

/* ── Header ────────────────────────────── */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--cream);
    border-bottom: var(--border);
    transition: background 0.3s;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--pad);
    max-width: var(--container);
    margin: 0 auto;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--ink);
    text-transform: lowercase;
}

.logo-badge {
    width: 44px;
    height: 44px;
    background: var(--coral);
    border: var(--border);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transform: rotate(-8deg);
    transition: transform 0.3s;
}

.logo:hover .logo-badge { transform: rotate(8deg) scale(1.08); }
.logo-badge svg { width: 24px; height: 24px; color: var(--ink); }

.nav {
    display: flex;
    gap: 1.75rem;
    align-items: center;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1rem;
}

.nav a { position: relative; padding: 0.5rem 0; transition: color 0.2s; }
.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--coral);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--coral); }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: transform 0.2s, background 0.2s;
    position: relative;
}

.icon-btn:hover { background: var(--cream-deep); transform: translateY(-2px); }
.icon-btn svg { width: 22px; height: 22px; }

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--coral);
    color: var(--white);
    border: 2px solid var(--ink);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.7rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

/* ── Buttons ───────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 1.75rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    background: var(--yellow);
    color: var(--ink);
    border: var(--border);
    border-radius: 999px;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    white-space: nowrap;
}

.btn:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }

.btn-coral { background: var(--coral); color: var(--white); }
.btn-sky { background: var(--sky); color: var(--ink); }
.btn-mint { background: var(--mint); color: var(--ink); }
.btn-pink { background: var(--pink); color: var(--white); }
.btn-ink { background: var(--ink); color: var(--yellow); }
.btn-white { background: var(--white); }
.btn-sm { padding: 0.65rem 1.2rem; font-size: 0.9rem; box-shadow: var(--shadow-sm); }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.1rem; }

.btn svg { width: 18px; height: 18px; }

/* ── Hero Slider ──────────────────────── */
.hero {
    position: relative;
    padding: 0;
    background: var(--cream);
    overflow: hidden;
}

.slider {
    position: relative;
    height: clamp(560px, 85vh, 780px);
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.8s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    padding: 2rem var(--pad);
    max-width: var(--container);
    margin: 0 auto;
    left: 0;
    right: 0;
    pointer-events: none;
}

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

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg, var(--yellow));
    z-index: -1;
    left: calc(-1 * var(--pad));
    right: calc(-1 * var(--pad));
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.slide-1 { --bg: var(--yellow); }
.slide-2 { --bg: var(--sky); }
.slide-3 { --bg: var(--mint); }

.slide-content { position: relative; z-index: 2; }

.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border: var(--border);
    border-radius: 999px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    transform: rotate(-2deg);
}

.slide-tag .dot { width: 10px; height: 10px; background: var(--coral); border-radius: 50%; }

.slide-content h1 { margin-bottom: 1.25rem; color: var(--ink); }

.slide-content h1 em {
    font-style: normal;
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius);
    padding: 0 0.4em;
    display: inline-block;
    transform: rotate(-2deg);
    box-shadow: var(--shadow-sm);
    margin: 0 0.1em;
}

.slide-content p {
    font-size: 1.15rem;
    max-width: 460px;
    margin-bottom: 2rem;
    color: var(--ink);
}

.slide-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.slide-visual { position: relative; z-index: 2; height: 100%; display: grid; place-items: center; }

.slide-visual img {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1;
    object-fit: cover;
    border: var(--border-thick);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transform: rotate(-3deg);
    background: var(--white);
}

.slide-2 .slide-visual img { transform: rotate(3deg); }
.slide-3 .slide-visual img { transform: rotate(-2deg); }

/* Floating sticker on hero */
.hero-sticker {
    position: absolute;
    top: 15%;
    right: 6%;
    width: 140px;
    height: 140px;
    background: var(--pink);
    border: var(--border-thick);
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 3;
    animation: spin 12s linear infinite;
    box-shadow: var(--shadow);
}

.hero-sticker svg { width: 100%; height: 100%; }

@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* Slider nav */
.slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    background: var(--white);
    border: var(--border);
    border-radius: 999px;
    padding: 0.5rem 0.75rem;
    box-shadow: var(--shadow-sm);
}

.slider-dots { display: flex; gap: 0.4rem; padding: 0 0.5rem; }

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cream-deep);
    border: 2px solid var(--ink);
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
}

.slider-dots .dot.active { background: var(--coral); width: 28px; border-radius: 10px; }

.slider-arrow {
    width: 36px;
    height: 36px;
    background: var(--yellow);
    border: var(--border);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: transform 0.2s;
}

.slider-arrow:hover { transform: scale(1.1); background: var(--coral); color: var(--white); }
.slider-arrow svg { width: 18px; height: 18px; }

/* ── Categories ────────────────────────── */
.categories { background: var(--cream); }

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.section-head h2 { max-width: 600px; }

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.cat-card {
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    text-align: center;
    padding: 2rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cat-card:hover {
    transform: translate(-4px, -4px) rotate(-1deg);
    box-shadow: 12px 12px 0 var(--ink);
}

.cat-card:nth-child(1) { background: var(--yellow); }
.cat-card:nth-child(2) { background: var(--sky); }
.cat-card:nth-child(3) { background: var(--pink); color: var(--white); }
.cat-card:nth-child(4) { background: var(--mint); }

.cat-icon {
    width: 110px;
    height: 110px;
    background: var(--white);
    border: var(--border);
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

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

.cat-card h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; }
.cat-card p { font-size: 0.9rem; font-weight: 700; opacity: 0.8; }
.cat-card .count {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.35rem 0.8rem;
    background: var(--ink);
    color: var(--yellow);
    border-radius: 999px;
}

.cat-card:nth-child(3) .count { background: var(--white); color: var(--pink); }

/* ── Product Grid ──────────────────────── */
.bestsellers { background: var(--cream-deep); }

.filter-bar {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.filter-pill {
    padding: 0.7rem 1.3rem;
    background: var(--white);
    border: var(--border);
    border-radius: 999px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.filter-pill:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.filter-pill.active { background: var(--ink); color: var(--yellow); }

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.product {
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 var(--ink);
}

.product.hidden { display: none; }

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--cream-deep);
    border-bottom: var(--border);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product:hover .product-image img { transform: scale(1.08); }

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.9rem;
    background: var(--pink);
    color: var(--white);
    border: var(--border);
    border-radius: 999px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    transform: rotate(-4deg);
    z-index: 2;
}

.product-badge.new { background: var(--mint); color: var(--ink); }
.product-badge.sale { background: var(--coral); }

.wishlist {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: var(--border);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 2;
}

.wishlist:hover { background: var(--pink); color: var(--white); transform: scale(1.1); }
.wishlist svg { width: 18px; height: 18px; }

.product-info {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.product-meta {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--coral);
}

.product h3 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.25;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
}

.product-rating .stars { color: var(--yellow-dark); letter-spacing: 0.1em; }

.product-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
}

.price { font-family: var(--font-display); font-size: 1.4rem; }
.price del { font-size: 0.9rem; color: rgba(0,0,0,0.4); font-family: var(--font-head); font-weight: 600; margin-right: 0.4rem; }

.quick-add {
    width: 42px;
    height: 42px;
    background: var(--ink);
    color: var(--yellow);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: background 0.2s, transform 0.2s;
}

.quick-add:hover { background: var(--coral); color: var(--white); transform: rotate(90deg); }
.quick-add svg { width: 18px; height: 18px; }

/* ── Feature Strip ─────────────────────── */
.features {
    background: var(--ink);
    color: var(--cream);
    padding: 3rem 0;
    border-top: var(--border);
    border-bottom: var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature { display: flex; gap: 1rem; align-items: flex-start; }

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--yellow);
    color: var(--ink);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.feature:nth-child(2) .feature-icon { background: var(--coral); color: var(--white); }
.feature:nth-child(3) .feature-icon { background: var(--sky); }
.feature:nth-child(4) .feature-icon { background: var(--mint); }

.feature-icon svg { width: 28px; height: 28px; }

.feature h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; margin-bottom: 0.2rem; }
.feature p { font-size: 0.85rem; opacity: 0.7; }

/* ── Promo Banner ──────────────────────── */
.promo {
    background: var(--pink);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.promo::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
    opacity: 0.3;
}

.promo-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.promo h2 { color: var(--white); margin-bottom: 1rem; }
.promo p { font-size: 1.1rem; margin-bottom: 2rem; max-width: 480px; opacity: 0.95; }

.promo-visual { position: relative; }

.promo-visual img {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    object-fit: cover;
    border: var(--border-thick);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
    transform: rotate(3deg);
}

.promo-sticker {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--yellow);
    border: var(--border-thick);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transform: rotate(-15deg);
    font-family: var(--font-display);
    color: var(--ink);
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    box-shadow: var(--shadow);
    animation: wiggle 3s ease-in-out infinite;
    z-index: 3;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-15deg); }
    50% { transform: rotate(-5deg); }
}

/* ── Testimonials ──────────────────────── */
.testimonials { background: var(--sky); }

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 1rem 0 2rem;
}

.testimonial-track::-webkit-scrollbar { display: none; }

.testimonial {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 320px;
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    scroll-snap-align: start;
    position: relative;
}

.testimonial:nth-child(even) { background: var(--yellow); }
.testimonial:nth-child(3n) { background: var(--mint); }

.quote-mark {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 0.5;
    color: var(--coral);
    margin-bottom: 0.5rem;
}

.testimonial p { font-size: 1rem; margin-bottom: 1.5rem; }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 2px dashed var(--ink);
    padding-top: 1rem;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: var(--border);
    object-fit: cover;
}

.author-info strong { font-family: var(--font-head); font-weight: 700; display: block; }
.author-info span { font-size: 0.8rem; opacity: 0.7; }

.t-controls { display: flex; gap: 0.75rem; justify-content: center; margin-top: 1.5rem; }

.t-controls button {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: var(--border);
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

.t-controls button:hover {
    background: var(--yellow);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--ink);
}

.t-controls svg { width: 20px; height: 20px; }

/* ── Stats Bar ─────────────────────────── */
.stats { background: var(--yellow); border-top: var(--border); border-bottom: var(--border); }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.stat { padding: 1rem; }

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    color: var(--ink);
}

.stat-label { font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; margin-top: 0.5rem; }

/* ── Blog / Journal ────────────────────── */
.journal { background: var(--cream); }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.blog-card {
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover { transform: translate(-4px, -4px); box-shadow: 12px 12px 0 var(--ink); }

.blog-image { aspect-ratio: 16/10; overflow: hidden; border-bottom: var(--border); }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-image img { transform: scale(1.05); }

.blog-content { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }

.blog-tag {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: var(--pink);
    color: var(--white);
    border-radius: 999px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    align-self: flex-start;
}

.blog-card:nth-child(2) .blog-tag { background: var(--sky); color: var(--ink); }
.blog-card:nth-child(3) .blog-tag { background: var(--mint); color: var(--ink); }

.blog-card h3 { font-family: var(--font-head); font-size: 1.2rem; line-height: 1.3; }
.blog-date { font-size: 0.8rem; opacity: 0.6; margin-top: auto; }

/* ── Newsletter ────────────────────────── */
.newsletter {
    background: var(--mint);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before, .newsletter::after {
    content: '🐾';
    position: absolute;
    font-size: 6rem;
    opacity: 0.15;
}

.newsletter::before { top: 20%; left: 8%; transform: rotate(-15deg); }
.newsletter::after { bottom: 20%; right: 8%; transform: rotate(20deg); }

.newsletter h2 { margin-bottom: 0.75rem; }
.newsletter p { font-size: 1.1rem; margin-bottom: 2rem; max-width: 500px; margin-inline: auto; }

.newsletter-form {
    display: flex;
    max-width: 520px;
    margin: 0 auto;
    background: var(--white);
    border: var(--border);
    border-radius: 999px;
    padding: 0.4rem;
    box-shadow: var(--shadow);
}

.newsletter-form input {
    flex: 1;
    padding: 0 1.25rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    background: transparent;
    outline: none;
}

.newsletter-form input::placeholder { color: rgba(0,0,0,0.5); }

.newsletter-form button {
    padding: 0.85rem 1.75rem;
    background: var(--coral);
    color: var(--white);
    border-radius: 999px;
    font-family: var(--font-head);
    font-weight: 700;
    transition: background 0.2s;
}

.newsletter-form button:hover { background: var(--ink); }

/* ── Footer ────────────────────────────── */
.footer {
    background: var(--ink);
    color: var(--cream);
    padding: 4rem 0 2rem;
    border-top: var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr) 1.2fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand p { margin: 1rem 0; opacity: 0.7; font-size: 0.9rem; line-height: 1.6; max-width: 280px; }

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--yellow);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { opacity: 0.7; transition: opacity 0.2s, color 0.2s; font-size: 0.9rem; }
.footer-col a:hover { opacity: 1; color: var(--yellow); }

.socials { display: flex; gap: 0.6rem; margin-top: 1.5rem; }

.social-link {
    width: 40px;
    height: 40px;
    background: var(--cream);
    color: var(--ink);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: background 0.2s, transform 0.2s;
}

.social-link:hover { background: var(--yellow); transform: translateY(-3px); }
.social-link svg { width: 18px; height: 18px; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px dashed rgba(255, 248, 231, 0.2);
    font-size: 0.85rem;
    opacity: 0.6;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer .logo { color: var(--yellow); }
.footer .logo-badge { background: var(--yellow); }

/* ── Cart Drawer ───────────────────────── */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 200;
}

.cart-overlay.active { opacity: 1; pointer-events: auto; }

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100vw;
    height: 100vh;
    background: var(--cream);
    border-left: var(--border);
    z-index: 201;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open { transform: translateX(0); }

.cart-head {
    padding: 1.5rem;
    border-bottom: var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-head h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; }

.cart-body { flex: 1; overflow-y: auto; padding: 1.5rem; }

.shipping-bar {
    background: var(--yellow);
    border: var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
}

.progress-bar {
    height: 8px;
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 999px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.progress-fill { height: 100%; width: 68%; background: var(--coral); border-radius: 999px; }

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 2px dashed rgba(0,0,0,0.1);
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: var(--border);
    border-radius: var(--radius);
    background: var(--white);
}

.cart-item-info { flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.cart-item-info h4 { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; }
.cart-item-meta { font-size: 0.8rem; opacity: 0.6; }

.qty-control {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: var(--border);
    border-radius: 999px;
    padding: 0.15rem 0.5rem;
    align-self: flex-start;
    font-weight: 700;
    margin-top: auto;
}

.qty-control button { width: 24px; height: 24px; font-weight: 800; font-size: 1rem; }

.cart-item-right { text-align: right; display: flex; flex-direction: column; justify-content: space-between; }
.cart-item-right .price { font-family: var(--font-display); font-size: 1.1rem; }
.remove-btn { font-size: 0.75rem; opacity: 0.6; text-decoration: underline; }

.cart-foot { padding: 1.5rem; border-top: var(--border); background: var(--white); }

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-family: var(--font-head);
    font-weight: 700;
}

.cart-total .total-price { font-family: var(--font-display); font-size: 1.75rem; }
.checkout-btn { width: 100%; justify-content: center; }

/* ── Page Header (inner pages) ─────────── */
.page-header {
    background: var(--yellow);
    border-bottom: var(--border);
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--coral) 0%, transparent 60%);
    opacity: 0.15;
}

.breadcrumb {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

.breadcrumb svg { width: 14px; height: 14px; }
.page-header h1 { margin-bottom: 0.5rem; position: relative; z-index: 1; }
.page-header p { max-width: 560px; margin: 0 auto; font-size: 1.05rem; position: relative; z-index: 1; }

/* ── Shop/Collection Page Layout ───────── */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
    align-items: flex-start;
}

.shop-sidebar {
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.filter-group { margin-bottom: 1.75rem; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px dashed var(--ink);
}

.filter-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.filter-list label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
}

.filter-list input { width: 18px; height: 18px; accent-color: var(--coral); }
.filter-list .count { margin-left: auto; opacity: 0.5; font-size: 0.8rem; }

.price-range { display: flex; gap: 0.5rem; margin-top: 0.5rem; }
.price-range input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-weight: 600;
    min-width: 0;
}

.color-swatches { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: var(--border);
    cursor: pointer;
    transition: transform 0.2s;
}

.swatch:hover { transform: scale(1.1); }
.swatch.active { outline: 3px solid var(--coral); outline-offset: 3px; }

.shop-main { min-width: 0; }

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.shop-toolbar .count { font-family: var(--font-head); font-weight: 700; }

.sort-select {
    padding: 0.7rem 1.3rem;
    background: var(--white);
    border: var(--border);
    border-radius: 999px;
    font-family: var(--font-head);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-btn {
    width: 44px;
    height: 44px;
    background: var(--white);
    border: var(--border);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--font-head);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

.page-btn:hover, .page-btn.active {
    background: var(--coral);
    color: var(--white);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--ink);
}

/* ── PDP ───────────────────────────────── */
.pdp-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
    align-items: flex-start;
}

.pdp-gallery { position: sticky; top: 100px; }

.gallery-main {
    aspect-ratio: 1;
    background: var(--cream-deep);
    border: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1rem;
    position: relative;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.gallery-main .pill {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.9rem;
    background: var(--pink);
    color: var(--white);
    border: var(--border);
    border-radius: 999px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: var(--shadow-sm);
    transform: rotate(-4deg);
}

.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }

.thumb {
    aspect-ratio: 1;
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
    padding: 0;
}

.thumb:hover { transform: translateY(-3px); }
.thumb.active { outline: 3px solid var(--coral); outline-offset: 3px; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.pdp-info h1 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 0.75rem; }

.pdp-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pdp-rating .stars { color: var(--yellow-dark); font-size: 1.1rem; letter-spacing: 0.1em; }
.pdp-rating a { color: var(--coral); text-decoration: underline; }

.pdp-price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.pdp-price del { font-size: 1.2rem; color: rgba(0,0,0,0.4); font-family: var(--font-head); margin-right: 0.5rem; }
.pdp-price .save {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    background: var(--mint);
    color: var(--ink);
    border: var(--border);
    border-radius: 999px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    margin-left: 0.5rem;
    vertical-align: middle;
    transform: rotate(-3deg);
    box-shadow: var(--shadow-sm);
}

.pdp-description { margin: 1.5rem 0; line-height: 1.7; }

.option-group { margin-bottom: 1.5rem; }
.option-group > label { display: block; font-family: var(--font-head); font-weight: 700; margin-bottom: 0.6rem; }

.option-buttons { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.opt {
    padding: 0.7rem 1.2rem;
    background: var(--white);
    border: var(--border);
    border-radius: 999px;
    font-family: var(--font-head);
    font-weight: 700;
    transition: all 0.2s;
    cursor: pointer;
}

.opt:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-sm); }
.opt.active { background: var(--ink); color: var(--yellow); box-shadow: var(--shadow-sm); }

.pdp-actions {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
    margin: 2rem 0;
}

.pdp-qty {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    border: var(--border);
    border-radius: 999px;
    padding: 0.3rem;
    box-shadow: var(--shadow-sm);
}

.pdp-qty button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.pdp-qty button:hover { background: var(--yellow); }
.pdp-qty span { padding: 0 1rem; font-family: var(--font-head); font-weight: 700; }

.pdp-actions .btn { flex: 1; justify-content: center; }

.pdp-perks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--cream-deep);
    border: var(--border);
    border-radius: var(--radius-lg);
    margin: 1.5rem 0;
}

.perk { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; font-weight: 700; }
.perk svg { width: 22px; height: 22px; color: var(--coral); flex-shrink: 0; }

.pdp-accordion { margin-top: 2rem; }
.acc-item { border-bottom: 2px dashed var(--ink); }

.acc-header {
    width: 100%;
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    text-align: left;
}

.acc-icon { transition: transform 0.3s; display: inline-flex; }
.acc-item.open .acc-icon { transform: rotate(45deg); }

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.acc-item.open .acc-body { max-height: 400px; padding-bottom: 1.25rem; }

/* ── Reviews ───────────────────────────── */
.reviews-section { background: var(--cream); }

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: flex-start;
}

.review-summary {
    background: var(--yellow);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    position: sticky;
    top: 100px;
}

.big-rating { font-family: var(--font-display); font-size: 4rem; line-height: 1; margin-bottom: 0.5rem; }
.review-summary .stars { font-size: 1.5rem; color: var(--coral); }
.review-count { margin: 0.75rem 0 1.5rem; font-weight: 700; }

.review-bars { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.review-bar-row { display: flex; align-items: center; gap: 0.75rem; font-size: 0.85rem; font-weight: 700; }
.review-bar-track { flex: 1; height: 10px; background: var(--white); border: 2px solid var(--ink); border-radius: 999px; overflow: hidden; }
.review-bar-fill { height: 100%; background: var(--coral); }

.review-list { display: flex; flex-direction: column; gap: 1.5rem; }

.review {
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.review-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.reviewer { display: flex; align-items: center; gap: 0.75rem; }

.reviewer img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: var(--border);
    object-fit: cover;
}

.reviewer strong { font-family: var(--font-head); display: block; font-weight: 700; }
.reviewer span { font-size: 0.8rem; opacity: 0.6; }

.review .stars { color: var(--yellow-dark); font-weight: 700; letter-spacing: 0.1em; }
.review h4 { margin-bottom: 0.4rem; }
.review p { font-size: 0.95rem; }

/* ── About Page ────────────────────────── */
.about-intro { background: var(--cream); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 { margin-bottom: 1.5rem; margin-top: 1rem; }
.about-text p { font-size: 1.05rem; margin-bottom: 1rem; }

.about-visual { position: relative; aspect-ratio: 1; }

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: var(--border-thick);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
}

.about-sticker {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--coral);
    color: var(--white);
    border: var(--border-thick);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 1.1rem;
    box-shadow: var(--shadow);
    transform: rotate(-5deg);
}

.values { background: var(--sky); }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translate(-4px, -4px) rotate(-1deg);
    box-shadow: 12px 12px 0 var(--ink);
}

.value-emoji {
    display: inline-grid;
    place-items: center;
    width: 72px;
    height: 72px;
    background: var(--yellow);
    border: var(--border);
    border-radius: 50%;
    font-size: 2rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.value-card:nth-child(2) .value-emoji { background: var(--coral); color: var(--white); }
.value-card:nth-child(3) .value-emoji { background: var(--mint); }

.value-card h3 { margin-bottom: 0.5rem; }

.team { background: var(--cream); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.team-card { text-align: center; }

.team-photo {
    aspect-ratio: 1;
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.team-card:hover .team-photo { transform: translate(-3px, -3px) rotate(-2deg); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-card h4 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; }
.team-card span { font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--coral); }

.timeline { background: var(--pink); color: var(--white); }
.timeline h2 { color: var(--white); }

.timeline-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 8%;
    right: 8%;
    height: 4px;
    background: var(--white);
    border-radius: 2px;
    z-index: 0;
}

.timeline-item { position: relative; z-index: 1; text-align: center; }

.timeline-dot {
    width: 60px;
    height: 60px;
    background: var(--yellow);
    border: var(--border);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--ink);
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
}

.timeline-item h4 { color: var(--white); margin-bottom: 0.3rem; }
.timeline-item p { font-size: 0.85rem; opacity: 0.9; }

/* ── Contact Page ──────────────────────── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.contact-form {
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.field { margin-bottom: 1.25rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 700; margin-bottom: 0.4rem; font-size: 0.95rem; }

.field input, .field textarea, .field select {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    background: var(--cream);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus, .field textarea:focus, .field select:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: var(--shadow-sm);
}

.field textarea { resize: vertical; min-height: 120px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.contact-info { display: flex; flex-direction: column; gap: 1rem; }

.contact-card {
    background: var(--yellow);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    display: flex;
    gap: 1rem;
    transition: transform 0.3s;
    align-items: center;
}

.contact-card:hover { transform: translate(-3px, -3px) rotate(-0.5deg); box-shadow: var(--shadow-lg); }

.contact-card:nth-child(2) { background: var(--mint); }
.contact-card:nth-child(3) { background: var(--pink); color: var(--white); }
.contact-card:nth-child(4) { background: var(--sky); }

.contact-card-icon {
    width: 52px;
    height: 52px;
    background: var(--white);
    border: var(--border);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.contact-card-icon svg { width: 24px; height: 24px; color: var(--ink); }

.contact-card h4 { margin-bottom: 0.2rem; font-family: var(--font-display); font-weight: 400; font-size: 1.25rem; }
.contact-card p { font-size: 0.95rem; font-weight: 700; }

.map-section { background: var(--cream); }

.map-frame {
    height: 400px;
    border: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--cream-deep);
}

.map-frame iframe { width: 100%; height: 100%; border: none; filter: hue-rotate(-10deg) saturate(0.9); }

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.faq-card {
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.faq-card h4 { margin-bottom: 0.5rem; }
.faq-card p { font-size: 0.9rem; }

/* ── Related Products ─────────────────── */
.related { background: var(--cream-deep); }

/* ── Reveal Animations ─────────────────── */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up.visible { opacity: 1; transform: translateY(0); }

.reveal-up.delay-1 { transition-delay: 0.1s; }
.reveal-up.delay-2 { transition-delay: 0.2s; }
.reveal-up.delay-3 { transition-delay: 0.3s; }

/* Float animation */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
    50% { transform: translateY(-10px) rotate(var(--r, 0deg)); }
}

.float { animation: float 3s ease-in-out infinite; }

/* ── Responsive ────────────────────────── */
@media (max-width: 1100px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid, .shop-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; }
    .timeline-track { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .timeline-track::before { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr; }
    .pdp-layout, .contact-layout, .about-grid, .promo-inner, .reviews-grid { grid-template-columns: 1fr; }
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { position: static; }
    .slide { grid-template-columns: 1fr; text-align: center; }
    .slide-ctas { justify-content: center; }
    .slide-visual img { max-width: 380px; }
    .hero-sticker { display: none; }
    .pdp-gallery, .review-summary { position: static; }
}

@media (max-width: 680px) {
    :root { --pad: 1.25rem; }
    .nav { display: none; }
    .category-grid, .product-grid, .shop-grid, .team-grid, .faq-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .slider { height: auto; min-height: 620px; }
    .slide { padding: 2rem 1.25rem; }
    .slide-visual img { max-width: 100%; }
    .field-row { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; border-radius: var(--radius-lg); }
    .newsletter-form button { width: 100%; margin-top: 0.5rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .pdp-actions { flex-direction: column; }
}
