/* ============================================
   PRICING SECTION - Bright & Playful
   ============================================ */

/* Bundle Banner - More Colorful */
.bundle-banner {
  background: linear-gradient(135deg, #FFE8D6, #FFD93D20, #A8E6CF20);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.bundle-banner::before {
  content: '🐰';
  position: absolute;
  bottom: -15px;
  right: -15px;
  font-size: 6rem;
  opacity: 0.1;
  transform: rotate(-15deg);
}

.bundle-banner > div:first-child {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 800;
  color: #2C1A14;
}

.bundle-banner > div:first-child i {
  color: #FFD93D;
  font-size: 2rem;
}

.bundle-banner > div:nth-child(2) {
  flex: 1;
  min-width: 200px;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #4B3B38;
  font-weight: 600;
}

/* Bundle CTA Button - Playful */
.bundle-banner .bundle-cta,
.bundle-banner a {
  background: linear-gradient(135deg, #FF9F4A, #FF8A2B) !important;
  padding: 0.9rem 2rem !important;
  border-radius: var(--radius-full) !important;
  color: white !important;
  text-decoration: none !important;
  font-weight: 800 !important;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
  transition: var(--bounce-transition);
  box-shadow: var(--button-shadow);
  border: none;
  cursor: pointer;
}

.bundle-banner .bundle-cta:hover,
.bundle-banner a:hover {
  background: linear-gradient(135deg, #FF8A2B, #FF7A1A) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.08);
}

.bundle-banner .bundle-cta:active,
.bundle-banner a:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
}

/* Accessories - Playful Tags */
.flex-accessories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.accessory-item {
  background: linear-gradient(135deg, #FFF8E0, #FFE4A0);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  color: #2C1A14;
  transition: var(--hover-transition);
}

.accessory-item:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #FFE4A0, #FFD93D);
}

.accessory-item i {
  color: #FF9F4A;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablets */
@media (max-width: 1024px) {
  .bundle-banner {
    padding: 1.8rem 2rem;
    gap: 1.2rem;
  }
  
  .bundle-banner .bundle-cta,
  .bundle-banner a {
    padding: 0.8rem 1.8rem !important;
  }
}

/* Mobile Devices */
@media (max-width: 780px) {
  .bundle-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.8rem 1.5rem;
    gap: 1rem;
    border-radius: var(--radius-lg);
  }
  
  .bundle-banner::before {
    font-size: 4rem;
  }
  
  .bundle-banner > div:first-child {
    font-size: 1.1rem;
    justify-content: center;
  }
  
  .bundle-banner > div:nth-child(2) {
    font-size: 0.95rem;
  }
  
  .bundle-banner .bundle-cta,
  .bundle-banner a {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem !important;
    font-size: 1.05rem;
    max-width: 400px;
  }
  
  .flex-accessories {
    justify-content: center;
  }
  
  .accessory-item {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .bundle-banner {
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
    gap: 0.8rem;
  }
  
  .bundle-banner::before {
    font-size: 3rem;
  }
  
  .bundle-banner > div:first-child {
    font-size: 1rem;
  }
  
  .bundle-banner > div:nth-child(2) {
    font-size: 0.9rem;
  }
  
  .bundle-banner .bundle-cta,
  .bundle-banner a {
    padding: 0.8rem 1.2rem !important;
    font-size: 1rem;
    max-width: 100%;
  }
  
  .flex-accessories {
    gap: 0.5rem;
  }
  
  .accessory-item {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
  }
}