/* Coupons Page */
.coupon-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:16px}
.coupon-card{background:#fff;border:1px solid var(--border);border-radius:14px;box-shadow:0 8px 24px rgba(0,0,0,.08);overflow:hidden;display:flex;flex-direction:column}
.coupon-card img{width:100%;height:180px;object-fit:cover}
.coupon-card .info{padding:12px}
.coupon-card .name{font-weight:700;color:#111}
.coupon-card .desc{margin-top:6px;color:var(--muted);font-size:14px}
.coupon-card .meta{display:flex;justify-content:space-between;margin-top:10px;font-size:12px}
.coupon-card .price{color:#0a7b4b}
.coupon-card .actions{padding:12px}
.btn.primary{background:linear-gradient(90deg,#00844D,#3CC70F);color:#fff;border:none}

@media (max-width:640px){
  .coupon-grid{display:block}
  .coupon-card{margin-bottom:12px}
}


