/* ══════════════════════════════════════════════
   Tide & Hive — Bespoke Rebuild
   Exmoorweb Website Design
   ══════════════════════════════════════════════ */

/* Visually hidden — accessible to screen readers */
.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;
}

@font-face {
    font-family: 'Boardwalk Avenue';
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: url('../fonts/BoardwalkAvenueSerif-Regular.woff2') format('woff2'),
         url('../fonts/BoardwalkAvenueSerif-Regular.woff') format('woff');
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary:    #0D1F29;
    --secondary:  #FFEDE3;
    --accent:     #D2CC80;
    --peach:      #FFBC7D;
    --white:      #FFFFFF;
    --text:       #0D1F29;
    --text-light: #4A5568;
    --serif:      'Boardwalk Avenue', Georgia, serif;
    --sans:       'Outfit', -apple-system, sans-serif;
    --max:        1180px;
    --narrow:     860px;
    --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
ul, ol { list-style: none; }
p { margin-bottom: 1.15em; }
p:last-child { margin-bottom: 0; }

h1,h2,h3,h4,h5,h6 {
    font-family: var(--serif);
    font-weight: 400;
    color: var(--primary);
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: var(--narrow); margin: 0 auto; padding: 0 28px; }

/* ── Scroll reveal animations ──────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Buttons ───────────────────────────────── */
.btn {
    display: inline-block;
    font-family: var(--serif);
    font-size: 18px;
    color: var(--white);
    background: var(--primary);
    padding: 12px 30px 16px 26px;
    border-radius: 5px;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.35s var(--ease);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.3;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s var(--ease);
}
.btn:hover::before { left: 100%; }
.btn:hover {
    background: #17333F;
    border-color: #17333F;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13,31,41,0.25);
}

.btn--outline {
    display: inline-block;
    font-family: var(--serif);
    font-size: 18px;
    color: var(--primary);
    background: transparent;
    padding: 12px 30px 16px 26px;
    border: 2px solid var(--primary);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.3;
}
.btn--outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13,31,41,0.25);
}

.btn--arrow::after { content: '  \2192'; }

.btn--accent {
    background: var(--accent); border-color: var(--accent); color: var(--primary);
}
.btn--accent:hover {
    background: #c4be6e; border-color: #c4be6e; color: var(--primary);
}


/* ══════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ══════════════════════════════════════════════ */
.announcement-bar {
    background: var(--primary);
    color: var(--secondary);
    text-align: center;
    padding: 11px 24px;
    font-family: var(--serif);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.4;
}
.announcement-bar .bee-icon {
    display: inline-block;
    width: 18px;
    vertical-align: middle;
    margin: 0 6px -3px;
}

.page-transition { height: 6px; background: var(--peach); }


/* ══════════════════════════════════════════════
   HEADER — 3 col: nav | logo | icons
   ══════════════════════════════════════════════ */
.site-header {
    background: var(--secondary);
    padding: 14px 0 18px;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
    box-shadow: 0 2px 24px rgba(13,31,41,0.08);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-left {
    display: flex;
    gap: 30px;
    align-items: center;
}
.nav-left a {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    position: relative;
    padding-bottom: 3px;
}
.nav-left a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 1.5px;
    background: var(--primary);
    transition: width 0.3s var(--ease), left 0.3s var(--ease);
}
.nav-left a:hover::after,
.nav-left a.active::after {
    width: 100%; left: 0;
}

