:root {
  --seo-bg: #f4f8f7;
  --seo-surface: #ffffff;
  --seo-surface-soft: #eaf8f4;
  --seo-text: #18312c;
  --seo-muted: #596861;
  --seo-border: #dce8e4;
  --seo-accent: #1eb087;
  --seo-accent-dark: #14795f;
  --seo-success: #14795f;
  --seo-shadow: 0 18px 48px rgba(23, 32, 51, .08);
  --seo-shadow-small: 0 8px 24px rgba(23, 32, 51, .06);
  --seo-radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.seo-review-page,
body.seo-country-page {
  margin: 0;
  background: var(--seo-bg);
  color: var(--seo-text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
body.seo-review-page a,
body.seo-country-page a { color: var(--seo-accent); }

.seo-topbar {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--seo-border);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
}
.seo-topbar-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.seo-logo img { display: block; width: 190px; max-width: 44vw; height: auto; }
.seo-country-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #bfe5d9;
  border-radius: 999px;
  background: #eefaf6;
  color: #155f4d !important;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background .16s ease, border-color .16s ease, transform .16s ease;
}
.seo-country-link:hover,
.seo-country-link:focus {
  border-color: var(--seo-accent);
  background: #e2f6ef;
  transform: translateY(-1px);
}
.seo-country-link::before { display: none; }

.seo-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 72px;
}
.seo-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin: 0 0 20px;
  color: var(--seo-muted);
  font-size: 13px;
}
.seo-breadcrumbs a { color: var(--seo-muted) !important; text-decoration: none; }
.seo-breadcrumbs a:hover { color: var(--seo-accent) !important; }
.seo-breadcrumbs .sep { opacity: .55; }

