/* ─── Accessibility ──────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Design Tokens ─────────────────────────────────── */
:root {
    --cream:     #eddabc;
    --rust:      #b16448;
    --olive:     #5b5d34;
    --cream-dark:#d9c49e;
    --rust-dark: #8a4a33;
    --olive-dark:#3f4124;
    --sand:      #f5eed9;
    --text-dark: #2c2215;
    --text-mid:  #5a4030;
    --white:     #fffdf7;

    --font-display: 'Caveat', cursive;
    --font-body:    'Nunito', sans-serif;

    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
}

/* ─── Reset & Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background-color: var(--sand);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ─── Noise Texture Overlay ─────────────────────────── */
body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* ─── Hero Slider ───────────────────────────────────── */
.hero {
    margin-top: 72px;
    position: relative;
    overflow: hidden;
    height: calc(100vh - 72px);
    min-height: 520px;
}

.slide {
    position: absolute; inset: 0;
    display: flex; align-items: center;
    padding: 5% 8%;
    opacity: 0;
    transition: opacity 0.9s ease, transform 0.9s ease;
    transform: scale(1.02);
    pointer-events: none;
}
.slide.active {
    opacity: 1; transform: scale(1);
    pointer-events: all;
}

/* ─── Slide 1 — Product (desktop) ───────────────────────
   Background image sits right, gradient keeps text readable left.
   On mobile: image becomes a top panel, text sits below.
──────────────────────────────────────────────────────── */
.slide-1 {
    /* ↓ ADD YOUR PRODUCT IMAGE PATH HERE */
    background-image: url('/media/hero-wedgie-desktop.png');
    background-size: 46%;
    background-position: right 2% center;
    background-repeat: no-repeat;
    background-color: #e8d4af; /* fallback colour */
}

/* Left-to-right gradient overlay — solid left, transparent right */
.slide-1::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
        100deg,
        #eddabc        0%,
        #e0c99a       38%,
        #d9c49e       52%,
        rgba(200,168,122,0.82) 65%,
        rgba(200,168,122,0.28) 80%,
        transparent  100%
    );
    z-index: 1;
    pointer-events: none;
}

.slide-1::after {
    content: none; /* old decorative blob removed */
}

/* Slide 2 – Lifestyle */
/* ─── Slide 2 — Lifestyle Tee (desktop) ─────────────────
   Same pattern as slide-1 but olive gradient overlay.
   On mobile: image becomes a top panel, text sits below.
──────────────────────────────────────────────────────── */
.slide-2 {
    /* ↓ ADD YOUR TEE IMAGE PATH HERE */
    background-image: url('/media/apparel/cte/hero-cte.png');
    background-size: 52%;
    background-position: right 4% center;
    background-repeat: no-repeat;
    background-color: #4a5229; /* fallback colour */
}

/* Left-to-right gradient overlay — olive tones fading right */
.slide-2::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
        100deg,
        #3f4124        0%,
        #4a5229       35%,
        rgba(74,82,41,0.88) 52%,
        rgba(74,82,41,0.45) 68%,
        transparent  100%
    );
    z-index: 1;
    pointer-events: none;
}
.slide-2 .slide-text h2, .slide-2 .slide-text p { color: var(--cream); }
.slide-2 .slide-tagline { color: var(--cream-dark); }

.slide-content {
    position: relative; z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.slide-text { display: flex; flex-direction: column; gap: 1.2rem; }
.slide-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rust);
    background: rgba(177,100,72,0.12);
    border: 1.5px solid rgba(177,100,72,0.3);
    padding: 0.35rem 0.9rem;
    border-radius: 99px;
    width: fit-content;
}
.slide-2 .slide-badge {
    color: var(--cream); background: rgba(237,218,188,0.15); border-color: rgba(237,218,188,0.35);
}

.slide-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--olive);
}
.slide-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 500;
    color: var(--rust);
    line-height: 1.4;
}
.slide-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 400px;
}

.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.85rem 2rem;
    border-radius: 99px;
    border: none; cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background var(--transition);
    width: fit-content;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: var(--rust);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(177,100,72,0.35);
}
.btn-primary:hover { background: var(--rust-dark); box-shadow: 0 10px 32px rgba(177,100,72,0.5); }

.btn-outline {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(237,218,188,0.6);
}
.btn-outline:hover { background: rgba(237,218,188,0.15); border-color: var(--cream); }

