:root {
  --bg: #061510;
  --surface: rgba(10, 29, 22, 0.78);
  --surface-strong: #0f241d;
  --text: #ecfff8;
  --muted: #9dc7b7;
  --line: rgba(78, 255, 180, 0.16);
  --accent: #1dff9c;
  --accent-dark: #13c97a;
  --accent-soft: rgba(29, 255, 156, 0.18);
  --teal: #78ffd0;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(29, 255, 156, 0.18), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(120, 255, 208, 0.12), transparent 22%),
    linear-gradient(180deg, #071611 0%, #04100c 100%);
}

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

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

img {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(3, 14, 10, 0.82);
  border-bottom: 1px solid rgba(29, 255, 156, 0.08);
}

.site-footer {
  margin-top: 44px;
  border-top: 1px solid rgba(236, 255, 248, 0.16);
  background: #020806;
  color: #b8c7c1;
  font-size: 0.9rem;
}

.footer-shell {
  min-height: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ecfff8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-nav {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-nav a {
  text-decoration: none;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.brand,
h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
}

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

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  object-fit: cover;
}

.main-nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
}

.main-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.main-nav a.is-active {
  color: var(--text);
  border-color: var(--accent);
}

.nav-cta,
.search-bar button,
.coupon-card button {
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #042014;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta {
  padding: 12px 18px;
  font-weight: 700;
}

.nav-cta:hover,
.search-bar button:hover,
.coupon-card button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.hero {
  padding: 64px 0 28px;
}

.rage-hero {
  position: relative;
}

.rage-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 420px;
  background: radial-gradient(circle at center, rgba(29, 255, 156, 0.12), transparent 60%);
  pointer-events: none;
}

.page-hero {
  padding: 56px 0 24px;
}

.page-hero-short {
  padding-bottom: 8px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.page-hero-shell,
.store-hero,
.store-detail-layout,
.admin-grid {
  display: grid;
  gap: 24px;
}

.page-hero-shell,
.store-detail-layout {
  grid-template-columns: 1fr;
}

.store-hero,
.admin-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.hero-copy,
.hero-panel,
.coupon-card,
.store-card,
.store-summary-card,
.info-card,
.empty-state,
.category-card,
.admin-card {
  background: var(--surface);
  border: 1px solid rgba(29, 255, 156, 0.1);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-copy {
  padding: 34px;
}

.hero-panel {
  padding: 28px;
  background: linear-gradient(180deg, rgba(29, 255, 156, 0.18), rgba(8, 27, 20, 0.88));
}

.store-summary-card,
.info-card,
.empty-state,
.category-card,
.admin-card {
  padding: 28px;
}

.hero-logo {
  width: min(100%, 180px);
  margin-bottom: 18px;
  display: block;
}

.hero-logo-mark {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.95;
  max-width: 11ch;
}

h2 {
  margin: 0;
}

.hero-text {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 58ch;
  color: var(--muted);
  margin: 22px 0 26px;
}

.search-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.search-bar input,
.admin-textarea {
  border: 1px solid var(--line);
  background: rgba(3, 15, 11, 0.92);
  color: var(--text);
}

.search-bar input {
  flex: 1 1 280px;
  border-radius: 999px;
  padding: 16px 20px;
  font: inherit;
}

.search-bar button,
.coupon-card button {
  padding: 16px 22px;
  font: inherit;
  font-weight: 700;
}

.hero-actions,
.coupon-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.ghost-link,
.text-link,
.coupon-actions a {
  color: var(--teal);
  font-weight: 700;
}

.hero-inline-meta,
.store-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
}

.hero-inline-meta {
  margin: 0 0 22px;
}

.trend-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 18px;
  color: var(--muted);
}

.trend-row a {
  color: var(--teal);
  font-weight: 700;
}

.top-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
}

.top-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(29, 255, 156, 0.08);
}

.top-list span {
  color: var(--muted);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-stats div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(29, 255, 156, 0.08);
}

.hero-stats strong,
.featured-strip h3 {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
}

.hero-stats span,
.featured-strip span {
  color: var(--muted);
}

.featured-strip {
  padding: 0 0 16px;
}

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

.strip-grid article {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #0f241d, #091a14);
  color: #effff7;
}

.strip-grid p {
  margin: 0 0 8px;
  color: rgba(239, 255, 247, 0.66);
}

.section {
  padding: 34px 0;
}

.muted-section {
  background: linear-gradient(180deg, rgba(29, 255, 156, 0.04), rgba(29, 255, 156, 0));
}

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

.section-head h2,
.hero-panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.section-head a {
  color: var(--teal);
  font-weight: 700;
}

.coupon-grid,
.category-grid,
.store-grid {
  display: grid;
  gap: 18px;
}

.coupon-grid {
  grid-template-columns: repeat(3, 1fr);
}

.coupon-grid-store {
  grid-template-columns: 1fr;
}

.category-grid,
.store-grid {
  grid-template-columns: repeat(4, 1fr);
}

.coupon-card {
  padding: 22px;
}

.coupon-card-simple {
  padding: 24px;
}

.coupon-header {
  margin-bottom: 12px;
}

.coupon-card-simple .coupon-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.coupon-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.coupon-cta-simple {
  margin-top: 18px;
}

.store-badge,
.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.store-badge {
  background: var(--accent-soft);
  color: var(--accent);
}

.tag {
  background: rgba(29, 255, 156, 0.12);
  color: var(--teal);
}

.coupon-card h3,
.category-card h3,
.store-card h3,
.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.coupon-card p,
.category-card p,
.store-card p,
.info-card p {
  color: var(--muted);
  line-height: 1.55;
}

.content-page-card {
  max-width: 880px;
  margin: 0 auto;
}

.content-page-card p {
  font-size: 1.02rem;
  line-height: 1.75;
}

.coupon-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 18px 0;
  color: var(--muted);
}

.coupon-actions {
  justify-content: flex-end;
  margin-top: 14px;
}

.code-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px dashed rgba(29, 255, 156, 0.25);
  color: var(--muted);
  background: rgba(29, 255, 156, 0.06);
  font-weight: 700;
}

.code-pill.is-visible {
  color: var(--accent);
  border-style: solid;
  background: rgba(29, 255, 156, 0.12);
}

.coupon-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 50;
}

.coupon-modal.is-open {
  display: block;
}

.coupon-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.coupon-modal-card {
  position: relative;
  width: min(620px, calc(100% - 24px));
  margin: 10vh auto 0;
  padding: 34px;
  border-radius: 24px;
  border: 1px solid rgba(29, 255, 156, 0.12);
  background: #0b1e17;
  box-shadow: var(--shadow);
  text-align: center;
}

.coupon-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(29, 255, 156, 0.1);
  color: var(--text);
  cursor: pointer;
}

.coupon-modal-store {
  margin: 0 0 10px;
  color: var(--teal);
  font-weight: 700;
}

