/* ============================================================
   Page-specific styles ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Krazy Coupons theme
   ============================================================ */



/* CATEGORY PAGE --------------------------------------------- */
.cat-hero {
  padding: 40px 0 32px;
  background: var(--paper);
  border-bottom: 1px solid var(--ink-200);
}
.cat-hero h1 {
  font-size: 44px;
  margin-bottom: 8px;
}
.cat-hero p { color: var(--ink-600); font-size: 16px; max-width: 640px; }
.cat-hero .stats {
  display: flex;
  gap: 28px;
  margin-top: 18px;
}
.cat-hero .stats .stat { font-size: 13px; color: var(--ink-600); }
.cat-hero .stats .stat strong { display: block; font-size: 22px; color: var(--ink-900); font-family: var(--font-display); letter-spacing: -.02em; }

.filter-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  padding: 32px 0;
}
.filter-panel {
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--ink-200);
  padding: 22px;
  position: sticky;
  top: 100px;
  align-self: start;
}
.filter-panel h6 {
  font-family: var(--font-body);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-500);
  margin: 18px 0 10px;
  font-weight: 700;
}
.filter-panel h6:first-child { margin-top: 0; }
.filter-panel label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 13.5px;
  cursor: pointer;
}
.filter-panel label .ct {
  margin-left: auto;
  color: var(--ink-500);
  font-size: 12px;
}
.filter-panel input[type="checkbox"], .filter-panel input[type="radio"] {
  accent-color: var(--brand-primary);
  width: 16px; height: 16px;
}
.filter-panel hr { border: 0; border-top: 1px solid var(--ink-200); margin: 18px 0; }

.results-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.results-head .count { font-size: 14px; color: var(--ink-600); }
.results-head .count strong { color: var(--ink-900); }
.sort-select {
  background: var(--paper);
  border: 1px solid var(--ink-300);
  border-radius: var(--r-pill);
  padding: 8px 36px 8px 14px;
  font-size: 13px;
  font-weight: 500;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* SEASONAL DEALS PAGE --------------------------------------- */
.seasonal-hero {
  padding: 40px 0 32px;
  background: linear-gradient(135deg, #FEF3C7 0%, #FCE7F3 100%);
  border-bottom: 1px solid var(--ink-200);
}
.seasonal-hero h1 { font-size: 44px; margin-bottom: 8px; }
.seasonal-hero p { color: var(--ink-600); font-size: 16px; max-width: 640px; }

/* ALL STORES PAGE ------------------------------------------- */
.stores-alpha-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ink-200);
  margin-bottom: 32px;
}
.stores-alpha-nav a {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--ink-100);
  display: grid; place-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-700);
}
.stores-alpha-nav a:hover { background: var(--brand-primary-lt); color: var(--brand-primary-dk); }
.stores-alpha-nav a.has-stores { background: var(--ink-200); color: var(--ink-900); }

.alpha-group { margin-bottom: 40px; }
.alpha-group h2 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-500);
  border-bottom: 1px solid var(--ink-200);
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.store-az-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.store-az-item {
  background: var(--paper);
  border: 1px solid var(--ink-200);
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-800);
  transition: all .15s;
}
.store-az-item:hover { border-color: var(--brand-primary); color: var(--brand-primary-dk); }
.store-az-item img {
  width: 28px; height: 28px;
  border-radius: 4px;
  object-fit: contain;
}
.store-az-item .initial {
  width: 28px; height: 28px;
  border-radius: 4px;
  background: var(--brand-primary-lt);
  color: var(--brand-primary-dk);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
}

/* ALL CATEGORIES PAGE --------------------------------------- */
.all-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.all-cat-card {
  background: var(--paper);
  border: 1px solid var(--ink-200);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  transition: all .15s;
}
.all-cat-card:hover { border-color: var(--brand-primary); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.all-cat-card .icon-tile {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--brand-primary-lt);
  display: grid; place-items: center;
  font-size: 26px;
  margin-bottom: 14px;
}
.all-cat-card h3 { font-size: 17px; margin-bottom: 4px; }
.all-cat-card .ct { font-size: 13px; color: var(--ink-500); margin-bottom: 10px; }
.all-cat-card .sample-stores { font-size: 12px; color: var(--ink-400); }