.logo-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s var(--ease);
}
.logo-center:hover { transform: scale(1.03); }
.logo-center img { height: 80px; width: auto; }
.logo-center .logo-text {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}
.social-icon {
    color: var(--primary);
    display: flex;
    align-items: center;
    transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.social-icon:hover { color: var(--accent); transform: scale(1.15); }
.social-icon svg { width: 22px; height: 22px; fill: currentColor; }

.basket-link {
    font-size: 13px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s var(--ease);
}
.basket-link:hover { color: var(--accent); }
.basket-link svg {
    width: 20px; height: 20px;
    fill: none; stroke: currentColor; stroke-width: 1.6;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 201;
}
.menu-toggle span {
    display: block; width: 26px; height: 2px;
    background: var(--primary); transition: all 0.3s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }


/* ══════════════════════════════════════════════
   VIDEO HERO — full-width promo video
   ══════════════════════════════════════════════ */
.video-hero {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 400px;
    max-height: 720px;
    overflow: hidden;
    background: var(--primary);
}
.video-hero-player {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.video-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13,31,41,0.15) 0%, rgba(13,31,41,0.45) 100%);
    pointer-events: none;
}
.video-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    z-index: 2;
}
.video-hero-logo {
    width: 220px;
    height: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.3));
}
.video-hero-tagline {
    font-family: var(--serif);
    font-size: clamp(18px, 3vw, 26px);
    color: var(--white);
    letter-spacing: 1px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .video-hero {
        height: 56vh;
        min-height: 300px;
    }
    .video-hero-logo {
        width: 160px;
    }
}

/* ══════════════════════════════════════════════
   HERO — peach bg + large honeycomb overlay
   ══════════════════════════════════════════════ */
.hero {
    background: var(--secondary);
    padding: 50px 0 0;
    position: relative;
    overflow: hidden;
}
.hero-honeycomb {
    position: absolute;
    top: -80px; right: -100px;
    width: 750px;
    opacity: 0.55;
    pointer-events: none;
    z-index: 1;
}
.hero-wave {
    position: absolute;
    bottom: -10px; left: -20px;
    width: 300px;
    opacity: 0.40;
    pointer-events: none;
    z-index: 1;
    display: none;
}
@media (min-width: 1025px) {
    .hero-wave { display: block; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content { padding: 30px 0 70px; }
.hero-content h1 {
    font-size: clamp(36px, 5vw, 62px);
    margin-bottom: 18px;
    letter-spacing: 1px;
    line-height: 1.08;
}
.hero-content .hero-text {
    font-size: 18px;
    font-style: italic;
    color: var(--text);
    max-width: 420px;
    margin-bottom: 30px;
    line-height: 1.7;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-image img {
    max-width: 420px;
    width: 100%;
    filter: drop-shadow(0 20px 50px rgba(13,31,41,0.28)) drop-shadow(0 6px 16px rgba(13,31,41,0.12));
    transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
    position: relative;
    z-index: 2;
    animation: floatProduct 4s ease-in-out infinite;
}
@keyframes floatProduct {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.hero-image:hover img {
    transform: scale(1.03) rotate(-1deg);
}


/* ══════════════════════════════════════════════
   PRODUCT INTRO — centered on white
   ══════════════════════════════════════════════ */
.product-intro {
    background: var(--white);
    padding: 80px 0 50px;
    text-align: center;
}
.product-intro h2 {
    font-size: clamp(22px, 3vw, 32px);
    margin-bottom: 28px;
    letter-spacing: 3px;
}
.product-intro p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.85;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}


/* ══════════════════════════════════════════════
   BENEFITS — product left, list right
   ══════════════════════════════════════════════ */
.benefits {
    background: var(--white);
    padding: 30px 0 60px;
}
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.benefits-image {
    display: flex;
    justify-content: center;
}
.benefits-image img {
    max-width: 380px;
    width: 100%;
    filter: drop-shadow(0 16px 40px rgba(13,31,41,0.22)) drop-shadow(0 4px 12px rgba(13,31,41,0.10));
    transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
    animation: floatProduct 5s ease-in-out infinite 1s;
}
.benefits-image:hover img {
    transform: scale(1.04);
}

.benefits-list h2 {
    font-size: clamp(20px, 2.8vw, 28px);
    margin-bottom: 30px;
    letter-spacing: 2.5px;
}
.benefit-item {
    margin-bottom: 20px;
    padding-left: 0;
    transition: transform 0.3s var(--ease);
}
.benefit-item:hover {
    transform: translateX(6px);
}
.benefit-item h3 {
    font-family: var(--serif);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 3px;
}
.benefit-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.benefits-footer {
    text-align: center;
    padding: 32px 0 0;
}
.benefits-footer p {
    font-size: 16px;
    font-style: italic;
    color: var(--text-light);
    max-width: 620px;
    margin: 0 auto 24px;
}
.benefits-footer .harvest-note {
    display: inline-block;
    margin-top: 18px;
    font-size: 14px;
    font-style: italic;
    color: var(--text-light);
    background: var(--secondary);
    padding: 10px 26px;
    border-radius: 30px;
}


/* ══════════════════════════════════════════════
   PHOTO STRIP
   ══════════════════════════════════════════════ */
.photo-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    justify-content: center;
    line-height: 0;
}
.photo-strip a {
    display: block;
    overflow: hidden;
    line-height: 0;
}
.photo-strip img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}
.photo-strip a:hover img {
    transform: scale(1.08);
    filter: brightness(1.08);
}


/* ══════════════════════════════════════════════
   OUR STORY — centered text, white bg
   ══════════════════════════════════════════════ */
.our-story {
    background: var(--white);
    padding: 80px 0;
    text-align: center;
}
.our-story h2 {
    font-size: clamp(26px, 3.8vw, 40px);
    margin-bottom: 32px;
    letter-spacing: 3px;
}
.our-story p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.85;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}
.our-story strong { color: var(--primary); font-weight: 500; }


