/* Product Containers */
.egl-stripe-product, .egl-stripe-price {
  border: 1px solid #333;
  background: #1e1e1e;
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
  color: #eee;
}

/* Price Card */
.egl-price-card {
  display: flex;
  gap: 16px;
  align-items: center;
  border: 1px solid #222;
  background: #2a2a2a;
  padding: 14px;
  margin: 10px 0;
  border-radius: 6px;
  transition: transform 0.2s ease;
}
.egl-price-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.2);
}

/* Grid Layout */
.egl-price-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Price Tiles */
.egl-price-tile {
  border: 1px solid #333;
  background: #222;
  padding: 16px;
  width: 240px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 6px;
  transition: transform 0.2s ease;
}
.egl-price-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.2);
}

/* Thumbnail Images */
.egl-price-thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

/* Text Elements */
.egl-price-title {
  font-weight: bold;
  color: #1abc9c;
  font-size: 1.1em;
}
.egl-price-amount {
  color: #fff;
  font-size: 1.2em;
}
.egl-price-perks {
  font-size: 0.9em;
  color: #aaa;
}

/* Action Area */
.egl-price-action {
  margin-top: auto;
}

/* Purchase Button */
.egl-purchase-btn {
  background: linear-gradient(145deg, #1abc9c, #16a085);
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 0 8px rgba(26,188,156,0.5);
}
.egl-purchase-btn:hover {
  background: linear-gradient(145deg, #16a085, #1abc9c);
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(26,188,156,0.7);
}

/* Product Images */
.egl-stripe-product img,
.egl-stripe-price img {
  max-width: 60%;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 15px auto;
  border-radius: 4px;
}
.egl-stripe-product .egl-product-image img,
.egl-stripe-price .egl-price-image img {
  max-width: 60%;
  width: 100%;
  height: auto;
}
.egl-price-thumb img {
  width: 180px;
  height: 180px;
  object-fit: cover;
}

/* Receipt Styles */
.egl-stripe-receipt {
  background: #1e1e1e;
  padding: 20px;
  border: 1px solid #333;
  border-radius: 6px;
  color: #eee;
}
.egl-receipt-card {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 15px;
}
.egl-receipt-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 1px solid #444;
  border-radius: 4px;
}
.egl-receipt-details {
  flex: 1;
}

/* Perks Popup */
.egl-perks-popup {
  max-width: 300px;
  box-shadow: 0 0 12px rgba(0,255,255,0.2);
  background: #2a2a2a;
  color: #eee;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 10px;
}
