/* Bundle Banner */
.bundle-banner {
  background: linear-gradient(110deg, #FFE4E9, #DFF5E6);
  border-radius: 2rem;
  padding: 2rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.bundle-banner > div:first-child {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
}

.bundle-banner > div:nth-child(2) {
  flex: 1;
  min-width: 200px;
  font-size: 1rem;
  color: #4B3B38;
}

/* Bundle CTA Button */
.bundle-banner .bundle-cta,
.bundle-banner a {
  background: #E88762 !important;
  padding: 0.8rem 2rem !important;
  border-radius: 40px !important;
  color: white !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 135, 98, 0.3);
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.bundle-banner .bundle-cta:hover,
.bundle-banner a:hover {
  background: #D9765A !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 135, 98, 0.4);
}

.bundle-banner .bundle-cta:active,
.bundle-banner a:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(232, 135, 98, 0.3);
}

/* Accessories */
.flex-accessories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.accessory-item {
  background: #FEF7E6;
  border-radius: 40px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(0,0,0,0.04);
}

/* Mobile Responsive Bundle */
@media (max-width: 780px) {
  .bundle-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.8rem 1.5rem;
    gap: 1rem;
    border-radius: 1.5rem;
  }
  
  .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;
  }
  
  .flex-accessories {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .bundle-banner {
    padding: 1.5rem 1rem;
    border-radius: 1.2rem;
  }
  
  .bundle-banner > div:first-child {
    font-size: 1rem;
  }
  
  .bundle-banner .bundle-cta,
  .bundle-banner a {
    padding: 0.8rem 1.2rem !important;
    font-size: 1rem;
  }
}