/* Image placeholder cards */
.slide-image {
    position: relative;
    display: flex; align-items: center; justify-content: center;
}

.product-card {
    width: 100%; max-width: 420px;
    aspect-ratio: 4/3;
    border-radius: 20px;
    background: linear-gradient(145deg, var(--white), var(--cream));
    box-shadow: 0 30px 70px rgba(44,34,21,0.18), 0 8px 24px rgba(44,34,21,0.1);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 1rem;
    border: 2px solid rgba(177,100,72,0.15);
    overflow: hidden;
    position: relative;
}
.product-card::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
    45deg,
    transparent, transparent 20px,
    rgba(177,100,72,0.03) 20px, rgba(177,100,72,0.03) 21px
    );
}
.product-card .card-icon {
    font-size: 4rem; position: relative; z-index: 1;
}
.product-card .card-label {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 700;
    color: var(--rust); z-index: 1;
    text-align: center; padding: 0 1rem;
}
.product-card .card-sublabel {
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-mid); z-index: 1;
}
.product-card .patent-tag {
    position: absolute; top: 14px; right: 14px;
    background: var(--olive); color: var(--cream);
    font-size: 0.62rem; font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.3rem 0.7rem; border-radius: 99px;
    z-index: 2;
}

/* Tee card */
.tee-card {
    width: 100%; max-width: 380px;
    aspect-ratio: 3/4;
    border-radius: 20px;
    background: linear-gradient(145deg, var(--cream) 0%, #c8a870 100%);
    box-shadow: 0 30px 70px rgba(0,0,0,0.3);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 1.2rem;
    border: 2px solid rgba(237,218,188,0.2);
    overflow: hidden; position: relative;
}
.tee-card .skeleton-art {
    font-size: 7rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.tee-card .tee-name {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 700;
    color: var(--olive-dark);
    letter-spacing: 0.05em;
}
.tee-card .tee-sub {
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--rust-dark);
}

/* Slider dots */
.hero-dots {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 10;
}
.dot {
    width: 8px; height: 8px; border-radius: 99px;
    background: rgba(91,93,52,0.3);
    cursor: pointer; transition: all 0.3s ease;
    border: none;
}
.dot.active {
    background: var(--olive);
    width: 28px;
}

/* Slide arrows */
.hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10;
    background: rgba(237,218,188,0.8);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(177,100,72,0.25);
    color: var(--olive);
    width: 46px; height: 46px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1.1rem;
    transition: all 0.2s ease;
}
.hero-arrow:hover { background: var(--rust); color: var(--white); }
.hero-arrow.prev { left: 3%; }
.hero-arrow.next { right: 3%; }

/* wave divider */
.wave-divider {
    display: block; width: 100%; margin-bottom: -2px;
    color: var(--sand);
}

/* ─── Features Strip ────────────────────────────────── */
.features-strip {
    background: var(--olive);
    padding: 1.2rem 5%;
    display: flex; justify-content: center; gap: 3rem;
    flex-wrap: wrap;
}
.feature-item {
    display: flex; align-items: center; gap: 0.6rem;
    color: var(--cream);
    font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
}
.feature-item .fi-icon { font-size: 1.2rem; }

/* ─── Product Section ───────────────────────────────── */
.section { padding: 6rem 5%; }
.section-label {
    font-family: var(--font-body);
    font-size: 0.72rem; font-weight: 800;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 0.8rem;
    display: block;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    color: var(--olive);
    line-height: 1.15;
    margin-bottom: 1.2rem;
}
.section-sub {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-mid);
    max-width: 480px;
}

.product-section {
    background: var(--white);
}
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.product-visual {
    position: relative;
}
/* ─── Product video container ───────────────────────────
   Portrait video shot on iPhone: 1080 × 1920 (9:16).
   We let the video's natural ratio drive the height so
   nothing is cropped. Max-width keeps it from going too
   wide on large screens.
──────────────────────────────────────────────────────── */
.product-main-img {
    width: 100%;
    max-width: 380px;           /* cap width on desktop        */
    margin: 0 auto;             /* centre within the grid col  */
    aspect-ratio: 9 / 16;      /* 1080 × 1920 portrait ratio  */
    border-radius: 24px;
    background: linear-gradient(145deg, var(--cream) 0%, var(--cream-dark) 100%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 1.5rem;
    border: 2px solid rgba(177,100,72,0.12);
    box-shadow: 0 24px 60px rgba(44,34,21,0.12);
    position: relative; overflow: hidden;
}

/* The video fills the container fully — no letterboxing, no cropping */
.product-main-img video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;    /* fills without distorting */
    object-position: center;
    border-radius: 22px;  /* match parent radius minus border */
    display: block;
    z-index: 1;
}

