/* ===================================================
   FEEL GOOD STORY — 305 Miami Redesign
   Palette: Electric Aqua, Sunset Coral, Golden Hour,
            Flamingo Pink, Tropical Green, Deep Ocean
   Vibe: Miami Beach luxury — bold, warm, alive
   =================================================== */

:root {
    /* Core Palette — Miami Brights */
    --white:        #FFFFFF;
    --cream:        #FFF8F2;
    --warm-white:   #FFFAF5;
    --blush:        #FFF0E8;

    /* Ocean Tones — vivid & saturated */
    --aqua:         #00C8C8;
    --aqua-deep:    #009999;
    --aqua-pale:    #E0F9F9;
    --teal:         #007A8A;
    --teal-dark:    #005F6B;
    --electric-blue: #0096FF;

    /* Sunset / Warm Accents */
    --coral:        #FF5A3C;
    --coral-light:  #FF7A5C;
    --coral-pale:   #FFF0EC;
    --flamingo:     #FF3D78;
    --flamingo-pale: #FFE8F0;
    --golden:       #FFB830;
    --golden-pale:  #FFF5DC;
    --mango:        #FF8C00;

    /* Tropical Green */
    --palm:         #2DBD6E;
    --palm-pale:    #E6FAF0;

    /* Neutrals — warm-toned */
    --warm-gray:    #9A8E85;
    --mid-gray:     #6B5E55;
    --charcoal:     #2E2520;
    --dark:         #1A1210;

    /* Sand — warmer, more golden */
    --sand:         #FFF0DC;
    --sand-mid:     #F0D8B8;
    --sand-dark:    #D4B890;

    /* Gradients — Miami signature */
    --grad-aqua:    linear-gradient(135deg, #009999 0%, #00C8C8 100%);
    --grad-coral:   linear-gradient(135deg, #FF5A3C 0%, #FF8C00 100%);
    --grad-flamingo: linear-gradient(135deg, #FF3D78 0%, #FF5A3C 100%);
    --grad-golden:  linear-gradient(135deg, #FFB830 0%, #FF8C00 100%);
    --grad-miami:   linear-gradient(135deg, #FF3D78 0%, #FF5A3C 40%, #FFB830 100%);
    --grad-ocean:   linear-gradient(135deg, #005F6B 0%, #007A8A 50%, #00C8C8 100%);
    --grad-sunset:  linear-gradient(160deg, #FF3D78 0%, #FF5A3C 35%, #FFB830 70%, #00C8C8 100%);
    --grad-hero:    linear-gradient(170deg, rgba(10,30,40,0.72) 0%, rgba(0,90,100,0.42) 55%, rgba(0,200,200,0.12) 100%);
    --grad-sand:    linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);

    /* Typography */
    --font-display: 'Outfit', Arial, sans-serif;
    --font-serif:   'Cormorant Garamond', Georgia, serif;
    --font-sans:    'Outfit', Arial, sans-serif;

    /* Spacing & Sizing */
    --nav-height:   76px;
    --bar-height:   40px;
    --radius-sm:    6px;
    --radius-md:    12px;
    --radius-lg:    20px;
    --radius-xl:    32px;

    /* Transitions */
    --transition:       0.3s ease;
    --transition-slow:  0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Shadows */
    --shadow-xs:      0 1px 4px rgba(26,18,16,0.07);
    --shadow-sm:      0 4px 16px rgba(26,18,16,0.09);
    --shadow-md:      0 8px 32px rgba(26,18,16,0.12);
    --shadow-lg:      0 20px 60px rgba(26,18,16,0.16);
    --shadow-aqua:    0 8px 32px rgba(0,200,200,0.28);
    --shadow-coral:   0 8px 32px rgba(255,90,60,0.28);
    --shadow-miami:   0 8px 32px rgba(255,61,120,0.22);
    --shadow-golden:  0 8px 32px rgba(255,184,48,0.28);
    --shadow-glass:   0 8px 32px rgba(26,18,16,0.12), inset 0 1px 0 rgba(255,255,255,0.6);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

.sr-only {
    position: absolute; width: 1px; height: 1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.12; }

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--coral);
    display: block;
    margin-bottom: 18px;
}
.section-eyebrow.light { color: rgba(255,255,255,0.7); }
.section-eyebrow.aqua  { color: var(--aqua); }
.section-eyebrow.golden { color: var(--golden); }


/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 34px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    white-space: normal;
    word-break: break-word;
    box-sizing: border-box;
    line-height: 1.3;
    border-radius: 100px;
}

.btn-primary {
    background: var(--grad-coral);
    color: var(--white);
    border: 2px solid transparent;
    box-shadow: var(--shadow-coral);
}
.btn-primary:hover {
    background: var(--grad-flamingo);
    box-shadow: 0 10px 40px rgba(255,90,60,0.42);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-primary-light {
    background: rgba(255,255,255,0.96);
    color: var(--coral);
    border: 2px solid rgba(255,255,255,0.9);
    font-weight: 700;
    backdrop-filter: blur(8px);
}
.btn-primary-light:hover {
    background: rgba(255,255,255,1);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    color: var(--flamingo);
}

.btn-ghost {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--sand-mid);
}
.btn-ghost:hover {
    background: var(--sand);
    border-color: var(--sand-dark);
    color: var(--dark);
    transform: translateY(-2px);
}
/* Ghost on dark backgrounds */
.impact-section .btn-ghost,
.community-section .btn-ghost,
.site-footer .btn-ghost {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.35);
}
.impact-section .btn-ghost:hover,
.community-section .btn-ghost:hover,
.site-footer .btn-ghost:hover {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.7);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.14);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--aqua-deep);
    border: 1.5px solid var(--aqua-deep);
}
.btn-secondary:hover {
    background: var(--aqua-deep);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-coral {
    background: var(--grad-coral);
    color: var(--white);
    border: 2px solid transparent;
    box-shadow: var(--shadow-coral);
}
.btn-coral:hover {
    box-shadow: 0 10px 36px rgba(255,90,60,0.42);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-miami {
    background: var(--grad-miami);
    color: var(--white);
    border: 2px solid transparent;
    box-shadow: var(--shadow-miami);
}
.btn-miami:hover {
    box-shadow: 0 10px 36px rgba(255,61,120,0.4);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-disabled {
    background: var(--sand-mid);
    color: var(--warm-gray);
    border: 2px solid var(--sand-mid);
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-large { padding: 18px 52px; font-size: 13px; }
.btn-full { width: 100%; display: block; }
.btn-text {
    font-family: var(--font-sans);
    font-size: 11px;
    color: var(--coral);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.btn-small { padding: 9px 18px; font-size: 11px; }


/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    height: 40px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 48px 0 16px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.announcement-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}
.announcement-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}
.announcement-text {
    font-family: var(--font-sans);
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255,248,242,0.88);
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.announcement-input-group {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 100px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.announcement-input-group:focus-within {
    border-color: var(--coral-light);
}
.announcement-input {
    background: transparent;
    border: none;
    outline: none;
    padding: 4px 12px;
    font-family: var(--font-sans);
    font-size: 12px;
    color: #fff;
    width: 170px;
}
.announcement-input::placeholder {
    color: rgba(255,248,242,0.4);
}
.announcement-btn {
    background: var(--coral);
    color: #fff;
    border: none;
    padding: 5px 14px;
    font-family: var(--font-sans);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    border-radius: 0 100px 100px 0;
}
.announcement-btn:hover {
    background: var(--coral-dark, #e03e1a);
}
.announcement-close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,248,242,0.55);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 6px;
    transition: color 0.2s;
}
.announcement-close:hover {
    color: rgba(255,248,242,1);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 40px; left: 0; right: 0;
    z-index: 100;
    height: var(--nav-height);
    transition: background var(--transition-slow), box-shadow var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255,248,242,0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255,90,60,0.1), 0 4px 20px rgba(26,18,16,0.08);
}

.navbar-light {
    background: rgba(255,248,242,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--sand-mid);
}

/* Scrolled nav — colorful top accent bar */
.navbar.scrolled::after,
.navbar-light::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-miami);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    flex-shrink: 0;
    overflow: hidden;
    max-width: 220px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 21px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.01em;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color var(--transition);
}

