/* Premium Güven Damgaları - V2 (Daha Canlı ve Şık) */
.vc-premium-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 25px 0;
}

.vc-trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover (Üzerine gelince) Sol Taraftan Çıkan Turuncu Çizgi Efekti */
.vc-trust-badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #f27a1a;
  border-radius: 12px 0 0 12px;
  opacity: 0;
  transition: opacity 0.3s;
}

.vc-trust-badge:hover::before {
  opacity: 1;
}

.vc-trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 122, 26, 0.1);
  border-color: #f27a1a;
}

/* İkonların Renkli Arka Planları */
.vc-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 18px;
  flex-shrink: 0;
}

/* Her Bir Özelliğe Özel Psikolojik Renkler */
.wp-icon { background: #e8f5e9; color: #4caf50; }       /* Güven veren yeşil */
.shield-icon { background: #e3f2fd; color: #2196f3; }   /* Koruyucu mavi */
.box-icon { background: #f3e5f5; color: #9c27b0; }      /* Gizlilik ve lüks moru */
.refresh-icon { background: #fff8e1; color: #ffb300; }  /* Dikkat çeken sarı */
.truck-icon { background: #ffebee; color: #f44336; }    /* Hızlı ve acil kırmızı */
.card-icon { background: #e0f7fa; color: #00bcd4; }     /* Teknolojik turkuaz */

.vc-badge-text {
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif; /* Poppins fontunu burada devreye soktuk */
}

.vc-badge-text strong {
  font-size: 13px;
  color: #333;
  font-weight: 700;
  margin-bottom: 2px;
}

.vc-badge-text span {
  font-size: 11px;
  color: #888;
  line-height: 1.2;
}

/* Mobilde Kusursuz Sıkıştırma */
@media (max-width: 576px) {
  .vc-premium-trust-grid {
    padding: 2px;
    gap: 10px;
    margin: 15px 0;
  }
  
  .vc-trust-badge {
    padding: 10px;
    gap: 10px;
  }

  .vc-badge-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .vc-badge-text strong {
    font-size: 11.5px;
  }

  .vc-badge-text span {
    font-size: 10px;
  }
}

/* Premium, Degradeli Turuncu Güvenilirlik Butonu (%20 Küçültülmüş Hali) */
.vc-trust-pill-btn-v3 {
    display: inline-flex; 
    align-items: center;
    text-decoration: none !important;
    background: linear-gradient(135deg, #f27a1a 0%, #ff9642 100%) !important;
    border: none; 
    border-radius: 50px; 
    padding: 8px 20px 8px 8px; /* Boşluklar %20 daraldı */
    margin: 0px 0 -5px 0; 
    box-shadow: 0 5px 15px rgba(242, 122, 26, 0.25) !important; 
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.vc-trust-pill-btn-v3:hover {
    transform: translateY(-2px) scale(1.02); 
    box-shadow: 0 8px 20px rgba(242, 122, 26, 0.35) !important;
}

.vc-pill-icon-v3 {
    width: 35px; /* 44px'ten 35px'e düştü */
    height: 35px;
    background: #fff; 
    color: #f27a1a; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px; /* İkon boyutu küçüldü */
    margin-right: 12px; /* Yazı ile olan mesafe daraldı */
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.vc-pill-text-v3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vc-pill-text-v3 strong {
    color: #fff; 
    font-size: 11.5px; /* 14px'ten 11.5px'e düştü */
    font-weight: 700;
    letter-spacing: 0.4px;
    line-height: 1.2;
}

.vc-pill-text-v3 span {
    color: rgba(255,255,255,0.9); 
    font-size: 9px; /* 11px'ten 9px'e düştü */
    font-weight: 500;
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.vc-pill-text-v3 span i {
    font-size: 7.5px; /* Sağ ok iyice kibarlaştı */
}

/* Mobilde Daha Da Kompakt */
@media (max-width: 576px) {
    .vc-trust-pill-btn-v3 {
        padding: 6px 16px 6px 6px; 
        margin: 12px 0 15px 0;
    }
    .vc-pill-icon-v3 {
        width: 30px;
        height: 30px;
        font-size: 12px;
        margin-right: 10px;
    }
    .vc-pill-text-v3 strong {
        font-size: 10.5px; 
    }
    .vc-pill-text-v3 span {
        font-size: 8px;
    }
}

/* Ana Kapsayıcı */
.product-page-guide-wrapper {
    width: 100%;
    margin-top: 15px; 
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

/* Ana Buton: Beyaz Degrade ve Turuncu Çerçeve */
.product-guide-trigger {
    width: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1.5px solid #ff5200; 
    border-radius: 8px; 
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(255, 82, 0, 0.08); 
    transition: all 0.3s ease;
}

.product-guide-trigger:hover {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    box-shadow: 0 4px 10px rgba(255, 82, 0, 0.15);
}

.pg-trigger-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pg-icon {
    color: #ff5200;
    font-size: 18px;
}

.pg-title {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: 0.3px;
}

.pg-arrow {
    color: #ff5200;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.product-guide-trigger.active .pg-arrow {
    transform: rotate(180deg);
}

.product-guide-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #ffffff;
    border-radius: 0 0 8px 8px;
}

.product-guide-trigger.active + .product-guide-content {
    border: 1.5px solid #ffe4d6;
    border-top: none;
    margin-top: -2px; 
}


.pg-content-inner {
    padding: 16px;
}


.pg-steps-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 16px; 
}

.pg-steps-list li {
    display: flex;
    align-items: flex-start; 
    gap: 12px;
}


.pg-step-icon {
    width: 24px;
    height: 24px;
    background: #fff4e5;
    color: #ff5200;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 3px; /* İkonu ilk satırla hizalar */
}


.pg-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}


.pg-step-text {
    font-size: 13px;
    color: #1e293b;
    line-height: 1.4;
}

.pg-step-text strong {
    color: #ff5200;
    font-weight: 700;
}


.pg-step-desc {
    font-size: 11px;
    color: #64748b;
    line-height: 1.4;
}


.pg-shipping-badge {
    display: inline-block;
    color: #059669;
    font-weight: 600;
}


.pg-close-btn {
    width: 100%;
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
    padding: 10px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.pg-close-btn:hover {
    background: #f1f5f9;
    color: #1e293b;
    border-color: #cbd5e1;
}