/* BLOG ------------------------------------------------------ */
.blog-hero {
  padding: 40px 0 24px;
  background: var(--paper);
  border-bottom: 1px solid var(--ink-200);
}
.blog-hero h1 { font-size: 44px; margin-bottom: 8px; }
.blog-hero-inner { max-width: 640px; }
.blog-hero p { color: var(--ink-600); font-size: 16px; max-width: 640px; }
.blog-tabs {
  display: flex;
  gap: 4px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.blog-tabs a {
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: var(--ink-100);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-700);
}
.blog-tabs a:hover { background: var(--ink-200); }
.blog-tabs a.active { background: var(--ink-900); color: white; }

/* Featured post (blogs-template.php) */
.featured-post {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  background: var(--paper);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--ink-200);
}
.featured-post .featured-img {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.featured-post .featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.featured-post:hover .featured-img img { transform: scale(1.03); }
.featured-post .featured-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.featured-post .featured-body h2 { font-size: 28px; line-height: 1.1; margin: 0; }
.featured-post .featured-body h2 a { color: var(--ink-900); }
.featured-post .featured-body h2 a:hover { color: var(--brand-primary-dk); }
.featured-post .featured-body p { color: var(--ink-600); font-size: 15px; margin: 0; }
.featured-post .chip { align-self: flex-start; }

/* Alias for the original design pattern */
.blog-featured { /* same as featured-post above, kept for compat */ }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--ink-200);
  overflow: hidden;
  display: block;
  transition: all .15s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--ink-300); }
.blog-card .img { aspect-ratio: 16/10; border-radius: 0; overflow: hidden; }
.blog-card .img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: 20px; }
.blog-card .chip { margin-bottom: 10px; }
.blog-card h4 { font-size: 18px; line-height: 1.2; margin-bottom: 8px; }
.blog-card p { color: var(--ink-600); font-size: 13.5px; margin-bottom: 12px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card .meta { color: var(--ink-500); font-size: 12px; display: flex; gap: 10px; }
.blog-meta { color: var(--ink-500); font-size: 12px; display: flex; gap: 10px; }

/* SINGLE POST ----------------------------------------------- */
.post-hero {
  padding: 48px 0 24px;
  background: var(--paper);
  border-bottom: 1px solid var(--ink-200);
}
.post-hero .container { max-width: 800px; }
.post-hero h1 {
  font-size: 2.5rem;
  margin: 14px 0;
  line-height: 1.05;
}
.post-hero .meta { display: flex; gap: 14px; align-items: center; color: var(--ink-500); font-size: 13.5px; flex-wrap: wrap; }
.post-hero .meta .author {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--ink-800);
}
.post-hero .meta .avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-pink) 100%);
  color: white;
  display: grid; place-items: center;
  font-weight: 700; font-size: 12px;
}
.post-cover {
  aspect-ratio: 16/7;
  margin-bottom: 32px;
  overflow: hidden;
}
.post-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-700);
}
.post-body p { margin: 0 0 1em; }
.post-body h2 { font-size: 28px; margin: 1.5em 0 .5em; }
.post-body h3 { font-size: 22px; margin: 1.4em 0 .5em; }
.post-body blockquote {
  border-left: 4px solid var(--brand-primary);
  padding: 4px 18px;
  margin: 1.5em 0;
  color: var(--ink-800);
  font-style: italic;
  font-size: 18px;
}
.post-body ul, .post-body ol { padding-left: 1.4em; margin: 0 0 1em; }
.post-body li { margin-bottom: .5em; }
.post-body .embedded-coupon { margin: 1.5em 0; }
.post-body img { max-width: 100%; border-radius: var(--r-md); height: auto; }
.post-body a { color: var(--brand-primary-dk); text-decoration: underline; }

/* Post author box */
.post-author-box {
  max-width: 720px;
  margin: 40px auto;
  padding: 24px;
  background: var(--ink-50);
  border-radius: var(--r-lg);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.post-author-box .avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-pink) 100%);
  color: white;
  display: grid; place-items: center;
  font-weight: 700; font-size: 18px;
  flex-shrink: 0;
}
.post-author-box h5 { font-size: 15px; margin-bottom: 4px; }
.post-author-box p { font-size: 13.5px; color: var(--ink-600); margin: 0; }