.navbar.scrolled .logo-text,
.navbar-light .logo-text {
    color: var(--dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 44px;
}

.nav-link {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
    position: relative;
    transition: color var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0; right: 0;
    height: 2px;
    background: var(--grad-miami);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
    border-radius: 1px;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: rgba(255,255,255,1); }

.navbar.scrolled .nav-link,
.navbar-light .nav-link {
    color: var(--mid-gray);
}
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active,
.navbar-light .nav-link:hover,
.navbar-light .nav-link.active {
    color: var(--coral);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.nav-icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    color: rgba(255,255,255,0.88);
    transition: color var(--transition);
    cursor: pointer;
    border-radius: 50%;
}
.nav-icon-btn:hover {
    color: var(--white);
    background: rgba(255,255,255,0.12);
}
.navbar.scrolled .nav-icon-btn,
.navbar-light .nav-icon-btn { color: var(--mid-gray); }
.navbar.scrolled .nav-icon-btn:hover,
.navbar-light .nav-icon-btn:hover {
    color: var(--coral);
    background: var(--coral-pale);
}

.cart-count {
    position: absolute;
    top: 6px; right: 6px;
    background: var(--grad-miami);
    color: var(--white);
    border-radius: 50%;
    width: 15px; height: 15px;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}
.mobile-toggle span {
    display: block;
    width: 22px; height: 1.5px;
    background: rgba(255,255,255,0.9);
    transition: all var(--transition);
    border-radius: 1px;
}
.navbar.scrolled .mobile-toggle span,
.navbar-light .mobile-toggle span { background: var(--charcoal); }


/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-background img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 40%;
    filter: brightness(0.92) saturate(1.35) contrast(1.06);
    transform: scale(1.03);
    animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.06); }
    to   { transform: scale(1.0); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        170deg,
        rgba(10,30,40,0.68) 0%,
        rgba(0,80,100,0.38) 50%,
        rgba(0,180,180,0.10) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Sunset color wash at the bottom edge */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 220px;
    background: linear-gradient(to top, rgba(255,61,120,0.18) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 32px;
    max-width: 760px;
    opacity: 0;
    animation: heroFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5.2vw, 64px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.14;
    letter-spacing: -0.01em;
    margin: 0 auto 52px;
    max-width: 620px;
    text-shadow: 0 2px 40px rgba(0,0,0,0.35);
}

.hero-headline-expressive {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    letter-spacing: 0.01em;
    display: inline-block;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Primary Button — dominant CTA, solid Miami gradient fill */
.hero-btn-primary {
    background: var(--grad-miami);
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 19px 48px;
    box-shadow: 0 8px 32px rgba(255,61,120,0.52), 0 2px 8px rgba(0,0,0,0.18);
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
}
.hero-btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 44px rgba(255,61,120,0.65), 0 4px 12px rgba(0,0,0,0.2);
    color: var(--white);
}

/* Hero Ghost Button — quiet secondary, outline only */
.hero-btn-ghost {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.88);
    border: 1.5px solid rgba(255,255,255,0.55);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding: 15px 32px;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(6px);
}
.hero-btn-ghost:hover {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.90);
    color: rgba(255,255,255,1);
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.45);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: var(--font-sans);
}
.scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}


