/* Offers Grid */
.rtwwdrp-pp-offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.rtwwdrp-pp-offer-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.rtwwdrp-pp-offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0,0,0,.12);
}

.rtwwdrp-pp-offer-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.rtwwdrp-pp-offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rtwwdrp-pp-offer-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #2563eb;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,.15);
}

.rtwwdrp-pp-offer-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.rtwwdrp-pp-offer-title {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
}

.rtwwdrp-pp-offer-discount {
  color: #16a34a;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 0;
}

.rtwwdrp-pp-offer-condition {
  color: #f59e0b;
  font-size: 14px;
  font-weight: 600;
}

.rtwwdrp-pp-offer-excerpt {
  font-size: 14px;
  color: #4b5563;
  margin-top: 4px;
  flex-grow: 1;
}

.rtwwdrp-pp-offer-actions {
  margin-top: auto;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.rtwwdrp-pp-btn, .rtwwdrp-pp-btn-secondary {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s ease, transform .1s ease;
}

.rtwwdrp-pp-btn {
  background: #3b82f6;
  color: #fff;
}
.rtwwdrp-pp-btn:hover { background: #2563eb; transform: translateY(-1px); }

.rtwwdrp-pp-btn-secondary {
  background: #f3f4f6;
  color: #111827;
}
.rtwwdrp-pp-btn-secondary:hover { background: #e5e7eb; }

.rtwwdrp-pp-no-offers {
  text-align: center;
  padding: 40px;
  font-size: 16px;
  color: #6b7280;
}

/* Modal Background */
.rtwwdrp_offer_modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 43%); /* Black with transparency */
  padding-top: 60px;
  box-sizing: border-box;
}

/* Modal Content */
.modal-content.rtwwdrp_offer_modal_content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  text-align: center;
  border-radius: 10px;
}

/* Close Button */
.close-btn.rtwwdrp_offer_modal_closeBtn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-btn.rtwwdrp_offer_modal_closeBtn:hover,
.close-btn.rtwwdrp_offer_modal_closeBtn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Promo Text */
.promo-text.rtwwdrp_offer_modal_promoText {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.promo-text.rtwwdrp_offer_modal_promoText span {
  color: #2d8df5; /* Highlighted product names */
}

/* Product Images */
.product-images.rtwwdrp_offer_modal_productImages {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
}

.product.rtwwdrp_offer_modal_product {
  text-align: center;
}

.product.rtwwdrp_offer_modal_product img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.product.rtwwdrp_offer_modal_product p {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
}

/* Tier Modal */
.rtwwdrp_tier_rule-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 10000; /* Make sure it's above other elements */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.43); /* Black with transparency */
  
  /* Center the modal */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: auto;
  box-sizing: border-box;
}

.rtwwdrp_tier_rule-modal-content {
  background-color: #fff;
  margin: 20px;
  max-width: 750px;
  width: 90%;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  padding: 20px;
  position: relative;
}

.rtwwdrp_offer_modal_imageGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.rtwwdrp_offer_modal_img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.rtw_xcont{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rtw_prod_view_btn{
  background: #3b82f6;
  color: #fff;
  margin-top: 7px;
  padding: 5px 5px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
  width: 50%;
  text-decoration: none !important;
}