.product-main-img::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(177,100,72,0.08) 0%, transparent 60%);
    z-index: 0;
}

/* Text group pinned 25% up from the bottom of the card */
.product-main-img .prod-text-group {
    position: absolute;
    bottom: 25%;
    left: 0; right: 0;
    display: flex; flex-direction: column;
    align-items: center; gap: 0.4rem;
    z-index: 2;
}

.product-main-img .patent-badge { z-index: 2; }

.product-main-img .big-icon { font-size: 6rem; z-index: 1; margin-bottom: 60px; }
.product-main-img .prod-name {
    font-family: var(--font-display);
    font-size: 1.8rem; font-weight: 700;
    color: var(--rust);
}
.product-main-img .prod-desc {
    font-size: 0.8rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--rust);
}
.patent-badge {
    position: absolute; top: 20px; left: 20px;
    background: var(--olive);
    color: var(--cream);
    font-size: 0.65rem; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0.4rem 1rem; border-radius: 99px;
    z-index: 2;
}

.floating-stat {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 0.9rem 1.3rem;
    box-shadow: 0 12px 36px rgba(44,34,21,0.15);
    border: 1.5px solid rgba(177,100,72,0.1);
}
.floating-stat .stat-num {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 700;
    color: var(--rust); display: block;
}
.floating-stat .stat-txt {
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--text-mid);
}
.stat-1 { top: -18px; right: -20px; z-index: 1; }
.stat-2 { bottom: -18px; left: -20px; z-index: 1; }

.product-info { display: flex; flex-direction: column; gap: 1.8rem; }
.feature-list { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 0.5rem; }
.feature-row {
    display: flex; align-items: flex-start; gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: var(--sand);
    border-radius: var(--radius);
    border-left: 3px solid var(--rust);
}
.feature-row .fr-icon { font-size: 1.3rem; flex-shrink: 0; }
.feature-row .fr-text h4 {
    font-size: 0.85rem; font-weight: 800;
    color: var(--text-dark); margin-bottom: 0.2rem;
}
.feature-row .fr-text p {
    font-size: 0.78rem; color: var(--text-mid); line-height: 1.5;
}

/* ─── Shop Section ──────────────────────────────────── */
.shop-section {
    background: var(--sand);
}
.shop-header {
    text-align: center;
    margin-bottom: 3rem;
}
.shop-header .section-sub { margin: 0 auto; }

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.shop-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(44,34,21,0.08);
    border: 1.5px solid rgba(177,100,72,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}
@media (hover: hover) {
    .shop-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(44,34,21,0.16);
    }
    .shop-card:hover .img-base { opacity: 0; }
    .shop-card:hover .img-alt  { opacity: 1; }
}
.shop-card.featured {
    grid-row: span 1;
    border: 2px solid var(--rust);
}

/* ─── Shop card image area ───────────────────────────────
   Holds two stacked <img> layers — base image visible by
   default, alt image fades in on hover. The gradient
   background shows through either way.
──────────────────────────────────────────────────────── */
.shop-card-img {
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, var(--cream) 0%, var(--cream-dark) 100%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

/* Subtle radial vignette over the gradient */
.shop-card-img::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(177,100,72,0.06) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* ── Base and alt <img> layers ──
   Both are absolutely positioned and fill the image area.
   .img-base  — visible by default, fades out on hover.
   .img-alt   — hidden by default, fades in on hover.
   The gradient background stays visible when both are at
   reduced opacity during the crossfade.
─────────────────────────────────────────────────────── */
.shop-card-img .img-base,
.shop-card-img .img-alt {
    position: absolute;
    inset: 0;
    height: 90%;
    align-self: center;
    justify-self: center;
    transition: opacity 0.5s ease;
    z-index: 2;
}

#wedgie-front-view, #wedgie-side-view {
    height: 60%;
}

.shop-card-img .img-base {
    opacity: 1;
}

.shop-card-img .img-alt {
    opacity: 0;
}


/* ── Emoji / text placeholders sit above the image layers ── */
.card-emoji {
    display: flex;
    justify-content: center;
    font-size: 4.5rem;
    z-index: 3;
    position: relative;
}