/* SIMPLE PAGE (about, faq, contact, privacy) --------------- */
.page-hero {
  padding: 56px 0 32px;
  background: var(--paper);
  border-bottom: 1px solid var(--ink-200);
  text-align: center;
}
.page-hero h1 { font-size: 48px; margin-bottom: 10px; letter-spacing: -.035em; }
.page-hero p { color: var(--ink-600); font-size: 17px; max-width: 600px; margin: 0 auto; }

/* Breadcrumbs */
.crumbs {
  font-size: 13px;
  color: var(--ink-500);
  margin-bottom: 14px;
}
.crumbs a { color: var(--ink-500); }
.crumbs a:hover { color: var(--brand-primary-dk); }

/* Page body (CMS content) */
.page-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-700);
}
.page-body h2 { font-size: 26px; margin: 1.5em 0 .5em; }
.page-body h3 { font-size: 20px; margin: 1.3em 0 .4em; }
.page-body p { margin: 0 0 1em; }
.page-body ul, .page-body ol { padding-left: 1.4em; margin: 0 0 1em; }

/* About */
.about-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--ink-200);
  padding: 28px;
  height: 100%;
}
.about-card .ico {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--brand-primary-lt);
  color: var(--brand-primary-dk);
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.about-card h3 { font-size: 20px; margin-bottom: 6px; }
.about-card p { color: var(--ink-600); font-size: 14px; margin: 0; }

.about-stats {
  background: var(--ink-900);
  color: white;
  padding: 48px;
  border-radius: var(--r-xl);
  margin: 48px 0;
}
.about-stats .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-stats .lbl { color: var(--ink-300); font-size: 13.5px; margin-top: 6px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.team-card { text-align: center; }
.team-card .avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  margin-bottom: 14px;
}
.team-card h4 { font-size: 16px; margin-bottom: 2px; }
.team-card p { font-size: 13px; color: var(--ink-500); margin: 0; }

/* FAQ */
.faq-list {max-width: 760px;margin: 0 auto;}
.faq-group { margin-bottom: 32px; }
.faq-group-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-500);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink-200);
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--ink-200);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-900);
  display: flex;
  align-items: center;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chevron {
  margin-left: auto;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink-500);
  transition: transform .15s;
}
.faq-item[open] summary .chevron { transform: rotate(90deg); }
.faq-item summary:hover { background: var(--ink-50); }
/* Support both .ans and .faq-answer class names */
.faq-item .ans,
.faq-item .faq-answer {
  padding: 0 24px 20px 60px;
  color: var(--ink-600);
  font-size: 14.5px;
  line-height: 1.65;
}
.faq-item summary .q-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand-primary-lt);
  color: var(--brand-primary-dk);
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  max-width: 760px;
  margin: 0 auto;
}
.faq-cats button {
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: var(--ink-100);
  font-size: 13.5px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  color: var(--ink-700);
}
.faq-cats button:hover { background: var(--ink-200); }
.faq-cats button.active { background: var(--ink-900); color: white; }

/* CONTACT */
.contact-grid {
  display: grid;
  gap: 48px;
  margin: 48px 0;
}
/* Support both .contact-form and .contact-form-card */
.contact-form,
.contact-form-card {
  background: var(--paper);
  border: 1px solid var(--ink-200);
  border-radius: var(--r-lg);
  padding: 32px;
}
.contact-form h2,
.contact-form-card h2 {
  font-size: 22px;
  margin-bottom: 22px;
}
.contact-form .field { margin-bottom: 16px; }
.contact-form label, .contact-form-card .form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 6px;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r-md);
  padding: 12px 14px;
  background: var(--ink-50);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  background: var(--paper);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info-card {
  background: var(--ink-900);
  color: white;
  border-radius: var(--r-lg);
  padding: 32px;
  align-self: start;
}
.contact-info-card h3 { color: white; margin-bottom: 8px; font-size: 20px; }
.contact-info-card p { color: var(--ink-300); font-size: 14px; margin: 0 0 24px; }
.contact-info-card .row,
.contact-info-card .info-row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  align-items: flex-start;
  color: white;
}
.contact-info-card .info-row a { color: var(--brand-primary); }
.contact-info-card .info-row a:hover { color: var(--brand-primary-lt); }
.contact-info-card .row .ico {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(14, 165, 233, .2);
  color: var(--brand-primary);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-info-card .row .lbl { font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-400); margin-bottom: 4px; font-weight: 700; }
.contact-info-card .row .val { font-size: 14px; color: white; }

