/* [project]/app/bon-plans/bon-plans.css [app-client] (css) */
.bon-plans-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.bon-plans-heading {
  color: var(--primary);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
}

.bon-plans-intro {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.promo-banner {
  background-color: var(--secondary);
  border-radius: 8px;
  margin-bottom: 2rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.promo-banner-content {
  z-index: 2;
  flex-direction: column;
  display: flex;
  position: relative;
}

.promo-banner-title {
  color: #fff;
  margin-bottom: .75rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.promo-banner-text {
  color: #fff;
  max-width: 80%;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.promo-banner-button {
  color: var(--secondary);
  cursor: pointer;
  background-color: #fff;
  border: none;
  border-radius: 50px;
  width: fit-content;
  padding: .6rem 1.2rem;
  font-weight: 600;
  transition: transform .2s;
}

.promo-banner-button:hover {
  transform: scale(1.05);
}

.promo-banner-decoration {
  background-color: #fff3;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  display: flex;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}

.promo-banner-decoration span {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

@media (width <= 768px) {
  .promo-banner-decoration {
    display: none;
  }

  .promo-banner-text {
    max-width: 100%;
  }
}

.promotions-section, .promo-code-section, .loyalty-section {
  margin-bottom: 3rem;
}

.section-heading {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.promotions-grid {
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
  display: grid;
}

@media (width >= 768px) {
  .promotions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width >= 1024px) {
  .promotions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.promotion-card {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
}

.promotion-header {
  background-color: var(--primary);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 4rem;
  display: flex;
}

.promotion-header h4 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
}

.promotion-content {
  padding: 1rem;
}

.promotion-title {
  margin-bottom: .5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.promotion-description {
  color: #666;
  margin-bottom: .5rem;
}

.promotion-dates {
  color: #888;
  margin-bottom: 1rem;
  font-size: .9rem;
}

.promo-code-card {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
}

.promo-code-title {
  margin-bottom: .5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.promo-code-container {
  align-items: center;
  margin: 1rem 0;
  display: flex;
}

.promo-code {
  letter-spacing: 2px;
  background-color: #f5f5f5;
  border: 1px dashed #ccc;
  margin-right: 1rem;
  padding: .5rem 1rem;
  font-family: monospace;
  font-size: 1.25rem;
  font-weight: 700;
}

.promo-copy-button {
  background-color: var(--primary);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  padding: .5rem 1rem;
}

.promo-copy-button:hover {
  opacity: .9;
}

.promo-code-details {
  color: #666;
  margin-top: .5rem;
  font-size: .9rem;
}

.loyalty-card {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1.5rem;
}

.loyalty-title {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.loyalty-points {
  margin-bottom: 1rem;
  display: flex;
}

.loyalty-point {
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-right: .5rem;
  font-weight: 700;
  display: flex;
}

.loyalty-point.active {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.loyalty-info {
  color: #666;
  margin-top: 1rem;
}

.button {
  background-color: var(--primary);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 120px;
  height: 42px;
  margin-top: 1rem;
  padding: 0 1.5rem;
  font-size: 15px;
  font-weight: 500;
  display: flex;
}

.button:hover {
  opacity: .9;
}


/*# sourceMappingURL=app_bon-plans_bon-plans_e421a88f.css.map*/