/* ===== IDENTITY HOOK ===== */
.identity-hook {
    padding: 130px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

/* Vibrant Miami ambient glow */
.identity-hook::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 15% 50%, rgba(0,200,200,0.14) 0%, transparent 55%),
                radial-gradient(ellipse at 85% 50%, rgba(255,61,120,0.12) 0%, transparent 55%),
                radial-gradient(ellipse at 50% 100%, rgba(255,184,48,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.identity-hook .container { position: relative; z-index: 1; }

.identity-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    flex-wrap: wrap;
}

.identity-lines {
    flex: 1;
    min-width: 280px;
}

.identity-line {
    font-family: var(--font-serif);
    font-size: clamp(34px, 5.5vw, 68px);
    font-weight: 400;
    color: rgba(255,255,255,0.28);
    line-height: 1.18;
    margin-bottom: 6px;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.identity-line.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger line 1 — 'You've had highs.' */
.identity-line[data-stagger="0"].visible {
    opacity: 1;
    transform: translateY(0);
    color: rgba(255,255,255,0.45);
}

/* Stagger line 2 — 'You've had lows.' */
.identity-line[data-stagger="1"].visible {
    opacity: 1;
    transform: translateY(0);
    color: rgba(255,255,255,0.55);
}

/* Stagger line 3 — 'You kept going.' — most prominent */
.identity-line-bold {
    font-style: italic;
    font-size: clamp(38px, 6.2vw, 76px);
}
.identity-line[data-stagger="2"].visible {
    opacity: 1;
    transform: translateY(0);
    color: var(--white);
    text-shadow: 0 0 40px rgba(255,255,255,0.18), 0 2px 12px rgba(0,0,0,0.3);
}

.identity-conclusion {
    flex: 0 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.35s, transform 0.8s ease 0.35s;
}
.identity-conclusion.visible {
    opacity: 1;
    transform: translateY(0);
}
.identity-conclusion p {
    font-family: var(--font-serif);
    font-size: clamp(20px, 2.5vw, 32px);
    color: var(--white);
    line-height: 1.3;
}
.identity-conclusion p:first-child { font-size: clamp(30px, 4vw, 54px); font-style: italic; }

.identity-divider {
    width: 44px;
    height: 2px;
    background: var(--grad-miami);
    margin: 22px 0;
    border-radius: 1px;
}

.identity-sub {
    font-family: var(--font-sans) !important;
    font-size: 11px !important;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--coral) !important;
    opacity: 0.9;
}


/* ===== BELIEF SECTION ===== */
.belief-section {
    display: flex;
    min-height: 620px;
}

.belief-image-col {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 520px;
}
.belief-image-col img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1s var(--transition-slow);
    filter: brightness(1.04) saturate(1.28) contrast(1.04);
}
.belief-image-col:hover img { transform: scale(1.04); }

/* Vibrant color wash over image */
.belief-image-col::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,61,120,0.12) 0%,
        rgba(0,200,200,0.08) 100%
    );
    mix-blend-mode: multiply;
    pointer-events: none;
}

.belief-content-col {
    flex: 1;
    background: var(--blush);
    padding: 88px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Subtle warm gradient in belief content */
.belief-content-col::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,184,48,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.belief-headline {
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 44px;
    line-height: 1.08;
}

.belief-pillars {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 36px;
}
.belief-pillar {
    display: flex;
    align-items: center;
    gap: 18px;
}
.pillar-mark {
    width: 28px;
    height: 2px;
    background: var(--grad-miami);
    flex-shrink: 0;
    border-radius: 1px;
}
.belief-pillar p {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--charcoal);
    font-style: italic;
    line-height: 1.3;
}

.belief-body {
    font-size: 15px;
    color: var(--mid-gray);
    line-height: 1.85;
    max-width: 420px;
    font-weight: 400;
}


/* ===== FEATURED PRODUCTS ===== */
.featured-products {
    padding: 110px 0;
    background: var(--warm-white);
    position: relative;
    overflow: hidden;
}

/* Top accent stripe */
.featured-products::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--grad-miami);
}

/* Warm ambient glow */
.featured-products::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 20%, rgba(255,184,48,0.07) 0%, transparent 55%),
                radial-gradient(ellipse at 20% 80%, rgba(0,200,200,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}
.section-title {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 15px;
    color: var(--mid-gray);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 1;
}

/* Product Cards */
.product-card {
    background: var(--white);
    overflow: hidden;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
    cursor: pointer;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255,184,48,0.1);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255,90,60,0.14), 0 8px 24px rgba(0,0,0,0.08);
}

.product-image {
    position: relative;
    padding-bottom: 118%;
    overflow: hidden;
    background: var(--blush);
}
.product-image img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--transition-slow);
}
.product-card:hover .product-image img { transform: scale(1.07); }

.product-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--grad-miami);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 11px;
    z-index: 1;
    border-radius: 100px;
    box-shadow: 0 2px 10px rgba(255,61,120,0.3);
}

.product-info {
    padding: 22px 26px 30px;
}
.product-info h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.3;
}
.product-category {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
}
.product-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-info .btn {
    width: 100%;
    margin-top: 4px;
    box-sizing: border-box;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
}

.section-cta { text-align: center; margin-top: 60px; position: relative; z-index: 1; }


/* ===== IMPACT SECTION — CINEMATIC MIDNIGHT MIAMI ===== */
.impact-section {
    position: relative;
    padding: 130px 0 110px;
    overflow: hidden;
}

/* Full-bleed ocean background */
.impact-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.impact-background img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 40%;
    filter: brightness(0.7) saturate(1.3) contrast(1.05);
}

/* Deep near-black overlay at 80% — ocean visible but moody */
.impact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 16, 20, 0.82);
    z-index: 1;
    pointer-events: none;
}

/* Subtle grain texture for cinematic depth */
.impact-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.045;
    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)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    background-repeat: repeat;
    mix-blend-mode: overlay;
}

/* Content layer above overlay + grain */
.impact-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