/* PRIVACY (long-form) */
.legal-page {
  max-width: 820px;
  margin: 56px auto;
  padding: 0 24px;
}
.legal-page .last-updated {
  font-size: 13px;
  color: var(--ink-500);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink-200);
}
.legal-page h2 {
  font-size: 24px;
  margin: 32px 0 12px;
}
.legal-page h3 {
  font-size: 18px;
  margin: 24px 0 8px;
}
.legal-page p, .legal-page li {
  color: var(--ink-700);
  font-size: 14.5px;
  line-height: 1.7;
}
.legal-page ul { padding-left: 1.4em; margin: 0 0 1em; }
.legal-toc {
  background: var(--ink-50);
  border-radius: var(--r-md);
  padding: 22px 26px;
  margin-bottom: 32px;
}
.legal-toc h6 { font-family: var(--font-body); font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 10px; color: var(--ink-500); font-weight: 700; }
.legal-toc ol { margin: 0; padding-left: 1.4em; columns: 2; column-gap: 24px; }
.legal-toc li { margin-bottom: 6px; font-size: 13.5px; }
.legal-toc a:hover { color: var(--brand-primary-dk); }

/* Search results page */
.search-hero {
  padding: 40px 0 32px;
  background: var(--paper);
  border-bottom: 1px solid var(--ink-200);
}
.search-hero h1 { font-size: 36px; margin-bottom: 6px; }
.search-hero .query-text {
  background: linear-gradient(120deg, var(--brand-primary) 0%, var(--brand-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.search-hero p { color: var(--ink-600); font-size: 15px; }
.search-results { padding: 32px 0; }
.search-results h2 { font-size: 18px; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--ink-200); }
.no-results {
  text-align: center;
  padding: 64px 24px;
  color: var(--ink-500);
}
.no-results .icon { font-size: 48px; margin-bottom: 14px; }
.no-results h2 { font-size: 24px; color: var(--ink-700); margin-bottom: 8px; }
.no-results p { font-size: 15px; max-width: 460px; margin: 0 auto 24px; }

/* 404 page */
.error-404-wrap {
  text-align: center;
  padding: 80px 24px;
}
.error-404-wrap .error-code {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.error-404-wrap h1 { font-size: 32px; margin-bottom: 12px; }
.error-404-wrap p { color: var(--ink-600); font-size: 16px; max-width: 460px; margin: 0 auto 32px; }

/* Pagination */
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  background: var(--paper);
  border: 1px solid var(--ink-200);
}
.pagination .page-numbers:hover { background: var(--ink-50); border-color: var(--ink-300); }
.pagination .page-numbers.current { background: var(--brand-primary); color: white; border-color: var(--brand-primary); }
.pagination .page-numbers.dots { border: 0; background: none; }

/* Responsive ------------------------------------------------ */
@media (max-width: 1100px) {
  .coupon-grid { grid-template-columns: repeat(3, 1fr); }
  .coupon-grid.three { grid-template-columns: repeat(2, 1fr); }
  .store-grid { grid-template-columns: repeat(6, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-grid { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .store-layout { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .featured-post { grid-template-columns: 1fr; }
  .about-stats { padding: 32px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .store-az-grid { grid-template-columns: repeat(3, 1fr); }
  .all-cats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .coupon-grid, .coupon-grid.three { grid-template-columns: 1fr; }
  .store-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .store-hero-inner { grid-template-columns: 80px 1fr; }
  .store-hero .actions { grid-column: 1/-1; }
  .store-hero .logo { width: 80px; height: 80px; font-size: 28px; }
  .store-hero .info h1 { font-size: 26px; }
  .coupon-row { grid-template-columns: 80px 1fr; gap: 14px; padding: 16px; }
  .coupon-row .row-cta { grid-column: 1/-1; align-items: stretch; }
  .coupon-row .pct { font-size: 26px; min-width: 0; }
  .legal-toc ol { columns: 1; }
  .store-az-grid { grid-template-columns: repeat(2, 1fr); }
  .all-cats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .page-hero h1 { font-size: 34px; }
  .blog-hero h1, .cat-hero h1 { font-size: 32px; }
  .featured-post .featured-body { padding: 22px; }
  .newsletter { padding: 28px 20px; }
  .newsletter h2 { font-size: 26px; }
  .error-404-wrap .error-code { font-size: 80px; }
}
