
:root {
  color-scheme: dark;
  --page: #0c111c;
  --panel: #151d2b;
  --panel-raised: #1b2535;
  --line: #2a3546;
  --muted: #a2adbe;
  --yellow: #f6d34b;
  --text: #f4f6fa;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
.brand-name {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.04em;
}
a,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a,
input,
select,
textarea {
  outline-offset: 4px;
}
button:not(:disabled),
select {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--yellow);
}
img {
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}
input,
select,
textarea {
  min-width: 0;
}
::selection {
  background: var(--yellow);
  color: var(--page);
}
[hidden] {
  display: none !important;
}
.shell {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 100;
  background: var(--yellow);
  color: var(--page);
  padding: 12px 20px;
  border-radius: 8px;
}
.skip-link:focus {
  top: 12px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
}
.muted {
  color: var(--muted);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(12, 17, 28, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}
.brand-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  border-radius: 12px;
  font-size: 24px;
}
.brand-name {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -1px;
}
.brand-name span {
  color: var(--yellow);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 600;
}
.desktop-nav a {
  color: #b8c1ce;
  transition: color 0.2s;
}
.desktop-nav a:hover {
  color: var(--yellow);
}
.nav-cta {
  border: 1px solid #47505b;
  border-radius: 8px;
  padding: 10px 15px;
  color: var(--text) !important;
}
.icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  color: var(--text);
}
.mobile-toggle {
  display: none;
}
.mobile-nav {
  padding: 0 24px 20px;
  border-top: 1px solid var(--line);
}
.mobile-nav a {
  display: block;
  padding: 14px 0;
  color: #dce1e8;
  border-bottom: 1px solid var(--line);
}
.hero {
  padding: 65px 0 52px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
}
.hero h1 {
  font-size: clamp(40px, 4.4vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.055em;
  margin: 22px 0;
}
.hero h1 span {
  color: var(--yellow);
}
.hero-description {
  max-width: 440px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}
.search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #455063;
  background: #182130;
  border-radius: 12px;
  padding: 7px 7px 7px 17px;
  margin-top: 28px;
  box-shadow: 0 10px 35px #0002;
}
.search-form:focus-within {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px #f6d34b16;
}
.search-form input {
  background: none;
  border: 0;
  outline: none !important;
  width: 100%;
  color: var(--text);
  font-size: 14px;
  padding: 7px 0;
  min-height: 36px;
}
.search-form input::placeholder {
  color: #9aa5b6;
}
.search-form > i {
  color: #8a96a8;
  font-size: 16px;
}
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  background: var(--yellow);
  color: #171a1c;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 800;
  transition:
    background 0.2s,
    transform 0.2s;
  text-decoration: none;
}
.button-primary:hover {
  background: #ffe276;
  transform: translateY(-1px);
}
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--panel);
  color: #dce2ec;
  font-size: 13px;
  font-weight: 600;
}
.button-secondary:hover {
  background: var(--panel-raised);
}
.hero-footnote {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 17px;
  font-size: 11px;
  color: #a7b3c3;
}
.hero-footnote i {
  color: var(--yellow);
  margin-right: 6px;
}
.spotlight {
  position: relative;
  border: 1px solid #384251;
  border-radius: 18px;
  overflow: hidden;
  background: var(--panel);
  text-decoration: none;
  display: block;
  box-shadow: 0 24px 60px #0003;
}
.spotlight-image {
  height: 250px;
  position: relative;
  overflow: hidden;
}
.spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.spotlight:hover img {
  transform: scale(1.035);
}
.spotlight-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #151d2b 0%, transparent 60%);
}
.spotlight-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  border: 1px solid #ffffff38;
  background: #101622d9;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
}
.spotlight-body {
  padding: 2px 25px 25px;
  position: relative;
}
.spotlight-body .eyebrow {
  font-size: 10px;
}
.spotlight-body h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 7px 0 5px;
  line-height: 1.3;
}
.spotlight-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}
.spotlight-arrow {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid #596041;
  color: var(--yellow);
  border-radius: 50%;
}
.collection {
  padding: 36px 0 70px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 90px;
}
.collection-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}
.collection-heading h2 {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 800;
  margin: 7px 0;
}
.collection-heading p {
  color: var(--muted);
  font-size: 13px;
}
.collection-count {
  color: #a9b4c3;
  font-size: 12px;
}
.collection-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 25px;
}
.filter-tabs {
  display: flex;
  gap: 7px;
}
.filter-tab {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 15px;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  color: #aab5c5;
}
.filter-tab[aria-pressed="true"] {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #171a1c;
}
.filter-tab i {
  margin-right: 7px;
}
.sort-select {
  background: transparent;
  color: #b5bfce;
  border: 0;
  font-size: 12px;
  min-height: 44px;
  padding: 8px;
  max-width: 155px;
}
.sort-select option {
  background: var(--panel);
}
.deal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.deal-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 13px;
  overflow: hidden;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.deal-card:hover {
  border-color: #69705a;
  transform: translateY(-4px);
}
.deal-image {
  position: relative;
  aspect-ratio: 1.75;
  background: #202b3d;
  overflow: hidden;
}
.deal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.deal-card:hover .deal-image img {
  transform: scale(1.035);
}
.deal-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #111722dd;
  border: 1px solid #ffffff29;
  backdrop-filter: blur(8px);
  border-radius: 5px;
  padding: 4px 8px;
  font-size: 9px;
  letter-spacing: 0.05em;
  font-weight: 800;
  color: var(--yellow);
}
.deal-body {
  padding: 19px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.deal-brand {
  color: #c9d1df;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.deal-title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  color: #f2f5fa;
  overflow-wrap: anywhere;
}
.deal-description {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  margin: 8px 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 43px;
}
.deal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding: 13px 0;
  margin-top: auto;
  font-size: 11px;
  color: #aeb8c8;
}
.deal-meta .fa-star {
  color: var(--yellow);
  margin-right: 4px;
}
.deal-meta .fa-ticket-alt {
  margin-right: 4px;
}
.deal-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 10px 13px;
  background: var(--yellow);
  border-radius: 7px;
  color: #171a1c;
  font-size: 12px;
  font-weight: 800;
}
.deal-link:hover {
  background: #ffe276;
}
.empty-state {
  grid-column: 1/-1;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 16px;
  padding: 48px 20px;
  background: var(--panel);
}
.empty-state i {
  font-size: 28px;
  color: var(--yellow);
}
.empty-state h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 14px 0 7px;
}
.empty-state p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 14px;
}
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.pagination a,
.pagination span {
  display: grid;
  place-items: center;
  min-width: 42px;
  min-height: 44px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  color: #b8c2d0;
}
.pagination [aria-current] {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #171a1c;
  font-weight: 800;
}
.how-section {
  border-top: 1px solid var(--line);
  padding: 52px 0 60px;
  background: #101723;
}
.how-heading {
  margin-bottom: 30px;
}
.how-heading h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 8px 0;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.how-item {
  display: flex;
  gap: 17px;
}
.step-number {
  flex-shrink: 0;
  font-family: "Manrope", sans-serif;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid #52513b;
  border-radius: 10px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}
