/* === COUPON PAGE ONLY FIXES === */

/* Remove default UL indentation */
.banner160x600-content ul {
  padding-left: 0;
  margin-left: 0;
  list-style: none;
}

/* Coupon card layout */
.banner160x600-content .coupon-aff {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 8px;
}

/* Image size */
.banner160x600-content .coupon-aff img {
  width: 130px;
  height: auto;
  display: block;
}

/* Desktop alignment */
@media (min-width: 769px) {
  .banner160x600-content .coupon-aff {
    margin-left: 0;
  }
}
/* Remove border only for coupon images */
.banner160x600-content .aff img {
  border: none !important;
  border-radius: 0;
}
/* Coupon expiration date inside link */
.banner160x600-content a .coupon-expiration {
  font-style: italic;
  font-weight: inherit;
  color: #5f6f82; /* amber/orange */
}

/* Coupon image – desktop */
.aff img.coupon-img {
  width: 110px;
  max-width: 110px;
  border: none;
  margin-right: 12px;
}

@media (max-width: 768px) {
  .aff img.coupon-img {
    width: 160px;
    max-width: 160px;
    margin: -40px auto 0; /* ⬅ moves image UP */
  }
}
.coupon-btn {
  padding: 4px 8px;      /* vertical | horizontal */
  font-size: 12px;       /* desktop size */
  margin-top: 6px;     /* lifts button */
  color: green;
   border: 1px solid #ddd; 
    background: #f9f9f9;
  border-radius: 4px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .coupon-btn {
    padding: 8px 8px;    /* taller tap area */
    font-size: 18px;     /* larger text on phone */
    border: 1px solid #ddd; 
    background: #f9f9f9;
     border-radius: 4px;
    color: green;
  }
}