/* ══════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════ */
.trust-bar {
    background: var(--primary);
    padding: 26px 0;
}
.trust-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--serif);
    font-size: 15px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.3s var(--ease);
}
.trust-item:hover { transform: translateY(-2px); }
.trust-check {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--accent);
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
}
.trust-item:hover .trust-check {
    background: var(--accent);
    color: var(--primary);
}


/* ══════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════ */
.how-it-works {
    background: var(--white);
    padding: 80px 0;
}
.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.how-it-works h2 {
    font-size: clamp(22px, 3vw, 32px);
    margin-bottom: 20px;
    letter-spacing: 2.5px;
}
.how-it-works .how-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}
.how-list {
    margin: 18px 0 24px;
}
.how-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 14px;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.75;
}
.how-list li::before {
    content: '\2022';
    position: absolute;
    left: 2px; top: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}
.how-image {
    display: flex;
    justify-content: center;
}
.how-image img {
    max-width: 480px;
    width: 100%;
    transition: transform 0.6s var(--ease);
}
.how-image:hover img {
    transform: scale(1.03);
}


/* ══════════════════════════════════════════════
   TESTIMONIALS — dark bg, peach cards
   ══════════════════════════════════════════════ */
.testimonials {
    background: var(--primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.testimonials::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../images/honeycomb-overlay-2.png') top right / 650px auto no-repeat;
    opacity: 0.14;
    pointer-events: none;
}

.testimonials h2 {
    color: var(--white);
    text-align: center;
    font-size: clamp(22px, 3vw, 32px);
    margin-bottom: 44px;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.testimonials-track-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.testimonials-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.testimonials-track::-webkit-scrollbar {
    display: none;
}

.t-card {
    background: var(--secondary);
    border-radius: 14px;
    padding: 28px 24px 24px;
    width: calc((100% - 72px) / 4);
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.t-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.t-card .t-name {
    font-family: var(--serif);
    font-size: 15px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0;
}
.t-card .t-location {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 6px;
}
.t-card .t-stars {
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}
.t-card .t-text {
    font-size: 15.5px;
    color: var(--text-light);
    line-height: 1.7;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
    position: relative;
    z-index: 1;
}
.slider-arrow {
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,237,227,0.25);
    background: transparent;
    color: var(--secondary);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}
.slider-arrow:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.1);
}