/* Eyebrow — use existing .section-eyebrow pattern but light */
.impact-eyebrow {
    color: var(--aqua) !important;
    letter-spacing: 0.22em;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
.impact-eyebrow.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Headline — slow cinematic fade-in from dark */
.impact-headline {
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 72px;
    line-height: 1.1;
    text-shadow: 0 4px 48px rgba(0,0,0,0.6);
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1.1s cubic-bezier(0.25,0.46,0.45,0.94) 0.18s,
                transform 1.1s cubic-bezier(0.25,0.46,0.45,0.94) 0.18s;
}
.impact-headline.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stats row */
.impact-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* Each stat hidden until JS fires */
.impact-stat--cinematic {
    text-align: center;
    padding: 0 52px;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.85s cubic-bezier(0.25,0.46,0.45,0.94),
                transform 0.85s cubic-bezier(0.25,0.46,0.45,0.94);
}
.impact-stat--cinematic.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accent color for stat numbers — site's aqua */
.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(42px, 5.5vw, 68px);
    font-weight: 600;
    color: var(--aqua);
    line-height: 1;
    margin-bottom: 12px;
    text-shadow: 0 0 40px rgba(0,200,200,0.35);
}
.stat-label {
    display: block;
    font-size: 12.5px;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.07em;
    font-weight: 300;
    max-width: 160px;
    margin: 0 auto;
    line-height: 1.65;
}

.impact-divider {
    width: 1px;
    height: 64px;
    background: rgba(0,200,200,0.2);
    flex-shrink: 0;
}

/* Body copy — personal note, italic, generous whitespace */
.impact-body {
    font-family: var(--font-serif);
    font-size: clamp(17px, 2vw, 22px);
    color: rgba(255,255,255,0.88);
    line-height: 2;
    max-width: 560px;
    margin: 0 auto 56px;
    font-weight: 400;
    font-style: italic;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s ease 0.1s, transform 0.9s ease 0.1s;
}
.impact-body.visible {
    opacity: 1;
    transform: translateY(0);
}

/* CTA wrap for scroll reveal */
.impact-cta-wrap {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s;
}
.impact-cta-wrap.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Outlined button with aqua glow — uses existing btn base */
.btn-impact-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(0,200,200,0.65);
    box-shadow: 0 0 28px rgba(0,200,200,0.18), 0 0 8px rgba(0,200,200,0.1);
    letter-spacing: 0.12em;
}
.btn-impact-outline:hover {
    background: rgba(0,200,200,0.1);
    border-color: var(--aqua);
    box-shadow: 0 0 44px rgba(0,200,200,0.32), 0 0 16px rgba(0,200,200,0.2);
    transform: translateY(-2px);
    color: var(--white);
}


/* ===== FOUNDER SECTION ===== */
.founder-section {
    padding: 110px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

/* Warm ambient glow */
.founder-section::before {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,184,48,0.08) 0%, transparent 65%);
    pointer-events: none;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.founder-image-wrap {
    position: relative;
}
.founder-image-wrap img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    filter: brightness(1.04) saturate(1.18) contrast(1.03);
}
.founder-quote-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--dark);
    color: var(--white);
    padding: 30px 34px;
    max-width: 270px;
    font-family: var(--font-serif);
    font-size: 15px;
    font-style: italic;
    line-height: 1.65;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.founder-quote-card::before {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: var(--grad-miami);
    margin-bottom: 18px;
    border-radius: 0;
    position: absolute;
    top: 0; left: 0;
}

.founder-headline {
    font-size: clamp(28px, 3.5vw, 50px);
    margin-bottom: 28px;
    color: var(--dark);
}
.founder-body {
    font-size: 15px;
    color: var(--mid-gray);
    line-height: 1.9;
    margin-bottom: 20px;
    font-weight: 400;
}
.founder-body em { color: var(--coral); font-style: italic; font-weight: 500; }

/* Featured pull quote */
.founder-featured-quote {
    position: relative;
    margin: 36px 0 32px;
    padding: 32px 36px 32px 44px;
    background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 100%);
    border-left: 3px solid var(--coral);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    overflow: visible;
}
.founder-featured-quote__mark {
    position: absolute;
    top: -10px;
    left: 14px;
    font-family: var(--font-serif);
    font-size: 96px;
    line-height: 1;
    color: var(--coral);
    opacity: 0.18;
    pointer-events: none;
    user-select: none;
}
.founder-featured-quote__text {
    font-family: var(--font-serif);
    font-size: clamp(19px, 2vw, 24px);
    font-style: italic;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.55;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Signature */
.founder-signature {
    margin-top: 44px;
}
.founder-signature__rule {
    width: 48px;
    height: 2px;
    background: var(--grad-miami);
    border-radius: 2px;
    margin-bottom: 20px;
}
.founder-signature__name {
    font-family: var(--font-serif);
    font-size: clamp(26px, 2.8vw, 34px);
    font-style: italic;
    font-weight: 600;
    color: var(--dark);
    line-height: 1;
    margin: 0 0 6px;
}
.founder-signature__title {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin: 0;
}


/* ===== COMMUNITY SECTION ===== */
.community-section { overflow: hidden; }
.community-split {
    display: flex;
    min-height: 640px;
}

/* Image side — vivid, saturated, Miami energy */
.community-image {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.community-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,61,120,0.15) 0%,
        rgba(255,184,48,0.08) 50%,
        rgba(0,200,200,0.10) 100%
    );
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}
.community-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: saturate(1.22) brightness(1.06) contrast(1.04);
}
.community-image:hover img { transform: scale(1.03); }

/* Dark side — deep ocean with Miami glow */
.community-content {
    flex: 1;
    background: linear-gradient(160deg, #0D1F2D 0%, #0A2A38 60%, #0D1F2D 100%);
    padding: 96px 68px 96px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    max-width: 52%;
}

/* Miami sunset glow — bottom right */
.community-content::before {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,61,120,0.14) 0%, rgba(255,184,48,0.06) 50%, transparent 70%);
    pointer-events: none;
}
/* Aqua top-left accent */
.community-content::after {
    content: '';
    position: absolute;
    top: -60px; left: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,200,200,0.10) 0%, transparent 65%);
    pointer-events: none;
}

/* Miami stripe top accent */
.community-content .miami-stripe {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-miami);
}