.coupon-modal-text {
  color: var(--muted);
}

.coupon-modal-code-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  margin: 18px auto;
  max-width: 360px;
}

.coupon-modal-code {
  padding: 16px 18px;
  border-radius: 18px 0 0 18px;
  background: rgba(29, 255, 156, 0.08);
  border: 1px solid rgba(29, 255, 156, 0.16);
  border-right: 0;
  color: var(--accent);
  font: 700 1.05rem/1.2 Consolas, monospace;
  letter-spacing: 0.06em;
  text-align: center;
}

.coupon-copy-inline {
  border: 0;
  padding: 0 20px;
  border-radius: 0 18px 18px 0;
  background: var(--accent);
  color: #042014;
  font-weight: 800;
  cursor: pointer;
}

.coupon-modal-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.coupon-open-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 14px;
  background: rgba(29, 255, 156, 0.12);
  border: 1px solid rgba(29, 255, 156, 0.18);
}

.coupon-modal-divider {
  height: 1px;
  margin: 26px 0 20px;
  background: rgba(29, 255, 156, 0.1);
}

.coupon-modal-detail-block {
  text-align: left;
}

.coupon-modal-detail-title {
  margin: 0 0 8px;
  color: var(--text);
  font-weight: 700;
}

.coupon-modal-detail-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.store-card {
  padding: 20px;
}

.store-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.store-brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.store-logo-box {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
  color: #4754ff;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.store-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.store-brand-lockup h3 {
  margin: 0;
}

.store-score {
  font-weight: 700;
  color: var(--text);
}

.store-card p {
  margin: 6px 0 0;
}

.store-health-line {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.store-health-line span::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--teal);
  vertical-align: middle;
}

.store-health-line strong {
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.store-health-bar {
  height: 4px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(236, 255, 248, 0.08);
}

.store-health-bar span {
  display: block;
  height: 100%;
  max-width: 100%;
  border-radius: inherit;
  background: var(--teal);
}

.store-card .store-meta {
  margin: 16px 0;
}

.mini-list,
.detail-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.mini-list li,
.detail-list li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.empty-state {
  text-align: center;
}

.empty-state-wide {
  max-width: 760px;
  margin: 0 auto;
}

.admin-textarea {
  width: 100%;
  min-height: 360px;
  padding: 18px;
  border-radius: 20px;
  font: 14px/1.5 Consolas, monospace;
  margin-bottom: 16px;
}

.admin-textarea-large {
  min-height: 720px;
}

.admin-message {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(29, 255, 156, 0.12);
  color: var(--accent);
  font-weight: 700;
}

.admin-shell,
.admin-login-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 48px;
}

.admin-login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.admin-login-card,
.admin-topbar,
.admin-stat-card,
.admin-panel-head {
  background: var(--surface);
  border: 1px solid rgba(29, 255, 156, 0.1);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.admin-login-card {
  width: min(520px, 100%);
  padding: 30px;
}

.admin-login-brand,
.admin-topbar,
.admin-topbar-brand,
.admin-topbar-actions {
  display: flex;
  align-items: center;
}

.admin-login-brand,
.admin-topbar-brand {
  gap: 16px;
}

.admin-login-text,
.admin-user {
  color: var(--muted);
}

.admin-login-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.admin-field {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

.admin-field input {
  border: 1px solid var(--line);
  background: rgba(3, 15, 11, 0.92);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
}

.admin-field select,
.admin-field textarea {
  border: 1px solid var(--line);
  background: rgba(3, 15, 11, 0.92);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
}

.admin-topbar {
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
}

.admin-topbar-actions {
  gap: 14px;
}

.admin-logout-button {
  border: 1px solid rgba(29, 255, 156, 0.18);
  background: transparent;
  color: var(--text);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
}

.admin-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 24px 0;
}

.admin-stat-card {
  padding: 22px;
}

.admin-stat-card span {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
}

.admin-stat-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
}

