/* ==========================================================================
   GELİN BUKETİ BANNER GENEL STİLLERİ
   ========================================================================== */
.wb-banner-container {
  width: 100%;
  padding: 0 10px;
  margin: 10px 0;
  transition: all 0.3s ease;
}

.wb-banner-wrapper {
  display: block;
  text-decoration: none !important;
  background: linear-gradient(135deg, #fff5f5 0%, #e8d3d1 100%);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e6d1cf;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.wb-banner-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.wb-banner-content {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  min-height: 80px;
}

/* --- İkon Alanı --- */
.wb-banner-icon {
  flex: 0 0 50px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wb-banner-icon svg {
  width: 42px;
  height: auto;
  opacity: 0.85;
}

/* --- Tipografi --- */
.wb-banner-text {
  flex: 1;
}

.wb-banner-text h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #3a2a29;
  letter-spacing: 0.5px;
}

.wb-banner-text p {
  margin: 2px 0 0 0;
  font-size: 13px;
  color: #61504f;
}

/* ==========================================================================
   BUTON GRUBU VE HOVER EFEKTLERİ
   ========================================================================== */
.wb-banner-btn-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.wb-banner-btn-group span {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Birincil Buton (WhatsApp Tasarla) */
.wb-banner-btn-group .btn-primary {
  background: #2b201f;
  color: #fff;
}

/* İkincil Buton (Modelleri İncele) */
.wb-banner-btn-group .btn-secondary {
  background: rgba(43, 32, 31, 0.08);
  color: #3a2a29;
  border: 1px solid rgba(43, 32, 31, 0.15);
}

/* Hover Durumları */
.wb-banner-wrapper:hover .btn-primary {
  background: #25d366;
  color: #fff;
}

.wb-banner-btn-group .btn-secondary:hover {
  background: #2b201f;
  color: #fff;
}

/* ==========================================================================
   MOBİL UYUMLULUK (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
  .wb-banner-content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .wb-banner-icon {
    margin-right: 0;
    margin-bottom: 12px;
  }

  .wb-banner-text h2 {
    font-size: 16px;
  }

  .wb-banner-btn-group {
    margin-top: 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px !important; /* Mobilde butonlar arası net boşluk */
  }

  .wb-banner-btn-group span {
    width: 100%;
  }
}

/* ==========================================================================
   MASAÜSTÜ EKRAN DÜZENLEMELERİ (min-width: 768px)
   ========================================================================== */
@media (min-width: 768px) {
  .wb-banner-container {
    width: 50%;
    margin: 20px 0;
    padding: 0 15px;
    display: flex;
  }

  .wb-banner-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .wb-banner-content {
    flex: 1;
    min-height: 110px;
  }

  .wb-banner-btn-group {
    flex-direction: row;
    margin-left: 15px;
    gap: 8px;
  }
}