:root {
    --bg: #efe8dd;
    --card: #fdfbf7;
    --ink: #423b48;
    --muted: #8a8093;
    --line: #ebe3d6;
    --brand: #8a70b4;
    --brand-ink: #ffffff;
    --accent: #f59e0b;
    --radius: 14px;
    --shadow: 0 1px 3px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.05);
    --wrap: 1120px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.main { padding-top: 28px; padding-bottom: 48px; }
.muted { color: var(--muted); }
.small { font-size: .85rem; }
.lead { font-size: 1.05rem; color: #374151; }

/* Header */
.site-header {
    background: var(--card);
    border-bottom: 1px solid var(--line);
    position: sticky; top: 0; z-index: 20;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 64px; }
.brand { font-size: 1.4rem; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.brand:hover { text-decoration: none; }
.main-nav { display: flex; gap: 18px; flex-wrap: wrap; }
.main-nav a { color: #374151; font-weight: 500; }

/* Disclosure bar */
.disclosure-bar { background: #fff7ed; border-bottom: 1px solid #fde3c2; color: #92400e; font-size: .82rem; }
.disclosure-bar .wrap { padding-top: 8px; padding-bottom: 8px; }

/* Hero */
.hero { padding: 40px 0 8px; }
.hero h1 { font-size: 2.2rem; margin: 0 0 6px; letter-spacing: -.02em; }
.hero .tagline { color: var(--muted); font-size: 1.15rem; margin: 0; }

/* Sections */
.block { margin-top: 36px; }
.section-title { font-size: 1.3rem; margin: 0 0 16px; }

/* Product grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
}
.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .12s ease, box-shadow .12s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-media { display: block; aspect-ratio: 1 / 1; background: #e7ddf4; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 14px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-title { font-size: 1rem; margin: 0; line-height: 1.35; }
.card-title a { color: var(--ink); }
.card-desc { color: var(--muted); font-size: .88rem; margin: 0; }
.card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding-top: 6px; }
.price { font-weight: 700; }
.price.big { font-size: 1.6rem; color: var(--ink); }
.merch { font-weight: 400; opacity: .9; }

/* Buttons */
.btn {
    display: inline-block;
    background: #eef2f7; color: #111827;
    padding: 9px 14px; border-radius: 10px;
    font-weight: 600; font-size: .9rem; border: 0; cursor: pointer;
}
.btn:hover { text-decoration: none; filter: brightness(.97); }
.btn-go { background: var(--brand); color: var(--brand-ink); white-space: nowrap; }
.btn-lg { padding: 13px 22px; font-size: 1.02rem; border-radius: 12px; }

/* Product page */
.breadcrumb { color: var(--muted); font-size: .88rem; margin-bottom: 18px; display: flex; gap: 8px; flex-wrap: wrap; }
.product { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: start; }
.product-media { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.product-media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.product-info h1 { margin: 0 0 12px; font-size: 1.7rem; line-height: 1.25; }
.product-info .note { margin-top: 12px; }
.description { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); color: #374151; }

/* Static pages */
.page { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; max-width: 760px; }
.page h1 { margin-top: 0; }

/* 404 */
.notfound { text-align: center; padding: 80px 0; }
.notfound h1 { font-size: 4rem; margin: 0; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: var(--card); padding: 28px 0; margin-top: 40px; }
.footer-nav { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 10px; }

/* Header layout: brand | nav (grows) | language switch */
.header-inner .main-nav { flex: 1; }
.lang-switch { display: flex; gap: 8px; align-items: center; font-size: .85rem; white-space: nowrap; }
.lang-switch a { color: #374151; padding: 4px 8px; border-radius: 8px; }
.lang-switch a:hover { background: #f1f5f9; text-decoration: none; }
.lang-switch .active { color: var(--brand); font-weight: 700; padding: 4px 8px; }

@media (max-width: 720px) {
    .product { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.8rem; }
    .main-nav { gap: 12px; font-size: .9rem; }
}

/* ============================================================
   Arabic / RTL
   ============================================================ */
body.rtl {
    font-family: "Segoe UI", Tahoma, "Tajawal", "Cairo", "Noto Naskh Arabic", Arial, sans-serif;
}
[dir="rtl"] .hero h1,
[dir="rtl"] .section-title,
[dir="rtl"] .product-info h1 { letter-spacing: 0; }

/* Flip directional affordances that don't auto-mirror */
[dir="rtl"] .card-title,
[dir="rtl"] .card-desc,
[dir="rtl"] .lead,
[dir="rtl"] .hero,
[dir="rtl"] .description { text-align: right; }

/* Numbers/prices stay left-to-right even inside RTL text */
[dir="rtl"] .price { direction: ltr; unicode-bidi: embed; display: inline-block; }

/* Slightly larger line-height improves Arabic readability */
body.rtl { line-height: 1.7; }

/* ============================================================
   Modern homepage
   ============================================================ */
html { scroll-behavior: smooth; background: #77619f; } /* purple canvas: no light strip on overscroll */
/* Sticky-footer grid: cream content area stretches to fill, so the purple
   header and footer sit at the edges and the writing area stays distinct. */
body { overflow-x: hidden; min-height: 100vh; display: grid; grid-template-rows: auto 1fr auto; }
.home .main { padding-top: 0; padding-bottom: 48px; }

/* Full-bleed helper (hero + CTA break out of the centered container) */
.home-hero, .cta-band {
    width: 100vw; position: relative; left: 50%; right: 50%;
    margin-left: -50vw; margin-right: -50vw;
}

/* Eyebrow label */
.eyebrow {
    display: inline-block; font-size: .78rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; color: var(--brand);
    margin-bottom: 10px;
}
.eyebrow-light { color: rgba(255,255,255,.82); }

/* Centered section headers */
.section-head { text-align: center; margin: 0 auto 26px; max-width: 640px; }
.section-head .section-title { margin: 0; font-size: clamp(1.4rem, 3vw, 1.95rem); letter-spacing: -.02em; }

/* ---- Hero ---- */
.home-hero {
    color: #fff; overflow: hidden; text-align: center; background: #5f4a85;
    padding: clamp(54px, 9vw, 104px) 20px clamp(96px, 12vw, 148px);
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(720px 520px at 12% 118%, rgba(154,131,192,.5), transparent 55%),
        linear-gradient(180deg, #77619f 0%, #5f4a85 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.hero-title { font-size: clamp(2rem, 5.2vw, 3.4rem); line-height: 1.12; font-weight: 800; letter-spacing: -.025em; margin: 0 0 16px; }
.hero-sub { font-size: clamp(1rem, 2.2vw, 1.2rem); color: rgba(255,255,255,.86); max-width: 620px; margin: 0 auto 26px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-badges { list-style: none; display: flex; gap: 10px 22px; justify-content: center; flex-wrap: wrap; padding: 0; margin: 28px 0 0; }
.hero-badges li { font-size: .9rem; color: rgba(255,255,255,.92); display: flex; align-items: center; gap: 8px; }
.hero-badges li::before {
    content: "✓"; display: inline-grid; place-items: center; width: 19px; height: 19px;
    border-radius: 50%; background: rgba(255,255,255,.2); font-size: .68rem;
}

/* Solid + ghost buttons for dark backgrounds */
.btn-solid { background: #fff; color: var(--brand); }
.btn-solid:hover { background: #f2eef8; filter: none; text-decoration: none; }
.btn-ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.12); filter: none; text-decoration: none; }

/* ---- Feature cards ---- */
.features {
    position: relative; z-index: 3;
    margin-top: 28px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.feature {
    background: var(--card); border: 1px solid var(--line); border-radius: 16px;
    padding: 22px 18px; box-shadow: var(--shadow); text-align: center;
}
.feature-icon {
    display: inline-grid; place-items: center; width: 48px; height: 48px;
    border-radius: 13px; background: #efeaf6; color: var(--brand); margin-bottom: 12px;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-title { margin: 0 0 6px; font-size: 1rem; }
.feature-desc { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.5; }

/* ---- Category cards ---- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.cat-card {
    display: flex; align-items: center; gap: 14px; color: var(--ink);
    background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 15px 18px;
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; text-decoration: none; }
.cat-icon { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; flex: none; }
.cat-icon svg { width: 22px; height: 22px; }
.cat-body { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.cat-name { font-weight: 700; }
.cat-count { color: var(--muted); font-size: .82rem; }
.cat-arrow { color: #9aa3af; flex: none; display: inline-flex; }
.cat-arrow svg { width: 20px; height: 20px; }
.tone-0 .cat-icon { background: #efeaf6; color: #8a70b4; }
.tone-1 .cat-icon { background: #eff6ff; color: #2563eb; }
.tone-2 .cat-icon { background: #fef3c7; color: #b45309; }
.tone-3 .cat-icon { background: #fae8ff; color: #a21caf; }

/* ---- CTA band ---- */
.cta-band {
    margin-top: 60px; padding: clamp(48px, 7vw, 84px) 20px; color: #fff; text-align: center;
    background:
        radial-gradient(700px 300px at 80% -25%, rgba(214,204,230,.32), transparent 60%),
        linear-gradient(135deg, #8a72b3, #6a5391);
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-title { font-size: clamp(1.5rem, 3.6vw, 2.2rem); margin: 0 0 10px; letter-spacing: -.02em; }
.cta-sub { color: rgba(255,255,255,.85); margin: 0 0 22px; font-size: 1.05rem; }

/* ---- RTL fixes for the homepage ---- */
[dir="rtl"] .eyebrow { letter-spacing: normal; text-transform: none; }
[dir="rtl"] .hero-title,
[dir="rtl"] .cta-title,
[dir="rtl"] .section-head .section-title { letter-spacing: normal; }
[dir="rtl"] .cat-arrow svg { transform: scaleX(-1); }

/* ---- Responsive ---- */
@media (max-width: 860px) {
    .features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .features { grid-template-columns: 1fr; margin-top: 20px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
}

/* ============================================================
   Product & category pages
   ============================================================ */

/* Breadcrumb */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--muted); font-size: .86rem; margin-bottom: 22px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--brand); text-decoration: none; }
.breadcrumb .sep { opacity: .55; }
.breadcrumb .current { color: var(--ink); font-weight: 500; }

/* ---- Product ---- */
.product { display: grid; grid-template-columns: 1.05fr 1fr; gap: 36px; align-items: start; }
.product-media {
    position: relative; background: var(--card); border: 1px solid var(--line);
    border-radius: 20px; overflow: hidden; box-shadow: var(--shadow);
}
.product-media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.media-badge {
    position: absolute; top: 14px; inset-inline-start: 14px;
    background: rgba(138,112,180,.95); color: #fff; font-size: .78rem; font-weight: 600;
    padding: 5px 12px; border-radius: 999px; backdrop-filter: blur(2px);
}
@media (min-width: 861px) { .product-media { position: sticky; top: 88px; } }

.product-cat { display: inline-block; color: var(--brand); font-weight: 600; font-size: .85rem; margin-bottom: 8px; }
.product-info h1 { margin: 0 0 14px; font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.25; letter-spacing: -.02em; }
.price-row { margin-bottom: 18px; }
.price.big { font-size: clamp(1.6rem, 4vw, 2.1rem); font-weight: 800; color: var(--ink); }
.product-info .lead { margin: 0 0 22px; color: #374151; }

.btn-block { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; }
.btn-go svg { flex: none; }
.product-info .note { margin: 12px 0 0; }

.trust-row {
    list-style: none; margin: 20px 0 0; padding: 20px 0 0;
    border-top: 1px solid var(--line); display: grid; gap: 13px;
}
.trust-row li { display: flex; align-items: center; gap: 11px; font-size: .9rem; color: #374151; }
.trust-row .ti {
    display: inline-grid; place-items: center; width: 30px; height: 30px;
    border-radius: 9px; background: #efeaf6; color: var(--brand); flex: none;
}

.description { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); color: #374151; }
.description h2 { font-size: 1.1rem; margin: 0 0 10px; color: var(--ink); }

@media (max-width: 860px) {
    .product { grid-template-columns: 1fr; gap: 24px; }
}

/* ---- Category header + filter pills ---- */
.cat-hero { margin-bottom: 22px; }
.cat-hero h1 { margin: 6px 0 10px; font-size: clamp(1.6rem, 3.4vw, 2.2rem); letter-spacing: -.02em; }
.cat-hero .lead { max-width: 640px; margin: 0 0 12px; color: #374151; }
.count-line { color: var(--muted); font-size: .9rem; margin: 0; }

.cat-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.pill {
    display: inline-block; padding: 8px 16px; border-radius: 999px;
    background: var(--card); border: 1px solid var(--line); color: #374151;
    font-weight: 500; font-size: .9rem; transition: border-color .12s ease, color .12s ease;
}
.pill:hover { border-color: var(--brand); color: var(--brand); text-decoration: none; }
.pill.active { background: var(--brand); border-color: var(--brand); color: #fff; }
[dir="rtl"] .cat-hero h1, [dir="rtl"] .product-info h1 { letter-spacing: normal; }

/* ---- Header search ---- */
.site-search {
    display: flex; align-items: center; flex: 1 1 220px; max-width: 400px;
    background: #f1f5f9; border: 1px solid var(--line); border-radius: 999px; padding: 3px;
}
.site-search input {
    flex: 1; min-width: 0; border: 0; background: transparent;
    padding: 8px 14px; font: inherit; color: var(--ink); outline: none;
}
.site-search input::placeholder { color: #94a3b8; }
.site-search button {
    flex: none; width: 36px; height: 36px; border: 0; border-radius: 50%;
    background: var(--brand); color: #fff; display: grid; place-items: center; cursor: pointer;
}
.site-search button:hover { filter: brightness(.96); }

@media (max-width: 820px) {
    .header-inner { flex-wrap: wrap; height: auto; padding: 10px 0; gap: 10px 16px; }
    .brand { order: 1; }
    .lang-switch { order: 2; margin-inline-start: auto; }
    .site-search { order: 3; flex-basis: 100%; max-width: none; }
    .main-nav { order: 4; flex-basis: 100%; }
}

/* ---- Pagination ---- */
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 36px; }
.page-btn {
    display: inline-grid; place-items: center; min-width: 40px; height: 40px; padding: 0 10px;
    border-radius: 10px; background: var(--card); border: 1px solid var(--line);
    color: var(--ink); font-weight: 600; font-size: .92rem;
}
a.page-btn:hover { border-color: var(--brand); color: var(--brand); text-decoration: none; }
.page-btn.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.page-btn.disabled { color: #cbd5e1; cursor: default; }
.page-btn.arrow { font-size: 1.2rem; line-height: 1; }
.page-gap { display: inline-grid; place-items: center; min-width: 24px; height: 40px; color: var(--muted); }
[dir="rtl"] .page-btn.arrow { transform: scaleX(-1); }

/* ============================================================
   Light-purple header & footer (overrides the previous theme)
   ============================================================ */
:root {
    --purple-bg: #f7f3ea;      /* cream header/footer surface */
    --purple-ink: #6b6076;     /* muted plum nav text        */
    --purple-strong: #8a70b4;  /* lavender brand / active    */
    --purple-line: #ece3d4;    /* warm subtle border         */
}

/* Header — SOLID purple, full-bleed, starts at the very top of the page.
   White text; no light/cream bar. The homepage hero starts with this same
   colour (#77619f) so header + hero read as one seamless purple section. */
.site-header { background: #77619f; border-bottom: none; }
.brand { color: #fff; }
.main-nav a { color: rgba(255, 255, 255, .9); }
.main-nav a:hover { color: #fff; }
.lang-switch a { color: rgba(255, 255, 255, .85); }
.lang-switch a:hover { background: rgba(255, 255, 255, .16); }
.lang-switch .active { color: #fff; }

/* Search box on the purple header */
.site-search { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .3); }
.site-search input { color: #fff; }
.site-search input::placeholder { color: rgba(255, 255, 255, .65); }
.site-search button { background: #fff; color: #77619f; }

/* Footer — SOLID purple to the absolute bottom, white/light-gray text */
.site-footer { background: #77619f; border-top: none; color: rgba(255, 255, 255, .8); margin-top: 0; }
.footer-nav a { color: rgba(255, 255, 255, .9); }
.footer-nav a:hover { color: #fff; }
.site-footer .muted { color: rgba(255, 255, 255, .72); opacity: 1; }

/* ---- Advertisement slots ---- */
.ad-slot { margin: 22px auto; text-align: center; max-width: 100%; }
.ad-slot .ad-banner { display: inline-block; line-height: 0; }
.ad-slot .ad-banner img { max-width: 100%; height: auto; border-radius: 12px; }
.ad-slot .ad-html { max-width: 100%; overflow: hidden; }

/* ============================================================
   Dark / light mode
   Theme is set on <html data-theme="light|dark"> before paint.
   Header & footer stay purple (deepened in dark); the content
   surfaces flip via the CSS variables plus a few targeted patches.
   ============================================================ */

/* ---- Theme toggle button (lives in the purple header) ---- */
.theme-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; flex: none; padding: 0; cursor: pointer;
    color: #fff; background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.28); border-radius: 10px;
}
.theme-toggle:hover { background: rgba(255,255,255,.24); }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

/* ---- Dark palette ---- */
[data-theme="dark"] {
    --bg: #16141b;
    --card: #211e29;
    --ink: #ece8f2;
    --muted: #a8a0b5;
    --line: #322e3c;
    --brand: #b39ddb;
    --brand-ink: #ffffff;
    --shadow: 0 1px 3px rgba(0,0,0,.5), 0 10px 30px rgba(0,0,0,.4);
    background: #16141b;          /* html canvas (no light strip on overscroll) */
}

/* Header / footer: deep plum instead of the bright purple bar */
[data-theme="dark"] .site-header,
[data-theme="dark"] .site-footer { background: #241f30; }
[data-theme="dark"] .site-search button { background: var(--brand); color: #16141b; }

/* Re-colour text that was hard-coded to a light-mode dark grey */
[data-theme="dark"] .lead,
[data-theme="dark"] .description,
[data-theme="dark"] .trust-row li,
[data-theme="dark"] .product-info .lead,
[data-theme="dark"] .cat-hero .lead,
[data-theme="dark"] .pill { color: var(--ink); }

/* Light tint surfaces -> dark equivalents */
[data-theme="dark"] .card-media { background: #2a2633; }
[data-theme="dark"] .btn { background: #2f2b39; color: var(--ink); }
[data-theme="dark"] .disclosure-bar { background: #2a2210; border-color: #4a3a12; color: #fcd34d; }

/* Icon tiles: keep the accent hue, darken the background */
[data-theme="dark"] .feature-icon,
[data-theme="dark"] .trust-icon,
[data-theme="dark"] .tone-0 .cat-icon { background: rgba(179,157,219,.16); color: #c5b3e6; }
[data-theme="dark"] .tone-1 .cat-icon { background: rgba(96,165,250,.16); color: #93c5fd; }
[data-theme="dark"] .tone-2 .cat-icon { background: rgba(245,158,11,.16); color: #fcd34d; }
[data-theme="dark"] .tone-3 .cat-icon { background: rgba(217,70,239,.16); color: #f0abfc; }

@media (max-width: 640px) {
    .theme-toggle { width: 34px; height: 34px; }
}

/* ---- Newsletter signup band (Design 1) ---- */
.news-band { margin-top: 44px; }
.home .news-band { margin-top: 8px; }
.news-card { background: #77619f; color: #fff; border-radius: 20px; text-align: center;
    padding: clamp(34px,5vw,56px) clamp(20px,5vw,44px); }
.news-title { font-size: clamp(1.5rem,3.2vw,2rem); margin: 0 0 10px; color: #fff; letter-spacing: -.01em; }
.news-sub { margin: 0 auto 22px; max-width: 46ch; color: rgba(255,255,255,.85); line-height: 1.6; }
.news-form { display: flex; gap: 10px; max-width: 30rem; margin: 0 auto; }
.news-form input[type="email"] { flex: 1; min-width: 0; height: 48px; border-radius: 999px; font: inherit;
    border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.14); color: #fff; padding: 0 18px; }
.news-form input[type="email"]::placeholder { color: rgba(255,255,255,.7); }
.news-form input[type="email"]:focus { outline: none; box-shadow: 0 0 0 3px rgba(255,255,255,.25); }
.news-form button { height: 48px; border: 0; border-radius: 999px; padding: 0 26px; cursor: pointer;
    background: #fff; color: #5f4a85; font-weight: 700; font-size: .92rem; }
.news-form button:hover { filter: brightness(.97); }
.news-note { margin: 14px 0 0; font-size: .8rem; color: rgba(255,255,255,.7); }
@media (max-width: 520px) {
    .news-form { flex-direction: column; }
    .news-form input[type="email"], .news-form button { width: 100%; }
}