.admin-panel-head {
  padding: 24px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.admin-card-stack {
  display: grid;
  gap: 20px;
}

.admin-section-stack {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.admin-section-title h2,
.admin-subsection-head h4,
.admin-record-card h3,
.admin-subrecord-card h4 {
  margin: 0;
}

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

.admin-field-full {
  grid-column: 1 / -1;
}

.admin-textarea-small {
  min-height: 140px;
  margin-bottom: 0;
}

.admin-button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.admin-secondary-button,
.admin-danger-button {
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.admin-secondary-button {
  border: 1px solid rgba(29, 255, 156, 0.18);
  background: rgba(29, 255, 156, 0.08);
  color: var(--text);
}

.admin-danger-button {
  border: 1px solid rgba(255, 121, 121, 0.24);
  background: rgba(255, 121, 121, 0.12);
  color: #ffd8d8;
  margin-top: 12px;
}

.admin-note {
  color: var(--muted);
  margin: 8px 0 0;
}

.admin-record-grid {
  display: grid;
  gap: 18px;
}

.admin-record-card,
.admin-subrecord-card {
  background: rgba(8, 22, 17, 0.82);
  border: 1px solid rgba(29, 255, 156, 0.08);
  border-radius: 24px;
  padding: 22px;
}

.admin-record-header,
.admin-subsection-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.admin-subsection-head {
  margin-bottom: 14px;
  color: var(--muted);
}

.admin-divider {
  height: 1px;
  margin: 22px 0;
  background: rgba(29, 255, 156, 0.08);
}

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

.admin-body {
  background: #f0f0f1;
  color: #1d2327;
}

.wp-admin {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 240px 1fr;
}

.wp-sidebar {
  background: #1d2327;
  color: #f0f0f1;
  min-height: 100vh;
  position: sticky;
  top: 0;
  z-index: 1000;
  align-self: start;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.wp-sidebar-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: #101517;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wp-sidebar-brand .brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.wp-sidebar-nav {
  display: grid;
  padding: 10px 0;
}

.wp-sidebar-nav a,
.wp-sidebar-logout button {
  display: block;
  width: 100%;
  padding: 12px 18px;
  border: 0;
  background: transparent;
  color: #dcdcde;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.wp-sidebar-nav a:hover,
.wp-sidebar-nav a.is-active,
.wp-sidebar-logout button:hover {
  background: #2271b1;
  color: #fff;
}

.wp-menu-group {
  display: grid;
  position: relative;
}

.wp-menu-group > a::after {
  content: "";
  float: right;
  opacity: 0.7;
}

.wp-menu-group:hover > a::after,
.wp-menu-group:focus-within > a::after {
  content: "";
}

.wp-submenu {
  display: none !important;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 190px;
  z-index: 1001;
  background: #2c3338;
  padding: 8px 0;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.28);
}

.wp-menu-group:hover .wp-submenu,
.wp-menu-group:focus-within .wp-submenu {
  display: grid !important;
}

.wp-menu-group:hover > a,
.wp-menu-group:focus-within > a {
  background: #2271b1;
  color: #fff;
}

.wp-submenu a {
  padding: 8px 18px;
  color: #c3c4c7;
  font-size: 0.92rem;
}

.wp-submenu a:hover {
  background: #1d2327;
  color: #72aee6;
}

.wp-sidebar-logout {
  margin-top: auto;
  padding-bottom: 14px;
}

.wp-admin-content {
  min-width: 0;
}

.wp-admin-bar {
  min-height: 40px;
  background: #fff;
  border-bottom: 1px solid #c3c4c7;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 0 20px;
  color: #50575e;
}

.wp-admin-notice {
  display: inline-flex;
  padding: 6px 10px;
  border-left: 4px solid #00a32a;
  background: #f6fff7;
  color: #1d2327;
}

.wp-admin-page {
  padding: 24px 26px 48px;
}

.wp-admin-page h2 {
  font-size: 1.7rem;
  font-weight: 400;
  margin: 0 0 20px;
  color: #1d2327;
}

.wp-admin-page-nested {
  padding: 28px 0 0;
}

.wp-editor-headline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.wp-editor-headline h2 {
  margin: 0;
}

.wp-secondary-link,
.wp-row-action {
  color: #2271b1;
  font-weight: 700;
  text-decoration: none;
}

.wp-card,
.wp-side-form,
.wp-list-panel {
  background: #fff;
  border: 1px solid #c3c4c7;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}

.wp-card {
  padding: 18px;
}

.wp-editor-card {
  max-width: 980px;
}

.seo-editor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.seo-editor-card {
  min-width: 0;
}

.wp-section-heading {
  margin: 28px 0 0;
  color: #1d2327;
}

.wp-dashboard-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
}

.wp-quick-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.wp-split-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 24px;
  align-items: start;
}

.wp-side-form {
  padding: 18px;
}

.wp-side-form h3,
.wp-card h3 {
  margin: 0 0 14px;
  color: #1d2327;
}

.wp-help,
.wp-muted {
  color: #646970;
  font-size: 0.92rem;
}

.wp-side-form .admin-field,
.wp-card .admin-field {
  color: #1d2327;
}

.wp-side-form .admin-field input,
.wp-side-form .admin-field select,
.wp-side-form .admin-field textarea,
.wp-card .admin-field input,
.wp-card .admin-field select,
.wp-card .admin-field textarea,
.wp-inline-form input,
.wp-inline-form select,
.wp-inline-form textarea,
.wp-list-tools input {
  border: 1px solid #8c8f94;
  background: #fff;
  color: #1d2327;
  border-radius: 3px;
  padding: 8px 10px;
  font: inherit;
}

.wp-side-form textarea,
.wp-card textarea,
.wp-inline-form textarea {
  min-height: 90px;
}

.wp-primary-button {
  border: 1px solid #2271b1;
  background: #2271b1;
  color: #fff;
  border-radius: 3px;
  padding: 8px 12px;
  font: inherit;
  cursor: pointer;
}

.wp-list-panel {
  min-width: 0;
}

.wp-list-tools {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-bottom: 1px solid #c3c4c7;
}

.classic-editor-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 252px;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.classic-editor-main {
  min-width: 0;
}

.classic-title-input {
  width: 100%;
  border: 1px solid #8c8f94;
  background: #fff;
  color: #1d2327;
  border-radius: 2px;
  font: 400 1.25rem "Space Grotesk", sans-serif;
  padding: 8px 10px;
  margin-bottom: 10px;
}

.classic-title-input::placeholder {
  color: #646970;
}

.classic-permalink-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #646970;
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.classic-permalink-row code {
  color: #2271b1;
  background: transparent;
}

.classic-permalink-row input {
  width: 190px;
  border: 1px solid #c3c4c7;
  border-radius: 3px;
  padding: 5px 8px;
  color: #1d2327;
  background: #fff;
}

.classic-elementor-button {
  display: inline-flex;
  border: 1px solid #2271b1;
  background: #2271b1;
  color: #fff;
  border-radius: 2px;
  padding: 12px 34px;
  margin: 20px 0 32px;
  font: inherit;
}

.classic-media-row {
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
}

.classic-media-row button,
.classic-publish-actions button,
.classic-publish-actions a {
  border: 1px solid #2271b1;
  background: #f6f7f7;
  color: #2271b1;
  border-radius: 3px;
  padding: 6px 10px;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.classic-editor-box,
.classic-seo-panel,
.classic-publish-box {
  background: #fff;
  border: 1px solid #c3c4c7;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}

.classic-editor-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 10px 12px;
  border-bottom: 1px solid #dcdcde;
  background: #f6f7f7;
  color: #1d2327;
}

.classic-editor-label span {
  color: #646970;
  font-size: 0.92rem;
}

.classic-editor-tabs {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  padding: 6px 8px 0;
  border-bottom: 1px solid #dcdcde;
}

.classic-editor-tabs button {
  border: 1px solid #dcdcde;
  border-bottom: 0;
  background: #fff;
  color: #50575e;
  padding: 6px 10px;
  font: inherit;
}

.classic-toolbar {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  padding: 6px;
  border-bottom: 1px solid #dcdcde;
  background: #f6f7f7;
}

.classic-toolbar select,
.classic-toolbar button {
  min-height: 28px;
  border: 1px solid transparent;
  background: transparent;
  color: #1d2327;
  border-radius: 2px;
  padding: 3px 7px;
  font: inherit;
}

.classic-toolbar select {
  border-color: #c3c4c7;
  background: #fff;
}

.classic-toolbar button:hover {
  border-color: #8c8f94;
  background: #fff;
}

.classic-content-area {
  width: 100%;
  min-height: 315px;
  border: 0;
  resize: vertical;
  padding: 24px 18px;
  color: #1d2327;
  background: #fff;
  font: 1rem/1.65 Georgia, serif;
}

.classic-word-count {
  border-top: 1px solid #dcdcde;
  padding: 6px 10px;
  color: #646970;
  font-size: 0.86rem;
}

.classic-seo-panel {
  margin-top: 20px;
}

.classic-panel-title {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-bottom: 1px solid #c3c4c7;
  color: #1d2327;
  font-weight: 700;
}

.classic-seo-tabs {
  display: flex;
  gap: 22px;
  padding: 0 14px;
  border-bottom: 1px solid #dcdcde;
  color: #50575e;
}

.classic-seo-tabs span {
  padding: 12px 0;
}

.classic-seo-tabs .active {
  color: #2271b1;
  border-bottom: 2px solid #2271b1;
}

.classic-seo-preview {
  padding: 18px 14px 6px;
}

.classic-seo-preview p {
  color: #1a0dab;
  margin: 12px 0 5px;
  font-size: 1rem;
}

.classic-seo-preview small {
  color: #646970;
}

.classic-seo-panel .admin-form-grid {
  padding: 14px;
}

.classic-publish-sidebar {
  position: sticky;
  top: 92px;
}

.classic-publish-box {
  color: #1d2327;
}

.classic-publish-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
}

.classic-publish-box p {
  margin: 0;
  padding: 7px 12px;
  color: #1d2327;
  font-size: 0.92rem;
}

.classic-publish-box p span {
  color: #2271b1;
}

.classic-seo-alert {
  margin-top: 8px;
  padding: 10px 12px;
  background: #fdeaea;
  color: #b32d2e;
  border-top: 1px solid #f0c6c6;
}

.classic-publish-button {
  float: right;
  margin: 12px;
}

.classic-publish-box::after {
  content: "";
  display: block;
  clear: both;
}

.wp-table {
  width: 100%;
  border-collapse: collapse;
  color: #1d2327;
  background: #fff;
}

.wp-table th,
.wp-table td {
  padding: 11px 10px;
  border-bottom: 1px solid #c3c4c7;
  vertical-align: top;
  text-align: left;
}

.wp-table th {
  color: #2271b1;
  font-weight: 400;
}

.wp-table tr:nth-child(odd) td {
  background: #f6f7f7;
}

.seo-score-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 4px;
  background: #f5df8f;
  color: #1d2327;
  font-size: 0.86rem;
  line-height: 1.1;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

.status-published {
  background: #edfaef;
  color: #008a20;
  border: 1px solid #8ed99b;
}

.status-draft {
  background: #fff8e5;
  color: #996800;
  border: 1px solid #e6c36f;
}

.wp-row-edit summary {
  color: #2271b1;
  cursor: pointer;
  margin-bottom: 8px;
}

.wp-inline-form {
  display: grid;
  gap: 8px;
  min-width: 280px;
  margin: 8px 0;
}

.wp-inline-delete {
  display: inline;
}

.wp-inline-delete button {
  border: 0;
  background: transparent;
  color: #b32d2e;
  padding: 0;
  cursor: pointer;
}

.admin-logo-preview {
  width: 46px;
  height: 46px;
  border: 1px solid #dcdcde;
  border-radius: 6px;
  object-fit: contain;
  background: #fff;
  padding: 5px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  padding: 14px;
}

.media-card {
  border: 1px solid #dcdcde;
  background: #fff;
  padding: 10px;
  display: grid;
  gap: 8px;
  color: #1d2327;
}

.media-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #f6f7f7;
  border: 1px solid #dcdcde;
}

.media-card strong {
  font-size: 0.9rem;
  word-break: break-word;
}

.media-card input {
  width: 100%;
  border: 1px solid #8c8f94;
  border-radius: 3px;
  padding: 6px 8px;
  color: #1d2327;
}

.media-card button {
  border: 0;
  background: transparent;
  color: #b32d2e;
  padding: 0;
  cursor: pointer;
}

.wp-empty-state {
  grid-column: 1 / -1;
  box-shadow: none;
  color: #1d2327;
}

.admin-body .admin-overview-grid {
  margin: 0 0 18px;
}

.admin-body .admin-stat-card {
  background: #fff;
  border: 1px solid #c3c4c7;
  box-shadow: none;
  color: #1d2327;
}

.admin-body .admin-stat-card span {
  color: #646970;
}

@media (max-width: 980px) {
  .hero-grid,
  .store-hero,
  .coupon-grid,
  .category-grid,
  .store-grid,
  .strip-grid,
  .admin-grid,
  .admin-overview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .main-nav {
    display: none;
  }

  .coupon-grid-store {
    grid-template-columns: 1fr;
  }

  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .wp-admin {
    grid-template-columns: 190px 1fr;
  }

  .wp-split-layout,
  .wp-dashboard-grid,
  .seo-editor-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .hero-grid,
  .store-hero,
  .coupon-grid,
  .category-grid,
  .store-grid,
  .strip-grid,
  .admin-grid,
  .admin-overview-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .admin-topbar,
  .admin-topbar-actions,
  .admin-panel-head,
  .admin-record-header,
  .admin-subsection-head {
    display: grid;
  }

  .site-header {
    position: static;
  }

  .nav-shell {
    min-height: 66px;
  }

  .footer-shell {
    justify-content: flex-start;
    padding: 14px 0;
  }

  h1 {
    font-size: 2.8rem;
  }

  .hero-copy,
  .hero-panel,
  .store-summary-card,
  .info-card,
  .category-card,
  .admin-card {
    padding: 22px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .coupon-modal-card {
    padding: 24px;
  }

  .coupon-modal-code-row {
    grid-template-columns: 1fr;
  }

  .coupon-modal-code {
    border-right: 1px solid rgba(29, 255, 156, 0.16);
    border-radius: 18px 18px 0 0;
  }

  .coupon-copy-inline {
    min-height: 48px;
    border-radius: 0 0 18px 18px;
  }

  .wp-admin {
    grid-template-columns: 1fr;
  }

  .wp-sidebar {
    position: static;
    min-height: auto;
  }

  .wp-sidebar-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .wp-admin-bar,
  .wp-list-tools {
    display: grid;
    justify-content: stretch;
  }

  .wp-admin-page {
    padding: 20px 14px 36px;
  }

  .wp-table {
    font-size: 0.9rem;
  }

  .classic-editor-form,
  .classic-edit-drawer .classic-editor-form {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .classic-publish-sidebar {
    position: static;
  }
}


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

.content-page-card p + p {
  margin-top: 18px;
}

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

.classic-rich-editor {
  min-height: 360px;
  padding: 24px 18px;
  background: #fff;
  color: #1d2327;
  font: 1rem/1.7 Georgia, serif;
  outline: none;
}

.classic-rich-editor:focus {
  box-shadow: inset 0 0 0 1px #2271b1;
}

.classic-rich-editor h1,
.classic-rich-editor h2,
.classic-rich-editor h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.25;
  margin: 1.1em 0 0.55em;
}

.classic-rich-editor h1 { font-size: 2rem; }
.classic-rich-editor h2 { font-size: 1.6rem; }
.classic-rich-editor h3 { font-size: 1.3rem; }
.classic-rich-editor p,
.classic-rich-editor ul,
.classic-rich-editor ol,
.classic-rich-editor blockquote {
  margin: 0 0 1em;
}

.classic-rich-editor blockquote {
  border-left: 4px solid #2271b1;
  padding-left: 14px;
  color: #50575e;
}

.store-seo-box {
  border: 1px solid #c3c4c7;
  background: #fdfdfd;
}

.seo-workspace {
  display: grid;
  grid-template-columns: 320px minmax(0,1fr);
  gap: 18px;
  align-items: start;
}

.seo-sidebar-stack {
  display: grid;
  gap: 18px;
}

.seo-nav-card h3 {
  margin-bottom: 12px;
}

.seo-nav-list {
  display: grid;
  gap: 8px;
  max-height: 70vh;
  overflow: auto;
}

.seo-nav-link {
  display: block;
  border: 1px solid #dcdcde;
  border-radius: 6px;
  padding: 10px 12px;
  text-decoration: none;
  color: #1d2327;
  background: #fff;
}

.seo-nav-link strong { display:block; }
.seo-nav-link span { color:#646970; font-size:.86rem; }
.seo-nav-link.is-active { border-color:#2271b1; background:#f0f6fc; }

.seo-scope-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seo-scope-tabs a {
  text-decoration: none;
  color: #2271b1;
  background: #fff;
  border: 1px solid #c3c4c7;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
}

.seo-scope-tabs a.is-active {
  background: #2271b1;
  border-color: #2271b1;
  color: #fff;
}

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

@media (max-width: 980px) {
  .seo-workspace,
  .classic-editor-form {
    grid-template-columns: 1fr;
  }
  .classic-publish-sidebar {
    position: static;
  }
}

/* 2026 admin + storefront refresh */
body {
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(180deg, #020303 0%, #020605 100%);
  background-size: 56px 56px, 56px 56px, auto;
  color: #f7faf9;
}

.site-header {
  background: rgba(1, 4, 3, 0.92);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-shell { min-height: 72px; }
.main-nav { gap: 28px; font-weight: 600; }
.main-nav a { border-bottom: 0; padding: 8px 0; }
.main-nav a.is-active { color: #fff; }
.nav-cta { padding: 12px 24px; background: var(--accent); }
.brand-mark { width: 38px; height: 38px; border-radius: 10px; }

.clean-hero, .clean-directory-hero {
  padding: 72px 0 32px;
}
.clean-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.clean-hero-inner h1 {
  margin: 20px 0 18px;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: .95;
  letter-spacing: -0.05em;
}
.clean-hero-text {
  max-width: 760px;
  margin: 0 auto;
  color: #c7d1cd;
  font-size: 1.25rem;
  line-height: 1.55;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: #dde7e3;
  font-size: .95rem;
}
.hero-pill .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 6px rgba(29,255,156,0.12);
}
.clean-search {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 14px;
  margin: 28px auto 12px;
  max-width: 760px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  background: rgba(0,0,0,0.55);
}
.clean-search span { color: #98aba3; font-size: 1.4rem; }
.clean-search input {
  min-width: 0;
  background: transparent;
  border: 0;
  color: #f5f7f6;
  font-size: 1.05rem;
  outline: 0;
}
.clean-search button {
  padding: 12px 18px;
  border-radius: 14px;
}
.hero-popular-links {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 18px; color: #93a49c;
}
.hero-popular-links a { color: #d8e5df; }

.stats-band { border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.clean-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; padding: 28px 0;
}
.clean-stats-grid article { text-align: center; }
.clean-stats-grid strong {
  display: block; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1; margin-bottom: 8px;
}
.clean-stats-grid span { text-transform: uppercase; letter-spacing: .1em; color: #9fb0a9; font-size: .85rem; }

.clean-section { padding: 38px 0; }
.clean-section-head h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -0.04em; }
.clean-section-head { margin-bottom: 22px; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; font-weight: 700; }

.browse-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.browse-category-grid-compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.browse-category-card {
  padding: 22px;
  border-radius: 20px;
  background: rgba(7,10,11,0.86);
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 180px;
}
.browse-category-icon {
  width: 42px; height: 42px; border-radius: 12px; display: inline-flex; align-items:center; justify-content:center;
  border: 1px solid rgba(29,255,156,0.28); color: var(--accent); margin-bottom: 22px; font-weight: 700;
}
.browse-category-card h3 { margin: 0 0 10px; font-size: 1.55rem; }
.browse-category-card p { margin: 0 0 16px; color: #9fafaa; line-height: 1.55; }
.browse-category-card span { color: #dbe4df; font-size: .92rem; }

.featured-store-row, .clean-store-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.clean-store-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.clean-store-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(8,12,13,0.94);
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 250px;
}
.clean-store-top {
  display: flex; justify-content: space-between; gap: 14px; align-items: flex-start; margin-bottom: 18px;
}
.clean-store-brand { display: flex; gap: 14px; align-items: center; min-width: 0; }
.store-domain { color: #9eafaa; font-size: .95rem; }
.store-logo-box {
  width: 56px; height: 56px; flex: 0 0 56px; border-radius: 14px; background: #f4f4f5; color: #5460ff;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700; overflow: hidden;
}
.clean-store-card h3 { margin: 0 0 4px; font-size: 1.8rem; line-height: 1; }
.clean-store-card p { color: #a7b5b0; line-height: 1.6; min-height: 74px; }
.tag {
  display: inline-flex; align-items: center; padding: 10px 14px; border-radius: 999px; background: rgba(29,255,156,0.12);
  color: #dffff2; font-size: .88rem; font-weight: 700;
}
.store-health-line { display: flex; justify-content: space-between; gap: 12px; color: #a8bab3; font-size: .95rem; }
.store-health-bar { height: 4px; border-radius: 999px; background: rgba(255,255,255,0.08); margin: 14px 0 18px; }
.store-health-bar span { display:block; height:100%; border-radius:inherit; background: var(--accent); }
.text-link { color: var(--accent); font-weight: 700; }

.rich-content h1,.rich-content h2,.rich-content h3 { font-family: "Space Grotesk", sans-serif; }
.rich-content p,.rich-content li,.rich-content blockquote { line-height: 1.75; color: #d4dfda; }
.rich-content blockquote {
  margin: 18px 0; padding: 14px 18px; border-left: 3px solid var(--accent); background: rgba(255,255,255,0.04); border-radius: 12px;
}
.rich-content ul,.rich-content ol { padding-left: 24px; }

.classic-editor-form { display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: 22px; }
.classic-title-input {
  width: 100%; border: 1px solid #ccd0d4; border-radius: 8px; padding: 16px 18px; font-size: 2rem; font-family: "Space Grotesk", sans-serif;
}
.classic-editor-box,.classic-seo-panel,.classic-publish-box {
  background: #fff; border: 1px solid #dcdcde; border-radius: 8px; overflow: hidden;
}
.classic-editor-label,.classic-panel-title { padding: 14px 16px; border-bottom: 1px solid #dcdcde; background: #fff; color: #1d2327; }
.classic-toolbar {
  display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 14px; border-bottom: 1px solid #dcdcde; background: #f6f7f7;
}
.classic-toolbar button,.classic-toolbar select {
  border: 1px solid #c3c4c7; background: #fff; border-radius: 6px; min-height: 34px; padding: 6px 10px; cursor: pointer;
}
.classic-rich-editor {
  min-height: 360px; padding: 18px; color: #1d2327; background: #fff; outline: none; line-height: 1.7;
}
.classic-rich-editor h1,.classic-rich-editor h2,.classic-rich-editor h3 { color: #111; }
.classic-word-count { padding: 10px 16px 16px; color: #646970; background: #fff; }
.classic-publish-box p { color: #1d2327; padding: 0 16px; }
.classic-publish-actions { display: flex; gap: 12px; padding: 16px; }
.classic-publish-actions a,.classic-publish-actions button,.classic-publish-button {
  border: 1px solid #2271b1; background: #fff; color: #2271b1; border-radius: 6px; padding: 10px 14px; font-weight: 600;
}
.classic-publish-button { width: calc(100% - 32px); margin: 16px; background: #2271b1; color: #fff; }
.classic-seo-alert {
  margin: 12px 16px; padding: 10px 12px; border-radius: 6px; background: #f6f7f7; color: #50575e;
}
.wp-admin-content,.wp-admin-page,.wp-admin-page * { color: #1d2327; }
.wp-admin-page a,.wp-secondary-link { color: #2271b1; }
.wp-admin-content { background: #f0f0f1; }
.wp-admin-bar { background: #fff; border-bottom: 1px solid #dcdcde; }
.wp-admin-sidebar { background: #111827; }
.wp-admin-sidebar a { color: #f3f4f6; }

@media (max-width: 1100px) {
  .browse-category-grid, .clean-store-grid, .featured-store-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .browse-category-grid-compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .clean-stats-grid, .classic-editor-form { grid-template-columns: 1fr; }
  .main-nav { display:none; }
}

@media (max-width: 640px) {
  .browse-category-grid, .browse-category-grid-compact, .clean-store-grid, .featured-store-row { grid-template-columns: 1fr; }
  .clean-search { grid-template-columns: 24px 1fr; }
  .clean-search button { grid-column: 1 / -1; }
  .clean-hero-inner h1 { font-size: 2.6rem; }
}


.clean-store-top { align-items: flex-start; }
.clean-store-top .tag {
  max-width: 140px;
  text-align: center;
  line-height: 1.2;
  white-space: normal;
  justify-content: center;
  flex-shrink: 0;
}
.clean-store-brand > div { min-width: 0; }
.clean-store-brand h3 {
  font-size: 1.55rem;
  line-height: 1.1;
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}
.store-domain {
  display: block;
  overflow-wrap: anywhere;
}
.clean-store-card p {
  min-height: 120px;
}
@media (max-width: 1200px) {
  .clean-store-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .clean-store-top .tag {
    max-width: none;
  }
}

/* === 2026 refresh: wider SimplyCodes-inspired layout === */
body {
  background-color: #020806;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    radial-gradient(circle at 15% 8%, rgba(29,255,156,0.09), transparent 18%),
    linear-gradient(180deg, #03100c 0%, #020806 100%);
  background-size: 48px 48px, 48px 48px, auto, auto;
  background-position: center top, center top, center top, center top;
}

.container {
  width: 100%;
  max-width: none;
  padding-inline: 32px;
  margin: 0 auto;
}

.site-header {
  background: rgba(2, 8, 6, 0.92);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-shell {
  min-height: 72px;
  gap: 18px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.main-nav {
  gap: 28px;
  margin-inline: auto;
  font-weight: 600;
}

.main-nav a {
  color: #d4dfda;
}

.nav-cta {
  padding: 12px 22px;
  background: var(--accent);
  font-size: 1rem;
}

.clean-hero,
.page-hero,
.section,
.stats-band {
  padding-inline: 0;
}

.simply-hero {
  padding-top: 64px;
  padding-bottom: 42px;
}

.clean-hero-inner,
.simply-directory-inner {
  max-width: 900px;
  margin-inline: auto;
}

.simply-hero-inner {
  max-width: 900px;
  margin-inline: auto;
}

.clean-hero-inner h1 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin: 18px 0 20px;
}

.clean-hero-text {
  max-width: 780px;
  font-size: 1.35rem;
  color: #c7d6d0;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  color: #dce8e3;
}

.hero-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  display: inline-block;
}

.clean-search {
  max-width: 760px;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  background: rgba(0,0,0,0.48);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 8px 8px 8px 18px;
}

.clean-search input {
  min-height: 60px;
  font-size: 1.1rem;
}

.clean-search button {
  min-height: 56px;
  padding-inline: 22px;
}

.hero-popular-links,
.directory-hero-links,
.section-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-popular-links a,
.directory-hero-links a,
.section-links a,
.clean-section-head a {
  color: var(--accent);
  font-weight: 700;
}

.clean-stats-band {
  padding-top: 8px;
  padding-bottom: 36px;
}

.clean-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.clean-stats-grid article {
  min-height: 128px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
}

.clean-stats-grid strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: #fff;
  line-height: 1;
}

.clean-stats-grid span {
  color: #afbeb8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
}

.clean-section {
  padding-block: 32px 42px;
}

.simply-section-head {
  align-items: end;
  gap: 22px;
  margin-bottom: 22px;
}

.simply-section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  margin: 0;
}

.directory-chip-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(75, 91, 85, 0.95) rgba(2, 7, 5, 0.85);
}

.directory-chip-row::-webkit-scrollbar,
.store-search-results::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}

.directory-chip-row::-webkit-scrollbar-track,
.store-search-results::-webkit-scrollbar-track {
  background: rgba(2, 7, 5, 0.88);
  border-radius: 999px;
}

.directory-chip-row::-webkit-scrollbar-thumb,
.store-search-results::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #1dff9c, #294239);
  border-radius: 999px;
}

.directory-chip-row::-webkit-scrollbar-corner,
.store-search-results::-webkit-scrollbar-corner {
  background: rgba(2, 7, 5, 0.88);
}

.directory-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  color: #d2ddd8;
  padding: 0 16px;
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  font: inherit;
}

.directory-chip.is-active,
.directory-chip:hover {
  color: #04140d;
  background: var(--accent);
  border-color: transparent;
}

.alphabet-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  justify-content: center;
}

.alphabet-row a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #d8e5df;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.025);
  font-weight: 700;
}

.alphabet-row a:hover {
  color: #03120b;
  background: var(--accent);
}

.store-directory-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.store-directory-category {
  display: grid;
  gap: 8px;
  padding: 18px;
  min-height: 112px;
  border-radius: 20px;
  color: #effff8;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(145deg, rgba(12,21,19,0.98), rgba(4,10,8,0.96));
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.store-directory-category.is-active,
.store-directory-category:hover {
  border-color: rgba(29,255,156,0.38);
  background: linear-gradient(145deg, rgba(13,42,30,0.98), rgba(4,14,10,0.96));
}

.store-directory-category span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.store-directory-category small {
  color: #9fb2aa;
  line-height: 1.45;
}

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

.directory-store-list-featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.directory-store-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  background: rgba(8,12,13,0.95);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.directory-store-card:hover {
  transform: translateY(-2px);
  border-color: rgba(29,255,156,0.32);
  background: rgba(10,19,16,0.98);
}

.directory-store-card a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  color: #f4fff9;
  min-height: 116px;
}

.directory-store-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 15px;
  background: #f4f4f5;
  color: #5562ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-weight: 800;
}

.directory-store-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.directory-store-body {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.directory-store-body strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  overflow-wrap: anywhere;
}

.directory-store-body small {
  color: #9fafaa;
  overflow-wrap: anywhere;
}

.directory-store-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
  color: #bdebd8;
  font-size: 0.86rem;
}

.directory-store-meta span {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(29,255,156,0.09);
}

.directory-count {
  color: #9fb2aa;
  font-weight: 700;
}

.store-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.store-load-more {
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  background: var(--accent);
  color: #03120b;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(29,255,156,0.18);
}

.store-load-more:disabled {
  cursor: default;
  opacity: 0.65;
  box-shadow: none;
}

.alphabet-caption {
  margin: 14px 0 0;
  color: #8e9d98;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.search-dot {
  width: 16px;
  height: 16px;
  border: 2px solid #7f8c88;
  border-radius: 999px;
  position: relative;
  display: inline-block;
}

.search-dot::after {
  content: "";
  width: 7px;
  height: 2px;
  background: #7f8c88;
  position: absolute;
  right: -6px;
  bottom: -4px;
  transform: rotate(45deg);
  border-radius: 999px;
}

.store-search-box {
  position: relative;
  overflow: visible;
  z-index: 20;
}

.store-search-clear {
  position: static;
  transform: none;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #406aff;
  font-size: 1.5rem;
  cursor: pointer;
  align-self: center;
  justify-self: center;
  opacity: 0;
  pointer-events: none;
}

.store-search-box.has-search-open .store-search-clear {
  opacity: 1;
  pointer-events: auto;
}

.store-search-box input[type="search"]::-webkit-search-cancel-button,
.store-search-box input[type="search"]::-webkit-search-decoration {
  display: none;
  -webkit-appearance: none;
}

.store-search-results {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  right: 0;
  display: none;
  max-height: 430px;
  overflow-y: auto;
  background: #020303;
  border: 1px solid rgba(255,255,255,0.16);
  border-top: 0;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 28px 90px rgba(0,0,0,0.58);
  scrollbar-width: thin;
  scrollbar-color: rgba(75, 91, 85, 0.95) rgba(2, 7, 5, 0.9);
}

.store-search-box.has-search-open {
  border-radius: 10px 10px 0 0;
}

.store-search-results.is-open {
  display: grid;
}

.store-search-result {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  color: #f2f8f5;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}

.store-search-result:hover {
  background: rgba(29,255,156,0.06);
}

.store-search-logo {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f5f5f6;
  color: #5360ff;
  overflow: hidden;
  font-weight: 900;
}

.store-search-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.store-search-result strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
}

.store-search-result > span:last-child {
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(29,255,156,0.12);
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}

.store-search-empty {
  margin: 0;
  padding: 20px;
  color: #a6b2ae;
  text-align: center;
}

.affiliate-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(29,255,156,0.18);
  border-radius: 16px;
  background: rgba(29,255,156,0.06);
  color: #c9dbd4;
  font-size: 0.95rem;
  line-height: 1.5;
}

.affiliate-notice strong {
  color: var(--accent);
  white-space: nowrap;
}

.affiliate-notice a {
  color: var(--accent);
  font-weight: 800;
  white-space: nowrap;
}

.footer-disclosure {
  max-width: 680px;
  color: #93a59d;
  font-size: 0.88rem;
  line-height: 1.5;
}

.simply-directory-hero {
  background:
    radial-gradient(circle at 50% 12%, rgba(29,255,156,0.08), transparent 28%),
    #020403;
}

.simply-directory-inner {
  text-align: center;
}

.simply-directory-inner .hero-pill {
  border: 0;
  background: transparent;
  color: var(--accent);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
}

.simply-directory-inner .hero-pill .dot {
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  border-radius: 0;
}

.simply-directory-inner .clean-hero-text {
  margin-inline: auto;
  color: #b7c2be;
  line-height: 1.55;
}

.simply-directory-inner .clean-search {
  max-width: 680px;
  margin: 34px auto 0;
  grid-template-columns: 28px minmax(0, 1fr) 34px;
  text-align: left;
  border-radius: 10px;
  background: #050607;
}

.simply-hero-inner .store-search-box {
  grid-template-columns: 28px minmax(0, 1fr) 34px auto;
}

.simply-hero-inner .store-search-box input,
.simply-directory-inner .store-search-box input {
  min-width: 0;
}

.simply-directory-inner .clean-search button[type="submit"] {
  display: none;
}

.popular-store-directory .container {
  max-width: 1250px;
}

.popular-store-directory .directory-store-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.popular-store-directory .directory-store-card a {
  display: grid;
  align-items: start;
  min-height: 168px;
}

.popular-store-directory .directory-store-logo {
  width: 46px;
  height: 46px;
  flex-basis: 46px;
}

.popular-store-directory .directory-store-meta {
  display: grid;
  gap: 8px;
}

.popular-store-directory .directory-store-meta span {
  width: fit-content;
}

.featured-store-row,
.clean-store-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.clean-store-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.clean-store-main {
  display: block;
  padding: 20px;
  height: 100%;
}

.clean-store-top {
  margin-bottom: 8px;
}

.clean-store-brand {
  align-items: flex-start;
}

.clean-store-heading {
  min-width: 0;
}

.clean-store-card h3 {
  margin: 0 0 6px;
  font-size: 1.95rem;
  line-height: 1;
  overflow-wrap: anywhere;
}

.store-domain {
  color: #a2b2ac;
  font-size: 1rem;
}

.clean-store-category-row {
  margin-bottom: 14px;
}

.clean-store-category-row .tag {
  padding: 8px 14px;
  font-size: 0.86rem;
}

.clean-store-card p {
  min-height: 0;
  margin: 0 0 18px;
  color: #d5e3dd;
  font-size: 1.02rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.store-health-line {
  font-size: 1rem;
}

.store-health-line strong {
  font-weight: 600;
  color: #d9e7e1;
}

.store-health-bar {
  margin: 12px 0 0;
}

.browse-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.browse-category-card {
  min-height: 0;
  padding: 0;
}

.browse-category-main {
  display: block;
  padding: 22px;
}

.browse-category-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.browse-category-card p {
  min-height: 0;
}

.simply-directory-hero {
  padding-top: 54px;
  padding-bottom: 18px;
}

.simply-directory-inner h1 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.store-detail-hero {
  padding-top: 46px;
  padding-bottom: 22px;
}

.store-detail-shell,
.store-offers-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.store-detail-maincard,
.store-detail-sidecard,
.store-info-stack .info-card {
  background: rgba(8,12,13,0.94);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.store-detail-maincard {
  padding: 28px;
}

.store-detail-sidecard {
  padding: 24px;
}

.store-detail-head {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 12px;
}

.store-logo-box-large {
  width: 78px;
  height: 78px;
  flex-basis: 78px;
  border-radius: 18px;
}

.store-detail-titleblock h1 {
  margin: 10px 0 6px;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 0.98;
}

.store-domain-large {
  font-size: 1.05rem;
}

.store-detail-summary {
  margin-top: 0;
}

.store-detail-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
  margin: 24px 0;
}

.store-detail-stats article {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
}

.store-detail-stats strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
}

.store-detail-stats span {
  color: #aab8b2;
  font-size: 0.9rem;
}

.store-info-stack {
  display: grid;
  gap: 20px;
}

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

.info-card h3 {
  margin-top: 0;
}

.rich-content,
.page-hero-shell,
.page-hero-shell + * {
  max-width: 980px;
}

@media (max-width: 1200px) {
  .featured-store-row,
  .clean-store-grid,
  .browse-category-grid,
  .store-directory-category-grid,
  .directory-store-list,
  .directory-store-list-featured,
  .store-detail-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-detail-shell,
  .store-offers-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .container {
    padding-inline: 20px;
  }

  .nav-shell {
    min-height: auto;
    flex-wrap: wrap;
    padding-block: 14px;
  }

  .main-nav {
    display: flex;
    order: 3;
    width: 100%;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 4px;
  }

  .nav-cta {
    margin-left: auto;
  }

  .clean-search {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .clean-search button {
    grid-column: 1 / -1;
  }

  .clean-stats-grid,
  .featured-store-row,
  .clean-store-grid,
  .browse-category-grid,
  .store-directory-category-grid,
  .directory-store-list,
  .directory-store-list-featured,
  .coupon-grid-store,
  .store-detail-stats {
    grid-template-columns: 1fr;
  }

  .store-detail-head {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .clean-hero-inner h1,
  .simply-directory-inner h1,
  .store-detail-titleblock h1,
  .simply-section-head h2 {
    font-size: 2.5rem;
  }

  .clean-hero-text {
    font-size: 1.05rem;
  }

  .hero-popular-links,
  .directory-hero-links,
  .section-links,
  .hero-actions {
    gap: 12px;
  }

  .clean-store-main,
  .browse-category-main,
  .store-detail-maincard,
  .store-detail-sidecard,
  .store-summary-card,
  .info-card {
    padding: 18px;
  }

  .clean-store-card h3 {
    font-size: 1.6rem;
  }
}


.admin-add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
}

.wp-editor-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.wp-list-tools .wp-primary-button,
.wp-editor-headline .wp-primary-button {
  color: #fff !important;
}

.coupon-meta span:first-child {
  color: var(--accent);
  font-weight: 700;
}

.nav-utility-links{display:flex;align-items:center;gap:14px;}
.blog-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:24px;}
.blog-card,.auth-card{background:#0d1714;border:1px solid rgba(255,255,255,.08);border-radius:24px;padding:24px;box-shadow:0 12px 40px rgba(0,0,0,.18);}
.blog-card h3{margin:8px 0 10px;font-size:1.35rem;line-height:1.2;}
.blog-card p{color:#a8bbb2;}
.blog-meta{display:flex;flex-wrap:wrap;gap:12px;color:#89a298;font-size:.92rem;margin:14px 0 16px;}
.article-copy{max-width:900px;margin:0 auto;text-align:left;}
.auth-card{max-width:560px;margin:0 auto;}
.content-shell{max-width:900px;margin:0 auto;background:#0d1714;border:1px solid rgba(255,255,255,.08);border-radius:24px;padding:32px;}
.rich-content h1,.rich-content h2,.rich-content h3{margin:1.2em 0 .5em;}
.rich-content p,.rich-content li{line-height:1.8;color:#d7e4de;}
.rich-content blockquote{border-left:4px solid #65d39a;padding-left:18px;color:#b8cfc5;margin:24px 0;}
@media (max-width:900px){.nav-utility-links{width:100%;justify-content:flex-end;}.content-shell{padding:22px;}}
@media (max-width:640px){.nav-utility-links{justify-content:stretch;}.nav-utility-links a{flex:1;text-align:center;}.blog-card,.auth-card{padding:18px;border-radius:18px;}}

/* Final mobile safety layer: keep store cards readable on real phone browsers. */
@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    padding-inline: 18px;
  }

  .clean-hero,
  .simply-hero,
  .simply-directory-hero {
    padding-top: 32px;
    padding-bottom: 28px;
  }

  .clean-hero-inner,
  .simply-hero-inner,
  .simply-directory-inner {
    max-width: 100%;
    text-align: center;
  }

  .clean-hero-inner h1,
  .simply-directory-inner h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 11vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  .clean-hero-text {
    font-size: 1rem;
    line-height: 1.55;
  }

  .clean-search,
  .simply-hero-inner .store-search-box,
  .simply-directory-inner .store-search-box {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 28px minmax(0, 1fr) 34px !important;
    gap: 10px;
    padding: 12px 14px;
  }

  .clean-search input {
    min-height: 48px;
    font-size: 0.98rem;
  }

  .clean-search button[type="submit"] {
    grid-column: 1 / -1;
    min-height: 48px;
    width: 100%;
  }

  .store-search-results {
    max-height: 360px;
  }

  .store-search-result {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px;
  }

  .store-search-result > span:last-child {
    font-size: 0.78rem;
    padding: 7px 9px;
  }

  .section-head,
  .simply-section-head {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }

  .section-links {
    justify-content: flex-start;
  }

  .directory-count {
    justify-self: start;
  }

  .directory-chip-row {
    width: 100%;
    margin-inline: 0;
    padding-bottom: 12px;
  }

  .popular-store-directory .directory-store-list,
  .directory-store-list,
  .directory-store-list-featured,
  .featured-store-row,
  .clean-store-grid,
  .store-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 14px;
    width: 100%;
  }

  .popular-store-directory .directory-store-card,
  .directory-store-card {
    width: 100%;
    min-width: 0;
  }

  .popular-store-directory .directory-store-card a,
  .directory-store-card a {
    display: flex;
    align-items: center;
    min-height: 112px;
    padding: 16px;
    gap: 14px;
  }

  .popular-store-directory .directory-store-logo,
  .directory-store-logo {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
  }

  .directory-store-body {
    min-width: 0;
    width: 100%;
  }

  .directory-store-body strong {
    font-size: 1.08rem;
    line-height: 1.15;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .directory-store-body small {
    font-size: 0.9rem;
  }

  .popular-store-directory .directory-store-meta,
  .directory-store-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }

  .directory-store-meta span {
    width: auto;
    max-width: 100%;
    font-size: 0.8rem;
  }

  .store-load-more {
    width: min(100%, 290px);
  }

  .affiliate-notice {
    display: grid;
    gap: 6px;
    font-size: 0.9rem;
  }

  .affiliate-notice strong,
  .affiliate-notice a {
    white-space: normal;
  }
}