.community-content .section-eyebrow {
    color: var(--coral-light);
    letter-spacing: 0.28em;
    font-size: 9.5px;
    margin-bottom: 22px;
}

.community-headline {
    font-size: clamp(30px, 3.6vw, 50px);
    color: #FFF8F2;
    margin-bottom: 28px;
    line-height: 1.08;
    letter-spacing: -0.01em;
    font-weight: 400;
}

.community-body {
    font-size: 14.5px;
    color: rgba(255,240,230,0.72);
    line-height: 1.95;
    margin-bottom: 48px;
    max-width: 340px;
    font-weight: 300;
    letter-spacing: 0.01em;
}

/* CTA button — Miami coral glow */
.community-content .btn-community {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 15px 36px;
    border-radius: 100px;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    align-self: flex-start;
    position: relative;
    background: var(--grad-coral);
    color: var(--white);
    border: 2px solid transparent;
    box-shadow: var(--shadow-coral);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
}
.community-content .btn-community:hover {
    background: var(--grad-flamingo);
    color: var(--white);
    box-shadow: 0 10px 36px rgba(255,90,60,0.48);
    transform: translateY(-2px);
}


/* ===== SIGNATURE SECTION ===== */
.signature-section {
    padding: 110px 0;
    background: var(--sand);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Miami sunset gradient wash */
.signature-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,61,120,0.06) 0%,
        rgba(255,184,48,0.10) 50%,
        rgba(0,200,200,0.05) 100%
    );
    pointer-events: none;
}

/* Decorative circles — Art Deco Miami feel */
.signature-section::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(255,90,60,0.08);
    pointer-events: none;
}

.signature-text {
    font-family: var(--font-serif);
    font-size: clamp(42px, 7.5vw, 100px);
    font-weight: 400;
    font-style: italic;
    color: #e8a020;
    line-height: 1;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    background: linear-gradient(
        90deg,
        #c8740a 0%,
        #f5c842 30%,
        #fff8e1 50%,
        #f5c842 70%,
        #c8740a 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glowPulse 3s ease-in-out infinite, shimmerSweep 4s linear infinite;
}

/* Radiating light halo behind the text */
.signature-text::before {
    content: 'Shine your light.';
    position: absolute;
    inset: 0;
    font-family: var(--font-serif);
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
    -webkit-text-fill-color: transparent;
    background: none;
    text-shadow:
        0 0 20px rgba(255, 210, 80, 0.9),
        0 0 50px rgba(255, 180, 30, 0.7),
        0 0 100px rgba(240, 140, 10, 0.5),
        0 0 180px rgba(220, 100, 0, 0.3);
    animation: rayPulse 3s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
    left: 0;
    text-align: center;
    width: 100%;
}

@keyframes glowPulse {
    0%   { filter: brightness(0.9) drop-shadow(0 0 6px rgba(255,200,50,0.5)); }
    50%  { filter: brightness(1.25) drop-shadow(0 0 22px rgba(255,220,80,0.95)) drop-shadow(0 0 50px rgba(255,160,20,0.6)); }
    100% { filter: brightness(0.9) drop-shadow(0 0 6px rgba(255,200,50,0.5)); }
}

@keyframes shimmerSweep {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

@keyframes rayPulse {
    0%   { opacity: 0.5; }
    50%  { opacity: 1; }
    100% { opacity: 0.5; }
}

@keyframes candleGlow {
    0%   { text-shadow: 0 0 8px rgba(220, 140, 20, 0.4),  0 0 20px rgba(220, 140, 20, 0.2),  0 0 40px rgba(200, 100, 10, 0.1); }
    40%  { text-shadow: 0 0 14px rgba(240, 170, 40, 0.75), 0 0 35px rgba(230, 150, 30, 0.45), 0 0 70px rgba(210, 120, 15, 0.25); }
    60%  { text-shadow: 0 0 10px rgba(230, 155, 25, 0.55), 0 0 25px rgba(220, 135, 20, 0.3),  0 0 50px rgba(200, 100, 10, 0.15); }
    100% { text-shadow: 0 0 8px rgba(220, 140, 20, 0.4),  0 0 20px rgba(220, 140, 20, 0.2),  0 0 40px rgba(200, 100, 10, 0.1); }
}
.signature-sub {
    font-size: 14px;
    color: var(--warm-gray);
    letter-spacing: 0.12em;
    font-style: italic;
    font-family: var(--font-serif);
    position: relative;
    z-index: 1;
    font-weight: 400;
}


/* ===== EMAIL CAPTURE ===== */
.email-capture {
    padding: 88px 0;
    background: linear-gradient(160deg, #0D1F2D 0%, #0A2A38 100%);
    position: relative;
    overflow: hidden;
}

/* Miami glow effects */
.email-capture::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(0,200,200,0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(255,61,120,0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 100%, rgba(255,184,48,0.06) 0%, transparent 40%);
    pointer-events: none;
}

/* Top accent stripe */
.email-capture::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-miami);
}

.email-capture-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.email-capture-offer {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: var(--coral-light);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    line-height: 1.2;
}

.email-capture-headline {
    font-size: clamp(26px, 3.5vw, 42px);
    margin-bottom: 14px;
    color: var(--white);
}
.email-capture-sub {
    font-size: 15px;
    color: rgba(255,240,230,0.78);
    line-height: 1.75;
    margin-bottom: 36px;
    font-weight: 300;
}

/* Eyebrow override for dark bg */
.email-capture .section-eyebrow {
    color: var(--coral-light);
}

.email-input-wrap {
    display: flex;
    gap: 0;
    max-width: 460px;
    margin: 0 auto 14px;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
    backdrop-filter: blur(8px);
}
.email-input-wrap:focus-within {
    border-color: var(--coral-light);
    box-shadow: 0 0 0 3px rgba(255,90,60,0.18);
}
.email-input {
    flex: 1;
    padding: 15px 24px;
    border: none;
    background: transparent;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--white);
    outline: none;
}
.email-input::placeholder { color: rgba(255,240,230,0.4); }
.email-submit {
    flex-shrink: 0;
    border-radius: 100px;
    margin: 4px;
    padding: 11px 28px;
    font-size: 12px;
}
.email-fine-print {
    font-size: 11px;
    color: rgba(255,240,230,0.55);
    letter-spacing: 0.04em;
    font-weight: 300;
}