.shop-card-img .card-item-name {
    font-family: var(--font-display);
    font-size: 1.15rem; font-weight: 700;
    color: var(--rust);
    z-index: 3;
    position: relative;
}

/* New-tag badge stays on top of everything */
.new-tag {
    position: absolute; top: 12px; left: 12px;
    background: var(--rust); color: var(--white);
    font-size: 0.6rem; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0.3rem 0.7rem; border-radius: 99px;
    z-index: 4;
}
.shop-card-body {
    flex: 1;
    padding: 1.2rem 1.3rem 1.5rem;
    display: flex; flex-direction: column; gap: 0.5rem;
    background: var(--sand);
}
.shop-card-body h3 {
    font-family: var(--font-body);
    font-size: 0.95rem; font-weight: 800;
    color: var(--text-dark);
}
.shop-card-body p {
    font-size: 0.8rem; color: var(--text-mid); line-height: 1.5;
}
.shop-card-footer {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 0.5rem;
}
.price {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 700;
    color: var(--rust);
}
.btn-sm {
    font-size: 0.75rem !important;
    padding: 0.5rem 1.1rem !important;
}
.shop-cta-row {
    display: flex; justify-content: center;
    margin-top: 3rem;
}

/* ─── Lifestyle Band ────────────────────────────────── */
.lifestyle-band {
    background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive) 100%);
    padding: 5rem 5%;
    text-align: center;
    position: relative; overflow: hidden;
}
.lifestyle-band::before {
    content: '⛳ 🌊 🏄 🍹 ⛳ 🌊 🏄 🍹 ⛳ 🌊 🏄 🍹';
    position: absolute; top: 0; left: 0; right: 0;
    font-size: 1.5rem; letter-spacing: 1rem; opacity: 0.06;
    white-space: nowrap; overflow: hidden;
    padding: 1rem 0;
}
.lifestyle-band h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 1rem;
}
.lifestyle-band p {
    font-size: 1rem; line-height: 1.75;
    color: rgba(237,218,188,0.75);
    max-width: 580px; margin: 0 auto 2.5rem;
}
.band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-cream {
    background: var(--cream);
    color: var(--olive-dark);
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.btn-cream:hover { background: var(--white); }

/* ─── Testimonials ──────────────────────────────────── */
.testimonials { padding: 6rem 5%; background: var(--white); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px; margin: 3rem auto 0;
}
.testimonial-card {
    background: var(--sand);
    border-radius: var(--radius);
    padding: 1.8rem;
    border: 1.5px solid rgba(177,100,72,0.1);
    position: relative;
}
.testimonial-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 5rem; line-height: 0.8;
    color: var(--rust); opacity: 0.2;
    position: absolute; top: 12px; left: 16px;
}
.testimonial-card p {
    font-size: 0.88rem; line-height: 1.7;
    color: var(--text-mid); position: relative; z-index: 1;
    margin-bottom: 1rem;
}
.testimonial-author {
    display: flex; align-items: center; gap: 0.7rem;
}
.author-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--cream-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.author-name {
    font-size: 0.82rem; font-weight: 800; color: var(--text-dark); display: block;
}
.author-handle {
    font-size: 0.72rem; color: var(--rust); font-weight: 600;
}
.stars { color: #d4862a; font-size: 0.8rem; margin-bottom: 0.5rem; }

/* ─── Footer ────────────────────────────────────────── */
footer {
    background: var(--text-dark);
    color: var(--cream);
    padding: 4rem 5% 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px; margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(237,218,188,0.1);
}
.footer-brand .nav-logo { font-size: 2.2rem; }
.footer-brand p {
    font-size: 0.85rem; line-height: 1.7;
    color: rgba(237,218,188,0.55);
    margin-top: 0.8rem; max-width: 280px;
}
.footer-col h4 {
    font-size: 0.72rem; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--rust); margin-bottom: 1rem;
}
.footer-col a {
    display: block; margin-bottom: 0.6rem;
    font-size: 0.85rem; color: rgba(237,218,188,0.55);
    text-decoration: none; transition: color var(--transition);
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 2rem;
    max-width: 1200px; margin: 0 auto;
    font-size: 0.78rem; color: rgba(237,218,188,0.35);
    flex-wrap: wrap; gap: 0.5rem;
}
.social-links { display: flex; gap: 0.8rem; }
.social-links a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(237,218,188,0.08);
    border: 1px solid rgba(237,218,188,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; text-decoration: none;
    transition: background var(--transition);
}
.social-links a:hover { background: var(--rust); }

