:root {
  --ink: #0d234c;
  --muted: #62718a;
  --line: #dbe3f0;
  --paper: #f6f8fc;
  --panel: #ffffff;
  --leaf: #f2a516;
  --leaf-dark: #102b64;
  --mint: #eef4ff;
  --amber: #f2a516;
  --coral: #ef806c;
  --blue: #2855a5;
  --navy: #071a3e;
  --gold: #f2a516;
  --gold-deep: #b86d00;
  --shadow: 0 22px 70px rgba(8, 26, 62, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.is-hidden {
  display: none !important;
}

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(7, 26, 62, 0.96);
  border-bottom: 1px solid rgba(242, 165, 22, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: clamp(186px, 18vw, 242px);
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.logo-tile {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--leaf-dark);
  font-weight: 900;
}

.logo-tile.small {
  width: 46px;
  height: 46px;
  border-radius: 14px;
}

.logo-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 7px;
  background: #fff;
}

.logo-tile span,
.logo-tile strong {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.logo-tile.has-logo span,
.logo-tile.has-logo strong,
.logo-tile.logo-missing img {
  display: none;
}

.brand small,
.store-grid small,
.meta {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.main-nav a {
  padding: 8px 0;
}

.main-nav a:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.primary-button {
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.icon-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 26px rgba(242, 165, 22, 0.3);
}

.secondary-button,
.danger-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
}

.danger-button {
  border-color: #f1c6bf;
  color: #a73728;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  padding: clamp(28px, 6vw, 70px);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 62, 0.92) 0%, rgba(7, 26, 62, 0.6) 48%, rgba(7, 26, 62, 0.18) 100%),
    url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero-content {
  position: relative;
  width: min(720px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffc553;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3rem, 9vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 570px;
  margin: 22px 0 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
  line-height: 1.6;
}

.search-panel {
  width: min(640px, 100%);
  padding: 12px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.search-panel label {
  display: block;
  padding: 4px 10px 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.search-row {
  display: flex;
  gap: 10px;
}

.search-row input {
  min-width: 0;
  flex: 1;
  height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  outline: 0;
}

.quick-strip,
.category-section,
.trending-section,
.stores-section,
.guide-section,
.app-banner,
.deals-layout {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.newsletter-section {
  margin-top: 42px;
  padding: clamp(34px, 5vw, 52px) 18px;
  background: var(--navy);
  color: #fff;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 6vw, 80px);
  width: min(1180px, 100%);
  margin-inline: auto;
}

.newsletter-inner h2 {
  max-width: 580px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.newsletter-copy {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.newsletter-form {
  flex: 0 1 470px;
}

.newsletter-form label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 800;
}

.newsletter-controls {
  display: flex;
  gap: 10px;
}

.newsletter-controls input {
  flex: 1;
  min-width: 0;
  height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  outline: 0;
}

.newsletter-controls .primary-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.newsletter-status {
  min-height: 22px;
  margin: 10px 0 0;
  color: #ffcf70;
  font-size: 0.88rem;
  font-weight: 750;
}

.newsletter-status.error {
  color: #ffb5a9;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: -52px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.quick-strip article {
  padding: 24px;
  background: var(--panel);
}

.quick-strip strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.quick-strip span {
  color: var(--muted);
  font-weight: 700;
}

.category-section,
.stores-section {
  padding: 74px 0 28px;
}

.trending-section {
  padding: 18px 0 30px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading.compact {
  align-items: start;
  margin-bottom: 18px;
}

.category-rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.category-chip {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #2f3a36;
  cursor: pointer;
  font-weight: 850;
}

.category-chip.active {
  border-color: var(--leaf);
  background: var(--leaf);
  color: var(--navy);
}

.favorites-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.favorites-chip .favorites-heart {
  color: var(--coral);
  font-size: 1.18rem;
  line-height: 1;
}

.favorites-chip strong {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--navy);
  font-size: 0.78rem;
}

.favorites-chip.active strong {
  background: rgba(7, 26, 62, 0.14);
}

.deals-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 24px;
  align-items: start;
  padding-top: 22px;
}

.trending-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.trending-card {
  display: grid;
  grid-template-columns: auto 46px 1fr;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}

.trending-rank {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff4df;
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 900;
}

.trending-details {
  grid-column: 1 / -1;
  min-width: 0;
}

.trending-details h3 {
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.trending-clicks {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.trending-card .shop-deal-button {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.spotlight,
.deal-board,
.guide-section,
.app-banner {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 14px 46px rgba(8, 26, 62, 0.08);
}

.spotlight {
  position: sticky;
  top: 100px;
  overflow: hidden;
  border-radius: 26px;
  padding: 26px;
}

.spotlight p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
}

.spotlight-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 22px 0;
  padding: 10px;
  border: 1px dashed var(--leaf);
  border-radius: 18px;
  background: #fff8eb;
}

.spotlight-code span,
.coupon-action span {
  font-weight: 900;
}

.spotlight-code button,
.coupon-action button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  font-weight: 850;
  padding: 0 14px;
}

.shop-deal-button {
  display: grid;
  place-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 850;
  width: 100%;
}

.spotlight img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
}

.deal-board {
  border-radius: 26px;
  padding: 26px;
}

.coupon-grid {
  display: grid;
  gap: 14px;
}

.coupon-card {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 126px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.coupon-card.is-hidden {
  display: none;
}

.empty-state {
  margin: 0;
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  background: #f7f9fd;
  color: var(--muted);
  font-weight: 750;
}

.store-name {
  margin: 0 0 6px;
  color: var(--leaf-dark);
  font-weight: 900;
}

.coupon-details {
  min-width: 0;
}

.coupon-store-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.coupon-store-row .store-name {
  margin: 0;
}

.favorite-button {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.42rem;
  line-height: 1;
}

.favorite-button:hover,
.favorite-button.active {
  border-color: #efb4ab;
  background: #fff1ef;
  color: #d84a3f;
}

.favorite-button:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

.trending-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff4df;
  color: #b86d00;
  font-size: 0.76rem;
  font-weight: 900;
}

.expiry {
  margin-top: 8px;
  color: #a73728;
  font-size: 0.82rem;
  font-weight: 800;
}

.coupon-action {
  display: grid;
  gap: 8px;
  justify-items: end;
  min-width: 142px;
}

.coupon-action span {
  width: 100%;
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  border: 1px dashed var(--leaf);
  border-radius: 999px;
  background: #fff9ed;
}

.coupon-action.muted span {
  border-color: #c9d3ce;
  background: #f2f4f2;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.store-grid a {
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  font-weight: 900;
}

.store-grid .logo-tile.small {
  width: 78px;
}

.store-grid small {
  grid-column: 2;
  margin-top: -16px;
  font-weight: 700;
}

.guide-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 54px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 28px;
}

.guide-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f7f9fd;
  font-weight: 850;
}

.steps .step-number {
  color: var(--leaf);
  font-weight: 950;
}

.app-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: clamp(26px, 5vw, 44px);
  border-radius: 28px;
  background: var(--navy);
  color: #fff;
}

.app-banner p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.app-banner .push-alert-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: #ffcf70;
  font-size: 0.88rem;
  font-weight: 750;
}

.app-banner .primary-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px clamp(18px, 4vw, 56px);
  color: var(--muted);
  font-weight: 750;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 20;
  transform: translate(-50%, 90px);
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
  font-weight: 850;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.telegram-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  background: #229ed9;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(34, 158, 217, 0.35);
}

html[dir="rtl"] .telegram-float {
  right: auto;
  left: 20px;
}

html[dir="rtl"] .coupon-action {
  justify-items: start;
}

.admin-body {
  min-height: 100vh;
}

.login-shell {
  width: min(480px, calc(100% - 36px));
  margin: clamp(54px, 12vh, 108px) auto;
}

.login-panel {
  padding: clamp(28px, 6vw, 42px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 14px 46px rgba(8, 26, 62, 0.08);
}

.login-panel h1 {
  margin: 0;
  font-size: clamp(2.2rem, 7vw, 3.2rem);
}

.login-copy {
  margin: 14px 0 25px;
  color: var(--muted);
  line-height: 1.55;
}

.login-form {
  display: grid;
  gap: 18px;
}

.login-form label {
  display: grid;
  gap: 8px;
  color: #34413c;
  font-weight: 850;
}

.login-form input {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
}

.login-status {
  min-height: 22px;
  margin: 0;
  color: #a73728;
  font-size: 0.9rem;
  font-weight: 750;
}

.admin-logout {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.admin-shell {
  display: grid;
  gap: 24px;
  width: min(1180px, calc(100% - 36px));
  margin: 34px auto 60px;
}

.admin-shell h1 {
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.admin-panel {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 14px 46px rgba(8, 26, 62, 0.08);
}

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

.admin-form label {
  display: grid;
  gap: 8px;
  color: #34413c;
  font-weight: 850;
}

.admin-form input,
.admin-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  outline: 0;
}

.admin-form .wide,
.form-actions {
  grid-column: 1 / -1;
}

.check-option {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  flex-direction: row;
  gap: 10px !important;
}

.check-option input {
  width: 18px;
  min-height: 18px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

#form-status {
  color: var(--leaf-dark);
  font-weight: 850;
}

.admin-list {
  display: grid;
  gap: 12px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.stat-tile {
  min-height: 94px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f7f9fd;
}

.stat-tile strong {
  display: block;
  color: var(--navy);
  font-size: 1.75rem;
  overflow-wrap: anywhere;
}

.stat-tile span {
  color: var(--muted);
  font-weight: 750;
}

.admin-subheading {
  margin: 0 0 14px;
}

.click-list {
  display: grid;
  gap: 10px;
}

.click-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.click-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.click-item time {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.admin-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.store-page {
  width: min(1000px, calc(100% - 36px));
  margin: 42px auto 72px;
}

.store-hero {
  display: grid;
  grid-template-columns: 112px 1fr auto;
  align-items: center;
  gap: 26px;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: 0 14px 46px rgba(8, 26, 62, 0.08);
}

.store-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.4rem);
}

.store-logo {
  width: 112px;
  height: 86px;
  border-radius: 18px;
}

.store-intro {
  color: var(--muted);
}

.store-coupons {
  margin-top: 30px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--panel);
}

.article-header {
  position: static;
}

.blog-page,
.article-page {
  width: min(1040px, calc(100% - 36px));
  margin: clamp(38px, 7vw, 72px) auto 72px;
}

.blog-heading {
  max-width: 760px;
  margin-bottom: clamp(30px, 5vw, 46px);
}

.blog-heading h1 {
  font-size: clamp(2.8rem, 7vw, 4.6rem);
}

.blog-heading > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.article-card {
  display: flex;
  flex-direction: column;
  min-height: 288px;
  padding: clamp(20px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}

.article-card time,
.article-title time {
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 850;
}

.article-card h2 {
  margin: 18px 0 12px;
  font-size: 1.38rem;
  line-height: 1.25;
}

.article-card p {
  flex: 1;
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.article-link {
  color: var(--blue);
  font-weight: 850;
}

.article-body {
  max-width: 800px;
  margin-inline: auto;
}

.article-back {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--blue);
  font-weight: 850;
}

.article-title {
  padding-bottom: clamp(28px, 5vw, 42px);
  border-bottom: 1px solid var(--line);
}

.article-title h1 {
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 7vw, 4.4rem);
  line-height: 1;
}

.article-content {
  padding: clamp(28px, 5vw, 44px) 0;
}

.article-content section + section {
  margin-top: 34px;
}

.article-content h2,
.related-stores h2 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 3vw, 1.8rem);
  line-height: 1.25;
}