/* ── Bee separator between sections ────────── */
.bee-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 22px 0;
    background: var(--primary);
}
.bee-row img {
    width: 26px;
    opacity: 0.55;
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.bee-row:hover img {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* ── Bee section dividers ────────── */
.bee-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    background: transparent;
}
.bee-divider img {
    width: 28px;
    opacity: 0.45;
    filter: drop-shadow(0 1px 2px rgba(13,31,41,0.08));
    transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.bee-divider img:nth-child(2) {
    transform: scaleX(-1);
}
.bee-divider:hover img {
    opacity: 0.7;
    transform: translateY(-2px);
}
.bee-divider:hover img:nth-child(2) {
    transform: scaleX(-1) translateY(-2px);
}
.bee-divider .bee-line {
    width: 60px;
    height: 1px;
    background: var(--accent);
    opacity: 0.5;
}


/* ══════════════════════════════════════════════
   CONTACT CTA (homepage bottom)
   ══════════════════════════════════════════════ */
.contact-cta {
    background: var(--secondary);
    padding: 80px 0;
}
.contact-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.contact-cta h2 {
    font-size: clamp(22px, 3vw, 32px);
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    text-transform: none;
}
.contact-cta .cta-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 24px;
}

.c-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    align-items: start;
}
.c-info-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.c-info-item:hover .c-info-icon {
    transform: scale(1.1);
    background: var(--accent);
    color: var(--primary);
}
.c-info-text h3 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 15px;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 2px;
}
.c-info-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}
.c-info-text a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.3s var(--ease);
}
.c-info-text a:hover {
    text-decoration-color: var(--primary);
}

.c-social-row {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}
.c-social-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}
.c-social-icon:hover {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.12) rotate(-5deg);
}
.c-social-icon svg { width: 18px; height: 18px; fill: currentColor; }

/* Contact Form Card */
.form-card {
    background: var(--white);
    border-radius: 14px;
    padding: 32px 30px;
    box-shadow: 0 4px 24px rgba(13,31,41,0.05);
    transition: box-shadow 0.4s var(--ease);
}
.form-card:hover {
    box-shadow: 0 8px 36px rgba(13,31,41,0.1);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 5px;
}
.form-group .req { color: #c44; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: var(--sans);
    font-size: 16px;
    color: var(--text);
    background: var(--white);
    border: 1px solid #D9D5D0;
    border-radius: 5px;
    padding: 11px 14px;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(210,204,128,0.15);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230D1F29' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.form-submit { text-align: right; margin-top: 2px; }
.form-submit .btn { font-size: 16px; padding: 10px 34px 14px 28px; }


/* ══════════════════════════════════════════════
   FOOTER — centred layout
   ══════════════════════════════════════════════ */
.site-footer {
    background: var(--primary);
    color: var(--secondary);
    padding: 48px 0 0;
    text-align: center;
}
.footer-logo-img {
    height: 90px;
    margin: 0 auto 20px;
}
.footer-brand-name {
    display: none;
}
.footer-nav-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}
.footer-nav-row a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,237,227,0.6);
    transition: color 0.3s var(--ease);
}
.footer-nav-row a:hover { color: var(--white); }

.footer-payments {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
}
.pay-icon {
    width: 40px; height: 26px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 700;
    color: rgba(255,237,227,0.4);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.footer-social-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}
.footer-social-row a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,237,227,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,237,227,0.5);
    transition: all 0.3s var(--ease);
}
.footer-social-row a:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}
.footer-social-row svg { width: 16px; height: 16px; fill: currentColor; }

.footer-bottom {
    border-top: 1px solid rgba(255,237,227,0.06);
    padding: 16px 0;
    font-size: 13px;
    color: rgba(255,237,227,0.35);
}
.footer-bottom a {
    color: rgba(255,237,227,0.45);
    margin-left: 4px;
}
.footer-bottom a:hover { color: var(--accent); }


/* ══════════════════════════════════════════════
   PAGE HERO (about, contact, shop)
   ══════════════════════════════════════════════ */