/* ===== FINAL CTA ===== */
.final-cta {
    padding: 120px 0;
    background: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Miami sunset gradient background */
.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,61,120,0.07) 0%,
        rgba(255,184,48,0.10) 50%,
        rgba(0,200,200,0.06) 100%
    );
    pointer-events: none;
}

/* Decorative Art Deco rings */
.final-cta::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,90,60,0.07);
    pointer-events: none;
    box-shadow: 0 0 0 80px rgba(255,61,120,0.03), 0 0 0 160px rgba(255,184,48,0.025);
}

.final-cta-headline {
    font-size: clamp(34px, 5.5vw, 68px);
    color: var(--dark);
    font-weight: 400;
    margin-bottom: 44px;
    line-height: 1.12;
    position: relative;
    z-index: 1;
}
.final-cta .btn { position: relative; z-index: 1; }


/* ===== SHOP PAGE ===== */
.shop-hero {
    padding: 148px 0 64px;
    background: var(--warm-white);
    border-bottom: 1px solid var(--sand-mid);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Miami accent stripe under shop hero */
.shop-hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 3px;
    background: var(--grad-miami);
}

.shop-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,61,120,0.07) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 80%, rgba(0,200,200,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.shop-title {
    font-size: clamp(32px, 5vw, 62px);
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--dark);
    position: relative;
    z-index: 1;
}
.shop-subtitle {
    font-size: 15px;
    color: var(--mid-gray);
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.shop-section { padding: 52px 0 88px; }

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--sand-mid);
}
.product-count {
    font-size: 13px;
    color: var(--warm-gray);
    letter-spacing: 0.04em;
    font-weight: 300;
}
.sort-select {
    font-family: var(--font-sans);
    font-size: 12px;
    color: var(--dark);
    border: 1.5px solid var(--sand-mid);
    background: var(--white);
    padding: 10px 36px 10px 16px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23FF5A3C' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    outline: none;
    border-radius: 100px;
    transition: border-color var(--transition);
}
.sort-select:focus { border-color: var(--coral); }

.shop-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 44px;
    align-items: start;
}

/* Filters Sidebar */
.filters-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 20px);
}
.filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--coral);
}
.filters-header h3 {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dark);
}
.filter-group {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--sand-mid);
}
.filter-group h4 {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 14px;
}
.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.price-input {
    width: 80px;
    padding: 9px 12px;
    border: 1.5px solid var(--sand-mid);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--dark);
    outline: none;
    border-radius: var(--radius-sm);
    transition: border-color var(--transition);
}
.price-input:focus { border-color: var(--coral); }
.price-inputs span { color: var(--warm-gray); font-size: 12px; }
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--charcoal);
    font-weight: 300;
}
.checkbox-label input[type="checkbox"] { accent-color: var(--coral); }

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.shop-main .product-image { padding-bottom: 115%; }

/* Pagination */
.pagination { margin-top: 52px; text-align: center; }
.pagination-controls {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.pagination-btn {
    min-width: 40px; height: 40px;
    padding: 0 14px;
    border: 1.5px solid var(--sand-mid);
    background: var(--white);
    color: var(--charcoal);
    font-family: var(--font-sans);
    font-size: 13px;
    cursor: pointer;
    transition: all var(--transition);
    border-radius: 100px;
}
.pagination-btn:hover, .pagination-btn.active {
    background: var(--grad-coral);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-coral);
}
.pagination-ellipsis { padding: 0 4px; color: var(--warm-gray); font-size: 13px; }

/* Loading State */
.loading {
    text-align: center;
    padding: 60px;
    color: var(--warm-gray);
    font-size: 14px;
    grid-column: 1 / -1;
}
.loading-spinner {
    width: 36px; height: 36px;
    border: 2px solid var(--sand-mid);
    border-top-color: var(--coral);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}
.no-products, .error {
    text-align: center;
    padding: 60px;
    color: var(--warm-gray);
    grid-column: 1 / -1;
}

/* Impact Strip */
.impact-strip {
    padding: 44px 0;
    border-top: 1px solid var(--sand-mid);
    border-bottom: 1px solid var(--sand-mid);
    background: linear-gradient(135deg, var(--blush) 0%, var(--golden-pale) 100%);
}
.strip-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 44px;
}
.strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--charcoal);
    font-weight: 400;
}
.strip-item svg { color: var(--coral); flex-shrink: 0; }


/* ===== PRODUCT PAGE ===== */
.breadcrumb-bar {
    margin-top: var(--nav-height);
    padding: 14px 0;
    border-bottom: 1px solid var(--sand-mid);
    background: var(--warm-white);
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--warm-gray);
    font-weight: 300;
}
.breadcrumb a:hover { color: var(--coral); }
.breadcrumb-sep { color: var(--sand-mid); }

.product-section { padding: 52px 0 88px; }

.product-loading {
    text-align: center;
    padding: 80px;
    color: var(--warm-gray);
}

/* Product Details Layout */
.product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
    overflow: visible;
}

.product-images {
    position: sticky;
    top: calc(var(--nav-height) + 20px);
    align-self: start;
    will-change: transform;
}
.product-images #main-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    margin-bottom: 12px;
    border-radius: var(--radius-md);
}
.thumbnail-gallery {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.thumbnail-gallery img {
    width: 80px; height: 80px;
    object-fit: cover;
    border: 2px solid transparent;
    transition: border-color var(--transition);
    border-radius: var(--radius-sm);
}
.thumbnail-gallery img:hover { border-color: var(--coral); }

.product-info h1 {
    font-size: clamp(24px, 3vw, 42px);
    margin-bottom: 8px;
}

.variant-selector { margin: 26px 0; }
.variant-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 12px;
}
.variant-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-button {
    padding: 10px 22px;
    border: 1.5px solid var(--sand-mid);
    background: var(--white);
    color: var(--charcoal);
    font-family: var(--font-sans);
    font-size: 13px;
    cursor: pointer;
    transition: all var(--transition);
    border-radius: 100px;
    font-weight: 400;
}
.variant-button:hover:not(:disabled) {
    border-color: var(--coral);
    color: var(--coral);
}
.variant-button.selected {
    border-color: var(--coral);
    background: var(--coral);
    color: var(--white);
}
.variant-button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
}

