/* Ramadan Box Promo Section */
.bb-ramadan-promo {
  --promo-primary: #556b2f; /* Dark Olive Green - Brand Primary */
  --promo-secondary: #d87093; /* Pale Violet Red - Brand Secondary */
  --promo-accent: #daa520; /* Goldenrod - Brand Accent */
  --promo-cream: #fdfcf8; /* Warm Off-white - Brand BG Base */
  --promo-white: #ffffff;
  --promo-dark: #2f3e2f; /* Brand Text Main */

  background: linear-gradient(
    135deg,
    var(--promo-cream) 0%,
    var(--promo-white) 100%
  );
  padding: 60px 20px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.bb-ramadan-promo::before {
  content: "\1F319";
  position: absolute;
  font-size: 200px;
  opacity: 0.03;
  right: -30px;
  top: -30px;
  pointer-events: none;
}

.bb-promo-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bb-promo-content {
  position: relative;
  z-index: 2;
}

.bb-promo-badge {
  display: inline-block;
  background: var(--promo-accent);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.bb-promo-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--promo-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.bb-promo-description {
  font-size: 18px;
  color: var(--promo-dark);
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.bb-promo-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.bb-promo-feature {
  background: var(--promo-white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--promo-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.bb-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--promo-primary);
  color: white;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(85, 107, 47, 0.3);
}

.bb-promo-btn:hover {
  background: #3e4f22; /* Darker olive green on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(85, 107, 47, 0.4);
  text-decoration: none !important;
}

.bb-promo-arrow {
  transition: transform 0.3s ease;
}

.bb-promo-btn:hover .bb-promo-arrow {
  transform: translateX(5px);
}

.bb-promo-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bb-promo-box-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.bb-promo-box-img:hover {
  transform: scale(1.05) rotate(2deg);
}

/* Responsive */
@media (max-width: 768px) {
  .bb-ramadan-promo {
    padding: 40px 20px;
  }

  .bb-promo-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bb-promo-title {
    font-size: 32px;
  }

  .bb-promo-description {
    font-size: 16px;
  }

  .bb-promo-features {
    flex-direction: column;
  }

  .bb-promo-feature {
    text-align: center;
  }

  .bb-promo-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
  }

  .bb-promo-image {
    order: -1;
  }
}

@media (max-width: 480px) {
  .bb-promo-title {
    font-size: 28px;
  }

  .bb-promo-description {
    font-size: 15px;
  }
}