.page-hero {
    background: var(--secondary);
    padding: 70px 0 55px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero .honeycomb-bg {
    position: absolute;
    top: -40px; right: -80px;
    width: 550px;
    opacity: 0.40;
    pointer-events: none;
}
.page-hero h1 {
    font-size: clamp(34px, 5vw, 58px);
    position: relative;
    z-index: 1;
    letter-spacing: 3px;
}
.page-hero .subtitle {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    margin-top: 8px;
    text-transform: none;
    letter-spacing: 0;
}


/* ══════════════════════════════════════════════
   ABOUT PAGE SECTIONS
   ══════════════════════════════════════════════ */
.about-intro {
    background: var(--white);
    padding: 80px 0;
    text-align: center;
}
.about-intro p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.85;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.nature-fact {
    background: var(--primary);
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.nature-fact .honeycomb-bg {
    position: absolute;
    top: -40px;
    right: -80px;
    width: 550px;
    opacity: 0.18;
    pointer-events: none;
}
.nature-fact h2 {
    color: var(--accent);
    font-size: clamp(20px, 2.8vw, 28px);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.nature-fact p {
    color: rgba(255,237,227,0.85);
    font-size: 18px;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.about-section {
    padding: 80px 0;
}
.about-section.alt {
    background: var(--secondary);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text h2 {
    font-size: clamp(22px, 3vw, 32px);
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.about-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.85;
}
.about-image img {
    border-radius: 14px;
    width: 100%;
    transition: transform 0.6s var(--ease);
}
.about-image:hover img {
    transform: scale(1.03);
}

.about-cta {
    background: var(--primary);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-cta .honeycomb-bg {
    position: absolute;
    top: -40px;
    right: -80px;
    width: 600px;
    opacity: 0.18;
    pointer-events: none;
}
.about-cta h2 {
    color: var(--white);
    font-size: clamp(22px, 3vw, 34px);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}
.about-cta p {
    color: rgba(255,237,227,0.8);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
.about-cta .btn { position: relative; z-index: 1; }


/* ══════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════ */
.contact-page { background: var(--secondary); padding: 80px 0; }


/* ══════════════════════════════════════════════
   SHOP PLACEHOLDER
   ══════════════════════════════════════════════ */
.shop-hero {
    background: var(--secondary);
    padding: 100px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.shop-hero .honeycomb-bg {
    position: absolute;
    top: -40px; right: -80px;
    width: 600px;
    opacity: 0.40;
    pointer-events: none;
}
.shop-hero-inner {
    max-width: 540px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.shop-hero h1 { margin-bottom: 18px; }
.shop-hero p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}
.shop-hero .bee-graphic {
    width: 44px;
    margin: 0 auto 22px;
    opacity: 0.65;
}

/* ══════════════════════════════════════════════
   SINGLE PRODUCT SHOWCASE (shop page, 1 product)
   ══════════════════════════════════════════════ */
.shop-showcase {
    padding: 80px 0 60px;
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.showcase-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 20px 60px rgba(13,31,41,0.1);
}
.showcase-image img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.showcase-image:hover img { transform: scale(1.03); }
.showcase-placeholder {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    opacity: 0.3;
}
.showcase-info .showcase-tagline {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--peach);
    margin-bottom: 14px;
}
.showcase-info h1 {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 16px;
}
.showcase-price {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 600;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}
.showcase-stock {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    display: block;
}
.showcase-short {
    font-size: 17px;
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 28px;
}
.showcase-desc {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(13,31,41,0.1);
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.85;
}

/* ── Product Features (below single product) ── */
.shop-features {
    padding: 70px 0 80px;
    background: var(--white);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}
.feature-item {
    padding: 20px;
}
.feature-icon {
    display: block;
    font-size: 40px;
    margin-bottom: 16px;
}
.feature-item h2 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}
.feature-item p {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.7;
}

/* ══════════════════════════════════════════════
   PRODUCT GRID (shop page)
   ══════════════════════════════════════════════ */
.shop-products { padding: 70px 0 80px; }
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}
.product-card {
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--grey-mid);
    transition: box-shadow 0.35s, transform 0.3s;
}
.product-card:hover {
    box-shadow: 0 12px 40px rgba(13,31,41,0.1);
    transform: translateY(-4px);
}
.product-card-image {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--secondary);
    overflow: hidden;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    opacity: 0.4;
}
.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-badge--soldout { background: var(--primary); color: var(--white); }
.product-badge--low { background: #FFF3E0; color: #E65100; }
.product-card-body {
    padding: 22px 24px 28px;
}
.product-card-body h2 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}
.product-card-body p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.5;
    margin-bottom: 12px;
}
.product-card-price {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
}

/* ══════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ══════════════════════════════════════════════ */
.product-detail { padding: 40px 0 80px; }
.product-back {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-soft);
    text-decoration: none;
    margin-bottom: 28px;
    transition: color 0.2s;
}
.product-back:hover { color: var(--primary); }
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.product-detail-image {
    border-radius: 16px;
    overflow: hidden;
    background: var(--secondary);
    aspect-ratio: 1 / 1;
}
.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-detail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    opacity: 0.3;
    aspect-ratio: 1 / 1;
}
.product-detail-info h1 {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.2;
}
.product-detail-price {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}
.product-detail-stock {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.stock--in { color: #1B5E20; }
.stock--low { color: #E65100; }
.stock--out { color: #C62828; }
.product-detail-short {
    font-size: 17px;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 20px;
}
.product-detail-desc {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--grey-mid);
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.8;
}
.amazon-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 32px;
    background: #FF9900;
    color: #111;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.amazon-btn:hover { background: #E68A00; transform: translateY(-1px); }
.amazon-btn svg { flex-shrink: 0; }


/* ══════════════════════════════════════════════
   NEWSLETTER SIGNUP
   ══════════════════════════════════════════════ */
.newsletter-section {
    padding: 80px 0;
    background: var(--secondary);
}
.newsletter-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.newsletter-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}
.newsletter-card h2 {
    font-family: var(--serif);
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}
.newsletter-card > p {
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
}
.newsletter-form {
    position: relative;
}
.newsletter-fields {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.newsletter-fields input[type="text"],
.newsletter-fields input[type="email"] {
    flex: 1 1 200px;
    max-width: 260px;
    padding: 14px 18px;
    border: 1.5px solid var(--grey-mid);
    border-radius: 8px;
    font-family: var(--sans);
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s;
}
.newsletter-fields input:focus {
    outline: none;
    border-color: var(--accent);
}
.newsletter-fields .btn {
    white-space: nowrap;
    padding: 14px 28px;
}
.newsletter-msg {
    margin-top: 14px;
    font-size: 15px;
    font-weight: 500;
    min-height: 22px;
}
.newsletter-msg.msg-success {
    color: #1E7D4B;
}
.newsletter-msg.msg-error {
    color: #C0392B;
}
.newsletter-privacy {
    margin-top: 14px;
    font-size: 13px;
    color: rgba(13,31,41,0.45);
}


/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-grid,
    .benefits-grid,
    .how-grid,
    .about-grid,
    .contact-cta-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .hero { padding: 36px 0 0; }
    .hero-image { order: -1; }
    .hero-image img { max-width: 300px; margin: 0 auto; }
    .hero-content { text-align: center; padding: 0 0 50px; }
    .hero-content .hero-text { margin: 0 auto 30px; }
    .hero-buttons { justify-content: center; }
    .how-image { order: -1; }
    .benefits-image img { max-width: 300px; margin: 0 auto; }
    .t-card { width: calc((100% - 24px) / 2); }
    .photo-strip img { height: 170px; }
    .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
    .product-detail-image { max-width: 500px; }
    .showcase-grid { grid-template-columns: 1fr; gap: 40px; }
    .showcase-image { max-width: 500px; margin: 0 auto; }
    .showcase-info { text-align: center; }
    .showcase-info .amazon-btn { margin: 24px auto 0; }
    .features-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
    .nav-left {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        z-index: 200;
    }
    .nav-left.open { display: flex; }
    .nav-left a { font-size: 20px; }
    .header-inner {
        display: flex;
        justify-content: space-between;
    }
    .header-right { gap: 10px; }
    .basket-link .basket-text { display: none; }
    .menu-toggle { display: flex; }

    .photo-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .photo-strip img { height: 120px; }
    .t-card { width: 85%; }
    .form-row { grid-template-columns: 1fr; }
    .trust-grid { gap: 18px; }
    .trust-item { font-size: 13px; letter-spacing: 1px; }
    .footer-nav-row { gap: 18px; }
    .newsletter-fields { flex-direction: column; align-items: stretch; }
    .newsletter-fields input[type="text"],
    .newsletter-fields input[type="email"] { max-width: 100%; }
    .newsletter-section { padding: 60px 0; }
    /* Announcement bar */
    .announcement-bar { font-size: 12px; padding: 9px 16px; }
    /* Page hero subtitle */
    .page-hero { padding: 50px 0 38px; }
    .page-hero .subtitle { font-size: 16px; }
    /* Form card */
    .form-card { padding: 24px 20px; }
    /* Policy pages */
    .policy-section { padding: 40px 0 60px !important; }
    .policy-contact-box { padding: 18px !important; }
}

@media (max-width: 480px) {
    .photo-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
    .photo-strip img { height: 92px; }
    .hero-honeycomb { width: 400px; right: -60px; top: -40px; }
    /* Footer nav — wrap more gracefully */
    .footer-nav-row { gap: 12px; }
    .footer-nav-row a { font-size: 12px; letter-spacing: 1px; }
    .footer-bottom { font-size: 12px; }
    /* Page hero heading spacing */
    .page-hero h1 { letter-spacing: 2px; }

}

/* ══════════════════════════════════════════════
   EXIT-INTENT POPUP
   ══════════════════════════════════════════════ */

/* Backdrop */
.ep-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 31, 41, 0.55);
    z-index: 1100;
    animation: ep-fade-in 0.25s ease;
}
.ep-backdrop.ep-visible { display: block; }