.how-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.how-item p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  color: var(--muted);
  font-size: 12px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
}
.footer-top .brand-name {
  font-size: 18px;
}
.footer-top p {
  margin-top: 12px;
  max-width: 350px;
  font-size: 12px;
}
.footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}
.footer-links a:hover {
  color: var(--yellow);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 22px;
  font-size: 10px;
  letter-spacing: 0.02em;
}
.footer-bottom span:last-child {
  color: #b8c0cd;
}
.search-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 20px;
  color: #c4ccda;
  font-size: 13px;
}
.search-status button {
  color: var(--yellow);
  min-height: 44px;
  font-size: 12px;
  font-weight: 700;
}
.image-fallback {
  object-fit: contain !important;
  padding: 28px;
  background: #202b3d;
}

/* Existing detail-page hooks and unlock scripts are intentionally retained. */
.coupon-page .container {
  max-width: 1180px;
}
.coupon-page .banana-gradient,
.coupon-page .banana-gradient-2 {
  background: var(--page);
}
.coupon-page .card-gradient {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: none;
  border-radius: 16px;
}
.coupon-page .bounce-animation,
.coupon-page .pulse-glow,
.coupon-page .benefits-section,
.coupon-page .animate-pulse {
  animation: none;
}
.coupon-page .card-hover:hover {
  transform: none;
  box-shadow: none;
}
.coupon-page .coupon-layout {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 24px;
  align-items: start;
}
.coupon-page .coupon-layout > div {
  margin: 0;
  min-width: 0;
}
.coupon-page .unlock-card {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: sticky;
  top: 105px;
  padding: 26px;
}
.coupon-page .about-card {
  grid-column: 1;
  grid-row: 1;
  padding: 28px;
}
.coupon-page .stats-panel {
  grid-column: 1;
  grid-row: 2;
  padding: 24px;
}
.coupon-page .rating-panel {
  grid-column: 1;
  grid-row: 3;
  padding: 24px;
}
.coupon-page .coupon-hero {
  margin-bottom: 28px;
  border-radius: 16px;
  border-color: var(--line);
  box-shadow: none;
}
.coupon-page .coupon-hero > div > div {
  height: 340px;
}
.coupon-page .coupon-hero h1 {
  font-size: clamp(24px, 3vw, 38px);
  white-space: normal;
  line-height: 1.2;
  overflow-wrap: anywhere;
  max-width: 830px;
}
.coupon-page .coupon-hero p {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  max-width: 720px;
  line-height: 1.7;
}
.coupon-page .coupon-hero img {
  object-position: center 40%;
}
.coupon-page .unlock-card h2 {
  font-size: 24px;
}
.coupon-page .unlock-card .bg-gradient-to-r.from-purple-500 {
  background: #f6d34b13;
  border: 1px solid #f6d34b38;
  color: var(--yellow);
  border-radius: 6px;
  padding: 6px 12px;
  margin-bottom: 15px;
  font-size: 11px;
}
.coupon-page .unlock-card .from-red-500 {
  background: #f6d34b10;
  color: #e7ce75;
  font-size: 11px;
  font-weight: 500;
}
.coupon-page .unlock-card .from-gray-600 {
  background: #0e1522;
  border: 1px dashed #4b576b;
  border-radius: 12px;
  padding: 25px 12px;
  margin-bottom: 20px;
}
.coupon-page .unlock-card #publicMessage {
  font-size: 11px;
  color: var(--muted);
}
.coupon-page .coupon-code-partial {
  font-family: monospace;
  letter-spacing: 2px;
  font-size: 24px;
  overflow-wrap: anywhere;
  word-break: break-all;
  user-select: none;
}
.coupon-page button[onclick^="unlockCoupon("] {
  background: var(--yellow);
  border-radius: 9px;
  padding: 15px 10px;
  font-size: 14px;
  box-shadow: none;
  transform: none;
  margin-bottom: 16px;
  min-height: 52px;
}
.coupon-page button[onclick^="unlockCoupon("] * {
  pointer-events: none;
}
.coupon-page button[onclick^="unlockCoupon("] .text-2xl {
  display: none;
}
.coupon-page .unlock-card .grid {
  grid-template-columns: 1fr;
  gap: 6px;
}
.coupon-page .unlock-card .grid > div {
  background: none;
  border: 0;
  padding: 2px;
  font-size: 11px;
}
.coupon-page .unlock-card > .absolute {
  display: none;
}
.coupon-page .feature-icon {
  background: #f6d34b15;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  margin-bottom: 12px;
}
.coupon-page .feature-icon i {
  color: var(--yellow);
  font-size: 16px;
}
.coupon-page .about-card > .text-center {
  text-align: left;
  margin-bottom: 20px;
}
.coupon-page .about-card h2 {
  font-size: 23px;
}
.coupon-page .about-card .w-24.h-1,
.coupon-page .stats-panel .w-24.h-1,
.coupon-page .rating-panel .w-24.h-1,
.coupon-page .unlock-card .w-32.h-1 {
  display: none;
}
.coupon-page .about-card .from-gray-800 {
  padding: 0;
  background: none;
  border: 0;
  margin-bottom: 25px;
}
.coupon-page .prose {
  overflow-wrap: anywhere;
}
.coupon-page .prose p,
.coupon-page .prose span,
.coupon-page .prose strong {
  font-size: 14px;
  line-height: 1.9;
}
.coupon-page .prose h3 {
  font-size: 20px;
}
.coupon-page .prose h4 {
  font-size: 16px;
}
.coupon-page .benefits-section {
  background: #101824;
  border: 1px solid var(--line);
  padding: 18px;
}
.coupon-page .benefits-section .absolute {
  display: none;
}
.coupon-page .benefits-section h3 {
  font-size: 15px;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.coupon-page .benefits-section h3 > span {
  display: none;
}
.coupon-page .benefits-section .grid > div {
  background: none;
  padding: 0;
}
.coupon-page .benefits-section .grid > div > div:first-child {
  width: 28px;
  height: 28px;
  background: #273347;
  border-radius: 7px;
}
.coupon-page .benefits-section .font-semibold {
  font-size: 12px;
}
.coupon-page .benefits-section .text-sm {
  font-size: 10px;
  color: var(--muted);
}
.coupon-page .stats-card {
  background: #101824;
  border: 1px solid var(--line);
  padding: 12px 6px;
  box-shadow: none;
  transform: none;
}
.coupon-page .stats-card .w-12 {
  display: none;
}
.coupon-page .stats-card .text-2xl {
  font-size: 20px;
}
.coupon-page .stats-card .text-sm {
  font-size: 10px;
}
.coupon-page .stats-card .h-1 {
  display: none;
}
.coupon-page .stats-panel h2 {
  font-size: 19px;
}
.coupon-page .stats-panel .mb-8 {
  margin-bottom: 18px;
}
.coupon-page .stats-panel > .absolute {
  display: none;
}
.coupon-page .rating-panel .rating-star {
  width: 44px;
  height: 44px;
}
.coupon-page .rating-panel h3 {
  font-size: 20px;
}
.coupon-page .rating-panel p {
  font-size: 13px;
}
.coupon-page .code-hidden {
  filter: blur(3px);
  color: #8b97aa;
}
.coupon-page #instructionsModal,
.coupon-page #loadingOverlay {
  padding: 16px;
  overflow-y: auto;
  z-index: 70;
}
.coupon-page #instructionsModal > div,
.coupon-page #loadingOverlay > div {
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 16px;
}
.coupon-page #instructionsModal h3,
.coupon-page #loadingOverlay h3 {
  color: var(--text);
  font-size: 23px;
}
.coupon-page #instructionsModal .text-gray-600,
.coupon-page #loadingOverlay .text-gray-600 {
  color: #bac4d2;
}
.coupon-page #instructionsModal .bg-gray-50 {
  background: #202b3d;
}
.coupon-page .fixed.top-4.right-4 {
  max-width: calc(100vw - 32px);
  font-size: 13px;
  overflow-wrap: anywhere;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--muted);
  margin: 0 0 20px;
}
.breadcrumb span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumb a {
  white-space: nowrap;
}
.breadcrumb i {
  font-size: 8px;
}

