:root {
  --ink: #171916;
  --muted: #666a61;
  --paper: #f5f0e6;
  --paper-light: #fffdf8;
  --line: #d9d3c6;
  --red: #c9272c;
  --red-dark: #8f171d;
  --green: #087a49;
  --green-dark: #075332;
  --gold: #c58a2c;
  --shadow: 0 18px 55px rgba(38, 34, 25, .09);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { display: flex; min-height: 100vh; margin: 0; min-width: 300px; overflow-x: hidden; flex-direction: column; color: var(--ink); background: var(--paper); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
main { flex: 1 0 auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(8, 122, 73, .42); outline-offset: 4px; }
[hidden] { display: none !important; }

.site-shell { width: min(1180px, calc(100% - 44px)); margin-inline: auto; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; inset-block-start: 12px; inset-inline-start: 12px; z-index: 100; transform: translateY(-150%); padding: 10px 15px; color: #fff; background: var(--ink); border-radius: 3px; font-weight: 700; }
.skip-link:focus { transform: none; }

.solidarity-stripe { display: grid; grid-template-columns: 2fr 1fr 2fr; height: 5px; background: var(--ink); }
.solidarity-stripe i:first-child { background: var(--red); }
.solidarity-stripe i:last-child { background: var(--green); }

.site-header { position: relative; z-index: 20; background: rgba(245, 240, 230, .94); border-bottom: 1px solid rgba(23, 25, 22, .14); backdrop-filter: blur(14px); }
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.wordmark { display: inline-flex; align-items: center; gap: 12px; line-height: 1; }
.wordmark > img { width: 58px; height: 58px; flex: 0 0 58px; border-radius: 50%; object-fit: contain; mix-blend-mode: multiply; }
.wordmark-copy { display: flex; flex-direction: column; }
.wordmark strong { font-family: var(--serif); font-size: 18px; letter-spacing: -.02em; }
.wordmark small { margin-top: 7px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 19px; font-size: 13px; font-weight: 700; }
.nav-search { padding-bottom: 4px; border-bottom: 2px solid var(--green); }
.nav-text { color: var(--muted); transition: color .2s; }
.nav-text:hover { color: var(--ink); }
.nav-button { padding: 0; border: 0; background: none; cursor: pointer; }
.language-switch { display: flex; align-items: center; gap: 3px; padding: 4px; border: 1px solid var(--line); border-radius: 99px; background: rgba(255, 253, 248, .7); }
.language-switch a { min-width: 29px; padding: 6px 7px; border-radius: 99px; color: var(--muted); text-align: center; font-size: 10px; letter-spacing: .05em; }
.language-switch a.active { color: #fff; background: var(--ink); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 49px; padding: 0 22px; border: 1px solid transparent; border-radius: 2px 13px 2px 13px; font-size: 13px; font-weight: 800; cursor: pointer; transition: transform .2s, background .2s, color .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button b { font-size: 18px; font-weight: 500; }
.button-dark { color: #fff; background: var(--ink); box-shadow: 6px 6px 0 rgba(8, 122, 73, .18); }
.button-dark:hover { background: var(--green-dark); box-shadow: 6px 6px 0 rgba(201, 39, 44, .18); }
.button-light { color: var(--ink); background: var(--paper-light); }
.button-outline { border-color: var(--line); background: transparent; }
.button-full { width: 100%; }
.text-link { display: inline-flex; gap: 10px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 700; }

.home-hero { position: relative; isolation: isolate; padding: 84px 0 96px; background: var(--paper); }
.home-hero::before { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .28; background-image: linear-gradient(rgba(23,25,22,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(23,25,22,.04) 1px, transparent 1px); background-size: 36px 36px; mask-image: linear-gradient(to bottom, #000, transparent 82%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .85fr; gap: 88px; align-items: center; }
.section-kicker { display: flex; align-items: center; gap: 11px; margin: 0; color: var(--green-dark); font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.section-kicker span { display: block; width: 31px; height: 3px; background: linear-gradient(90deg, var(--red) 0 33%, var(--ink) 33% 66%, var(--green) 66%); }
.hero-copy h1 { max-width: 680px; margin: 25px 0 22px; font-family: var(--serif); font-size: clamp(52px, 6.3vw, 88px); font-weight: 500; line-height: .94; letter-spacing: -.055em; }
.hero-copy h1 span, .hero-copy h1 em { display: block; }
.hero-copy h1 em { color: var(--red-dark); font-style: italic; }
.hero-lead { max-width: 680px; margin: 0; color: #454940; font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.guide-note { position: relative; max-width: 610px; margin-top: 47px; padding: 20px 24px 20px 33px; border-inline-start: 3px solid var(--green); background: rgba(255, 253, 248, .62); }
[dir="rtl"] .guide-note { padding: 20px 33px 20px 24px; }
.guide-note strong { display: block; margin-bottom: 10px; font-family: var(--serif); font-size: 16px; }
.guide-note ul { display: flex; flex-wrap: wrap; gap: 7px 25px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 12px; line-height: 1.6; }
.guide-note li::before { content: "·"; margin-inline-end: 8px; color: var(--red); font-weight: 900; }

.hero-art { position: relative; min-height: 487px; padding: 44px 38px 40px; overflow: hidden; border: 1px solid #c9c1b2; border-radius: 3px 34px 3px 34px; background: var(--paper-light); box-shadow: var(--shadow), 12px 12px 0 rgba(23, 25, 22, .06); transform: rotate(1.3deg); }
.hero-art::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .25; background-image: radial-gradient(#817967 .65px, transparent .65px); background-size: 6px 6px; }
.flag-corner { position: absolute; inset-block-start: 0; inset-inline-start: 0; width: 76px; height: 76px; background: linear-gradient(135deg, var(--red) 0 50%, transparent 51%); }
.sample-label { position: relative; z-index: 1; display: inline-block; margin-inline-start: 37px; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.sample-search { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 12px; margin: 45px 0 16px; padding: 17px 19px; border: 1px dashed #ada595; background: #faf7ef; font-size: 12px; }
.sample-search span { color: var(--muted); }
.sample-result { position: relative; z-index: 1; display: flex; align-items: center; gap: 15px; margin-top: 13px; padding: 22px 18px; border-inline-start: 5px solid; }
.sample-result i { display: grid; flex: 0 0 37px; height: 37px; place-items: center; border-radius: 50%; color: #fff; font-style: normal; font-weight: 900; }
.sample-result small, .sample-result strong { display: block; }
.sample-result small { margin-bottom: 5px; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.sample-result strong { font-family: var(--serif); font-size: 18px; }
.sample-danger { border-color: var(--red); background: #fae9e6; }
.sample-danger i { background: var(--red); }
.sample-safe { border-color: var(--green); background: #e5f2e9; }
.sample-safe i { background: var(--green); }
.hand-note { position: relative; z-index: 1; margin: 37px 4px 0; color: var(--green-dark); font-family: "Segoe Print", "Comic Sans MS", cursive; font-size: 14px; transform: rotate(-2deg); }

.process-section { padding: 102px 0; color: #eee9de; background: var(--ink); }
.process-section .section-kicker { color: #9fcab4; }
.section-heading { display: grid; grid-template-columns: 1fr .75fr; gap: 70px; align-items: end; }
.section-heading h2 { max-width: 620px; margin: 18px 0 0; font-family: var(--serif); font-size: clamp(38px, 4.5vw, 61px); font-weight: 500; line-height: 1.03; letter-spacing: -.035em; }
.section-heading > p { margin: 0; color: #b9b7ae; line-height: 1.75; }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); margin: 64px 0 0; padding: 0; border-top: 1px solid #4c4e49; list-style: none; }
.process-list li { display: grid; grid-template-columns: auto 1fr; gap: 20px; min-height: 190px; padding: 31px 28px 26px 0; border-inline-end: 1px solid #4c4e49; }
[dir="rtl"] .process-list li { padding: 31px 0 26px 28px; }
.process-list li + li { padding-inline-start: 28px; }
.process-list li:last-child { border: 0; }
.process-list > li > span { color: #8d9088; font-family: var(--serif); font-size: 14px; font-style: italic; }
.process-list h3 { margin: 0 0 14px; font-family: var(--serif); font-size: 25px; font-weight: 500; }
.process-list p { margin: 0; color: #aaa9a2; font-size: 13px; line-height: 1.75; }

.manifesto-section { padding: 86px 0 0; }
.manifesto-card { position: relative; display: grid; grid-template-columns: 86px 1fr auto; align-items: center; gap: 28px; padding: 43px 48px; overflow: hidden; color: #fff; background: var(--green-dark); border-radius: 2px 26px 2px 26px; }
.manifesto-card::after { content: ""; position: absolute; inset-block: 0; inset-inline-end: 0; width: 32%; opacity: .1; background: repeating-linear-gradient(-45deg, transparent 0 13px, #fff 13px 14px); }
.manifesto-symbol { position: relative; width: 65px; height: 65px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; }
.manifesto-symbol::before, .manifesto-symbol::after, .manifesto-symbol span { content: ""; position: absolute; inset-inline-start: 50%; width: 2px; height: 34px; background: #fff; transform-origin: bottom; }
.manifesto-symbol::before { inset-block-start: 4px; transform: rotate(-43deg); }
.manifesto-symbol::after { inset-block-start: 4px; transform: rotate(43deg); }
.manifesto-symbol span { inset-block-start: 12px; }
.manifesto-card p { margin: 0 0 7px; color: #a8d4be; font-size: 10px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.manifesto-card h2 { margin: 0 0 8px; font-family: var(--serif); font-size: 32px; font-weight: 500; }
.manifesto-card > div > span { color: #cfdfd6; font-size: 13px; line-height: 1.6; }
.manifesto-card .button { position: relative; z-index: 1; }
.safety-wrap { padding-block: 44px 85px; }
.safety-note, .medical-warning { display: flex; align-items: flex-start; gap: 18px; padding: 21px 24px; border: 1px solid #ddc698; background: #fbf2d9; }
.safety-note > span, .medical-warning > span { color: var(--gold); font-size: 20px; }
.safety-note h2, .medical-warning h2 { margin: 0 0 5px; font-family: var(--serif); font-size: 18px; }
.safety-note p, .medical-warning p { margin: 0; color: #665b46; font-size: 13px; line-height: 1.65; }

.search-masthead { padding: 74px 0 64px; border-bottom: 1px solid var(--line); background: var(--paper-light); }
.search-heading { max-width: 890px; text-align: center; }
.search-heading .section-kicker { justify-content: center; }
.search-heading h1 { margin: 20px 0 13px; font-family: var(--serif); font-size: clamp(46px, 6vw, 70px); font-weight: 500; letter-spacing: -.045em; }
.search-heading > p { max-width: 670px; margin: 0 auto; color: var(--muted); line-height: 1.7; }
.medicine-search { position: relative; display: flex; max-width: 790px; margin: 37px auto 0; padding: 7px; border: 1px solid #aaa395; background: #fff; box-shadow: 8px 8px 0 rgba(23,25,22,.06); }
.medicine-search input { min-width: 0; flex: 1; height: 52px; padding: 0 16px 0 48px; border: 0; outline: 0; color: var(--ink); background: transparent; }
[dir="rtl"] .medicine-search input { padding: 0 48px 0 16px; }
.medicine-search > button[type="submit"] { min-width: 128px; padding: 0 20px; border: 0; color: #fff; background: var(--ink); font-weight: 800; cursor: pointer; }
.medicine-search > button[type="submit"] b { margin-inline-start: 12px; font-size: 17px; }
.search-icon { position: absolute; z-index: 2; inset-block-start: 25px; inset-inline-start: 21px; width: 14px; height: 14px; border: 2px solid #777b73; border-radius: 50%; }
.search-icon::after { content: ""; position: absolute; width: 7px; height: 2px; inset-inline-start: 10px; inset-block-start: 11px; background: #777b73; transform: rotate(45deg); }
[dir="rtl"] .search-icon::after { transform: rotate(-45deg); }
.search-help { display: block; margin-top: 15px; color: #797d75; font-size: 11px; }
.suggestions { position: absolute; z-index: 30; inset-inline: 0; inset-block-start: calc(100% + 8px); max-height: min(620px, 68vh); overflow-y: auto; padding: 7px; border: 1px solid #b9b1a3; background: #fff; box-shadow: 8px 10px 0 rgba(23,25,22,.08), 0 20px 45px rgba(23,25,22,.12); color: var(--ink); text-align: start; scrollbar-color: #aaa395 #f4f0e8; }
.suggestion-item { display: flex; width: 100%; min-width: 0; min-height: 55px; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 13px; border: 0; border-bottom: 1px solid #ece7dd; color: var(--ink); background: #fff; text-align: start; cursor: pointer; }
.suggestion-item:last-child { border-bottom: 0; }
.suggestion-item:hover, .suggestion-item:focus { background: #f4f0e8; }
.suggestion-item strong, .suggestion-item small { display: block; }
.suggestion-item strong { font-size: 13px; }
.suggestion-item small { margin-top: 3px; color: var(--muted); font-size: 10px; }
.suggestion-badge { flex: 0 0 auto; padding: 5px 8px; border-radius: 20px; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.suggestion-badge.alternative { color: var(--green-dark); background: #dceee3; }
.suggestion-badge.boycott { color: var(--red-dark); background: #f6ddda; }

.search-results { max-width: 940px; padding-block: 51px 90px; }
.empty-state { display: flex; align-items: center; justify-content: center; gap: 23px; min-height: 180px; border: 1px dashed #aaa395; background: rgba(255,253,248,.45); }
.empty-state > span { font-family: var(--serif); font-size: 58px; font-weight: 300; }
.empty-state h2 { margin: 0 0 8px; font-family: var(--serif); font-size: 25px; font-weight: 500; }
.empty-state p { margin: 0; color: var(--muted); }
.inline-warning { padding: 17px 20px; border-inline-start: 4px solid var(--gold); background: #fbf2d9; }
.results-header { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 21px; }
.results-header h2 { margin: 0; font-family: var(--serif); font-size: 24px; font-weight: 500; }
.results-header time { color: var(--muted); font-size: 11px; }
.result-stack { display: grid; gap: 21px; }
.result-card { border: 1px solid var(--line); background: var(--paper-light); box-shadow: 7px 7px 0 rgba(23,25,22,.05); }
.boycott-card { border-color: #dfaaa5; }
.boycott-card > header { display: flex; gap: 18px; align-items: center; padding: 29px 32px; border-bottom: 1px solid #ecc4c0; background: #f8e8e5; }
.result-icon { display: grid; flex: 0 0 47px; width: 47px; height: 47px; place-items: center; border-radius: 50%; color: #fff; background: var(--red); font-size: 20px; font-weight: 900; }
.result-card p { margin: 0 0 5px; color: var(--red-dark); font-size: 10px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.result-card h3 { margin: 0; font-family: var(--serif); font-size: 27px; font-weight: 600; }
.result-card small { display: block; margin-top: 7px; color: #78504c; font-size: 11px; line-height: 1.6; }
.alternatives-block { padding: 28px 32px 32px; }
.alternatives-heading { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.alternatives-heading h4 { margin: 0; color: var(--green-dark); font-family: var(--serif); font-size: 20px; }
.alternatives-heading p { margin: 5px 0 0; color: var(--muted); font-size: 11px; font-weight: 400; letter-spacing: 0; text-transform: none; }
.alternatives-heading > span { flex: 0 0 auto; padding: 6px 10px; color: var(--green-dark); background: #dfefe5; border-radius: 20px; font-size: 10px; font-weight: 800; }
.alternative-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; margin: 22px 0 0; padding: 0; list-style: none; }
.alternative-list li { display: flex; align-items: center; gap: 12px; min-height: 71px; padding: 13px 15px; border: 1px solid #bdddc9; background: #edf7f0; }
.alternative-list i { display: grid; flex: 0 0 29px; width: 29px; height: 29px; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-style: normal; }
.alternative-list strong, .alternative-list small { display: block; }
.alternative-list strong { font-family: var(--serif); font-size: 15px; }
.alternative-list small { margin-top: 3px; color: var(--muted); font-size: 9px; }
.no-alternative { margin: 20px 0 0 !important; padding: 14px; color: var(--muted) !important; background: #f1eee7; font-weight: 400 !important; letter-spacing: 0 !important; text-transform: none !important; }
.safe-card { display: flex; align-items: center; gap: 18px; padding: 29px 32px; border-color: #a9d1b8; background: #eaf5ed; }
.safe-card .result-icon { background: var(--green); }
.safe-card p { color: var(--green-dark); }
.safe-card small { max-width: 700px; color: #45604f; }
.unlisted-card { display: flex; align-items: center; gap: 18px; padding: 29px 32px; border-color: #c9c1b4; background: #f2eee6; }
.unlisted-card .result-icon { color: var(--ink); background: #d8d0c3; }
.unlisted-card p { color: #5e584f; }
.unlisted-card small { max-width: 700px; color: #6d665d; }
.medical-warning { margin-top: 30px; }

.legal-page { padding: 86px 0 105px; }
.legal-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; align-items: start; }
.legal-grid > header { position: sticky; top: 40px; }
.legal-grid h1 { margin: 20px 0 0; font-family: var(--serif); font-size: clamp(43px, 5vw, 64px); font-weight: 500; line-height: 1; }
.legal-content { border-top: 1px solid var(--line); }
.legal-content section { display: grid; grid-template-columns: 42px 1fr; gap: 22px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.legal-content section > span { color: var(--red); font-family: var(--serif); font-size: 13px; font-style: italic; }
.legal-content h2 { margin: 0 0 9px; font-family: var(--serif); font-size: 22px; font-weight: 500; }
.legal-content p { margin: 0; color: var(--muted); line-height: 1.75; }

.purpose-section { position: relative; isolation: isolate; padding: 96px 0; overflow: hidden; border-top: 1px solid var(--line); background: var(--paper-light); }
.purpose-section::after { position: absolute; z-index: -1; top: -145px; right: -125px; width: 370px; height: 370px; border: 1px solid rgba(8,122,73,.13); border-radius: 50%; background: repeating-radial-gradient(circle, transparent 0 17px, rgba(8,122,73,.045) 18px 19px); content: ""; }
.purpose-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: 90px; align-items: start; }
.purpose-heading { position: sticky; top: 34px; }
.purpose-heading h2 { position: relative; max-width: 430px; margin: 22px 0 0; padding-bottom: 25px; font-family: var(--serif); font-size: clamp(44px, 5vw, 68px); font-weight: 500; line-height: .95; letter-spacing: -.045em; }
.purpose-heading h2::after { position: absolute; bottom: 0; inset-inline-start: 0; width: 74px; height: 5px; background: linear-gradient(90deg, var(--red) 0 34%, var(--ink) 34% 67%, var(--green) 67%); content: ""; transition: width .35s ease; }
.purpose-heading:hover h2::after { width: 132px; }
.purpose-point { position: relative; display: grid; grid-template-columns: 39px 1fr; gap: 17px; margin: 0 0 10px; padding: 17px 46px 17px 17px; overflow: hidden; border: 1px solid transparent; border-bottom-color: var(--line); background: rgba(255,253,248,.52); transition: color .25s, border-color .25s, background .25s, box-shadow .25s, transform .25s; }
[dir="rtl"] .purpose-point { padding: 17px 17px 17px 46px; }
.purpose-point::after { position: absolute; inset-block: 0; inset-inline-end: 0; width: 5px; background: var(--green); content: ""; transform: scaleY(0); transform-origin: bottom; transition: transform .25s ease; }
.purpose-point:hover, .purpose-point:focus-visible { border-color: #b9d5c4; background: #f1f8f3; box-shadow: 7px 7px 0 rgba(8,122,73,.08); transform: translateY(-3px); }
.purpose-point:hover::after, .purpose-point:focus-visible::after { transform: scaleY(1); }
.purpose-point:focus-visible { outline: 3px solid rgba(8,122,73,.3); outline-offset: 3px; }
.purpose-point > span { padding-top: 4px; color: var(--red-dark); font-family: var(--serif); font-size: 12px; font-style: italic; }
.purpose-point p { margin: 0; color: #494d45; font-size: 15px; line-height: 1.75; }
.purpose-copy blockquote { position: relative; margin: 38px 0 0; padding: 28px 42px 28px 32px; overflow: hidden; color: #fff; border-radius: 2px 22px 2px 22px; background: var(--green-dark); box-shadow: 9px 9px 0 rgba(201,39,44,.13); transition: box-shadow .25s, transform .25s; }
[dir="rtl"] .purpose-copy blockquote { padding: 28px 32px 28px 42px; }
.purpose-copy blockquote::after { position: absolute; top: 0; inset-inline-end: 0; width: 9px; height: 100%; background: linear-gradient(var(--red) 0 34%, #fff 34% 67%, var(--ink) 67%); content: ""; }
.purpose-copy blockquote:hover, .purpose-copy blockquote:focus-visible { box-shadow: 13px 13px 0 rgba(201,39,44,.2); transform: translateY(-3px); }
.purpose-copy blockquote:focus-visible { outline: 3px solid rgba(201,39,44,.36); outline-offset: 4px; }
.purpose-copy blockquote span, .purpose-copy blockquote strong, .purpose-copy blockquote cite { display: block; }
.purpose-copy blockquote span { margin-bottom: 8px; color: #b5d7c5; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.purpose-copy blockquote strong { font-family: var(--serif); font-size: clamp(24px, 3vw, 34px); font-weight: 500; line-height: 1.25; }
.purpose-copy blockquote cite { margin-top: 20px; color: #b5d7c5; font-size: 10px; font-style: normal; font-weight: 900; letter-spacing: .17em; }

.criteria-section { padding: 0 0 92px; background: var(--paper-light); }
.criteria-card { display: grid; grid-template-columns: .72fr 1.28fr; gap: 68px; padding: 48px; color: #efede7; border-radius: 2px 28px 2px 28px; background: var(--ink); }
.criteria-card .section-kicker { color: #a9cdb9; }
.criteria-card h2 { margin: 17px 0 0; font-family: var(--serif); font-size: clamp(34px, 4vw, 49px); font-weight: 500; line-height: 1; }
.criteria-card ol { display: grid; gap: 0; margin: 0; padding: 0; border-top: 1px solid #4a4d47; list-style: none; }
.criteria-card li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid #4a4d47; }
.criteria-card li > span { padding-top: 3px; color: #9e9f99; font-family: var(--serif); font-size: 13px; font-style: italic; }
.criteria-card li p { margin: 0; color: #d4d3ce; font-size: 14px; line-height: 1.7; }

.connect-section { padding: 0 0 96px; background: var(--paper-light); }
.connect-card { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 54px; align-items: center; padding: 38px 42px; border: 1px solid var(--line); border-top: 4px solid var(--red); background: #f6f1e7; box-shadow: var(--shadow); }
.connect-card h2 { margin: 17px 0 9px; font-family: var(--serif); font-size: 34px; font-weight: 500; }
.connect-card > div:first-child > p:last-child { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.social-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.social-actions a { display: grid; grid-template-columns: 36px 1fr; column-gap: 10px; align-items: center; min-height: 76px; padding: 13px; border: 1px solid var(--line); background: #fff; transition: border-color .2s, transform .2s; }
.social-actions a:hover { border-color: var(--green); transform: translateY(-2px); }
.social-actions a > span { grid-row: 1 / 3; display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: #fff; background: var(--ink); font-size: 11px; font-weight: 900; }
.social-actions a > strong { align-self: end; font-size: 12px; }
.social-actions a > small { align-self: start; min-width: 0; overflow: hidden; color: var(--muted); font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.social-actions a > .instagram-icon { position: relative; color: var(--ink); border: 3px solid currentColor; border-radius: 9px; background: #fff; }
.instagram-icon::before { position: absolute; inset: 50% auto auto 50%; width: 13px; height: 13px; border: 3px solid currentColor; border-radius: 50%; content: ""; transform: translate(-50%, -50%); }
.instagram-icon::after { position: absolute; top: 5px; right: 5px; width: 4px; height: 4px; border-radius: 50%; background: currentColor; content: ""; }

.feedback-float { position: fixed; right: max(20px, env(safe-area-inset-right)); bottom: max(20px, env(safe-area-inset-bottom)); z-index: 45; width: min(290px, calc(100vw - 32px)); filter: drop-shadow(0 13px 28px rgba(23,25,22,.24)); }
.feedback-float > a { display: flex; align-items: center; gap: 13px; min-height: 72px; padding: 13px 42px 13px 15px; color: #fff; border: 1px solid rgba(255,255,255,.22); border-radius: 3px 20px 3px 20px; background: var(--green-dark); transition: transform .2s, background .2s; }
.feedback-float > a:hover { background: var(--ink); transform: translateY(-2px); }
.feedback-float .fa-solid.fa-envelope { display: grid; width: 38px; height: 38px; flex: 0 0 38px; place-items: center; border-radius: 50%; color: var(--green-dark); background: #fff; font-size: 19px; font-style: normal; line-height: 1; }
.feedback-float .fa-solid.fa-envelope::before { content: "\2709"; }
.feedback-float a > span:last-child { display: grid; gap: 4px; min-width: 0; }
.feedback-float strong { font-size: 13px; line-height: 1.2; }
.feedback-float small { color: #b9d9c7; font-size: 10px; }
.feedback-float-close { position: absolute; top: 8px; right: 9px; z-index: 1; display: grid; width: 27px; height: 27px; place-items: center; padding: 0; color: #fff; border: 0; border-radius: 50%; background: rgba(0,0,0,.2); font-size: 19px; line-height: 1; cursor: pointer; }
.feedback-float-close:hover { background: var(--red); }

.feedback-page { padding: 86px 0 105px; background: var(--paper); }
.feedback-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 86px; align-items: start; }
.feedback-intro h1 { margin: 23px 0 18px; font-family: var(--serif); font-size: clamp(44px, 5.4vw, 68px); font-weight: 500; line-height: .98; letter-spacing: -.045em; }
.feedback-intro > p:not(.section-kicker) { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.feedback-privacy-note { display: flex; gap: 13px; margin-top: 30px; padding: 17px; border-inline-start: 3px solid var(--green); background: rgba(255,253,248,.7); }
.feedback-privacy-note > span { display: grid; flex: 0 0 24px; width: 24px; height: 24px; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: 12px; font-weight: 900; }
.feedback-privacy-note p { margin: 0; color: #51574f; font-size: 12px; line-height: 1.65; }
.feedback-form-card { padding: 34px; border: 1px solid var(--line); border-top: 4px solid var(--ink); background: var(--paper-light); box-shadow: var(--shadow); }
.feedback-form-card .admin-form { margin-top: 0; }
.feedback-form .field textarea { min-height: 170px; font-family: var(--sans); font-size: 14px; }
.feedback-success { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; padding: 15px 17px; color: var(--green-dark); border: 1px solid #afd1bb; background: #e8f4eb; }
.feedback-success > span { display: grid; width: 25px; height: 25px; flex: 0 0 25px; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: 12px; }
.feedback-success strong { font-size: 13px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.admin-page { min-height: 62vh; padding: 60px 0 90px; background: #f2eee5; }
.login-card { width: min(460px, calc(100% - 40px)); margin: 0 auto; padding: 38px; border: 1px solid var(--line); border-top: 4px solid var(--ink); background: var(--paper-light); box-shadow: var(--shadow); }
.login-card h1, .admin-header h1, .admin-editor h1 { margin: 9px 0 8px; font-family: var(--serif); font-size: 38px; font-weight: 500; }
.login-card > p, .admin-editor > p, .admin-header span { color: var(--muted); line-height: 1.6; }
.admin-kicker { margin: 0 !important; color: var(--green-dark) !important; font-size: 10px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.admin-form { display: grid; gap: 19px; margin-top: 29px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 800; }
.field input, .field textarea, .admin-search input { width: 100%; border: 1px solid #aaa395; border-radius: 0; color: var(--ink); background: #fff; outline: 0; }
.field input, .admin-search input { height: 48px; padding: 0 13px; }
.field textarea { padding: 13px; resize: vertical; font-family: Consolas, monospace; font-size: 12px; line-height: 1.6; }
.field input:focus, .field textarea:focus, .admin-search input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(8,122,73,.12); }
.field > span { display: block; margin-top: 5px; color: var(--red); font-size: 11px; }
.validation-summary { padding: 13px; color: var(--red-dark); border: 1px solid #dfaaa5; background: #f8e8e5; font-size: 12px; }
.validation-summary:empty { display: none; }
.validation-summary ul { margin: 0; padding-inline-start: 18px; }
.admin-header { display: flex; align-items: end; justify-content: space-between; gap: 25px; }
.success-message { margin-top: 25px; padding: 15px 18px; color: var(--green-dark); border-inline-start: 4px solid var(--green); background: #e4f1e8; }
.admin-search { display: flex; max-width: 570px; margin: 28px 0 20px; }
.admin-search button { padding: 0 23px; border: 0; color: #fff; background: var(--ink); font-weight: 800; cursor: pointer; }
.admin-table-wrap { overflow-x: auto; border: 1px solid var(--line); background: var(--paper-light); }
.admin-table { width: 100%; min-width: 760px; border-collapse: collapse; font-size: 12px; }
.admin-table th { padding: 14px 17px; color: var(--muted); background: #ece7dc; text-align: start; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.admin-table td { padding: 15px 17px; border-top: 1px solid #e5e0d6; }
.admin-table tbody tr:hover { background: #faf7ef; }
.count-pill { padding: 5px 9px; color: var(--green-dark); background: #e1efe6; border-radius: 20px; font-size: 10px; font-weight: 800; }
.table-actions { display: flex; justify-content: flex-end; gap: 4px; }
.table-actions a, .table-actions button { padding: 7px 9px; border: 0; color: var(--ink); background: transparent; font-size: 10px; font-weight: 800; cursor: pointer; }
.table-actions button { color: var(--red-dark); }
.table-actions a:hover, .table-actions button:hover { background: #ece7dc; }
.table-empty { padding: 25px; color: var(--muted); text-align: center; }
.admin-editor { max-width: 850px; }
.import-panel { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr); gap: 34px; margin: 30px 0; padding: 27px; border: 1px solid var(--line); border-top: 4px solid var(--green); background: var(--paper-light); box-shadow: 8px 8px 0 rgba(23,25,22,.05); }
.import-panel h2 { margin: 5px 0 9px; font-family: var(--serif); font-size: 27px; }
.import-panel p { max-width: 640px; margin: 0; color: var(--muted); line-height: 1.65; }
.import-form { display: grid; gap: 11px; align-content: start; }
.import-form input[type="file"] { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.file-picker { display: grid; gap: 4px; padding: 17px; border: 1px dashed var(--green); color: var(--green-dark); background: #eef7f1; cursor: pointer; }
.file-picker:hover, .file-picker:focus-within { background: #e3f1e8; }
.file-picker span, .selected-files { color: var(--muted); font-size: 12px; }
.selected-files { min-height: 19px; overflow-wrap: anywhere; }
.import-form .button { justify-content: center; width: 100%; }
.import-error { margin-top: 24px; }
.admin-table code { font-size: 11px; white-space: nowrap; }
.admin-dashboard-header { padding-bottom: 7px; }
.support-login-card { border-top-color: var(--green); }
.support-header { padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.support-summary { display: grid; grid-template-columns: repeat(3, minmax(84px, 1fr)); color: #fff; background: var(--green-dark); }
.support-summary > div { display: grid; gap: 5px; padding: 15px 18px; border-inline-end: 1px solid rgba(255,255,255,.17); text-align: center; }
.support-summary > div:last-child { border-inline-end: 0; }
.support-summary strong { font-family: var(--serif); font-size: 28px; font-weight: 500; line-height: 1; }
.support-summary span { color: #b7d6c5; font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.support-alert { margin-top: 17px; padding: 14px 17px; border: 1px solid; font-size: 12px; line-height: 1.6; }
.support-alert-success { color: var(--green-dark); border-color: #a9d1b8; background: #e7f3ea; }
.support-alert-warning, .support-alert-config { color: #76531b; border-color: #ddc698; background: #fbf2d9; }
.support-alert-error { color: var(--red-dark); border-color: #dfaaa5; background: #f8e8e5; }
.support-alert-config strong { margin-inline-end: 5px; }
.message-list { display: grid; gap: 16px; margin-top: 28px; }
.message-card { padding: 26px 28px; border: 1px solid var(--line); border-inline-start: 4px solid var(--green); background: var(--paper-light); box-shadow: 7px 7px 0 rgba(23,25,22,.045); }
.message-card.status-reviewing { border-inline-start-color: var(--gold); }
.message-card.status-in-progress { border-inline-start-color: #2871a7; }
.message-card.status-resolved { border-inline-start-color: var(--green); }
.message-card.status-closed { opacity: .82; border-inline-start-color: #777b73; background: #f3f0e9; }
.message-card > header { display: flex; align-items: start; justify-content: space-between; gap: 24px; padding-bottom: 17px; border-bottom: 1px solid #e7e1d7; }
.message-subject { margin: 0 0 5px; color: var(--green-dark); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.message-card h2 { margin: 0; font-family: var(--serif); font-size: 24px; font-weight: 500; }
.message-meta { display: grid; justify-items: end; gap: 7px; }
.message-card time { flex: 0 0 auto; color: var(--muted); font-size: 11px; }
.message-status { display: inline-flex; min-height: 25px; align-items: center; padding: 0 10px; border-radius: 20px; color: var(--green-dark); background: #dceee3; font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.status-reviewing .message-status { color: #76531b; background: #f4e4bd; }
.status-in-progress .message-status { color: #1d547b; background: #dcecf7; }
.status-closed .message-status { color: #4f514d; background: #ddd9d1; }
.message-body { margin: 20px 0; color: #40453e; font-size: 14px; line-height: 1.75; white-space: pre-wrap; overflow-wrap: anywhere; }
.message-contact-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 15px; color: var(--muted); font-size: 11px; }
.message-contact-row a { color: var(--green-dark); font-weight: 800; }
.message-contact-row a:hover { text-decoration: underline; }
.reply-thread { display: grid; gap: 10px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.reply-thread > h3 { margin: 0 0 2px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.reply-thread > h3 span { display: inline-grid; min-width: 23px; height: 23px; place-items: center; margin-inline-start: 5px; border-radius: 50%; color: #fff; background: var(--green-dark); font-size: 9px; }
.reply-item { padding: 16px 18px; border-inline-start: 3px solid #9dbfab; background: #edf5ef; }
.reply-item > header { display: flex; justify-content: space-between; gap: 16px; }
.reply-item > header strong { color: var(--green-dark); font-size: 11px; }
.reply-item > p { margin: 11px 0; color: #41463f; font-size: 13px; line-height: 1.7; white-space: pre-wrap; }
.delivery-sent { color: var(--green-dark); font-weight: 800; }
.delivery-pending { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; }
.delivery-pending small { color: #8b5a12; font-weight: 800; }
.delivery-pending a { padding: 6px 9px; color: #70480d; border: 1px solid #d8b978; background: #fff8e7; font-size: 10px; font-weight: 800; }
.message-actions { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; align-items: end; margin-top: 23px; padding-top: 22px; border-top: 1px solid var(--line); }
.status-form { display: grid; grid-template-columns: minmax(150px, 220px) auto; gap: 8px; align-items: end; }
.status-form label { grid-column: 1 / -1; color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.status-form select { height: 42px; padding: 0 34px 0 11px; border: 1px solid #aaa395; color: var(--ink); background: #fff; font: inherit; font-size: 12px; font-weight: 700; }
.support-button { min-height: 42px; padding: 0 15px; border: 1px solid transparent; font: inherit; font-size: 11px; font-weight: 900; cursor: pointer; }
.support-button-primary { color: #fff; background: var(--green-dark); }
.support-button-primary:hover { background: var(--ink); }
.support-button-secondary { color: var(--ink); border-color: var(--line); background: #ebe6dc; }
.support-button-secondary:hover { border-color: var(--ink); background: #fff; }
.support-button-danger { color: var(--red-dark); border-color: #dfaaa5; background: #fff3f1; }
.support-button-danger:hover { color: #fff; background: var(--red-dark); }
.reply-composer { grid-column: 1 / -1; border: 1px solid #a8cbb5; background: #f0f7f2; }
.reply-composer summary { padding: 13px 16px; color: var(--green-dark); font-size: 12px; font-weight: 900; cursor: pointer; }
.reply-composer[open] summary { border-bottom: 1px solid #c8ddd0; }
.reply-composer form { display: grid; gap: 10px; padding: 15px; }
.reply-composer label { color: var(--muted); font-size: 10px; font-weight: 800; }
.reply-composer textarea { width: 100%; min-height: 115px; padding: 12px; resize: vertical; border: 1px solid #aaa395; color: var(--ink); background: #fff; outline: 0; font: inherit; font-size: 13px; line-height: 1.6; }
.reply-composer textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(8,122,73,.12); }
.reply-composer .support-button { justify-self: end; }
.close-topic-form { grid-column: 2; grid-row: 1; }
.closed-topic-note { display: flex; align-items: center; gap: 9px; margin-top: 21px; padding: 12px 14px; color: #555850; background: #e3e0d9; font-size: 12px; }
.closed-topic-note > span { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; color: #fff; background: #73766f; }
.support-empty { margin-top: 28px; padding: 58px 20px; border: 1px dashed #bdb5a8; background: rgba(255,253,248,.55); text-align: center; }
.support-empty > span { display: grid; width: 48px; height: 48px; place-items: center; margin: 0 auto 16px; border-radius: 50%; color: #fff; background: var(--green); }
.support-empty h2 { margin: 0 0 7px; font-family: var(--serif); font-size: 28px; font-weight: 500; }
.support-empty p { margin: 0; color: var(--muted); font-size: 13px; }
.admin-stat-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 29px 0; }
.admin-stat-card { position: relative; display: grid; gap: 6px; min-height: 145px; padding: 23px 25px; overflow: hidden; border: 1px solid var(--line); background: var(--paper-light); }
.admin-stat-card::after { position: absolute; top: 0; right: 0; width: 5px; height: 100%; background: #d6d0c3; content: ""; }
.admin-stat-card-primary::after { background: var(--green); }
.admin-stat-card > span { color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.admin-stat-card > strong { align-self: end; font-family: var(--serif); font-size: 36px; font-weight: 500; line-height: 1; }
.admin-stat-card > small { color: var(--muted); font-size: 11px; }
.admin-stat-card > .admin-stat-label { max-width: 220px; font-family: var(--sans); font-size: 19px; font-weight: 800; line-height: 1.2; }
.admin-tabs { display: flex; gap: 8px; margin-top: 34px; border-bottom: 1px solid var(--line); }
.admin-tab { display: flex; align-items: center; gap: 11px; padding: 14px 18px; color: var(--muted); border: 1px solid transparent; border-bottom: 0; font-size: 12px; font-weight: 800; }
.admin-tab strong { display: inline-grid; min-width: 32px; height: 23px; place-items: center; padding: 0 8px; border-radius: 20px; color: var(--ink); background: #ded8cc; font-size: 10px; }
.admin-tab:hover { color: var(--ink); }
.admin-tab.is-active { margin-bottom: -1px; color: var(--ink); border-color: var(--line); background: var(--paper-light); }
.admin-tab.is-active strong { color: #fff; background: var(--green-dark); }
.admin-list-panel { padding: 28px; border: 1px solid var(--line); border-top: 0; background: var(--paper-light); box-shadow: 8px 8px 0 rgba(23,25,22,.05); }
.admin-list-heading { display: flex; align-items: end; justify-content: space-between; gap: 25px; margin-bottom: 21px; }
.admin-list-heading h2 { margin: 5px 0 0; font-family: var(--serif); font-size: 29px; font-weight: 500; }
.admin-list-heading > p { margin: 0; color: var(--muted); font-size: 12px; }
.admin-list-heading > p strong { color: var(--ink); }
.admin-toolbar { display: grid; grid-template-columns: minmax(280px, 1fr) auto auto; gap: 10px; align-items: end; margin-bottom: 18px; }
.admin-search-wide { max-width: none; margin: 0; }
.admin-search-wide input { min-width: 0; }
.admin-page-size { display: grid; gap: 5px; }
.admin-page-size span { color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.admin-page-size select { height: 48px; padding: 0 36px 0 12px; border: 1px solid #aaa395; color: var(--ink); background: #fff; font: inherit; font-size: 12px; font-weight: 700; }
.admin-clear-filter { display: grid; height: 48px; place-items: center; padding: 0 14px; border: 1px solid var(--line); color: var(--red-dark); font-size: 11px; font-weight: 800; }
.admin-clear-filter:hover { background: #f6e9e6; }
.admin-list-panel .admin-table-wrap { max-height: 720px; }
.admin-list-panel .admin-table th { position: sticky; top: 0; z-index: 1; }
.admin-catalog-table { min-width: 1050px; }
.admin-catalog-table th:first-child, .admin-catalog-table td:first-child { width: 160px; }
.catalog-name { display: block; min-width: 190px; line-height: 1.45; }
.barcode-code { color: #174f3a; font-weight: 700; letter-spacing: .03em; }
.atc-code { display: inline-block; min-width: 46px; padding: 4px 7px; color: var(--muted); background: #eee9df; font-family: Consolas, monospace; font-size: 10px; text-align: center; }
.admin-pagination { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 6px; margin-top: 18px; }
.admin-pagination > a, .admin-page-numbers a { display: grid; min-width: 38px; height: 38px; place-items: center; padding: 0 11px; border: 1px solid var(--line); background: #fff; font-size: 11px; font-weight: 800; }
.admin-pagination > a:hover, .admin-page-numbers a:hover { border-color: var(--ink); }
.admin-pagination > span { margin: 0 5px; color: var(--muted); font-size: 11px; }
.admin-page-numbers { display: flex; gap: 4px; }
.admin-page-numbers a.is-current { color: #fff; border-color: var(--green-dark); background: var(--green-dark); }
.admin-pagination a.is-disabled { opacity: .35; pointer-events: none; }
.back-link { display: inline-block; margin-bottom: 30px; border-bottom: 1px solid var(--ink); font-size: 12px; font-weight: 800; }
.editor-form { padding: 29px; border: 1px solid var(--line); background: var(--paper-light); box-shadow: 8px 8px 0 rgba(23,25,22,.05); }
.form-actions { display: flex; justify-content: flex-end; gap: 12px; }
.error-page { min-height: 62vh; display: grid; place-items: center; padding: 60px 20px; }
.error-card { width: min(560px, 100%); padding: 42px; border: 1px solid var(--line); border-top: 5px solid var(--red); background: var(--paper-light); box-shadow: var(--shadow); text-align: center; }
.error-card > span { display: grid; width: 48px; height: 48px; place-items: center; margin: 0 auto 18px; border-radius: 50%; color: #fff; background: var(--red); font-weight: 900; }
.error-card h1 { margin: 0 0 10px; font-family: var(--serif); font-size: 34px; font-weight: 500; }
.error-card p { margin: 0 0 24px; color: var(--muted); }
.error-card small { display: block; margin-top: 22px; color: var(--muted); }
.error-card > .error-kicker { margin: 0 0 10px; color: var(--red-dark); font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.error-card > .error-code { display: block; width: auto; height: auto; margin: 0 0 13px; color: var(--ink); background: transparent; border-radius: 0; font-family: var(--serif); font-size: clamp(68px, 12vw, 104px); font-weight: 500; line-height: .85; letter-spacing: -.06em; }
.error-card.error-status-404 { border-top-color: var(--green); }
.error-card.error-status-429 { border-top-color: #b7791f; }
.error-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px; }
.error-actions .text-link { font-size: 12px; }

.equivalent-group { overflow: hidden; border: 1px solid var(--line); background: var(--paper-light); box-shadow: var(--shadow); }
.equivalent-group-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; padding: 21px 24px; border-bottom: 1px solid var(--line); background: #f3efe5; }
.equivalent-group-heading p { margin: 0 0 4px; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.equivalent-group-heading h3 { margin: 0; font-family: var(--serif); font-size: 25px; font-weight: 600; }
.equivalent-group-heading > span { max-width: 330px; color: var(--muted); font-size: 12px; text-align: end; }
.drug-status-list { display: grid; gap: 13px; margin: 0; padding: 13px; background: #eee9df; list-style: none; }
.drug-status-card { display: grid; grid-template-columns: 44px minmax(0, 1fr) auto; gap: 15px; min-height: 112px; padding: 20px 22px; border: 1px solid var(--line); border-inline-start: 5px solid transparent; background: #fff; box-shadow: 0 4px 11px rgba(23,25,22,.045); transition: box-shadow .2s, transform .2s; }
.drug-status-card:hover, .drug-status-card:focus-within { box-shadow: 0 8px 18px rgba(23,25,22,.09); transform: translateY(-2px); }
.drug-status-card.is-boycott { color: var(--red-dark); border-inline-start-color: var(--red); background: #fff8f7; }
.drug-status-card.is-clear { color: var(--green-dark); border-inline-start-color: var(--green); background: #f6fcf8; }
.drug-status-card.is-match { box-shadow: inset 0 0 0 2px currentColor; }
.status-symbol { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; color: #fff; font-size: 19px; font-weight: 900; }
.is-boycott .status-symbol { background: var(--red); }
.is-clear .status-symbol { background: var(--green); }
.drug-status-copy { min-width: 0; }
.status-label { display: block; margin-bottom: 5px; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.drug-status-copy > strong { display: block; color: var(--ink); font-family: var(--serif); font-size: 21px; line-height: 1.2; }
.drug-status-copy > small { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; }
.active-ingredient { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.active-ingredient b { color: var(--ink); font-weight: 800; }
.barcode-list { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-top: 11px; }
.barcode-list span { color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.barcode-list code { padding: 4px 7px; color: var(--ink); background: rgba(0,0,0,.055); font-size: 11px; }
.boycott-reason-button { align-self: center; display: inline-flex; min-height: 42px; align-items: center; justify-content: center; gap: 12px; padding: 10px 15px; border: 1px solid var(--red); color: #fff; background: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .035em; cursor: pointer; }
.boycott-reason-button:hover, .boycott-reason-button:focus-visible { color: var(--red-dark); background: #fff; }
.boycott-reason-button span { font-size: 17px; line-height: 1; }

.site-footer { flex: 0 0 auto; padding: 0; color: #c4c3bc; background: #111310; }
.boycott-companies { padding: 58px 0 52px; color: var(--ink); background: #fffdf8; border-top: 1px solid var(--line); }
.company-logo-panel { position: relative; padding: 28px 15px 14px; border: 2px solid var(--red); border-radius: 12px; background: #fff; }
.company-logo-panel > h2 { position: absolute; inset-block-start: 0; inset-inline-start: 50%; display: inline-flex; min-height: 32px; align-items: center; gap: 8px; margin: 0; padding: 4px 13px 4px 7px; border-radius: 4px; color: #fff; background: var(--red); font-family: var(--sans); font-size: 12px; font-weight: 900; letter-spacing: .12em; line-height: 1; text-align: center; text-transform: uppercase; transform: translate(-50%, -50%); white-space: nowrap; }
[dir="rtl"] .company-logo-panel > h2 { transform: translate(50%, -50%); }
.company-logo-panel > h2 span { position: relative; display: block; width: 23px; height: 23px; flex: 0 0 23px; border: 2px solid #fff; border-radius: 50%; }
.company-logo-panel > h2 span::before, .company-logo-panel > h2 span::after { content: ""; position: absolute; inset-block-start: 50%; inset-inline-start: 50%; width: 11px; height: 2px; border-radius: 2px; background: #fff; transform-origin: center; }
.company-logo-panel > h2 span::before { transform: translate(-50%, -50%) rotate(45deg); }
.company-logo-panel > h2 span::after { transform: translate(-50%, -50%) rotate(-45deg); }
.company-kicker { display: flex; align-items: center; gap: 10px; margin: 0; color: var(--red-dark); font-size: 11px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.company-kicker span { width: 28px; height: 3px; background: linear-gradient(90deg, var(--red) 0 45%, var(--ink) 45% 58%, var(--green) 58%); }
.company-logo-grid { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; }
.company-logo-grid li { min-width: 0; }
.company-logo-button { display: grid; width: 100%; min-height: 94px; place-items: center; padding: 12px 9px; overflow: hidden; border: 0; border-inline-end: 1px solid #ead7d3; color: var(--ink); background: #fff; font: inherit; cursor: pointer; transition: background-color .2s, transform .2s; }
.company-logo-grid li:last-child .company-logo-button { border-inline-end: 0; }
.company-logo-button:hover { background: #fff4f2; transform: translateY(-2px); }
.company-logo-button:focus-visible { outline: 3px solid rgba(8,122,73,.3); outline-offset: 2px; }
.company-logo-frame { display: grid; place-items: center; min-width: 0; }
.company-logo-grid img { display: block; width: auto; max-width: 88%; height: auto; max-height: 66px; object-fit: contain; mix-blend-mode: multiply; filter: saturate(.92) contrast(1.04); }
.company-evidence-dialog { width: min(960px, calc(100% - 30px)); max-height: calc(100vh - 36px); padding: 0; overflow: auto; border: 0; color: var(--ink); background: transparent; }
.company-evidence-dialog::backdrop { background: rgba(17,19,16,.76); backdrop-filter: blur(3px); }
.company-evidence-card { position: relative; display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 28px; padding: 38px; border-top: 5px solid var(--red); background: var(--paper-light); box-shadow: 0 24px 70px rgba(0,0,0,.3); }
.company-dialog-close-form { position: absolute; top: 12px; right: 12px; }
.company-dialog-close { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: #fff; font-size: 23px; line-height: 1; cursor: pointer; }
.company-dialog-logo { display: grid; min-height: 150px; place-items: center; padding: 18px; border: 1px solid var(--line); background: #f7f4ed; }
.company-dialog-logo img { display: block; max-width: 100%; max-height: 120px; object-fit: contain; mix-blend-mode: multiply; }
.company-dialog-copy { align-self: start; }
.company-dialog-copy h3 { margin: 12px 0 13px; font-family: var(--serif); font-size: 34px; font-weight: 500; }
.company-dialog-evidence { margin: 0 0 24px; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.company-dialog-evidence img { display: block; width: 100%; height: auto; object-fit: contain; }
.company-dialog-copy > p:not(.company-kicker) { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; white-space: pre-line; }
.footer-base { padding: 48px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.footer-mark { color: #fff; font-family: var(--serif); font-size: 17px; font-weight: 700; }
.footer-base p { max-width: 610px; margin: 13px 0 4px; font-size: 12px; line-height: 1.7; }
.footer-base small { color: #858780; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; font-size: 11px; }
.footer-links a:hover { color: #fff; }

@media (min-width: 1600px) {
  .site-shell { width: min(1480px, calc(100% - 88px)); }
  .header-inner { min-height: 98px; }
  .wordmark > img { width: 66px; height: 66px; flex-basis: 66px; }
  .wordmark strong { font-size: 20px; }
  .wordmark small { font-size: 10px; }
  .main-nav { gap: 24px; font-size: 14px; }
  .search-masthead { padding: 92px 0 80px; }
  .search-heading { max-width: 1120px; }
  .search-heading h1 { font-size: 80px; }
  .search-heading > p { max-width: 820px; font-size: 16px; }
  .medicine-search { max-width: 980px; margin-top: 43px; padding: 8px; }
  .medicine-search input { height: 58px; font-size: 15px; }
  .medicine-search > button[type="submit"] { min-width: 150px; font-size: 14px; }
  .search-icon { inset-block-start: 29px; }
  .search-results { max-width: 1180px; padding-block: 64px 110px; }
  .empty-state { min-height: 220px; }
  .empty-state h2 { font-size: 29px; }
  .empty-state p { font-size: 14px; }
  .medical-warning { margin-top: 36px; padding: 25px 28px; }
  .company-logo-button { min-height: 112px; }
  .company-logo-grid img { max-height: 75px; }
  .footer-base { padding-block: 54px 56px; }
  .feedback-float { width: 320px; }
}

@media (min-width: 2400px) {
  .site-shell { width: min(2050px, calc(100% - 150px)); }
  .header-inner { min-height: 126px; }
  .wordmark { gap: 17px; }
  .wordmark > img { width: 84px; height: 84px; flex-basis: 84px; }
  .wordmark strong { font-size: 25px; }
  .wordmark small { margin-top: 9px; font-size: 12px; }
  .main-nav { gap: 31px; font-size: 17px; }
  .language-switch a { min-width: 38px; padding: 9px; font-size: 12px; }
  .search-masthead { padding: 118px 0 104px; }
  .search-heading { max-width: 1480px; }
  .search-heading .section-kicker { font-size: 14px; }
  .search-heading h1 { margin-block: 27px 18px; font-size: 112px; }
  .search-heading > p { max-width: 1060px; font-size: 20px; }
  .medicine-search { max-width: 1380px; margin-top: 54px; padding: 10px; }
  .medicine-search input { height: 72px; padding-inline-start: 62px; font-size: 19px; }
  .medicine-search > button[type="submit"] { min-width: 195px; font-size: 17px; }
  .search-icon { inset-block-start: 36px; inset-inline-start: 28px; width: 18px; height: 18px; }
  .search-help { margin-top: 20px; font-size: 14px; }
  .search-results { max-width: 1480px; padding-block: 80px 135px; }
  .empty-state { min-height: 280px; gap: 31px; }
  .empty-state > span { font-size: 76px; }
  .empty-state h2 { font-size: 36px; }
  .empty-state p { font-size: 17px; }
  .medical-warning { margin-top: 44px; padding: 31px 35px; }
  .medical-warning h2 { font-size: 24px; }
  .medical-warning p { font-size: 16px; }
  .boycott-companies { padding-block: 78px 68px; }
  .company-logo-panel { padding: 40px 22px 20px; }
  .company-logo-panel > h2 { min-height: 42px; font-size: 15px; }
  .company-logo-button { min-height: 145px; }
  .company-logo-grid img { max-height: 96px; }
  .footer-base { padding-block: 70px 74px; }
  .footer-mark { font-size: 23px; }
  .footer-base p { max-width: 850px; font-size: 16px; }
  .footer-base small, .footer-links { font-size: 14px; }
  .feedback-float { width: 420px; right: 34px; bottom: 32px; }
  .feedback-float > a { min-height: 94px; padding: 18px 55px 18px 20px; }
  .feedback-float .fa-solid.fa-envelope { width: 50px; height: 50px; flex-basis: 50px; font-size: 25px; }
  .feedback-float strong { font-size: 17px; }
  .feedback-float small { font-size: 13px; }
  .feedback-float-close { width: 34px; height: 34px; font-size: 23px; }
}

@media (max-width: 900px) {
  .import-panel { grid-template-columns: 1fr; }
  .admin-stat-grid { grid-template-columns: 1fr 1fr; }
  .admin-stat-card:last-child { grid-column: 1 / -1; min-height: 115px; }
  .admin-toolbar { grid-template-columns: minmax(0, 1fr) auto; }
  .admin-clear-filter { grid-column: 1 / -1; }
  .company-logo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .company-logo-grid li:nth-child(4n) .company-logo-button { border-inline-end: 0; }
  .company-logo-grid li:nth-child(n+5) .company-logo-button { border-top: 1px solid #ead7d3; }
  .hero-grid { grid-template-columns: 1fr; gap: 55px; }
  .hero-copy h1 { max-width: 780px; }
  .hero-art { width: min(590px, 100%); margin-inline: auto; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li, [dir="rtl"] .process-list li { min-height: auto; padding: 26px 0; border-inline-end: 0; border-bottom: 1px solid #4c4e49; }
  .process-list li + li { padding-inline-start: 0; }
  .manifesto-card { grid-template-columns: 65px 1fr; }
  .manifesto-card .button { grid-column: 2; justify-self: start; }
  .legal-grid { grid-template-columns: 1fr; gap: 50px; }
  .legal-grid > header { position: static; }
  .purpose-grid, .feedback-grid { grid-template-columns: 1fr; gap: 48px; }
  .purpose-heading { position: static; }
  .criteria-card, .connect-card { grid-template-columns: 1fr; }
  .social-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .site-shell { width: min(1180px, calc(100% - 30px)); }
  .header-inner { min-height: 74px; gap: 10px; }
  .wordmark { gap: 6px; }
  .wordmark > img { width: 40px; height: 40px; flex-basis: 40px; }
  .wordmark strong { font-size: 12px; }
  .wordmark small { display: none; }
  .main-nav { gap: 8px; }
  .nav-search { display: none; }
  .main-nav > .nav-text { display: none; }
  .main-nav > .nav-information { display: inline-flex; font-size: 11px; white-space: nowrap; }
  .language-switch a { min-width: 25px; padding: 6px 4px; }
  .home-hero { padding: 59px 0 70px; }
  .hero-copy h1 { font-size: clamp(43px, 14vw, 65px); }
  .hero-lead { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .text-link { align-self: flex-start; }
  .guide-note ul { display: grid; }
  .hero-art { min-height: 430px; padding: 37px 21px 30px; transform: none; }
  .sample-search { align-items: flex-start; flex-direction: column; margin-top: 39px; }
  .sample-result { padding: 18px 14px; }
  .process-section { padding: 72px 0; }
  .manifesto-section { padding-top: 50px; }
  .manifesto-card { grid-template-columns: 1fr; padding: 31px 25px; }
  .manifesto-symbol { display: none; }
  .manifesto-card .button { grid-column: 1; }
  .safety-wrap { padding-bottom: 60px; }
  .search-masthead { padding: 52px 0 48px; }
  .search-heading h1 { font-size: 43px; }
  .medicine-search { display: grid; grid-template-columns: 1fr; padding: 6px; }
  .medicine-search input { width: 100%; height: 49px; padding-inline: 42px 12px; }
  .medicine-search > button[type="submit"] { min-height: 46px; }
  .search-icon { inset-block-start: 23px; }
  .results-header { align-items: flex-start; flex-direction: column; }
  .boycott-card > header, .alternatives-block, .safe-card, .unlisted-card { padding: 22px 19px; }
  .alternatives-heading { align-items: flex-start; flex-direction: column; }
  .alternative-list { grid-template-columns: 1fr; }
  .result-card h3 { overflow-wrap: anywhere; font-size: 23px; }
  .safe-card, .unlisted-card { align-items: flex-start; }
  .result-icon { flex-basis: 40px; width: 40px; height: 40px; }
  .medical-warning, .safety-note { padding: 18px; }
  .legal-page { padding: 62px 0 75px; }
  .purpose-section { padding: 66px 0; }
  .purpose-grid { gap: 34px; }
  .purpose-heading h2 { font-size: 43px; }
  .purpose-point { grid-template-columns: 31px 1fr; padding: 15px 34px 15px 13px; }
  [dir="rtl"] .purpose-point { padding: 15px 13px 15px 34px; }
  .purpose-point p { font-size: 14px; }
  .purpose-copy blockquote { padding: 24px 22px; }
  .criteria-section { padding-bottom: 62px; }
  .criteria-card { gap: 28px; padding: 31px 22px; }
  .criteria-card li { grid-template-columns: 36px 1fr; }
  .connect-section { padding-bottom: 66px; }
  .connect-card { gap: 29px; padding: 29px 20px; }
  .social-actions { grid-template-columns: 1fr; }
  .feedback-float { right: max(12px, env(safe-area-inset-right)); bottom: max(12px, env(safe-area-inset-bottom)); width: min(270px, calc(100vw - 24px)); }
  .feedback-float > a { min-height: 66px; padding-block: 11px; }
  .feedback-page { padding: 58px 0 72px; }
  .feedback-grid { gap: 33px; }
  .feedback-form-card { padding: 25px 19px; }
  .admin-page { padding: 40px 0 65px; }
  .login-card { padding: 27px 21px; }
  .admin-header { align-items: flex-start; flex-direction: column; }
  .support-summary { width: 100%; }
  .message-card { padding: 21px 18px; }
  .message-card > header { flex-direction: column; gap: 10px; }
  .message-meta { justify-items: start; }
  .message-actions { grid-template-columns: 1fr; }
  .status-form { grid-template-columns: 1fr; }
  .status-form label { grid-column: auto; }
  .close-topic-form { grid-column: auto; grid-row: auto; }
  .close-topic-form .support-button, .status-form .support-button { width: 100%; }
  .admin-stat-grid { grid-template-columns: 1fr; }
  .admin-stat-card, .admin-stat-card:last-child { grid-column: auto; min-height: 120px; }
  .import-panel { padding: 21px 17px; }
  .admin-tabs { overflow-x: auto; }
  .admin-tab { flex: 0 0 auto; padding-inline: 13px; }
  .admin-list-panel { padding: 22px 17px; }
  .admin-list-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
  .admin-toolbar { grid-template-columns: 1fr; }
  .admin-page-size, .admin-clear-filter { grid-column: auto; }
  .admin-page-size select { width: 100%; }
  .admin-pagination { justify-content: flex-start; }
  .admin-pagination > span { order: -1; width: 100%; margin: 0 0 5px; }
  .equivalent-group-heading { align-items: flex-start; flex-direction: column; padding: 18px; }
  .equivalent-group-heading > span { text-align: start; }
  .drug-status-card { grid-template-columns: 38px minmax(0, 1fr); padding: 18px 14px; }
  .drug-status-list { gap: 9px; padding: 9px; }
  .boycott-reason-button { grid-column: 2; justify-self: start; margin-top: 2px; }
  .status-symbol { width: 36px; height: 36px; }
  .field-row { grid-template-columns: 1fr; }
  .editor-form { padding: 21px 17px; }
  .form-actions { align-items: stretch; flex-direction: column-reverse; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .boycott-companies { padding: 48px 0 42px; }
  .company-logo-panel { padding: 25px 6px 6px; border-radius: 9px; }
  .company-logo-panel > h2 { max-width: calc(100% - 20px); font-size: 10px; letter-spacing: .08em; white-space: normal; }
  .company-logo-button { min-height: 76px; padding: 9px 5px; }
  .company-logo-grid img { max-width: 90%; max-height: 53px; }
  .company-evidence-card { grid-template-columns: 1fr; gap: 18px; padding: 48px 22px 28px; }
  .company-dialog-logo { min-height: 110px; }
  .company-dialog-logo img { max-height: 88px; }
  .company-dialog-copy h3 { font-size: 29px; }
  .footer-base { padding: 40px 0 43px; }
}

@media (max-width: 380px) {
  .wordmark-copy { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
