/* Grid */
.coupon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 20px;
}

/* Card */
.coupon-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.coupon-card:hover { transform: translateY(-4px); }
.card-store-logo { width: 80px; height: auto; margin-bottom: 10px; }
.verified-badge { background: #e6f4ea; color: #2e7d32; padding: 3px 10px; border-radius: 20px; font-size: 12px; }
.card-title { font-size: 15px; margin: 10px 0; }
.card-discount { font-weight: bold; color: #e44d26; font-size: 18px; }
.card-expiry { font-size: 12px; color: #999; }
.card-deal-btn {
  display: inline-block;
  margin-top: 12px;
  background: #8b7223;
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* Single Page */
.coupon-single-wrap { max-width: 800px; margin: 40px auto; padding: 100px 0 20px; }
.coupon-single-card { background: #fff; border-radius: 16px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.coupon-store-info { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.store-logo { width: 80px; height: auto; }
.coupon-code-blur {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 4px;
  padding: 20px;
  background: #f5f5f5;
  border: 2px dashed #ccc;
  border-radius: 8px;
  display: inline-block;
}
.get-deal-btn {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  background: #8b7223;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

/* Modal */
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.modal-box {
  position: relative;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  z-index: 1;
}
#modal-close { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 20px; cursor: pointer; }
.modal-code-box {
  background: #f4f4f4;
  border: 2px dashed #ccc;
  padding: 16px;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 4px;
  margin: 20px 0;
  border-radius: 8px;
}
.visit-store-btn {
  display: inline-block;
  background: #8b7223;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}