@media (min-width: 1600px) {
  .hero {
    padding-top: 80px;
    padding-bottom: 65px;
  }
}
@media (max-width: 1100px) {
  .hero {
    gap: 35px;
  }
  .deal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .coupon-page .coupon-layout {
    grid-template-columns: minmax(0, 1fr) 350px;
  }
  .how-grid {
    gap: 24px;
  }
}
@media (max-width: 800px) {
  .shell {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 72px;
  }
  .hero {
    gap: 24px;
    padding: 42px 0;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero-description {
    font-size: 14px;
  }
  .spotlight-image {
    height: 210px;
  }
  .spotlight-body {
    padding: 0 18px 20px;
  }
  .spotlight-body h2 {
    font-size: 19px;
  }
  .deal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .desktop-nav {
    gap: 20px;
  }
  .desktop-nav .nav-cta {
    display: none;
  }
  .how-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .coupon-page .coupon-layout {
    display: flex;
    flex-direction: column;
  }
  .coupon-page .coupon-layout > div {
    width: 100%;
  }
  .coupon-page .unlock-card {
    position: static;
  }
  .coupon-page .coupon-hero > div > div {
    height: 290px;
  }
  .coupon-page .coupon-layout > .unlock-card {
    padding: 24px;
  }
  .coupon-page .unlock-card .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .coupon-page .unlock-card .grid > div {
    font-size: 10px;
  }
  .coupon-page .container {
    padding-inline: 20px;
  }
  .coupon-page .about-card {
    padding: 24px;
  }
}
@media (max-width: 600px) {
  .shell {
    width: calc(100% - 32px);
  }
  .header-inner {
    height: 68px;
    gap: 12px;
  }
  .brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 21px;
  }
  .brand-name {
    font-size: 19px;
  }
  .desktop-nav {
    display: none;
  }
  .mobile-toggle {
    display: grid;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0 32px;
  }
  .hero h1 {
    font-size: 44px;
    margin: 17px 0;
    max-width: 390px;
  }
  .hero-description {
    max-width: 400px;
    font-size: 14px;
  }
  .hero .eyebrow {
    font-size: 10px;
  }
  .search-form {
    margin-top: 22px;
    gap: 8px;
    padding-left: 12px;
  }
  .search-form input {
    font-size: 16px;
  }
  .search-form .button-primary {
    padding: 10px 14px;
    font-size: 12px;
  }
  .hero-footnote {
    gap: 14px;
    font-size: 10px;
  }
  .spotlight {
    display: grid;
    grid-template-columns: 115px minmax(0, 1fr);
    border-radius: 12px;
    box-shadow: none;
  }
  .spotlight-image {
    height: 100%;
    min-height: 135px;
  }
  .spotlight-image::after {
    display: none;
  }
  .spotlight-label {
    display: none;
  }
  .spotlight-body {
    padding: 18px 15px;
  }
  .spotlight-body h2 {
    font-size: 17px;
    margin: 8px 0;
  }
  .spotlight-bottom {
    font-size: 10px;
  }
  .spotlight-arrow {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
  }
  .collection {
    padding: 28px 0 40px;
  }
  .collection-heading {
    align-items: center;
    margin-bottom: 19px;
    gap: 8px;
  }
  .collection-heading h2 {
    font-size: 25px;
  }
  .collection-heading p {
    font-size: 12px;
  }
  .collection-count {
    font-size: 10px;
    white-space: nowrap;
  }
  .collection-tools {
    gap: 7px;
    margin-bottom: 19px;
    flex-wrap: wrap;
  }
  .filter-tabs {
    gap: 6px;
  }
  .filter-tab {
    font-size: 11px;
    padding: 8px 11px;
    min-height: 44px;
  }
  .sort-select {
    font-size: 11px;
    max-width: 125px;
    padding-inline: 2px;
  }
  .deal-grid {
    gap: 12px;
  }
  .deal-body {
    padding: 13px;
  }
  .deal-brand {
    font-size: 9px;
    letter-spacing: 0.06em;
  }
  .deal-title {
    font-size: 14px;
    line-height: 1.45;
  }
  .deal-description {
    font-size: 11px;
    line-height: 1.65;
    min-height: 36px;
    margin: 7px 0 12px;
  }
  .deal-meta {
    font-size: 10px;
    padding: 10px 0;
  }
  .deal-meta > span:last-child {
    font-size: 9px;
  }
  .deal-badge {
    top: 8px;
    left: 8px;
    font-size: 8px;
    padding: 3px 6px;
  }
  .deal-link {
    font-size: 11px;
    padding: 10px;
    min-height: 44px;
  }
  .how-section {
    padding: 32px 0 38px;
  }
  .how-heading h2 {
    font-size: 25px;
  }
  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .footer-links {
    gap: 24px;
  }
  .coupon-page .container {
    padding-inline: 16px;
  }
  .coupon-page .coupon-hero {
    margin-bottom: 18px;
  }
  .coupon-page .coupon-hero > div > div {
    height: 270px;
  }
  .coupon-page .coupon-hero .bottom-6 {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }
  .coupon-page .coupon-hero .top-6 {
    top: 16px;
  }
  .coupon-page .coupon-hero .left-6 {
    left: 16px;
  }
  .coupon-page .coupon-hero .right-6 {
    right: 16px;
  }
  .coupon-page .coupon-hero h1 {
    font-size: 26px;
  }
  .coupon-page .coupon-hero p {
    font-size: 12px;
  }
  .coupon-page .coupon-hero .rounded-full {
    font-size: 10px;
    padding: 6px 10px;
  }
  .coupon-page .coupon-layout {
    gap: 18px;
  }
  .coupon-page .coupon-layout > .unlock-card {
    padding: 22px 18px;
  }
  .coupon-page .unlock-card h2 {
    font-size: 23px;
  }
  .coupon-page .unlock-card .mb-6 {
    margin-bottom: 16px;
  }
  .coupon-page .about-card,
  .coupon-page .stats-panel,
  .coupon-page .rating-panel {
    padding: 20px;
  }
  .coupon-page .stats-panel .grid {
    gap: 9px;
  }
  .coupon-page .benefits-section .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }
  .coupon-page .benefits-section {
    padding: 15px;
  }
  .coupon-page #instructionsModal > div,
  .coupon-page #loadingOverlay > div {
    padding: 24px 18px;
  }
  .coupon-page #instructionsModal .flex.space-x-4 {
    gap: 10px;
    flex-wrap: wrap;
  }
  .coupon-page #instructionsModal .flex.space-x-4 > * {
    margin: 0;
    flex: 1;
    min-width: 100px;
  }
}
@media (max-width: 370px) {
  .deal-grid {
    grid-template-columns: 1fr;
  }
  .deal-image {
    aspect-ratio: 1.9;
  }
  .deal-title {
    font-size: 17px;
  }
  .deal-description {
    font-size: 12px;
  }
  .hero h1 {
    font-size: 39px;
  }
  .collection-count {
    display: none;
  }
  .coupon-page .unlock-card .grid {
    grid-template-columns: 1fr;
  }
  .coupon-page .benefits-section .grid {
    grid-template-columns: 1fr;
  }
}
.coupon-page #instructionsModal button[onclick="proceedToUnlock()"] {
  background: var(--yellow);
  color: #171a1c;
  font-size: 14px;
}
.coupon-page #instructionsModal .bg-yellow-50 {
  background: #f6d34b0d;
  border-color: #f6d34b35;
}
.coupon-page #instructionsModal .text-yellow-800 {
  color: #e0ca80;
}
.coupon-page #instructionsModal .flex.space-x-3 {
  gap: 10px;
}
.coupon-page #instructionsModal .flex.space-x-3 > * {
  margin: 0;
  min-height: 46px;
}
.coupon-page #instructionsModal .bg-gray-100 {
  background: #283348;
  color: #e0e7f1;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
