/* =========================
   DEAL SOLDIER Coupons Theme
   Palette (5 colors max):
   - Background: #f5f6f4 (off-white)
   - Surface: #ffffff
   - Ink: #0e1a13 (near-black green)
   - Primary (military green): #1f6b3a
   - Accent (amber CTA): #f59e0b
   ========================= */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: #f5f6f4; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #0e1a13;
  background: #f5f6f4;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: #1f6b3a; text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.muted { color: #5a6b60; font-size: 0.9rem; }

/* =========================
   HEADER
   ========================= */
.site-header {
  background: #0e1a13;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #1f6b3a;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.brand-text { font-size: 1rem; font-weight: 500; }
.brand-text strong { font-weight: 800; }

.header-nav { display: flex; gap: 1.25rem; }
.header-nav a {
  color: #cfd6d1;
  font-size: 0.92rem;
  font-weight: 500;
}
.header-nav a:hover { color: #fff; text-decoration: none; }

/* =========================
   MAIN GRID
   ========================= */
.main-grid {
  padding-top: 1.75rem;
  padding-bottom: 3rem;
}

/* =========================
   STORE HERO
   ========================= */
.store-hero {
  background: #fff;
  border: 1px solid #e5e9e6;
  border-radius: 14px;
  padding: 1.75rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  align-items: center;
  margin-bottom: 1.75rem;
  box-shadow: 0 1px 2px rgba(14, 26, 19, 0.04);
}
.store-hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.store-logo {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid #e5e9e6;
  background: #fff;
}
.store-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.stars { color: #d9dcd8; font-size: 1rem; letter-spacing: 1px; }
.stars .filled { color: #f59e0b; }
.store-rating strong { font-size: 1.05rem; }
.store-rating small { color: #5a6b60; font-size: 0.78rem; }

.store-hero-right h1 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin: 0 0 0.75rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.title-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #e8f3ec;
  color: #1f6b3a;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 0.4rem;
  white-space: nowrap;
}
.title-badge .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: #1f6b3a;
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 900;
}
.store-desc {
  color: #3a4a40;
  font-size: 0.96rem;
  margin: 0 0 1rem;
  max-width: 65ch;
}

.hero-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  border-top: 1px solid #e5e9e6;
  padding-top: 1rem;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.stat-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0e1a13;
  letter-spacing: -0.01em;
}
.stat-label { font-size: 0.78rem; color: #5a6b60; }

/* =========================
   CONTENT GRID (sidebar + coupons)
   ========================= */
.content-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* CARDS */
.card {
  background: #fff;
  border: 1px solid #e5e9e6;
  border-radius: 12px;
  padding: 1.1rem 1.15rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 2px rgba(14, 26, 19, 0.03);
}
.card-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #eef1ee;
}

.info-table { width: 100%; border-collapse: collapse; }
.info-table td {
  padding: 0.5rem 0;
  font-size: 0.88rem;
  border-bottom: 1px dashed #eef1ee;
}
.info-table tr:last-child td { border-bottom: none; }
.info-table td:last-child { text-align: right; }

.payment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.payment-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}
.pay-ico {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: #f1f4f1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #0e1a13;
}
.pay-ico[data-ico="card"]::before { content: "💳"; }
.pay-ico[data-ico="apple"]::before { content: ""; font-weight: 700; }
.pay-ico[data-ico="apple"] { background: #0e1a13; color: #fff; }
.pay-ico[data-ico="apple"]::before { content: "A"; font-family: -apple-system, sans-serif; }
.pay-ico[data-ico="google"]::before { content: "G"; color: #1f6b3a; }
.pay-ico[data-ico="btc"]::before { content: "₿"; color: #f59e0b; font-weight: 800; }

/* FILTER */
.filter-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.filter-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #f5f6f4;
  border: 1px solid #e5e9e6;
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  color: #0e1a13;
  font-family: inherit;
  transition: all 0.15s ease;
}
.filter-tab:hover { border-color: #1f6b3a; }
.filter-tab.active {
  background: #1f6b3a;
  color: #fff;
  border-color: #1f6b3a;
}
.filter-tab .count {
  background: rgba(0,0,0,0.08);
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  font-size: 0.75rem;
}
.filter-tab.active .count { background: rgba(255,255,255,0.22); }

/* =========================
   COUPONS LIST
   ========================= */
.section-header { margin-bottom: 1rem; }
.section-header h2 {
  font-size: 1.15rem;
  margin: 0 0 0.25rem;
}

.coupon-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.coupon-card {
  background: #fff;
  border: 1px solid #e5e9e6;
  border-radius: 12px;
  padding: 1.1rem;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.1rem;
  align-items: center;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(14, 26, 19, 0.03);
}
.coupon-card:hover {
  border-color: #1f6b3a;
  box-shadow: 0 4px 16px rgba(31, 107, 58, 0.08);
}
.coupon-thumb {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #eef1ee;
  background: #f5f6f4;
}
.coupon-body { min-width: 0; }
.coupon-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.coupon-tag.code { background: #e8f3ec; color: #1f6b3a; }
.coupon-tag.deal { background: #fdf0d8; color: #b97505; }
.coupon-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: #0e1a13;
}
.coupon-desc {
  font-size: 0.86rem;
  color: #5a6b60;
  margin: 0 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.coupon-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: #5a6b60;
  flex-wrap: wrap;
}
.coupon-meta .verified {
  color: #1f6b3a;
  font-weight: 600;
}

/* Vote row */
.vote-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.7rem;
  flex-wrap: wrap;
}
.vote-label {
  font-size: 0.78rem;
  color: #5a6b60;
  font-weight: 500;
}
.vote-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #f5f6f4;
  border: 1px solid #e5e9e6;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #3a4a40;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s ease;
}
.vote-btn:hover:not(:disabled) {
  border-color: #1f6b3a;
  background: #fff;
}
.vote-btn .vote-ico {
  font-size: 0.7rem;
  line-height: 1;
}
.vote-btn.vote-up:hover:not(:disabled) .vote-ico { color: #1f6b3a; }
.vote-btn.vote-down:hover:not(:disabled) .vote-ico { color: #b94a4a; }
.vote-btn.voted {
  background: #e8f3ec;
  border-color: #1f6b3a;
  color: #1f6b3a;
}
.vote-btn.vote-down.voted {
  background: #fbeaea;
  border-color: #b94a4a;
  color: #b94a4a;
}
.vote-btn.dimmed {
  opacity: 0.45;
}
.vote-btn:disabled {
  cursor: default;
}
.vote-confirm {
  font-size: 0.78rem;
  color: #1f6b3a;
  font-weight: 600;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.25s ease;
}
.vote-confirm.show {
  opacity: 1;
  transform: translateX(0);
}

/* CTA BUTTONS — amber with shine */
.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #f59e0b;
  color: #1a0f00;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.85rem 1.4rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: inherit;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 2px 0 #b97505, 0 4px 12px rgba(245, 158, 11, 0.25);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 0 #b97505, 0 6px 16px rgba(245, 158, 11, 0.35);
  text-decoration: none;
}
.cta-btn:active { transform: translateY(0); }

/* Dashed reveal pattern for code buttons */
.cta-btn.code-btn {
  background: #fff;
  color: #1f6b3a;
  border: 2px dashed #1f6b3a;
  box-shadow: none;
  padding: 0.7rem 1rem;
}
.cta-btn.code-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, transparent 50%, #f59e0b 50%, #f59e0b 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: -1;
}
.cta-btn.code-btn .code-mask {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.cta-btn.code-btn .reveal-tag {
  background: #1f6b3a;
  color: #fff;
  font-size: 0.7rem;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  margin-left: 0.4rem;
}

/* Shine animation */
.cta-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: shine 2.8s infinite;
  pointer-events: none;
}
@keyframes shine {
  0% { left: -75%; }
  60% { left: 125%; }
  100% { left: 125%; }
}

/* =========================
   VERIFIED ACTIVITY
   ========================= */
.verified-section {
  margin-top: 2.5rem;
}
.verified-section h2 {
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
}
.verified-card {
  background: #fff;
  border: 1px solid #e5e9e6;
  border-radius: 14px;
  padding: 1.5rem;
  margin-top: 1rem;
  box-shadow: 0 1px 2px rgba(14, 26, 19, 0.03);
}
.verified-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid #eef1ee;
  margin-bottom: 1.1rem;
}
.success-meter {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.success-meter strong {
  font-size: 1.4rem;
  display: block;
  line-height: 1;
}
.success-meter span {
  font-size: 0.85rem;
  color: #5a6b60;
}
.meter-ring svg { display: block; }
.ring-bg {
  fill: none;
  stroke: #eef1ee;
  stroke-width: 3;
}
.ring-fg {
  fill: none;
  stroke: #1f6b3a;
  stroke-width: 3;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: center;
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #e8f3ec;
  color: #1f6b3a;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}
.check-circle {
  display: inline-flex;
  width: 18px; height: 18px;
  background: #1f6b3a;
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}
.activity-title {
  font-size: 0.95rem;
  margin: 0 0 0.85rem;
}
.activity-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
}
.activity-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.activity-list li > div { display: flex; flex-direction: column; gap: 0.1rem; }
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.avatar-blue { background: #4a7ba8; }
.avatar-pink { background: #d97a8e; }
.avatar-amber { background: #c98a3a; }
.avatar-green { background: #1f6b3a; }
.saved-pill {
  display: inline-block;
  background: #e8f3ec;
  color: #1f6b3a;
  padding: 0.05rem 0.45rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.82rem;
}

/* =========================
   SUBMIT COUPON
   ========================= */
.submit-section {
  margin-top: 2.5rem;
  background: #fff;
  border: 1px solid #e5e9e6;
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 1px 2px rgba(14, 26, 19, 0.03);
}
.submit-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.submit-info h2 {
  font-size: 1.25rem;
  margin: 0 0 0.6rem;
}
.submit-info p {
  color: #3a4a40;
  margin: 0 0 1rem;
  font-size: 0.95rem;
}
.submit-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.submit-perks li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: #3a4a40;
}
.perk-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1f6b3a;
  flex-shrink: 0;
}

.submit-form {
  background: #f5f6f4;
  border: 1px solid #e5e9e6;
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-row label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0e1a13;
}
.form-row .req { color: #b94a4a; }
.form-row input,
.form-row textarea {
  background: #fff;
  border: 1px solid #e5e9e6;
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  font-size: 0.92rem;
  font-family: inherit;
  color: #0e1a13;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #1f6b3a;
  box-shadow: 0 0 0 3px rgba(31, 107, 58, 0.12);
}
.form-row textarea { resize: vertical; min-height: 70px; }

.submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #e8f3ec;
  border: 1px solid #c8e3d2;
  color: #1f6b3a;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.25s ease;
}
.form-success.show {
  opacity: 1;
  transform: translateY(0);
}
.form-success .success-check {
  display: inline-flex;
  width: 18px; height: 18px;
  background: #1f6b3a;
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* =========================
   ABOUT + FAQ
   ========================= */
.about-section, .faq-section {
  margin-top: 2.5rem;
  background: #fff;
  border: 1px solid #e5e9e6;
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 1px 2px rgba(14, 26, 19, 0.03);
}
.about-section h2, .faq-section h2 {
  font-size: 1.25rem;
  margin: 0 0 1rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.about-grid p { margin: 0 0 0.85rem; color: #3a4a40; }
.how-list { padding-left: 1.2rem; color: #3a4a40; }
.how-list li { margin-bottom: 0.4rem; }

.faq-section details {
  border-bottom: 1px solid #eef1ee;
  padding: 0.85rem 0;
}
.faq-section details:last-child { border-bottom: none; }
.faq-section summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-section summary::-webkit-details-marker { display: none; }
.faq-section summary::after {
  content: "+";
  font-size: 1.3rem;
  color: #1f6b3a;
  font-weight: 400;
}
.faq-section details[open] summary::after { content: "−"; }
.faq-section p { margin: 0.6rem 0 0; color: #3a4a40; font-size: 0.92rem; }

/* =========================
   FOOTER
   ========================= */
.site-footer {
  background: #0e1a13;
  color: #cfd6d1;
  margin-top: 3rem;
  padding: 1.5rem 0;
  font-size: 0.85rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-inner p { margin: 0; }
.footer-inner nav { display: flex; gap: 1.25rem; }
.footer-inner nav a { color: #cfd6d1; }
.footer-inner nav a:hover { color: #fff; }

/* =========================
   COUPON MODAL (popup)
   ========================= */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 26, 19, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 1rem;
  animation: fadeIn 0.2s ease;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  position: relative;
  animation: pop 0.25s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }

.modal-head {
  background: linear-gradient(180deg, #e8f3ec 0%, #fff 100%);
  padding: 1.5rem 1.5rem 0.5rem;
  text-align: center;
  position: relative;
}
.modal-logo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #fff;
}
.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(14,26,19,0.8);
  color: #fff;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.modal-body {
  padding: 0.5rem 1.5rem 1.5rem;
  text-align: center;
}
.modal-body h3 {
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
}
.modal-body .modal-desc {
  color: #5a6b60;
  font-size: 0.9rem;
  margin: 0 0 1.1rem;
}
.code-box {
  border: 2px dashed #1f6b3a;
  border-radius: 12px;
  padding: 1.1rem;
  background: #f5fbf6;
  margin-bottom: 1rem;
  position: relative;
}
.code-box .code-text {
  font-family: 'Bebas Neue', monospace;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #0e1a13;
  background: #0e1a13;
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 0.65rem;
}
.copy-btn {
  display: block;
  width: 100%;
  background: #1f6b3a;
  color: #fff;
  border: none;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.04em;
  transition: background 0.15s ease;
}
.copy-btn:hover { background: #155029; }
.copy-btn.copied { background: #0e1a13; }
.modal-foot {
  background: #f5f6f4;
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #5a6b60;
}
.modal-foot p { margin: 0 0 0.6rem; }
.feedback-buttons { display: flex; gap: 0.5rem; justify-content: center; }
.feedback-btn {
  flex: 1;
  background: #fff;
  border: 1px solid #e5e9e6;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  color: #0e1a13;
  transition: all 0.15s ease;
}
.feedback-btn:hover { border-color: #1f6b3a; }

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { order: 2; }
  .coupons-section { order: 1; }
}

@media (max-width: 700px) {
  .store-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.25rem;
  }
  .store-hero-left { flex-direction: row; justify-content: center; }
  .store-logo { width: 96px; height: 96px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .about-grid { grid-template-columns: 1fr; gap: 1rem; }
  .coupon-card {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem;
  }
  .coupon-card .cta-btn {
    grid-column: 1 / -1;
    justify-content: center;
    width: 100%;
  }
  .coupon-thumb { width: 60px; height: 60px; }
  .header-nav { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .submit-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

@media (max-width: 420px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .store-hero-right h1 { font-size: 1.35rem; }
  .title-badge { display: inline-flex; margin-top: 0.4rem; margin-left: 0; }
}