/* ─── Responsive ────────────────────────────────────────
   Tablet (≤900px): general layout collapses.
   Mobile (≤600px): hero slides switch to stacked layout —
     image panel on top, text block below.
──────────────────────────────────────────────────────── */

/* ── Tablet ── */
@media (max-width: 900px) {
    .product-grid        { grid-template-columns: 1fr; gap: 3rem; }
    .shop-grid           { display: flex; flex-direction: row; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 1rem; max-width: 100%; }
    .shop-card           { flex: 0 0 75vw; scroll-snap-align: start; }
    .shop-card.reveal    { opacity: 1; transform: none; }
    .shop-card-footer    { display: none; }
    .shop-price-pill {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: var(--rust);
        color: #fff;
        font-size: 0.8rem;
        font-weight: 800;
        padding: 0.25rem 0.65rem;
        border-radius: 99px;
        z-index: 4;
        pointer-events: none;
    }
    .testimonials-grid   { grid-template-columns: 1fr; }
    .footer-grid         { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile hero — single-box, top-to-bottom layout ── */
@media (max-width: 600px) {

    /* ── Hero stays its natural viewport height ── */
    .hero {
        height: calc(100vh - 72px);
        min-height: 480px;
    }

    /* ── Slide stays absolutely positioned and fills the hero ──
       No flex split — one seamless box just like desktop.       */
    .slide {
        position:       absolute;
        inset:          0;
        display:        flex;
        flex-direction: column;
        justify-content: flex-end;  /* push text to the bottom */
        align-items:    stretch;
        padding:        0;
    }

    .slide:not(.active) {
        display: none;
    }

    /* ── Background image fills the whole slide, anchored to the top ──
       Image is visible at the top; gradient fades it into text below.  */
    .slide-1 {
        background-size:     cover;
        background-position: center -100px;
        background-image: url('/media/hero-wedgie.png');
    }

    .slide-2 {
        background-size:     cover;
        background-position: center top;
    }

    /* ── Replace the left-to-right desktop gradient with a top-to-bottom one ──
       Transparent at top (image shows) → solid colour at bottom (text sits on). */
    .slide-1::before {
        background: linear-gradient(
            to bottom,
            transparent                  0%,
            transparent                 35%,
            rgba(232, 212, 175, 0.55)   55%,
            rgba(232, 212, 175, 0.88)   70%,
            #e8d4af                    100%
        );
        /* Keep as full-cover overlay */
        position: absolute;
        inset:    0;
        z-index:  1;
        pointer-events: none;
    }

    .slide-2::before {
        background: linear-gradient(
            to bottom,
            transparent               0%,
            transparent              35%,
            rgba(63, 65, 36, 0.55)   55%,
            rgba(63, 65, 36, 0.88)   70%,
            #3f4124                 100%
        );
        position: absolute;
        inset:    0;
        z-index:  1;
        pointer-events: none;
    }

    /* ── Remove old ::after blobs ── */
    .slide-1::after,
    .slide-2::after {
        content: none;
    }

    /* ── Text block sits at the bottom of the slide ──
       z-index 3 keeps it above the ::before gradient.  */
    .slide-content {
        position:   relative;
        z-index:    3;
        display:    block;
        max-width:  100%;
        padding:    1.6rem 6% 2rem;
        margin:     0;
        /* No background — the gradient handles the readability */
        background: transparent;
        bottom: 60px;
    }

    .slide-text {
        max-width: 100%;
        gap:       0.9rem;
    }

    .slide-text h2 {
        font-size: clamp(1.9rem, 6.5vw, 2.6rem);
    }

    /* Slide-1 text colours stay dark (cream bg shows below) */
    /* Slide-2 text is already set to cream in the base styles */

    /* ── Dots stay pinned to the bottom inside the hero ── */
    .hero-dots {
        position:  absolute;
        bottom:    20px;
        left:      50%;
        transform: translateX(-50%);
        z-index:   10;
    }

    .hero-arrow     { display: none; }
    .footer-grid    { grid-template-columns: 1fr; }
    .features-strip { gap: 1.2rem; }
    .section        { padding: 3rem 4%; }
}


/* ─── Scroll Animations ─────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