/* Modal card */
.ep-popup {
    display: none;
    position: fixed;
    z-index: 1101;
    background: var(--secondary);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(13, 31, 41, 0.22);
    width: 90%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 36px 32px;
    text-align: center;
    /* Desktop: centre */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    opacity: 0;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.ep-popup.ep-visible {
    display: block;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Logo */
.ep-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin: 0 auto 18px;
    display: block;
}

/* Close × */
.ep-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    line-height: 1;
    color: var(--text-soft);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.ep-close:hover { color: var(--primary); background: rgba(13, 31, 41, 0.07); }

/* Preview badge */
.ep-preview-badge {
    display: none;
    position: absolute;
    top: 14px;
    left: 16px;
    background: var(--accent);
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 3px 8px;
    border-radius: 4px;
}
.ep-popup.ep-preview .ep-preview-badge { display: block; }

/* Headline */
.ep-title {
    font-family: var(--serif);
    font-size: clamp(22px, 4vw, 28px);
    color: var(--primary);
    margin-bottom: 12px;
}

/* Body text */
.ep-text {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.65;
    margin-bottom: 22px;
}

/* Form */
.ep-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}
.ep-form input[type="text"],
.ep-form input[type="email"] {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--grey-mid);
    border-radius: 8px;
    font-family: var(--sans);
    font-size: 15px;
    color: var(--text);
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.ep-form input:focus {
    outline: none;
    border-color: var(--accent);
}
.ep-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: opacity 0.2s;
}
.ep-submit:hover { opacity: 0.88; }
.ep-submit:disabled { opacity: 0.55; cursor: not-allowed; }

