/* Card Container */
.coupon-card {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 600px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  overflow: hidden;
  margin: 20px auto;
  border: 1px solid #e0e0e0;
}

/* Left Section: Details */
.coupon-main {
  padding: 30px;
  flex: 2;
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.brand-logo {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 10px;
}

.coupon-main h2 {
  font-size: 2.5rem;
  color: #ff4757;
  margin: 0 0 5px 0;
}

.coupon-main p {
  font-size: 1.1rem;
  color: #2f3542;
  margin: 0 0 20px 0;
}

.expiry {
  font-size: 0.8rem;
  color: #747d8c;
}

/* Right Section: Code and CTA */
.coupon-sidebar {
  padding: 30px;
  flex: 1;
  background: #ff4757;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  /* Perforated ticket boundary line */
  border-left: 2px dashed #ffffff; 
}

/* Circular ticket cuts on top and bottom of the line */
.coupon-sidebar::before,
.coupon-sidebar::after {
  content: '';
  position: absolute;
  left: -10px;
  width: 20px;
  height: 20px;
  background: #f4f6f9; /* Match this to your page background color */
  border-radius: 50%;
}
.coupon-sidebar::before { top: -10px; }
.coupon-sidebar::after { bottom: -10px; }

.code-label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-bottom: 5px;
}

.promo-code {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 15px;
  border-radius: 6px;
  margin-bottom: 15px;
  border: 1px dashed rgba(255, 255, 255, 0.5);
}

.use-btn {
  background: #ffffff;
  color: #ff4757;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.use-btn:hover {
  background: #f1f2f6;
  transform: scale(1.05);
}

/* Mobile Responsive Setup */
@media (max-width: 500px) {
  .coupon-card {
    flex-direction: column;
  }
  .coupon-sidebar {
    border-left: none;
    border-top: 2px dashed #ffffff;
  }
  .coupon-sidebar::before,
  .coupon-sidebar::after {
    left: auto;
    top: -10px;
  }
  .coupon-sidebar::before { left: -10px; }
  .coupon-sidebar::after { right: -10px; }
}

.mymodal {
  padding: 24px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 400px;
  display:block;
  width: 100%;
}

/* Style the dim background overlay */
.mymodal::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px); /* Optional background blur */
}


.wavy-card {
}

