/* Start custom CSS for html, class: .elementor-element-f2017f4 *//* ecom-rehberlik.css */

/* Renkler (zaten varsa sorun değil) */
:root{
  --wv-1:#47415d;
  --wv-2:#f3f0ff;
  --wv-3:#9699bf;
  --wv-4:#1181c8;
  --wv-5:#cce9ff;

  --wv-shadow: 0 14px 34px rgba(71,65,93,.10);
  --wv-radius: 18px;
}

/* ========== 1) HERO BUTON / KONTRAST DÜZELTMESİ ========== */
/* Bazı temalarda a etiketinin color’ı globalden override olup “soluk” görünebiliyor.
   Burada butonları garanti ediyoruz. */
.wv-ecom-guide a.wv-btn{
  text-decoration: none;
}

.wv-ecom-guide .wv-btn--primary{
  background: var(--wv-4) !important;
  border: 1px solid rgba(17,129,200,.35) !important;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(17,129,200,.18);
}
.wv-ecom-guide .wv-btn--primary:hover{
  filter: brightness(0.98);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(17,129,200,.22);
}

.wv-ecom-guide .wv-btn--ghost{
  background: rgba(243,240,255,.75);
  border: 1px solid rgba(150,153,191,.35);
  color: var(--wv-1);
}
.wv-ecom-guide .wv-btn--ghost:hover{
  background: rgba(204,233,255,.35);
  border-color: rgba(17,129,200,.30);
  transform: translateY(-1px);
}

.wv-ecom-guide .wv-btn--soft{
  background: rgba(204,233,255,.35);
  border: 1px solid rgba(17,129,200,.25);
  color: var(--wv-1);
}
.wv-ecom-guide .wv-btn--soft:hover{
  background: rgba(204,233,255,.55);
  border-color: rgba(17,129,200,.35);
  transform: translateY(-1px);
}

/* ========== 2) SAĞ ÖZET PANELİNDE “SOLUK” GÖRÜNÜM DÜZELT ========== */
.wv-ecom-guide .wv-ecomGuideCard{
  background: linear-gradient(
    180deg,
    rgba(243,240,255,.92) 0%,
    rgba(204,233,255,.28) 100%
  );
  border: 1px solid rgba(71,65,93,.16);
  border-radius: var(--wv-radius);
  box-shadow: var(--wv-shadow);
}

.wv-ecom-guide .wv-ecomGuideCard__kicker{
  color: rgba(71,65,93,.82);
}
.wv-ecom-guide .wv-ecomGuideCard__title{
  color: var(--wv-1);
}
.wv-ecom-guide .wv-ecomGuideCard__list{
  color: rgba(71,65,93,.92);
}
.wv-ecom-guide .wv-ecomGuideCard__note{
  color: rgba(71,65,93,.75);
}

/* Eğer bazı alanlarda global opacity uygulanıyorsa, burada sıfırlıyoruz */
.wv-ecom-guide .wv-ecomGuideCard *{
  opacity: 1;
}

/* ========== 3) STICKY NAV LINK’LERİ ========== */
.wv-ecom-guide .wv-ecomGuideNav__link{
  background: rgba(243,240,255,.60);
  border: 1px solid rgba(71,65,93,.10);
  color: var(--wv-1);
}
.wv-ecom-guide .wv-ecomGuideNav__link:hover{
  background: rgba(204,233,255,.38);
  border-color: rgba(17,129,200,.30);
}

/* ========== 4) SSS (DETAILS) AKORDEON - DAHA DÜZGÜN CSS ========== */
.wv-ecom-guide .wv-faq{
  display: grid;
  gap: 10px;
}

.wv-ecom-guide .wv-faq__item{
  border: 1px solid rgba(71,65,93,.14);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(71,65,93,.06);
  overflow: hidden;
}

.wv-ecom-guide .wv-faq__q{
  list-style: none;
  cursor: pointer;
  padding: 14px 14px;
  font-weight: 950;
  color: var(--wv-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(180deg, rgba(243,240,255,.55), rgba(255,255,255,1));
}

.wv-ecom-guide .wv-faq__q::-webkit-details-marker{
  display: none;
}

/* sağdaki + / - ikon */
.wv-ecom-guide .wv-faq__q::after{
  content: "+";
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(71,65,93,.16);
  background: rgba(204,233,255,.35);
  color: var(--wv-1);
  font-weight: 950;
  flex: 0 0 auto;
}

.wv-ecom-guide .wv-faq__item[open] .wv-faq__q::after{
  content: "–";
  background: rgba(17,129,200,.10);
  border-color: rgba(17,129,200,.28);
}

.wv-ecom-guide .wv-faq__q:hover{
  background: linear-gradient(180deg, rgba(204,233,255,.22), rgba(255,255,255,1));
}

.wv-ecom-guide .wv-faq__a{
  padding: 0 14px 14px;
  color: rgba(71,65,93,.88);
  line-height: 1.7;
  border-top: 1px solid rgba(71,65,93,.08);
}

/* ========== 5) SAYFA ALTINDA “DİĞER HİZMETLER” ========== */
.wv-ecom-guide .wv-otherServices{
  border: 1px solid rgba(71,65,93,.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(243,240,255,.65), rgba(255,255,255,1));
  box-shadow: 0 10px 24px rgba(71,65,93,.06);
  padding: 18px;
}

.wv-ecom-guide .wv-otherServices__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
  margin-top: 12px;
}

.wv-ecom-guide .wv-otherService{
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(71,65,93,.12);
  text-decoration: none;
  color: var(--wv-1);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.wv-ecom-guide .wv-otherService:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(71,65,93,.10);
  border-color: rgba(17,129,200,.28);
}

.wv-ecom-guide .wv-otherService__ic{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(204,233,255,.45);
  border: 1px solid rgba(17,129,200,.20);
  color: var(--wv-4);
  flex: 0 0 auto;
}

.wv-ecom-guide .wv-otherService__ic svg{
  width: 22px;
  height: 22px;
}

.wv-ecom-guide .wv-otherService__t{
  font-weight: 950;
  margin: 0 0 4px;
}

.wv-ecom-guide .wv-otherService__p{
  margin: 0;
  opacity: .85;
  line-height: 1.5;
  font-size: 13.5px;
}

/* Responsive */
@media (max-width: 1100px){
  .wv-ecom-guide .wv-otherServices__grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 640px){
  .wv-ecom-guide .wv-otherServices__grid{
    grid-template-columns: 1fr;
  }
}/* End custom CSS */