.article-content p {
  margin: 0;
  color: #33445f;
  font-size: 1.03rem;
  line-height: 1.78;
}

.article-content p + p {
  margin-top: 14px;
}

.related-stores {
  padding: clamp(22px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}

.related-stores > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-store-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff9ed;
  color: var(--navy);
  font-weight: 850;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .quick-strip,
  .deals-layout,
  .store-grid,
  .guide-section {
    grid-template-columns: 1fr 1fr;
  }

  .deals-layout {
    grid-template-columns: 1fr;
  }

  .spotlight {
    position: static;
  }

  .trending-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: auto;
  }

  .header-actions {
    width: 100%;
  }

  .header-actions .primary-button {
    flex: 1;
  }

  .hero {
    min-height: 650px;
    padding: 28px 18px;
  }

  .search-row,
  .section-heading,
  .app-banner,
  .newsletter-inner,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .quick-strip,
  .store-grid,
  .guide-section {
    grid-template-columns: 1fr;
  }

  .newsletter-form,
  .newsletter-controls {
    width: 100%;
  }

  .newsletter-controls {
    flex-direction: column;
  }

  .trending-grid {
    grid-template-columns: 1fr;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    margin-top: -34px;
  }

  .coupon-card {
    grid-template-columns: 54px 1fr;
  }

  .coupon-action {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
    justify-items: stretch;
    min-width: 0;
  }

  .coupon-action span {
    min-width: 0;
  }

  .shop-deal-button {
    grid-column: 1 / -1;
  }

  .admin-form,
  .admin-item,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .admin-item,
  .form-actions,
  .click-item {
    align-items: stretch;
    flex-direction: column;
  }

  .store-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .store-official-link {
    width: 100%;
  }

}