/* Message */
.ep-msg {
    font-size: 14px;
    font-weight: 500;
    min-height: 20px;
    margin: 4px 0 0;
}
.ep-msg.ep-success { color: #1E7D4B; }
.ep-msg.ep-error   { color: #C0392B; }

/* Dismiss link */
.ep-dismiss {
    background: none;
    border: none;
    font-family: var(--sans);
    font-size: 13px;
    color: var(--text-soft);
    cursor: pointer;
    margin-top: 14px;
    display: block;
    width: 100%;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}
.ep-dismiss:hover { color: var(--primary); }

/* Privacy line */
.ep-privacy {
    font-size: 12px;
    color: rgba(13, 31, 41, 0.4);
    margin-top: 10px;
}

/* Animations */
@keyframes ep-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Mobile: slide up from bottom */
@media (max-width: 600px) {
    .ep-popup {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        max-height: 92dvh;   /* cap at 92% of viewport height */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 16px 16px 0 0;
        padding: 28px 24px 24px;
        transform: translateY(100%);
        opacity: 1;
        /* ensure it's above iOS safe-area */
        padding-bottom: max(24px, env(safe-area-inset-bottom));
    }
    .ep-popup.ep-visible {
        transform: translateY(0);
    }
    .ep-logo { width: 48px; height: 48px; margin-bottom: 12px; }
    .ep-title { font-size: 20px; margin-bottom: 8px; }
    .ep-text  { font-size: 14px; margin-bottom: 16px; }
    .ep-form input[type="text"],
    .ep-form input[type="email"] { padding: 11px 14px; font-size: 14px; }
    .ep-submit { padding: 13px; font-size: 14px; }
}