.add-to-cart-button {
    width: 100%;
    padding: 18px;
    background: var(--grad-coral);
    color: var(--white);
    border: none;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    margin-top: 26px;
    border-radius: 100px;
    box-shadow: var(--shadow-coral);
}
.add-to-cart-button:hover:not(:disabled) {
    background: var(--grad-flamingo);
    box-shadow: 0 10px 40px rgba(255,90,60,0.42);
    transform: translateY(-2px);
}
.add-to-cart-button:disabled {
    background: var(--sand-mid);
    color: var(--warm-gray);
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.price-current { font-size: 26px; font-weight: 700; color: var(--dark); }
.price-compare { font-size: 18px; color: var(--warm-gray); text-decoration: line-through; font-weight: 300; }
.price-discount {
    background: var(--grad-miami);
    color: var(--white);
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
}

.inventory-status {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: 100px;
}
.inventory-status.in-stock { background: var(--palm-pale); color: var(--palm); }
.inventory-status.out-of-stock { background: var(--coral-pale); color: var(--coral); }

.product-promise-strip {
    padding: 52px 0;
    border-top: 1px solid var(--sand-mid);
    background: linear-gradient(135deg, var(--blush) 0%, var(--golden-pale) 100%);
}
.promise-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 52px;
}
.promise-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.promise-item svg { color: var(--coral); flex-shrink: 0; }
.promise-item strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}
.promise-item span { font-size: 12px; color: var(--warm-gray); font-weight: 300; }


/* ===== SEARCH PAGE ===== */
.search-hero {
    padding: 148px 0 64px;
    background: var(--warm-white);
    border-bottom: 1px solid var(--sand-mid);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.search-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,61,120,0.06) 0%, transparent 55%);
    pointer-events: none;
}
.search-title {
    font-size: clamp(32px, 5vw, 58px);
    font-style: italic;
    margin-bottom: 36px;
    color: var(--dark);
    position: relative;
    z-index: 1;
}
.search-form-large { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--sand-mid);
    background: var(--white);
    padding: 0 0 0 20px;
    transition: border-color var(--transition), box-shadow var(--transition);
    border-radius: 100px;
    overflow: hidden;
}
.search-input-wrap:focus-within {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255,90,60,0.12);
}
.search-input-wrap svg { color: var(--coral); flex-shrink: 0; }
.search-input-large {
    flex: 1;
    padding: 16px 16px;
    border: none;
    background: transparent;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--dark);
    outline: none;
    font-weight: 300;
}
.search-input-large::placeholder { color: var(--sand-dark); }
.search-info {
    margin-top: 20px;
    font-size: 13px;
    color: var(--warm-gray);
    font-weight: 300;
    position: relative;
    z-index: 1;
}
.search-results-section { padding: 52px 0 88px; }
.search-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.search-empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--warm-gray);
    grid-column: 1 / -1;
}
.search-empty-state svg {
    margin: 0 auto 20px;
    color: var(--coral);
}
.search-empty-state p {
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.6;
    font-weight: 300;
}
.search-empty-state .btn { margin-top: 24px; }


/* ===== CART DRAWER ===== */
#cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
}
#cart-drawer.active { pointer-events: auto; }

.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,20,30,0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease;
    z-index: 1000;
    pointer-events: none;
    backdrop-filter: blur(4px);
}
#cart-drawer.active .cart-drawer-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cart-drawer-content {
    position: fixed;
    top: 0; right: -440px;
    width: 440px;
    height: 100vh;
    background: var(--cream);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
}
#cart-drawer.active .cart-drawer-content { right: 0; }

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 30px;
    border-bottom: 1px solid var(--sand-mid);
    background: var(--white);
    position: relative;
}
/* Miami accent stripe on cart header */
.cart-drawer-header::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-miami);
}
.cart-drawer-header h2 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--dark);
}
.close-cart {
    background: none;
    border: none;
    font-size: 26px;
    color: var(--warm-gray);
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color var(--transition);
    border-radius: 50%;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
}
.close-cart:hover { color: var(--coral); background: var(--coral-pale); }

.cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    gap: 20px;
    color: var(--warm-gray);
    font-size: 14px;
    font-weight: 300;
}

.cart-items { flex: 1; overflow-y: auto; padding: 16px 30px; }

.cart-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--sand-mid);
}
.cart-item img {
    width: 80px; height: 80px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
}
.cart-item-details { flex: 1; min-width: 0; }
.cart-item-details h4 {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-item-details p { font-size: 12px; color: var(--warm-gray); margin-bottom: 4px; font-weight: 300; }
.item-price { font-size: 14px; font-weight: 600; color: var(--dark); }

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}
.quantity-controls button {
    width: 28px; height: 28px;
    border: 1.5px solid var(--sand-mid);
    background: var(--white);
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition);
    line-height: 1;
    border-radius: 50%;
}
.quantity-controls button:hover { background: var(--coral); color: var(--white); border-color: var(--coral); }
.quantity-controls span { min-width: 24px; text-align: center; font-size: 13px; }

.remove-btn {
    background: none;
    border: none;
    font-size: 11px;
    color: var(--warm-gray);
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    margin-top: 8px;
    display: block;
    font-weight: 300;
}
.remove-btn:hover { color: var(--coral); }