.seo-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4.5vw, 52px);
  border: 1px solid var(--seo-border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 96% 4%, rgba(30,176,135,.12), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #ffffff 70%, #eefaf6 100%);
  box-shadow: var(--seo-shadow);
}
.seo-hero::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -95px;
  width: 260px;
  height: 260px;
  border: 34px solid rgba(30,176,135,.06);
  border-radius: 50%;
  pointer-events: none;
}
.seo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid #c7e9df;
  border-radius: 999px;
  background: #edf9f5;
  color: #12664f;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.seo-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--seo-accent);
  box-shadow: 0 0 0 4px rgba(30,176,135,.13);
}
.seo-hero h1 {
  max-width: 900px;
  margin: 14px 0 14px;
  color: #111827;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -.035em;
  text-align: center;
}
.seo-intro {
  max-width: 900px;
  color: #465269;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}
.seo-intro p { margin: 0 0 12px; }
.seo-meta {
  margin-top: 13px;
  color: var(--seo-muted);
  font-size: 13px;
}

.seo-deal {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin: 28px 0 0;
  padding: 22px 24px;
  border: 1px solid #9fdbc9;
  border-radius: 16px;
  background: rgba(255,247,248,.92);
}
.seo-deal-label {
  color: var(--seo-muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .045em;
}
.seo-deal-value {
  margin-top: 2px;
  color: var(--seo-accent-dark);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 850;
  line-height: 1.15;
}
.seo-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(180deg, #28bc91 0%, #1aa67f 100%);
  box-shadow: 0 8px 18px rgba(30,176,135,.24);
  color: #fff !important;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.seo-button:hover,
.seo-button:focus {
  background: var(--seo-accent-dark);
  box-shadow: 0 10px 22px rgba(20,121,95,.24);
  transform: translateY(-1px);
  text-decoration: none;
}
.seo-button::after { content: ">"; font-size: 18px; }

.seo-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.seo-fact {
  min-height: 102px;
  padding: 16px 17px;
  border: 1px solid var(--seo-border);
  border-radius: 14px;
  background: rgba(255,255,255,.90);
  box-shadow: var(--seo-shadow-small);
}
.seo-fact-label {
  display: block;
  margin-bottom: 5px;
  color: var(--seo-muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .025em;
  text-transform: uppercase;
}
.seo-fact-value { display: block; color: #1d2738; font-size: 16px; line-height: 1.45; }

.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 28px;
  margin-top: 28px;
}
.seo-article,
.seo-product-card,
.seo-country-card {
  border: 1px solid var(--seo-border);
  background: var(--seo-surface);
  box-shadow: var(--seo-shadow-small);
}
.seo-article {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--seo-radius);
}
.seo-review-section {
  position: relative;
  padding: 0 0 30px;
}
.seo-review-section + .seo-review-section,
.seo-review-section + .seo-faq-section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid #e8efec;
}
.seo-article h2 {
  position: relative;
  margin: 0 0 20px;
  padding: 13px 18px 14px 20px;
  border-left: 4px solid var(--seo-accent);
  border-radius: 0 12px 12px 0;
  background: linear-gradient(90deg, #eef9f5 0%, #f8fcfa 66%, rgba(248,252,250,0) 100%);
  color: #172c27;
  font-size: clamp(25px, 3vw, 32px);
  line-height: 1.22;
  letter-spacing: -.022em;
}
.seo-article h2::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 8px;
  width: 44px;
  height: 2px;
  border-radius: 999px;
  background: rgba(30,176,135,.42);
}
.seo-article h3 {
  margin: 0;
  color: #1c2638;
  font-size: 18px;
  line-height: 1.35;
}
.seo-review-copy { max-width: 780px; }
.seo-article p { margin: 0 0 17px; color: #3d4960; }
.seo-article p:last-child { margin-bottom: 0; }
.seo-article strong { color: #163c32; font-weight: 850; }
.seo-article em { color: #42584f; }

.seo-side { min-width: 0; }
.seo-product-card {
  position: sticky;
  top: 94px;
  overflow: hidden;
  padding: 18px;
  border-radius: var(--seo-radius);
}
.seo-product-image-wrap {
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: center;
  margin: -4px -4px 18px;
  padding: 18px;
  border-radius: 14px;
  background: #f8fafc;
}
.seo-product-image {
  display: block;
  max-width: 100%;
  max-height: 210px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.seo-product-card h2 {
  margin: 0 0 12px;
  color: #172033;
  font-size: 24px;
  line-height: 1.25;
}
.seo-product-card p { margin: 0 0 13px; color: #526077; font-size: 14px; }
.seo-product-kicker { color: var(--seo-muted) !important; font-size: 12px !important; text-transform: uppercase; letter-spacing: .04em; font-weight: 700; }
.seo-price { color: #111827 !important; font-size: 22px !important; font-weight: 850; }
.seo-rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  border-radius: 9px;
  background: #fff8e8;
  color: #875700 !important;
  font-weight: 800;
}
.seo-product-card .seo-button { width: 100%; margin-top: 5px; }

.seo-faq-section { margin-top: 34px; padding-top: 34px; border-top: 1px solid #e8efec; }
.seo-faq-list { display: grid; gap: 10px; margin-top: 16px; }
.seo-faq-item {
  overflow: hidden;
  border: 1px solid var(--seo-border);
  border-radius: 13px;
  background: #fbfcfe;
}
.seo-faq-item summary {
  position: relative;
  padding: 17px 48px 17px 18px;
  cursor: pointer;
  list-style: none;
  color: #1c2638;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}
.seo-faq-item summary::-webkit-details-marker { display: none; }
.seo-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--seo-accent);
  font-size: 24px;
  font-weight: 500;
}
.seo-faq-item[open] summary::after { content: "-"; }
.seo-faq-answer { padding: 0 18px 16px; }
.seo-faq-answer p:last-child { margin-bottom: 0; }

.seo-footer-note {
  margin-top: 26px;
  padding: 18px 0 0;
  border-top: 1px solid var(--seo-border);
  color: var(--seo-muted);
  font-size: 12px;
}

/* Country landing page */
.seo-country-header {
  margin-bottom: 28px;
  padding: 34px 0 4px;
}
.seo-country-header h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1.1;
  letter-spacing: -.03em;
}
.seo-country-header p { max-width: 720px; margin: 0; color: var(--seo-muted); font-size: 18px; }
.seo-country-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.seo-country-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--seo-radius);
  border-top: 3px solid #1eb087;
  transition: transform .16s ease, box-shadow .16s ease;
}
.seo-country-card:hover { transform: translateY(-3px); box-shadow: var(--seo-shadow); }
.seo-country-card h2 { margin: 0 0 12px; font-size: 23px; line-height: 1.28; }
.seo-country-card h2 a { color: var(--seo-text) !important; text-decoration: none; }
.seo-country-card h2 a:hover { color: var(--seo-accent) !important; }
.seo-country-card p { color: var(--seo-muted); }
.seo-country-deal {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 10px;
  padding: 6px 9px;
  border-radius: 8px;
  background: #e8f8f2;
  color: var(--seo-accent-dark) !important;
  font-size: 13px;
  font-weight: 800;
}
.seo-country-card .seo-button { margin-top: auto; align-self: flex-start; }

@media (max-width: 980px) {
  .seo-layout { grid-template-columns: minmax(0, 1fr) 285px; gap: 20px; }
  .seo-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seo-country-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .seo-topbar-inner,
  .seo-wrap { width: min(100% - 28px, 1180px); }
  .seo-topbar-inner { min-height: 64px; }
  .seo-logo img { width: 165px; }
  .seo-wrap { padding-top: 18px; padding-bottom: 48px; }
  .seo-hero { padding: 24px 20px; border-radius: 18px; }
  .seo-hero h1 { font-size: clamp(31px, 10vw, 42px); }
  .seo-deal { grid-template-columns: 1fr; padding: 18px; }
  .seo-deal .seo-button { width: 100%; }
  .seo-facts { grid-template-columns: 1fr 1fr; }
  .seo-fact { min-height: 92px; }
  .seo-layout { grid-template-columns: 1fr; }
  .seo-product-card { position: static; }
  .seo-article { padding: 24px 20px; }
  .seo-country-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .seo-country-link { font-size: 12px; }
  .seo-facts { grid-template-columns: 1fr; }
  .seo-fact { min-height: 0; }
  .seo-breadcrumbs { font-size: 12px; }
}

/* 2026-09-07: localized coupon identity, flags and automatic homepage */
body.seo-home-page {
  margin: 0;
  background: var(--seo-bg);
  color: var(--seo-text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.seo-home-page a { color: var(--seo-accent); }
.seo-home-nav { display: flex; align-items: center; gap: 20px; }
.seo-home-nav a { color: var(--seo-text) !important; font-size: 14px; font-weight: 800; text-decoration: none; }
.seo-nav-flag { font-size: 20px; line-height: 1; }
.seo-country-link::before { display: none; }

.seo-brand-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 16px; }
.seo-brand-identity { display: flex; align-items: center; gap: 16px; }
.seo-brand-logo {
  display: flex; width: 112px; height: 112px; flex: 0 0 112px; align-items: center; justify-content: center;
  padding: 11px; border: 1px solid #cfe5de; border-radius: 20px; background: #fff; box-shadow: 0 9px 24px rgba(23,49,43,.08);
}
.seo-brand-logo img { display: block; max-width: 100%; max-height: 100%; object-fit: contain; }
.seo-brand-logo-fallback { padding: 0; background: #e8f8f2; color: var(--seo-accent-dark); font-size: 34px; font-weight: 900; }
.seo-local-brand { margin-bottom: 7px; color: #253046; font-size: 16px; font-weight: 850; }
.seo-big-flag { margin-right: 5px; font-size: 25px; vertical-align: -2px; }

.seo-coupon-card {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 820px);
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin: 34px auto 4px;
  padding: clamp(24px, 4vw, 34px);
  border: 2px solid var(--seo-accent);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% -20%, rgba(30,176,135,.18), transparent 48%),
    linear-gradient(180deg,#ffffff 0%,#edf9f5 100%);
  box-shadow: 0 18px 42px rgba(20,121,95,.15);
  text-align: center;
}
.seo-coupon-card::before {
  content: "Featured coupon";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--seo-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
  white-space: nowrap;
}
.seo-coupon-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #315c51;
  font-size: 16px;
}
.seo-coupon-brand strong { color: #153b31; font-size: 15px; }
.seo-coupon-brand-logo {
  display: inline-flex;
  width: 84px;
  height: 64px;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: 1px solid #cfe5de;
  border-radius: 8px;
  background: #fff;
}
.seo-coupon-brand-logo img { display: block; max-width: 100%; max-height: 100%; object-fit: contain; }
.seo-coupon-main { min-width: 0; }
.seo-coupon-card .seo-deal-label { color: #467066; }
.seo-coupon-card .seo-deal-value {
  margin-top: 5px;
  color: #0f5e4a;
  font-size: clamp(30px,4.5vw,46px);
  line-height: 1.08;
}
.seo-coupon-status {
  display: inline-flex;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff4dc;
  color: #805b16;
  font-size: 12px;
  font-weight: 800;
}
.seo-coupon-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
}
.seo-code-wrap { display: grid; min-width: 280px; grid-template-columns: minmax(0, 1fr) auto; grid-template-areas: "code button"; align-items: stretch; overflow: hidden; border: 2px dashed #67c7ad; border-radius: 13px; background: #fff; box-shadow: 0 7px 18px rgba(30,176,135,.08); }
.seo-coupon-code { grid-area: code; display: flex; align-items: center; padding: 13px 16px; background: transparent; color: #14372f; font-family: ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; font-size: 21px; font-weight: 950; letter-spacing: .055em; }
.seo-copy-button { grid-area: button; align-self: stretch; justify-self: stretch; display: flex; align-items: center; justify-content: center; padding: 8px 15px; border: 0; border-left: 1px dashed #fff; background: #c52fae; color: #faf0ff; cursor: pointer; font-weight: 900; font-size: 16px;}
.seo-copy-button:hover { background: #a92796; }
.seo-side-local { display: inline-flex; margin-bottom: 13px; padding: 5px 8px; border-radius: 8px; background: #f3f5f8; color: var(--seo-muted); font-size: 12px; font-weight: 800; }
.seo-side-deal { color: var(--seo-accent-dark) !important; font-size: 21px !important; font-weight: 900; }
.seo-side-code { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 12px 0; padding: 10px 12px; border: 1px dashed #83cdb8; border-radius: 10px; background: #f4fbf8; }
.seo-side-code span { color: var(--seo-muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.seo-side-code strong { font-family: ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; font-size: 16px; }

.seo-country-hero { display: flex; align-items: center; gap: 22px; padding: 28px 0 8px; }
.seo-country-flag { font-size: clamp(54px,8vw,86px); line-height: 1; filter: drop-shadow(0 8px 14px rgba(23,32,51,.12)); }
.seo-offer-card { min-height: 330px; }
.seo-offer-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.seo-card-logo { display: flex; width: 92px; height: 66px; align-items: center; justify-content: center; padding: 8px; border: 1px solid #cfe5de; border-radius: 13px; background: #fff; box-shadow: 0 6px 16px rgba(23,49,43,.06); }
.seo-card-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.seo-card-logo-fallback { background: #e8f8f2; color: var(--seo-accent-dark); font-size: 24px; font-weight: 900; }
.seo-card-country { color: var(--seo-muted); font-size: 12px; font-weight: 850; }
.seo-card-code { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 4px 0 14px; padding: 9px 10px; border: 1px dashed #83cdb8; border-radius: 9px; background: #f4fbf8; }
.seo-card-code span { color: var(--seo-muted); font-size: 10px; font-weight: 850; text-transform: uppercase; }
.seo-card-code strong { font-family: ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; }
.seo-card-expiry { margin-top: auto; margin-bottom: 12px; color: var(--seo-muted); font-size: 12px; }

.seo-home-hero { position: relative; overflow: hidden; border-bottom: 1px solid #d6e7e1; background: radial-gradient(circle at 84% 10%,rgba(30,176,135,.17),transparent 28%), linear-gradient(135deg,#fff 0%,#eef9f5 72%,#f7fbfa 100%); }
.seo-home-hero-inner { width: min(1180px,calc(100% - 40px)); margin: 0 auto; padding: clamp(58px,9vw,108px) 0 clamp(54px,8vw,92px); }
body.seo-home-page .seo-home-hero h1 {
  width: 100%;
  max-width: 100%;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.seo-home-hero p { max-width: 760px; margin: 0; color: #4e5a70; font-size: clamp(18px,2.3vw,22px); }
.seo-home-stats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.seo-home-stats span { padding: 8px 12px; border: 1px solid var(--seo-border); border-radius: 999px; background: rgba(255,255,255,.86); color: var(--seo-muted); font-size: 13px; }
.seo-home-stats strong { color: var(--seo-text); }
.seo-flag-strip { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 26px; }
.seo-flag-strip a { display: inline-flex; min-height: 40px; align-items: center; justify-content: center; gap: 7px; padding: 7px 11px; border: 1px solid var(--seo-border); border-radius: 11px; background: #fff; color: var(--seo-text) !important; font-size: 13px; font-weight: 800; line-height: 1.2; text-decoration: none; box-shadow: 0 5px 14px rgba(23,32,51,.04); transition: transform .15s ease, border-color .15s ease, background .15s ease; }
.seo-flag-strip a:hover { border-color: #9ed8c8; background: #f3fbf8; transform: translateY(-2px); }
.seo-flag-strip-flag { font-size: 22px; line-height: 1; }
.seo-home-wrap { padding-top: 58px; }
.seo-home-section { margin-bottom: 72px; scroll-margin-top: 90px; }
.seo-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 24px; }
.seo-section-heading h2, .seo-home-info h2 { margin: 10px 0 0; color: #111827; font-size: clamp(30px,4vw,44px); line-height: 1.08; letter-spacing: -.03em; }
.seo-section-heading > p { max-width: 520px; margin: 0; color: var(--seo-muted); }
.seo-home-country-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; }
.seo-home-country-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; min-height: 92px; padding: 16px; border: 1px solid var(--seo-border); border-radius: 15px; background: #fff; color: var(--seo-text) !important; text-decoration: none; box-shadow: var(--seo-shadow-small); transition: transform .15s ease,box-shadow .15s ease; }
.seo-home-country-card:hover { transform: translateY(-2px); box-shadow: var(--seo-shadow); }
.seo-home-country-flag { font-size: 34px; line-height: 1; }
.seo-home-country-copy { min-width: 0; }
.seo-home-country-copy strong, .seo-home-country-copy small { display: block; }
.seo-home-country-copy strong { font-size: 16px; }
.seo-home-country-copy small { margin-top: 2px; color: var(--seo-muted); font-size: 12px; }
.seo-home-arrow { color: var(--seo-accent); font-size: 20px; }
.seo-brand-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.seo-home-brand-card { overflow: hidden; border: 1px solid var(--seo-border); border-radius: 18px; background: #fff; box-shadow: var(--seo-shadow-small); }
.seo-home-brand-logo { display: flex; min-height: 168px; align-items: center; justify-content: center; padding: 28px; border-bottom: 1px solid var(--seo-border); background: linear-gradient(180deg,#fff 0%,#f2faf7 100%); }
.seo-home-brand-logo img { display: block; max-width: 210px; max-height: 104px; object-fit: contain; }
.seo-home-brand-logo span { display: flex; width: 80px; height: 80px; align-items: center; justify-content: center; border-radius: 20px; background: #e8f8f2; color: var(--seo-accent-dark); font-size: 38px; font-weight: 900; }
.seo-home-brand-body { padding: 22px; }
.seo-home-brand-meta { color: var(--seo-muted); font-size: 11px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.seo-home-brand-body h3 { margin: 7px 0 8px; font-size: 25px; }
.seo-home-brand-body p { margin: 10px 0 16px; color: var(--seo-muted); }
.seo-home-brand-deal { display: inline-flex; padding: 5px 8px; border-radius: 8px; background: #e8f8f2; color: var(--seo-accent-dark); font-size: 13px; font-weight: 850; }
.seo-text-link { font-weight: 850; text-decoration: none; }
.seo-home-info { margin-bottom: 24px; padding: clamp(26px,5vw,48px); border: 1px solid var(--seo-border); border-radius: 24px; background: #fff; box-shadow: var(--seo-shadow-small); }
.seo-home-info-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; margin-top: 30px; }
.seo-home-info-grid > div { padding: 18px; border-radius: 14px; background: #f8fafc; }
.seo-home-info-grid strong { font-size: 17px; }
.seo-home-info-grid p { margin: 8px 0 0; color: var(--seo-muted); }
.seo-empty-state { padding: 28px; border: 1px dashed #cfd6e0; border-radius: 16px; background: #fff; color: var(--seo-muted); }

@media (max-width: 980px) {
  .seo-coupon-card { grid-template-columns: 1fr; }
  .seo-coupon-actions { justify-content: flex-start; }
  .seo-home-country-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .seo-brand-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .seo-home-info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .seo-coupon-brand-logo { width: 70px; height: 52px; }
  .seo-home-nav { gap: 11px; }
  .seo-home-nav a { font-size: 12px; }
  .seo-brand-logo { width: 76px; height: 76px; flex-basis: 76px; border-radius: 16px; }
  .seo-country-hero { align-items: flex-start; }
  .seo-country-flag { font-size: 54px; }
  .seo-coupon-card { padding: 18px; }
  .seo-coupon-actions, .seo-code-wrap, .seo-coupon-actions .seo-button { width: 100%; }
  .seo-code-wrap { grid-template-columns: 1fr auto; }
  .seo-section-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
  .seo-home-country-grid, .seo-brand-grid { grid-template-columns: 1fr; }
  .seo-home-hero-inner, .seo-wrap, .seo-topbar-inner { width: min(100% - 28px,1180px); }
}
.seo-visible-status { padding: 8px 10px; border-radius: 9px; background: #f8fafc; color: var(--seo-muted) !important; font-size: 12px !important; }
.seo-visible-status strong { color: var(--seo-text); }

/* 2026-09-07: multiple coupons per localized brand page */
.seo-extra-coupons-section {
  margin-top: 28px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--seo-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--seo-shadow-small);
}
.seo-extra-coupons-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}
.seo-extra-coupons-heading h2 {
  margin: 10px 0 0;
  color: #111827;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.12;
  letter-spacing: -.028em;
}
.seo-extra-coupons-heading > p {
  max-width: 360px;
  margin: 0;
  color: var(--seo-muted);
  font-size: 14px;
}
.seo-extra-coupon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.seo-extra-coupon {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #c9e4db;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff 0%, #f5fbf8 100%);
}
.seo-extra-coupon-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.seo-extra-coupon-badge {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e8f8f2;
  color: var(--seo-accent-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.seo-extra-coupon-expiry {
  color: var(--seo-muted);
  font-size: 12px;
  font-weight: 700;
}
.seo-extra-coupon h3 {
  margin: 0 0 8px;
  color: #172033;
  font-size: 22px;
  line-height: 1.25;
}
.seo-extra-coupon p {
  margin: 0 0 16px;
  color: #526078;
}
.seo-extra-coupon-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  margin-top: auto;
}
.seo-extra-code-wrap {
  flex: 1 1 250px;
  min-width: 0;
}
.seo-extra-coupon-actions .seo-button {
  flex: 0 0 auto;
}

@media (max-width: 800px) {
  .seo-extra-coupons-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .seo-extra-coupon-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .seo-extra-coupons-section { padding: 18px; }
  .seo-extra-coupon { padding: 16px; }
  .seo-extra-coupon-actions,
  .seo-extra-code-wrap,
  .seo-extra-coupon-actions .seo-button { width: 100%; }
}

/* 2026-09-07: clean global navigation, interlinking and footer */
.seo-global-nav{display:flex;align-items:center;justify-content:flex-end;gap:18px;min-width:0}
.seo-global-nav>a{color:var(--seo-text)!important;font-size:14px;font-weight:800;text-decoration:none;white-space:nowrap}
.seo-global-nav>a:not(.seo-country-link):hover,.seo-global-nav>a:not(.seo-country-link):focus{color:var(--seo-accent-dark)!important}
.seo-coupon-title{max-width:680px;margin:9px auto 0;color:#40564f;font-size:15px;font-weight:800;line-height:1.45}
.seo-country-intro{max-width:850px;color:#4e5f59;font-size:17px}
.seo-country-intro p{margin:0 0 10px}
.seo-country-section-heading{margin-top:34px}
.seo-brand-country-links{display:flex;flex-wrap:wrap;gap:8px;margin-top:16px}
.seo-brand-country-links a{display:inline-flex;align-items:center;justify-content:center;min-width:52px;padding:7px 10px;border:1px solid #cfe4dd;border-radius:999px;background:#f5fbf9;color:#1f5e4e!important;font-size:12px;font-weight:900;text-decoration:none}
.seo-brand-country-links a:hover{border-color:var(--seo-accent);background:#eaf8f4}
.seo-link-side{display:grid;gap:16px;position:static;top:auto}
.seo-link-panel{padding:20px;border:1px solid var(--seo-border);border-radius:var(--seo-radius);background:#fff;box-shadow:var(--seo-shadow-small)}
.seo-link-panel h2{margin:5px 0 9px;color:#172033;font-size:22px;line-height:1.22}
.seo-link-panel p{margin:0 0 15px;color:var(--seo-muted);font-size:14px}
.seo-button-secondary{width:100%;background:#18312c;box-shadow:none}
.seo-button-secondary:hover,.seo-button-secondary:focus{background:#0f5e4a}
.seo-side-links{display:grid;gap:0;margin-top:14px;border-top:1px solid #edf2f0}
.seo-side-links a{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:10px 2px;border-bottom:1px solid #edf2f0;color:#2b4a42!important;font-size:14px;font-weight:800;text-decoration:none}
.seo-side-links a:hover{color:var(--seo-accent-dark)!important}
.seo-related-section{margin-top:56px;padding-top:30px;border-top:1px solid var(--seo-border)}
.seo-country-chip-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.seo-country-chip{display:grid;grid-template-columns:auto 1fr;column-gap:10px;align-items:center;padding:14px 15px;border:1px solid var(--seo-border);border-radius:14px;background:#fff;color:var(--seo-text)!important;text-decoration:none;box-shadow:var(--seo-shadow-small)}
.seo-country-chip>span{grid-row:1/3;font-size:28px}.seo-country-chip strong,.seo-country-chip small{display:block}.seo-country-chip small{color:var(--seo-muted);font-size:11px}.seo-country-chip:hover{border-color:#9ed8c8;transform:translateY(-1px)}
.seo-site-footer{margin-top:20px;border-top:1px solid #d8e7e2;background:#12372e;color:#dceae6}
.seo-site-footer .seo-wrap{padding-top:46px;padding-bottom:38px}
.seo-footer-grid{display:grid;grid-template-columns:1.15fr 1fr 1fr;gap:44px}
.seo-site-footer h2{margin:0 0 14px;color:#fff;font-size:15px;text-transform:uppercase;letter-spacing:.06em}
.seo-footer-about strong{display:block;color:#fff;font-size:20px}.seo-footer-about p{max-width:390px;margin:10px 0;color:#b7cec7;font-size:14px}.seo-footer-about a{color:#77ddbf!important;font-weight:850;text-decoration:none}
.seo-footer-links{display:flex;flex-wrap:wrap;gap:8px 12px}.seo-footer-links a{color:#dceae6!important;font-size:13px;text-decoration:none}.seo-footer-links a:hover,.seo-footer-links a[aria-current="page"]{color:#75e0c0!important;text-decoration:underline}
.seo-footer-bottom{padding:14px 20px;border-top:1px solid rgba(255,255,255,.1);color:#9db8b0;font-size:12px;text-align:center}

@media(max-width:980px){
  .seo-global-nav{gap:11px}.seo-global-nav>a{font-size:12px}
  .seo-country-chip-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .seo-footer-grid{grid-template-columns:1fr 1fr}.seo-footer-about{grid-column:1/-1}
  .seo-link-side{position:static}
}
@media(max-width:680px){
  .seo-topbar-inner{align-items:flex-start;flex-direction:column;gap:10px;padding:12px 0}.seo-global-nav{width:100%;justify-content:flex-start;flex-wrap:wrap;gap:8px 14px}.seo-country-link{padding:5px 9px}
  .seo-country-chip-grid,.seo-footer-grid{grid-template-columns:1fr}
  .seo-footer-about{grid-column:auto}
}

/* Text fallback when no custom site logo has been uploaded. */
.seo-logo-text {
  display: inline-block;
  color: #143b34;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1;
}

.seo-review-section + .seo-faq-section{border-top:1px solid #e8efec}
.seo-extra-coupon-description p{margin:0 0 10px;color:#56655f}
.seo-extra-coupon-description p:last-child{margin-bottom:0}
@media(max-width:680px){.seo-article h2{padding:11px 14px 12px 16px;border-left-width:3px}.seo-article h2::after{left:16px}.seo-review-section + .seo-review-section,.seo-review-section + .seo-faq-section,.seo-faq-section{margin-top:26px;padding-top:26px}}

/* Shopping facts belong in the sidebar, not in the primary coupon hero. */
.seo-shopping-panel {
  border-top: 3px solid var(--seo-accent);
}
.seo-shopping-panel .seo-eyebrow {
  margin-bottom: 4px;
}
.seo-shopping-facts {
  display: grid;
  gap: 0;
  margin-top: 14px;
  border-top: 1px solid #e8efec;
}
.seo-shopping-fact {
  display: grid;
  gap: 3px;
  padding: 12px 0;
  border-bottom: 1px solid #e8efec;
}
.seo-shopping-fact span {
  color: var(--seo-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.seo-shopping-fact strong {
  color: #1d2738;
  font-size: 15px;
  line-height: 1.4;
}


/* Brand hero: logo + H1 on the same row. */
.seo-hero-brand-heading {
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 1000px;
  margin-bottom: 14px;
}
.seo-hero-brand-title { min-width: 0; }
.seo-hero-brand-title .seo-local-brand { margin-bottom: 4px; }
.seo-hero-brand-title h1 {
  width: 100%;
  max-width: 900px;
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  text-align: left;
}

.seo-brand-logo-fallback { display: none; }

@media (max-width: 640px) {
  .seo-hero-brand-heading { align-items: flex-start; gap: 14px; }
  .seo-hero-brand-heading .seo-brand-logo { width: 76px; height: 76px; flex-basis: 76px; padding: 7px; border-radius: 16px; }
  .seo-hero-brand-title h1 { font-size: 28px; line-height: 1.2; }
  .seo-hero-brand-title .seo-local-brand { font-size: 13px; }
}

/* 2026-09-08: country-first brand search on homepage */
.seo-brand-search {
  position: relative;
  z-index: 4;
  width: min(100%, 880px);
  margin-top: 30px;
  padding: 20px;
  border: 1px solid #bfe2d7;
  border-radius: 20px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 38px rgba(20,121,95,.12);
}
.seo-brand-search-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}
.seo-brand-search-heading strong { color: #173a31; font-size: 18px; }
.seo-brand-search-heading span { color: var(--seo-muted); font-size: 13px; }
.seo-brand-search-fields {
  display: grid;
  grid-template-columns: minmax(210px,.72fr) minmax(320px,1.5fr);
  gap: 12px;
  align-items: end;
}
.seo-search-field { display: grid; gap: 6px; min-width: 0; }
.seo-search-field > span,
.seo-search-field > label {
  color: #38554d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.seo-search-field select,
.seo-search-field input {
  width: 100%;
  height: 54px;
  border: 1px solid #c9ddd7;
  border-radius: 13px;
  background: #fff;
  color: #18312c;
  font: inherit;
  font-size: 15px;
  font-weight: 750;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.seo-search-field select { padding: 0 42px 0 14px; cursor: pointer; }
.seo-search-field input { padding: 0 16px; }
.seo-search-field input:disabled { cursor: not-allowed; background: #f4f6f5; color: #8a9691; }
.seo-search-field select:focus,
.seo-search-field input:focus {
  border-color: var(--seo-accent);
  box-shadow: 0 0 0 4px rgba(30,176,135,.12);
}
.seo-brand-combobox { position: relative; }
.seo-brand-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 40;
  overflow: hidden;
  max-height: 350px;
  overflow-y: auto;
  border: 1px solid #c9ddd7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(23,49,43,.18);
}
.seo-brand-result {
  display: grid;
  width: 100%;
  grid-template-columns: 54px minmax(0,1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border: 0;
  border-bottom: 1px solid #edf2f0;
  background: #fff;
  color: var(--seo-text);
  cursor: pointer;
  text-align: left;
}
.seo-brand-result:last-child { border-bottom: 0; }
.seo-brand-result:hover,
.seo-brand-result.is-active { background: #eef9f5; }
.seo-brand-result-logo {
  display: flex;
  width: 54px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border: 1px solid #d4e6e0;
  border-radius: 10px;
  background: #fff;
}
.seo-brand-result-logo img { display: block; max-width: 100%; max-height: 100%; object-fit: contain; }
.seo-brand-result-logo-fallback { padding: 0; background: #e8f8f2; color: var(--seo-accent-dark); font-size: 20px; font-weight: 900; }
.seo-brand-result-copy { min-width: 0; }
.seo-brand-result-copy strong,
.seo-brand-result-copy small { display: block; }
.seo-brand-result-copy strong { overflow: hidden; color: #18312c; font-size: 15px; text-overflow: ellipsis; white-space: nowrap; }
.seo-brand-result-copy small { margin-top: 2px; color: var(--seo-accent-dark); font-size: 12px; font-weight: 800; }
.seo-brand-result-arrow { color: var(--seo-accent); font-size: 20px; font-weight: 900; }
.seo-brand-result-empty { padding: 17px; color: var(--seo-muted); font-size: 14px; }
.seo-brand-search-hint { margin-top: 10px; color: var(--seo-muted); font-size: 12px; }

@media(max-width:720px){
  .seo-brand-search { padding: 16px; }
  .seo-brand-search-heading { align-items: flex-start; flex-direction: column; gap: 3px; }
  .seo-brand-search-fields { grid-template-columns: 1fr; }
  .seo-search-field select,
  .seo-search-field input { height: 52px; }
}

/* 2026-09-08: automatic offer metadata derived from existing coupon content. */
.seo-brand-auto-meta {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 8px;
  margin: 10px 0 12px;
}
.seo-brand-auto-meta span,
.seo-offer-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid #c9e4db;
  border-radius: 999px;
  background: #f2faf7;
  color: #285e50;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}
.seo-brand-auto-meta span { gap: 4px; }
.seo-brand-auto-meta strong { color: #123f34; margin: 0 1px; }
.seo-offer-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin: -2px 0 0;
}
.seo-extra-coupon .seo-offer-chips,
.seo-country-offer-chips {
  justify-content: flex-start;
  margin: 2px 0 13px;
}
.seo-coupon-conditions {
  width: min(100%, 680px);
  margin: -2px auto 0;
  border-top: 1px solid #dceae5;
  color: #52665f;
  text-align: left;
}
.seo-coupon-conditions summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 0 3px;
  color: #286554;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  list-style: none;
}
.seo-coupon-conditions summary::-webkit-details-marker { display: none; }
.seo-coupon-conditions summary::after { content: "+"; font-size: 16px; }
.seo-coupon-conditions[open] summary::after { content: "-"; }
.seo-coupon-conditions > div { padding: 5px 0 3px; }
.seo-coupon-conditions p { margin: 0 0 9px; color: #52665f; font-size: 13px; }
.seo-extra-coupon .seo-coupon-conditions {
  width: 100%;
  margin: 0 0 14px;
}
.seo-page-updated {
  margin-top: 34px;
  padding-top: 16px;
  border-top: 1px solid #e8efec;
  color: var(--seo-muted);
  font-size: 12px;
}
@media (max-width: 640px) {
  .seo-brand-auto-meta { gap: 8px; }
  .seo-brand-auto-meta span,
  .seo-offer-chips span { font-size: 11px; }
}


/* 2026-09-08: polished country hub layout (/ro/, /de/, etc.). */
.seo-country-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 22px;
  margin: 22px 0 34px;
}

.seo-country-local-panel {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--seo-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--seo-shadow-small);
}

.seo-country-local-panel > h2 {
  margin: 10px 0 10px;
  color: #172c27;
  font-size: clamp(24px, 3vw, 31px);
  line-height: 1.18;
  letter-spacing: -.025em;
}

.seo-country-local-panel > div:not(.seo-eyebrow):not(.seo-country-local-facts):not(.seo-country-brand-list) {
  color: #52635d;
}

.seo-country-local-panel p { margin: 0 0 12px; }
.seo-country-local-panel p:last-child { margin-bottom: 0; }

.seo-country-local-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.seo-country-local-fact {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border: 1px solid #d9e9e4;
  border-radius: 13px;
  background: #f7fbf9;
}

.seo-country-local-fact span {
  color: var(--seo-muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.seo-country-local-fact strong {
  color: #193c33;
  font-size: 14px;
  line-height: 1.35;
}

.seo-country-brand-list {
  display: grid;
  gap: 9px;
  margin-top: 17px;
}

.seo-country-brand-link {
  display: grid;
  grid-template-columns: 52px minmax(0,1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid #dce9e5;
  border-radius: 13px;
  background: #fbfdfc;
  color: var(--seo-text) !important;
  text-decoration: none;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}

.seo-country-brand-link:hover {
  border-color: #9dd8c8;
  background: #eef9f5;
  transform: translateY(-1px);
}

.seo-country-brand-mini-logo {
  display: flex;
  width: 52px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border: 1px solid #d5e6e1;
  border-radius: 9px;
  background: #fff;
}

.seo-country-brand-mini-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.seo-country-brand-link > span:nth-child(2) { min-width: 0; }
.seo-country-brand-link strong,
.seo-country-brand-link small { display: block; }
.seo-country-brand-link strong { color: #18312c; font-size: 15px; }
.seo-country-brand-link small { margin-top: 2px; color: var(--seo-muted); font-size: 11px; }
.seo-country-brand-link > span:last-child { color: var(--seo-accent); font-size: 20px; font-weight: 900; }

.seo-country-coupon-section {
  margin: 34px 0 0;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--seo-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--seo-shadow-small);
}

.seo-country-coupon-section .seo-section-heading {
  align-items: flex-start;
  margin-bottom: 22px;
}

.seo-country-coupon-section .seo-section-heading h2 {
  margin: 9px 0 0;
  color: #172c27;
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.seo-country-coupon-section .seo-country-intro {
  max-width: 480px;
  font-size: 14px;
  line-height: 1.6;
}

.seo-country-coupon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.seo-country-coupon-item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #cfe4dd;
  border-radius: 17px;
  background: linear-gradient(145deg, #fff 0%, #f4fbf8 100%);
  box-shadow: 0 7px 20px rgba(23,49,43,.05);
}

.seo-country-coupon-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.seo-country-coupon-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: #244b40;
  font-size: 14px;
  font-weight: 850;
}

.seo-country-coupon-logo {
  display: inline-flex;
  width: 60px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border: 1px solid #d2e4de;
  border-radius: 10px;
  background: #fff;
}

.seo-country-coupon-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.seo-country-coupon-badge {
  flex: 0 0 auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--seo-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.seo-country-coupon-item h3 {
  margin: 0 0 9px;
  color: #172033;
  font-size: 20px;
  line-height: 1.3;
}

.seo-country-coupon-item > p {
  margin: 0 0 14px;
  color: #56665f;
  font-size: 14px;
  line-height: 1.55;
}

.seo-country-coupon-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding: 10px 11px;
  border: 1px dashed #78c9b3;
  border-radius: 11px;
  background: #f4fbf8;
}

.seo-country-coupon-code strong {
  overflow: hidden;
  color: #14372f;
  font-family: ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: .035em;
  text-overflow: ellipsis;
}

.seo-country-coupon-code a {
  flex: 0 0 auto;
  color: var(--seo-accent-dark) !important;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.seo-country-coupon-code a:hover { text-decoration: underline; }

.seo-country-coupon-meta {
  margin-top: 10px;
  color: var(--seo-muted);
  font-size: 11px;
}

.seo-country-editorial {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.seo-country-editorial-section {
  padding: clamp(22px, 3.5vw, 34px);
  border: 1px solid var(--seo-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--seo-shadow-small);
}

.seo-country-editorial-section h2 {
  position: relative;
  margin: 0 0 18px;
  padding: 11px 16px 12px 18px;
  border-left: 4px solid var(--seo-accent);
  border-radius: 0 11px 11px 0;
  background: linear-gradient(90deg, #eef9f5 0%, #f8fcfa 68%, transparent 100%);
  color: #172c27;
  font-size: clamp(24px, 3vw, 31px);
  line-height: 1.2;
  letter-spacing: -.022em;
}

.seo-country-editorial-section p {
  max-width: 860px;
  margin: 0 0 15px;
  color: #46584f;
}
.seo-country-editorial-section p:last-child { margin-bottom: 0; }

.seo-country-faq {
  margin-top: 34px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--seo-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--seo-shadow-small);
}

.seo-country-faq > h2 {
  margin: 10px 0 0;
  color: #172c27;
  font-size: clamp(27px, 3.7vw, 38px);
  line-height: 1.15;
  letter-spacing: -.025em;
}

.seo-country-faq .seo-faq-list { margin-top: 20px; }

@media (max-width: 900px) {
  .seo-country-overview-grid { grid-template-columns: 1fr; }
  .seo-country-coupon-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .seo-home-hero h1 { font-size: clamp(32px, 10vw, 44px); }
  .seo-country-overview-grid { margin-top: 16px; gap: 14px; }
  .seo-country-local-panel,
  .seo-country-coupon-section,
  .seo-country-faq { padding: 18px; border-radius: 16px; }
  .seo-country-local-facts { grid-template-columns: 1fr; }
  .seo-country-coupon-item { padding: 16px; }
  .seo-country-coupon-code { align-items: flex-start; flex-direction: column; }
  .seo-country-editorial-section { padding: 20px 18px; }
}

/* 2026-09-08: isolated country-hub layout fixes. These rules are scoped to /country/ pages only. */
body.seo-country-page .seo-country-header.seo-country-hero {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  column-gap: 32px;
  row-gap: 8px;
  margin-bottom: 26px;
  padding: 30px 0 18px;
}

body.seo-country-page .seo-country-header .seo-country-flag {
  display: flex;
  width: 104px;
  height: 104px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--seo-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--seo-shadow-small);
  font-size: 64px;
  line-height: 1;
  filter: none;
}

body.seo-country-page .seo-country-header > div:last-child {
  min-width: 0;
}

body.seo-country-page .seo-country-header .seo-eyebrow {
  margin-bottom: 9px;
}

body.seo-country-page .seo-country-header h1 {
  margin: 0 0 12px;
  max-width: 880px;
  color: #172c27;
  font-size: clamp(34px, 4.6vw, 50px);
  line-height: 1.08;
  letter-spacing: -.032em;
}

body.seo-country-page .seo-country-header .seo-country-intro {
  max-width: 800px;
  margin: 0;
  color: #52635d;
  font-size: 17px;
  line-height: 1.65;
}

/* Keep the two overview panels clearly separated from the hero. */
body.seo-country-page .seo-country-overview-grid {
  align-items: stretch;
  gap: 22px;
  margin-top: 0;
}

body.seo-country-page .seo-country-local-panel {
  height: 100%;
}

/* Country coupon cards: self-contained and unaffected by legacy .seo-country-card rules. */
body.seo-country-page .seo-country-coupon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 18px;
}

body.seo-country-page .seo-country-coupon-item {
  display: flex;
  min-width: 0;
  min-height: 300px;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #cfe4dd;
  border-top: 3px solid var(--seo-accent);
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--seo-shadow-small);
}

body.seo-country-page .seo-country-coupon-head {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 15px;
}

body.seo-country-page .seo-country-coupon-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
  color: #244b40;
  font-size: 16px;
  font-weight: 850;
}

body.seo-country-page .seo-country-coupon-brand > span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.seo-country-page .seo-country-coupon-logo {
  display: flex;
  width: 72px;
  height: 54px;
  flex: 0 0 72px;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: 1px solid #d2e4de;
  border-radius: 11px;
  background: #fff;
}

body.seo-country-page .seo-country-coupon-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

body.seo-country-page .seo-country-coupon-item h3 {
  margin: 0 0 10px;
  color: #172033;
  font-size: 21px;
  line-height: 1.28;
}

body.seo-country-page .seo-country-offer-chips {
  justify-content: flex-start;
  margin: 0 0 12px;
}

body.seo-country-page .seo-country-coupon-item > p {
  margin: 0 0 16px;
  color: #56665f;
  font-size: 14px;
  line-height: 1.6;
}

body.seo-country-page .seo-country-coupon-code {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  margin-top: auto;
  padding: 0;
  border: 1px dashed #78c9b3;
  border-radius: 11px;
  background: #f4fbf8;
}

body.seo-country-page .seo-country-coupon-code strong {
  display: flex;
  min-width: 0;
  align-items: center;
  padding: 11px 13px;
  overflow: hidden;
  color: #14372f;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: .035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.seo-country-page .seo-country-coupon-code a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  border-left: 1px dashed #78c9b3;
  background: #e8f7f2;
  color: #126c58 !important;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

body.seo-country-page .seo-country-coupon-code a:hover,
body.seo-country-page .seo-country-coupon-code a:focus {
  background: #d9f1e9;
  text-decoration: none;
}

body.seo-country-page .seo-country-coupon-meta {
  margin-top: 10px;
  color: var(--seo-muted);
  font-size: 11px;
}

/* Brand summary rows: give logo and copy enough breathing room. */
body.seo-country-page .seo-country-brand-link {
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 14px;
  padding: 13px 14px;
}

body.seo-country-page .seo-country-brand-mini-logo {
  width: 64px;
  height: 48px;
}

body.seo-country-page .seo-country-brand-link strong {
  font-size: 16px;
  line-height: 1.3;
}

body.seo-country-page .seo-country-brand-link small {
  margin-top: 4px;
  line-height: 1.4;
}

@media (max-width: 680px) {
  body.seo-country-page .seo-country-header.seo-country-hero {
    grid-template-columns: 76px minmax(0, 1fr);
    column-gap: 18px;
    padding-top: 22px;
  }
  body.seo-country-page .seo-country-header .seo-country-flag {
    width: 76px;
    height: 76px;
    border-radius: 17px;
    font-size: 46px;
  }
  body.seo-country-page .seo-country-header h1 {
    font-size: clamp(29px, 8.5vw, 40px);
  }
  body.seo-country-page .seo-country-header .seo-country-intro {
    grid-column: 1 / -1;
    font-size: 16px;
  }
  body.seo-country-page .seo-country-coupon-grid {
    grid-template-columns: 1fr;
  }
  body.seo-country-page .seo-country-coupon-item {
    min-height: 0;
  }
  body.seo-country-page .seo-country-coupon-code {
    grid-template-columns: 1fr;
  }
  body.seo-country-page .seo-country-coupon-code a {
    border-top: 1px dashed #78c9b3;
    border-left: 0;
  }
}

/* Homepage H1: compact and full-width */
body.seo-home-page .seo-home-hero h1 {
  width: 100%;
  max-width: 100%;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.03em;
}

@media (max-width: 680px) {
  body.seo-home-page .seo-home-hero h1 {
    font-size: clamp(30px, 8.5vw, 40px);
  }
}

/* 2026-09-09: country-level How it works + Quick guide */
body.seo-country-page .seo-guide-section {
  margin-top: 34px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--seo-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--seo-shadow-small);
}
body.seo-country-page .seo-guide-section > h2 {
  margin: 10px 0 12px;
  color: #172c27;
  font-size: clamp(27px, 3.4vw, 38px);
  line-height: 1.16;
  letter-spacing: -.025em;
}
body.seo-country-page .seo-guide-intro {
  max-width: 780px;
  margin: 0 0 20px;
  color: #56655f;
}
body.seo-country-page .seo-guide-intro p,
body.seo-country-page .seo-how-copy p,
body.seo-country-page .seo-quick-guide-copy p { margin: 0 0 10px; }
body.seo-country-page .seo-guide-intro p:last-child,
body.seo-country-page .seo-how-copy p:last-child,
body.seo-country-page .seo-quick-guide-copy p:last-child { margin-bottom: 0; }
body.seo-country-page .seo-how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
body.seo-country-page .seo-how-step {
  min-width: 0;
  padding: 20px 17px 18px;
  border: 1px solid #cfe5de;
  border-radius: 15px;
  background: linear-gradient(180deg,#fff 0%,#f4fbf8 100%);
}
body.seo-country-page .seo-how-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
  border-radius: 10px;
  background: #1eb087;
  color: #fff;
  box-shadow: 0 7px 16px rgba(30,176,135,.18);
  font-size: 14px;
  font-weight: 900;
}
body.seo-country-page .seo-how-step h3,
body.seo-country-page .seo-quick-guide-card h3 {
  margin: 0 0 8px;
  color: #18312c;
  font-size: 17px;
  line-height: 1.32;
}
body.seo-country-page .seo-how-copy,
body.seo-country-page .seo-quick-guide-copy {
  color: #56655f;
  font-size: 14px;
  line-height: 1.62;
}
body.seo-country-page .seo-quick-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}
body.seo-country-page .seo-quick-guide-card {
  min-width: 0;
  padding: 19px 20px;
  border: 1px solid #d8e8e3;
  border-left: 4px solid #1eb087;
  border-radius: 14px;
  background: #fbfdfc;
}
@media (max-width: 980px) {
  body.seo-country-page .seo-how-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  body.seo-country-page .seo-guide-section { margin-top: 27px; padding: 19px; }
  body.seo-country-page .seo-how-grid,
  body.seo-country-page .seo-quick-guide-grid { grid-template-columns: 1fr; }
  body.seo-country-page .seo-how-step,
  body.seo-country-page .seo-quick-guide-card { padding: 17px; }
}

/* 2026-09-10: WCAG AA contrast fixes from PageSpeed Insights.
   Keep #1eb087 as the visual accent, but use darker tones where text sits on a background. */

/* Normal inline links need >= 4.5:1 on white/light surfaces. */
body.seo-review-page a,
body.seo-country-page a {
  color: var(--seo-accent-dark);
}

/* Primary CTA: white text on the old bright green gradient was below AA. */
.seo-button {
  background: linear-gradient(180deg, #16775f 0%, #12664f 100%);
  color: #fff !important;
}
.seo-button:hover,
.seo-button:focus {
  background: #0f5e4a;
}

/* Small white labels on bright accent backgrounds. */
.seo-coupon-card::before,
.seo-country-coupon-badge,
body.seo-country-page .seo-how-number {
  background: var(--seo-accent-dark);
  color: #fff;
}

/* Copy button was ~4.32:1; this is comfortably above AA. */
.seo-copy-button {
  background: #a92796;
  color: #fff;
}
.seo-copy-button:hover,
.seo-copy-button:focus {
  background: #8f1d78;
}

/* "Explore Romania" was just below 4.5:1. */
.seo-side-local {
  color: #52635d;
}

/* Decorative arrows/icons should use the darker interactive color too. */
.seo-home-arrow {
  color: var(--seo-accent-dark);
}

/* If an icon library injects inline SVGs, make UI icons inherit the
   accessible foreground color. Logos are intentionally excluded. */
.seo-global-nav a svg,
.seo-country-link svg,
.seo-copy-button svg,
.seo-article a svg,
.seo-side-local svg,
.seo-button svg {
  color: currentColor;
  fill: currentColor;
  stroke: currentColor;
}

/* 2026-09-10: breadcrumb / auxiliary text contrast */
.seo-breadcrumbs,
.seo-breadcrumbs a {
  color: #52635d !important;
}

.seo-breadcrumbs .sep {
  color: #66766f;
  opacity: 1;
}

/* Keep brand labels clearly readable in the hero. */
.seo-local-brand,
.seo-coupon-brand,
.seo-coupon-brand strong {
  color: #253f38;
}