.cart-item-actions { display: flex; flex-direction: column; align-items: flex-start; }
.variant-title { font-size: 11px; color: var(--warm-gray); font-weight: 300; }
.cart-item-status { font-size: 11px; font-weight: 700; }
.cart-item-status.out-of-stock { color: var(--coral); }

.cart-footer {
    padding: 22px 30px 30px;
    border-top: 1px solid var(--sand-mid);
    background: var(--white);
}
.cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}
.cart-impact-note {
    font-size: 11px;
    color: var(--coral);
    text-align: center;
    margin-bottom: 18px;
    font-style: italic;
    font-weight: 400;
}
.cart-footer .btn { width: 100%; display: block; margin-bottom: 8px; }

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 24px; right: 24px;
    padding: 14px 26px;
    background: var(--grad-miami);
    color: var(--white);
    font-size: 13px;
    border-radius: var(--radius-md);
    opacity: 0;
    transform: translateY(-12px);
    transition: all 0.35s ease;
    z-index: 2000;
    font-family: var(--font-sans);
    box-shadow: var(--shadow-miami);
    font-weight: 600;
}
.cart-notification.show {
    opacity: 1;
    transform: translateY(0);
}


/* ===== FOOTER ===== */
.site-footer {
    background: linear-gradient(160deg, #0D1F2D 0%, #0A1E2C 100%);
    color: rgba(255,240,230,0.5);
    padding: 68px 0 36px;
    position: relative;
    overflow: hidden;
}

/* Footer Miami glow */
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(0,200,200,0.07) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(255,61,120,0.07) 0%, transparent 50%);
    pointer-events: none;
}

/* Footer top Miami stripe */
.site-footer::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-miami);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 52px;
    margin-bottom: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    position: relative;
    z-index: 1;
}
.footer-logo {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 500;
}
.footer-tagline {
    font-size: 12px;
    font-style: italic;
    margin-bottom: 14px;
    color: rgba(255,240,230,0.55);
    font-weight: 300;
}
.footer-mission-note {
    font-size: 12px;
    color: var(--coral-light);
    font-weight: 500;
}
.footer-links-group h4 {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links-group a {
    font-size: 13px;
    color: rgba(255,240,230,0.62);
    transition: color var(--transition);
    font-weight: 300;
}
.footer-links-group a:hover { color: var(--coral-light); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    z-index: 1;
}
.footer-copy { font-size: 12px; font-weight: 300; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: rgba(255,240,230,0.48); font-weight: 300; }
.footer-legal a:hover { color: var(--coral-light); }


/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.35; transform: scaleY(1); }
    50%       { opacity: 0.85;  transform: scaleY(1.1); }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .shop-layout { grid-template-columns: 1fr; }
    .filters-sidebar { position: static; }
    .founder-grid { grid-template-columns: 1fr; gap: 48px; }
    .founder-quote-card { position: static; margin-top: 20px; max-width: 100%; right: auto; bottom: auto; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .belief-section { flex-direction: column; }
    .belief-image-col { min-height: 420px; }
    .belief-content-col { padding: 64px 44px; }
    .community-split { flex-direction: column; }
    .community-content { padding: 72px 48px; max-width: 100%; }
}

@media (max-width: 768px) {
    .announcement-text { display: none; }
    .announcement-input { width: 130px; }
    .announcement-bar { padding: 0 44px 0 12px; justify-content: center; }

    .nav-links {
        display: none;
        position: fixed;
        top: calc(var(--nav-height) + var(--bar-height));
        left: 0; right: 0;
        background: rgba(255,248,242,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 16px 0;
        border-bottom: 1px solid var(--sand-mid);
        box-shadow: 0 12px 32px rgba(26,18,16,0.1);
    }
    .nav-links.active { display: flex; }
    .nav-link {
        display: block;
        padding: 14px 28px;
        color: var(--charcoal) !important;
        font-size: 12px;
    }
    .nav-link::after { display: none; }
    .mobile-toggle { display: flex; }

    .hero-headline { margin-bottom: 40px; }

    .identity-content { flex-direction: column; gap: 44px; }

    .impact-stats { flex-direction: column; gap: 40px; }
    .impact-divider { width: 48px; height: 1px; }
    .impact-stat--cinematic { padding: 0; }
    .impact-section { padding: 90px 0 70px; }

    .email-input-wrap { flex-direction: column; border-radius: var(--radius-md); }
    .email-input { padding: 16px 20px; }
    .email-submit { width: calc(100% - 8px); border-radius: var(--radius-md); margin: 0 4px 4px; }

    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

    .cart-drawer-content { width: 100%; right: -100%; }

    .product-details { grid-template-columns: 1fr; }
    .product-images { position: relative; top: auto; will-change: auto; }

    .strip-items { flex-direction: column; gap: 20px; align-items: flex-start; padding: 0 28px; }

    .hide-mobile { display: none; }

    .belief-content-col { padding: 52px 28px; }
    .community-content { padding: 56px 32px; max-width: 100%; }
    .community-body { max-width: 100%; }
    .community-content .btn-community { align-self: flex-start; }
}

@media (max-width: 480px) {
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-ctas .btn { width: 100%; max-width: 300px; }
    .featured-grid { grid-template-columns: 1fr; }
    .shop-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .shop-grid .product-info { padding: 14px 14px 18px; }
    .shop-grid .product-info h3 { font-size: 14px; }
    .shop-grid .product-info .btn { font-size: 11px; padding: 10px 8px; letter-spacing: 0.04em; }
    .search-input-wrap { flex-direction: column; padding: 0; border: none; border-radius: 0; }
    .search-input-large { border: 1.5px solid var(--sand-mid); padding: 14px 16px; border-radius: var(--radius-sm); }
    .search-input-wrap svg { display: none; }
    .search-input-wrap .btn { width: 100%; border-radius: var(--radius-sm); }
    .search-input-wrap:focus-within { border: none; box-shadow: none; }
    .promise-items { flex-direction: column; gap: 24px; align-items: flex-start; padding: 0 28px; }
}
