/* RESET */
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:Arial}

/* HEADER */
.header{
  position:fixed;
  top:0;left:0;right:0;
  height:70px;
  background:#0f172a;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 40px;
  z-index:1000;
}

/* LOGO */
.logo{
  color:#fff;
  font-weight:bold;
}

/* NAV */
.nav{
  flex:1;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:30px;
  margin-right:40px;
}

.nav a{
  color:#fff;
  font-weight:600;
  font-size:15px;
  position:relative;
  text-decoration:none;
}

/* BUTTON */
.menu-btn{
  display:none;
  font-size:28px;
  color:#fff;
  background:none;
  border:none;
  cursor:pointer;
}

/* DROPDOWN */
.drop-item{
  position:relative;
}

.drop-panel{
  position:absolute;
  top:110%;
  left:50%;
  transform:translateX(-50%);
  min-width:200px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 15px 40px rgba(0,0,0,.2);
  display:none;
  padding:10px 0;
  z-index:9999;
}

.drop-item:hover .drop-panel{
  display:block;
}

/* GAP FIX */
.drop-item::after{
  content:"";
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  height:15px;
}

/* DROPDOWN ITEM */
.drop-panel a{
  display:block;
  padding:12px 18px;
  color:#111;
  font-weight:500;
}

.drop-panel a:hover{
  background:#f1f5f9;
}

/* MOBILE MENU */
.mobile-menu{
  position:fixed;
  top:0;
  right:0;
  width:100%;
  max-width:320px;
  height:100vh;
  background:#fff;
  transform:translateX(100%);
  transition:0.3s;
  z-index:999999;
  overflow-y:auto;
  padding-top:70px;
}

.mobile-menu.active{
  transform:translateX(0);
}

/* CLOSE */
.close-btn{
  position:absolute;
  top:15px;
  right:15px;
  font-size:26px;
  background:none;
  border:none;
  cursor:pointer;
}

/* MOBILE LINKS */
.mobile-menu a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px;
  border-bottom:1px solid #eee;
  color:#111;
  font-weight:600;
}

/* SUBMENU */
.submenu{
  max-height:0;
  overflow:hidden;
  background:#f1f5f9;
  transition:0.3s;
}

.submenu.open{
  max-height:400px;
}

.submenu a{
  padding-left:30px;
  font-size:14px;
}

/* OVERLAY */
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:999998;
}

.overlay.active{
  opacity:1;
  visibility:visible;
}

/* BODY LOCK */
body.menu-open{
  overflow:hidden;
}

/* RESPONSIVE */
@media(max-width:900px){

  .nav{
    display:none;
  }

  .menu-btn{
    display:block;
  }

}

/* CONTENT */
.content{
  margin-top:80px;
  padding:20px;
}

/* ===== HİZMET DETAY ===== */
.service-details-area{
  padding:100px 0 80px;
  background:linear-gradient(180deg,#f8fafc,#eef2ff);
}

.widget-area{
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(12px);
  padding:28px;
  border-radius:22px;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.cat.widget-item h3{
  font-size:20px;
  font-weight:800;
  margin-bottom:22px;
  color:#1e293b;
  display:flex;
  justify-content:space-between;
  cursor:pointer;
}

.cat.widget-item ul{
  list-style:none;
}

.cat.widget-item ul li a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  font-size:15px;
  font-weight:600;
  color:#334155;
  text-decoration:none;
  transition:.3s;
}

.cat.widget-item ul li a:hover{
  background:linear-gradient(90deg,#6366f1,#8b5cf6);
  color:#fff;
}

.details-item{
  background:#fff;
  border-radius:28px;
  padding:32px;
  box-shadow:0 30px 80px rgba(0,0,0,.1);
}
/* CLOSE BTN */
.close-btn{
  position:absolute;
  top:15px;
  right:15px;
  font-size:26px;
  background:none;
  border:none;
  cursor:pointer;
  z-index:999999;
}

/* ========================= */
/* MOBILE MENU FINAL */
/* ========================= */

.mobile-menu{
  position:fixed;
  top:0;
  right:-100%;
  width:85%;
  max-width:340px;
  height:100vh;
  background:#0b0f19;
  color:#fff;
  z-index:999999;
  transition:right 0.35s ease;
  display:flex;
  flex-direction:column;
  overflow-y:auto;
}

.mobile-menu.active{
  right:0;
}

/* HEADER */
.mobile-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}

.mobile-logo img{
  height:40px;
}

/* BODY */
.mobile-body{
  flex:1;
  overflow-y:auto;
}

/* ITEM */
.mobile-item{
  border-bottom:1px solid rgba(255,255,255,0.05);
}

/* TOP LINK */
.mobile-link{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px;
}

.mobile-link a{
  color:#fff;
  text-decoration:none;
  font-size:15px;
}

/* TOGGLE */
.toggle-btn{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#1e293b;
  color:#fff;
  border-radius:8px;
  font-size:18px;
  cursor:pointer;
  transition:0.3s;
}

.toggle-btn.active{
  transform:rotate(90deg);
}

/* SUBMENU */
.submenu{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.3s ease;
}

.submenu.open{
  max-height:500px;
}

.submenu a{
  display:block;
  padding:12px 25px;
  color:#bbb;
  font-size:14px;
  text-decoration:none;
  border-top:1px solid rgba(255,255,255,0.05);
}

.submenu a:hover{
  color:#facc15;
  background:rgba(255,255,255,0.05);
  padding-left:30px;
}

/* ========================= */
/* OVERLAY */
/* ========================= */

.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:999998;
}

.overlay.active{
  opacity:1;
  visibility:visible;
}

/* ========================= */
/* DROPDOWN DARK */
/* ========================= */

.drop-panel{
  background:#0b0f19;
  border-radius:10px;
  overflow:hidden;
  padding:5px 0;
}

.drop-panel a{
  display:block;
  padding:12px 18px;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  transition:0.25s;
}

.drop-panel a:hover{
  background:rgba(255,255,255,0.05);
  color:#facc15;
  padding-left:22px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:900px){
  .nav{display:none;}
  .menu-btn{display:block;}
}

/* ================= FOOTER ================= */

.footer-area{
  background:var(--footer-bg);
  color:var(--footer-text);
  padding:60px 0;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:0 15px;
}

.row{
  display:flex;
  flex-wrap:wrap;
}

.col{
  width:25%;
  padding:20px;
}

/* LOGO */
.footer-logo img{
  max-width:180px;
  margin-bottom:15px;
}

/* TITLE */
.footer-title{
  font-size:17px;
  font-weight:600;
  margin-bottom:15px;
  color:#fff;
}

/* LINKS */
.footer-content a{
  display:block;
  color:#94a3b8;
  text-decoration:none;
  margin-bottom:8px;
  transition:0.3s;
}

.footer-content a:hover{
  color:#facc15;
  padding-left:5px;
}

/* CONTACT */
.footer-contact .contact-item{
  display:flex;
  gap:10px;
  margin-bottom:10px;
  font-size:14px;
}

/* SOCIAL */
.footer-social{
  display:flex;
  gap:12px;
  margin-top:15px;
}

.footer-social a{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#1e293b;
  transition:0.3s;
}

.footer-social a:hover{
  transform:translateY(-3px);
}

/* SEO LINKS */
.footer-seo-links{
  margin-top:20px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.footer-seo-links a{
  font-size:13px;
  color:#94a3b8;
}

/* BOTTOM */
.footer-bottom{
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.08);
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  font-size:14px;
}

.footer-bottom-left{
  opacity:0.7;
}

.footer-bottom-right{
  display:flex;
  gap:10px;
}

.footer-bottom-right a{
  color:#facc15;
  text-decoration:none;
  font-weight:600;
}

.footer-bottom-right a:hover{
  color:#fff;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .col{ width:100%; }

  .footer-title{
    display:flex;
    justify-content:space-between;
    cursor:pointer;
  }

  .footer-title::after{ content:"+"; }

  .footer-box.active .footer-title::after{ content:"-"; }

  .footer-content{ display:none; }

  .footer-box.active .footer-content{ display:block; }

  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }

  .footer-bottom-right{
    justify-content:center;
  }
}


/* ================= GOOGLE ================= */

.goog-te-banner-frame.skiptranslate{ display:none !important; }
body{ top:0 !important; }
.goog-logo-link{ display:none !important; }

.goog-te-gadget{
  font-size:13px !important;
  display:flex !important;
  align-items:center;
}


/* ================= LANG ================= */

.lang-pro{
  display:flex;
  align-items:center;
  gap:8px;
  background:#000;
  color:#fff;
  padding:6px 12px;
  border-radius:50px;
  border:1px solid #ffd700;
  cursor:pointer;
  transition:0.3s;
  margin-left:15px;
}

.lang-pro:hover{ background:#111; }

.lang-pro img{
  width:20px;
  height:20px;
  border-radius:50%;
}

.goog-te-combo{
  background:transparent;
  border:none;
  color:#fff;
  font-size:13px !important;
  outline:none;
  cursor:pointer;
}

.goog-te-combo option{ color:#000; }


/* ================= HEADER ================= */

.header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 40px;
  background:var(--header-bg);
  color:var(--header-text);
  z-index:1000;
}

.logo{
  display:flex;
  align-items:center;
}

.logo img{
  height:60px;
  width:auto;
  max-height:50px;
  object-fit:contain;
}

.nav{
  display:flex;
  align-items:center;
  gap:30px;
}

.nav a{
  color:var(--header-text);
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
}

.nav a:hover{ opacity:0.7; }

.drop-panel{ background:var(--header-bg); }

.drop-panel a{ color:var(--header-text); }

.drop-panel a:hover{
  background:rgba(255,255,255,0.05);
}


/* ================= MOBILE HEADER ================= */

@media(max-width:768px){

  .header{ padding:0 15px; }

  .logo img{ height:65px; }

  /* NAV KAPALI */
  .nav{ display:none !important; }

  /* MENU BTN */
  .menu-btn{
    display:block;
    font-size:26px;
    color:var(--header-text);
  }

  /* LANG */
  .lang-pro{
    position:absolute;
    right:60px;
    top:50%;
    transform:translateY(-50%);
    padding:4px 8px;
  }

  .lang-pro img{
    width:18px;
    height:18px;
  }
}


/* ================= MOBILE MENU FINAL ================= */

.mobile-menu{
  position:fixed;
  top:0;
  right:-100%;
  width:85%;
  max-width:340px;
  height:100vh;
  background:#0b0f19;
  z-index:999999;
  transition:0.35s ease;
  display:flex;
  flex-direction:column;
}

.mobile-menu.active{
  right:0;
}

/* HEADER */
.mobile-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}

.close-btn{
  font-size:26px;
  cursor:pointer;
}

/* BODY */
.mobile-body{
  flex:1;
  overflow-y:auto;
}

/* ITEM */
.mobile-item{
  border-bottom:1px solid rgba(255,255,255,0.05);
}

/* LINK */
.mobile-link{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px;
}

.mobile-link a{
  color:#fff;
  text-decoration:none;
}

/* SUBMENU */
.submenu{
  max-height:0;
  overflow:hidden;
  transition:0.3s;
}

.submenu.open{
  max-height:400px;
}

/* OVERLAY */
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.3);
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:999998;
}

.overlay.active{
  opacity:1;
  visibility:visible;
}
.overlay{
  position:fixed;
  inset:0;
  background:transparent; /* 🔥 KARARTMA YOK */
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:999998;
}

.overlay.active{
  opacity:1;
  visibility:visible;
}

/* SUBMENU FIX */
.submenu{
  max-height:0;
  overflow:hidden;
  transition:0.3s ease;
  background:#0b0f19; /* 🔥 koyu tema */
  padding:0;
}

.submenu.open{
  max-height:500px;
  padding:10px 0;
}

/* SUBMENU LINK */
.submenu a{
  display:block;
  padding:12px 25px;
  color:#ccc; /* 🔥 beyaz değil */
  font-size:14px;
  text-decoration:none;
  border-top:1px solid rgba(255,255,255,0.05);
  transition:0.3s;
}

/* HOVER */
.submenu a:hover{
  background:rgba(255,255,255,0.05);
  color:#facc15;
  padding-left:30px;
}
.toggle-btn{
  width:36px;
  height:36px;
  background:#1e293b;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  transition:0.3s;
}

.toggle-btn.active{
  transform:rotate(90deg);
}
/* DESKTOP KAYMA FIX */
html{
  overflow-y:scroll;
}


/* ================= FOOTER GENEL ================= */

.footer-area{
  background: var(--footer-bg);
  color: var(--footer-text);
}

.footer-area a{
  display:block;
  margin-bottom:8px;
  transition:.3s;
}

.footer-area a:hover{
  color: var(--footer-title);
}

/* GRID */
.footer-area .row{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
}

.footer-area .col{
  flex:1;
  min-width:200px;
}

/* ================= BAŞLIK ================= */

.footer-title{
  font-weight:600;
  color: var(--footer-title);
  margin-bottom:10px;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* + işareti */
.footer-title::after{
  content:"+";
  font-size:18px;
  transition:.3s;
}

/* aktif */
.footer-box.active .footer-title::after{
  content:"-";
}

/* ================= CONTENT ================= */

.footer-content{
  transition:.3s ease;
}

/* ================= CONTACT ================= */

.footer-contact .contact-item{
  display:flex;
  gap:8px;
  margin-bottom:10px;
}

.footer-contact .icon{
  color: var(--footer-title);
}

/* ================= ALT ================= */

.footer-bottom{
  margin-top:30px;
  padding-top:15px;
  border-top:1px solid var(--footer-title);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
}

.footer-bottom-left,
.footer-bottom-right{
  font-size:14px;
}

/* ================= MOBİL ================= */

@media(max-width:768px){

  /* kolonlar alt alta */
  .footer-area .row{
    flex-direction:column;
  }

  /* accordion */
  .footer-content{
    max-height:0;
    overflow:hidden;
  }

  .footer-box.active .footer-content{
    max-height:400px;
    padding-top:10px;
  }

  /* sadece logo açık */
  .footer-box:first-child .footer-content{
    max-height:400px;
  }

  /* alt footer */
  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }

}

/* ================= DESKTOP ================= */

@media(min-width:769px){

  .footer-title::after{
    display:none;
  }

  .footer-content{
    max-height:100% !important;
    overflow:visible !important;
  }

}
/* ================= SOCIAL ================= */

.footer-social{
  margin-top:15px;
  display:flex;
  gap:10px;
}

.footer-social a{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,0.05);
  color:var(--footer-title);
  font-size:14px;
  transition:0.3s;
}

.footer-social a:hover{
  background:var(--footer-title);
  color:#000;
  transform:translateY(-3px);
}

/* ================= HEADER ================= */

.header{
  background: var(--header-bg) !important;
  color: var(--header-text);
}

/* MENÜ */
.nav a{
  color: var(--header-text) !important;
  font-weight:600;
  transition:0.3s;
}

/* HOVER */
.nav a:hover{
  color: var(--header-hover) !important;
}

/* DROPDOWN */
.drop-panel{
  background: var(--header-bg);
}

.drop-panel a{
  color: var(--header-text);
}

.drop-panel a:hover{
  background: rgba(255,255,255,0.05);
  color: var(--header-hover);
}

/* MOBILE */
.mobile-menu{
  background: var(--header-bg);
}

.mobile-link a{
  color: var(--header-text);
}

/* MOBILE HOVER */
.mobile-link a:hover{
  color: var(--header-hover);
}

/* ================= TANITIM KART ================= */

.modern-card{
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px;
  transition: 0.3s;
  height:100%;
}

.modern-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modern-card i{
  font-size:40px;
  color: var(--card-title);
  margin-bottom:15px;
}

.modern-card h5{
  color: var(--card-title);
  margin-bottom:10px;
}

.modern-card p{
  color: var(--card-text);
}

/* =========================================================
   1) MOBİL FIX / SWIPER UYUMLULUK
   - Mobilde feature alanı taşmasın diye
========================================================= */
@media(max-width:768px){
  .feature-area .row{
    display:block !important;
    overflow:visible !important;
    flex-wrap:wrap !important;
  }

  .feature-area .col-sm-6.col-lg-4{
    flex:unset !important;
    max-width:100% !important;
  }
}

/* =========================================================
   2) GENEL HTML / BODY
========================================================= */
html, body{
  height:auto !important;
}

/* =========================================================
   3) ORTAK CONTAINER
   - Tüm genişlik ayarı
========================================================= */
.container{
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 15px;
}

/* =========================================================
   4) ANA SAYFA HİZMETLER ALANI
   - Hizmetler kart alanı genel bölüm
========================================================= */
.services-area{
  padding: 50px 0 25px;
  background: #f8fafc;
}

/* =========================================================
   5) HİZMETLER ÜST BAŞLIK ALANI
   - Hizmetler Alanı / Hizmetlerimiz / açıklama
========================================================= */
.services-top{
  text-align: left;
  margin-bottom: 22px;
}

.services-mini-title{
  display: inline-block;
  padding: 8px 16px;
  background: #e2e8f0;
  color: #0f172a;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.services-top h2{
  font-size: 34px;
  line-height: 1.2;
  margin: 0 0 10px;
  color: #0f172a;
  font-weight: 700;
}

.services-top p{
  max-width: 700px;
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

/* =========================================================
   6) HİZMETLER GRID YAPISI
   - Desktop 4 kolon
========================================================= */
.services-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* =========================================================
   7) HİZMET KARTI
========================================================= */
.service-card{
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

/* =========================================================
   8) KART GÖRSEL ALANI
========================================================= */
.service-image{
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e5e7eb;
}

.service-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover .service-image img{
  transform: scale(1.06);
}

/* =========================================================
   9) KART ÜST ETİKETİ
   - Görsel üstündeki "Hizmet" etiketi
========================================================= */
.service-badge-card{
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.88);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 30px;
  z-index: 2;
}

/* =========================================================
   10) KART İÇERİK ALANI
========================================================= */
.service-content{
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* =========================================================
   11) KART TARİH
========================================================= */
.service-date-text{
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 10px;
}

/* =========================================================
   12) KART BAŞLIK
========================================================= */
.service-title{
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 12px;
  font-weight: 700;
}

.service-title a{
  color: #0f172a;
  text-decoration: none;
}

.service-title a:hover{
  color: #2563eb;
}

/* =========================================================
   13) KART AÇIKLAMA
========================================================= */
.service-desc{
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 20px;
  flex: 1;
}

/* =========================================================
   14) KART ALT BUTON
========================================================= */
.service-footer{
  margin-top: auto;
}

.service-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  background: #0f172a;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.service-link:hover{
  background: #2563eb;
  color: #fff;
}

/* =========================================================
   15) "DAHA FAZLA HİZMET" BUTON ALANI
========================================================= */
.services-button-wrap{
  text-align: center;
  margin-top: 18px;
  margin-bottom: 0;
}

.more-services-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.more-services-btn:hover{
  background: #0f172a;
  color: #fff;
}

/* =========================================================
   16) HİZMET DETAY SAYFASI GENEL ALAN
========================================================= */
.service-detail-section{
  padding: 50px 0;
  background: #f4f7fb;
}

.service-detail-layout{
  display: grid;
  grid-template-columns: 290px minmax(0,1fr);
  gap: 30px;
  align-items: start;
}

/* =========================================================
   17) HİZMET DETAY SOL MENÜ
========================================================= */
.service-side{
  position: sticky;
  top: 30px;
}

.service-side-card{
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.service-side-toggle{
  width: 100%;
  border: none;
  background: #0f172a;
  color: #fff;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.service-side-icon{
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: .3s;
}

.service-side.active .service-side-icon{
  transform: rotate(-135deg);
}

.service-side-body{
  padding: 14px;
}

.service-side-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-side-list li{
  margin-bottom: 10px;
}

.service-side-list li:last-child{
  margin-bottom: 0;
}

.service-side-list a{
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.service-side-list a:hover,
.service-side-list a.active{
  background: #2f63e0;
  color: #fff;
  border-color: #2f63e0;
}

/* =========================================================
   18) HİZMET DETAY SAĞ KART
========================================================= */
.service-main-card{
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 35px rgba(0,0,0,.06);
}

/* =========================================================
   19) HİZMET DETAY GÖRSEL KUTUSU
   - Arkada blur aynı görsel
   - Önde tam görünen görsel
========================================================= */
.service-image-box{
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image-box::before{
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(18px);
  transform: scale(1.08);
  opacity: .55;
}

.service-image-box::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
}

.service-image-box img{
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}

/* =========================================================
   20) HİZMET DETAY BAŞLIK ALANI
========================================================= */
.service-head-box{
  padding: 24px 30px 10px;
}

.service-badge{
  display: inline-block;
  padding: 8px 14px;
  border-radius: 30px;
  background: #e8eefc;
  color: #2f63e0;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-head-box h1{
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
}

.service-date{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
}

/* =========================================================
   21) HİZMET DETAY İÇERİK ALANI
========================================================= */
.service-content{
  padding: 20px 30px 30px;
}

.service-summary{
  background: #f8fafc;
  border-left: 4px solid #2f63e0;
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 25px;
}

.service-summary h3{
  margin: 0 0 10px;
  font-size: 20px;
  color: #0f172a;
}

.service-summary p{
  margin: 0;
  color: #475569;
  line-height: 1.8;
}

.service-text{
  color: #334155;
  font-size: 16px;
  line-height: 1.9;
}

.service-text h1,
.service-text h2,
.service-text h3,
.service-text h4,
.service-text h5,
.service-text h6{
  color: #0f172a;
  margin-top: 24px;
  margin-bottom: 14px;
  font-weight: 700;
}

.service-text p{
  margin-bottom: 18px;
}

.service-text img{
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}

.service-text table{
  width: 100%;
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
  margin: 20px 0;
}

.service-text table td,
.service-text table th{
  border: 1px solid #e5e7eb;
  padding: 10px 12px;
}

/* =========================================================
   22) HİZMET DETAY ALT BUTONLAR
========================================================= */
.service-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.service-btn{
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  transition: .3s;
}

.service-btn-light{
  background: #e2e8f0;
  color: #0f172a;
}

.service-btn-light:hover{
  background: #cbd5e1;
  color: #0f172a;
}

.service-btn-dark{
  background: #2f63e0;
  color: #fff;
}

.service-btn-dark:hover{
  background: #0f172a;
  color: #fff;
}

/* =========================================================
   23) TABLET RESPONSIVE
========================================================= */
@media (max-width: 1199px){
  .services-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px){
  .services-area{
    padding: 40px 0 20px;
  }

  .services-top h2{
    font-size: 28px;
  }

  .services-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .service-detail-layout{
    grid-template-columns: 1fr;
  }

  .service-side{
    position: static;
  }

  .service-image-box{
    height: 320px;
  }

  .service-head-box h1{
    font-size: 28px;
  }
}

/* =========================================================
   24) MOBİL RESPONSIVE
========================================================= */
@media (max-width: 767px){
  .services-area{
    padding: 35px 0 15px;
  }

  .services-top{
    margin-bottom: 18px;
  }

  .services-top h2{
    font-size: 24px;
  }

  .services-top p{
    font-size: 14px;
  }

  .services-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-content{
    padding: 18px;
  }

  .service-title{
    font-size: 18px;
  }

  .services-button-wrap{
    margin-top: 14px;
  }

  .more-services-btn{
    width: 100%;
  }

  .service-detail-section{
    padding: 30px 0;
  }

  .service-side-body{
    display: none;
  }

  .service-side.active .service-side-body{
    display: block;
  }

  .service-side-toggle{
    font-size: 16px;
    padding: 16px 18px;
  }

  .service-image-box{
    height: 220px;
  }

  .service-head-box{
    padding: 18px 18px 8px;
  }

  .service-head-box h1{
    font-size: 22px;
  }

  .service-content{
    padding: 18px;
  }

  .service-summary{
    padding: 16px;
  }

  .service-text{
    font-size: 14px;
  }

  .service-actions{
    flex-direction: column;
  }

  .service-btn{
    width: 100%;
  }
}
/* ========================= HİZMET ALANI BAŞLANGIÇ ========================= */
.services-area-no-gap{
    padding: 35px 0 0 !important;
    margin-bottom: 0 !important;
}

.services-area-no-gap .container{
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.services-top{
    text-align: left;
    margin-bottom: 18px;
}

.services-mini-title{
    display: inline-block;
    padding: 8px 16px;
    background: #e2e8f0;
    color: #0f172a;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.services-top h2{
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 8px;
    color: #0f172a;
    font-weight: 700;
}

.services-top p{
    max-width: 700px;
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

.services-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 12px !important;
}

.service-card{
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.service-image{
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #e5e7eb;
}

.service-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img{
    transform: scale(1.06);
}

.service-badge-card{
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.88);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 30px;
    z-index: 2;
}

.service-content{
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-date-text{
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.service-title{
    font-size: 20px;
    line-height: 1.4;
    margin: 0 0 12px;
    font-weight: 700;
}

.service-title a{
    color: #0f172a;
    text-decoration: none;
}

.service-title a:hover{
    color: #2563eb;
}

.service-desc{
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 20px;
    flex: 1;
}

.service-footer{
    margin-top: auto;
}

.service-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    background: #0f172a;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.service-link:hover{
    background: #2563eb;
    color: #fff;
}

.services-button-wrap{
    text-align: center;
    margin-top: 12px !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.more-services-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.more-services-btn:hover{
    background: #0f172a;
    color: #fff;
}

/* TABLET */
@media (max-width: 1199px){
    .services-grid{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px){
    .services-area-no-gap{
        padding: 30px 0 0 !important;
    }

    .services-top h2{
        font-size: 28px;
    }

    .services-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

/* MOBİL */
@media (max-width: 767px){
    .services-area-no-gap{
        padding: 25px 0 0 !important;
    }

    .services-top{
        margin-bottom: 16px;
    }

    .services-top h2{
        font-size: 24px;
    }

    .services-top p{
        font-size: 14px;
    }

    .services-grid{
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 10px !important;
    }

    .service-content{
        padding: 18px;
    }

    .service-title{
        font-size: 18px;
    }

    .services-button-wrap{
        margin-top: 10px !important;
    }

    .more-services-btn{
        width: 100%;
    }
}
/* ========================= HİZMET ALANI BİTİŞ ========================= */

/* =======================================================================
   HAKKIMIZDA ALANI - BAŞLANGIÇ
   Kullanım: Ana sayfadaki hakkımızda / kurumsal tanıtım bölümü
======================================================================= */

.about-section{
  --theme-color: #c89b3c;
  padding: 70px 0;
  background: linear-gradient(180deg,#f8f8f8,#ececec);
}

/* =======================================================================
   HAKKIMIZDA WRAP
   Kullanım: Görsel ve içerik iki sütun ana taşıyıcı alan
======================================================================= */

.about-showcase{
  display: flex;
  align-items: stretch;
  gap: 40px;
}

/* =======================================================================
   HAKKIMIZDA RANDOM SAĞ / SOL YER DEĞİŞİM
   Kullanım: right class gelirse görsel sağa geçer
======================================================================= */

.about-showcase.right{
  flex-direction: row-reverse;
}

/* =======================================================================
   HAKKIMIZDA GÖRSEL ALANI
   Kullanım: Sol veya sağ taraftaki büyük görsel kutusu
======================================================================= */

.about-visual{
  flex: 1;
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 420px;
  background: #ddd;
}

/* =======================================================================
   HAKKIMIZDA GÖRSEL RESİM
   Kullanım: Görsel kutusundaki img etiketi
======================================================================= */

.about-visual img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .6s ease;
}

/* =======================================================================
   HAKKIMIZDA GÖRSEL HOVER ZOOM
======================================================================= */

.about-visual:hover img{
  transform: scale(1.06);
}

/* =======================================================================
   HAKKIMIZDA GÖRSEL BORDER EFEKT
======================================================================= */

.about-visual::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  border: 1px solid var(--theme-color);
  opacity: .35;
  pointer-events: none;
  z-index: 2;
}

/* =======================================================================
   HAKKIMIZDA SAĞ PANEL
   Kullanım: Başlık, açıklama ve link alanı
======================================================================= */

.about-panel{
  flex: 1;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  padding: 45px;
  border-radius: 26px;
  box-shadow: 0 25px 70px rgba(0,0,0,.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* =======================================================================
   HAKKIMIZDA KÜÇÜK ÜST BAŞLIK
   Kullanım: Kurumsal Kimlik gibi mini başlık alanı
======================================================================= */

.about-mini-title{
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--theme-color);
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 14px;
}

/* =======================================================================
   HAKKIMIZDA ANA BAŞLIK
   Kullanım: Hakkımızda başlığı
======================================================================= */

.about-title{
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 18px;
  color: #1f2937;
}

/* =======================================================================
   HAKKIMIZDA AÇIKLAMA METNİ
   Kullanım: Kısa tanıtım yazısı
======================================================================= */

.about-desc{
  font-size: 15px;
  color: #444;
  line-height: 1.9;
  text-align: justify;
  margin: 0 0 28px;

  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

/* =======================================================================
   HAKKIMIZDA ALT AKSİYON ALANI
   Kullanım: Powered by + Daha Fazlası link alanı
======================================================================= */

.about-action{
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* =======================================================================
   HAKKIMIZDA ALT SOL YAZI
   Kullanım: Powered By Halvis Soft
======================================================================= */

.about-sign{
  color: #666;
  font-size: 14px;
  font-weight: 500;
}

/* =======================================================================
   HAKKIMIZDA DETAY LİNKİ
   Kullanım: Daha Fazlası linki
======================================================================= */

.about-link{
  color: var(--theme-color);
  font-weight: 700;
  text-decoration: none;
  transition: .3s ease;
}

.about-link:hover{
  letter-spacing: 1px;
}

/* =======================================================================
   HAKKIMIZDA TABLET RESPONSIVE
   Kullanım: 992px altı
======================================================================= */

@media (max-width: 992px){
  .about-section{
    padding: 50px 0;
  }

  .about-showcase{
    flex-direction: column !important;
    gap: 24px;
  }

  .about-visual{
    min-height: 300px;
  }

  .about-panel{
    padding: 28px;
  }

  .about-title{
    font-size: 28px;
  }
}

/* =======================================================================
   HAKKIMIZDA MOBİL RESPONSIVE
   Kullanım: 767px altı
======================================================================= */

@media (max-width: 767px){
  .about-section{
    padding: 35px 0;
  }

  .about-visual{
    min-height: 220px;
    border-radius: 18px;
  }

  .about-panel{
    padding: 20px;
    border-radius: 18px;
  }

  .about-mini-title{
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

  .about-title{
    font-size: 22px;
    margin-bottom: 12px;
  }

  .about-desc{
    font-size: 14px;
    line-height: 1.8;
    -webkit-line-clamp: 7;
    margin-bottom: 18px;
  }

  .about-action{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .about-sign{
    font-size: 13px;
  }

  .about-link{
    font-size: 14px;
  }
}

/* =======================================================================
   HAKKIMIZDA ALANI - BİTİŞ
======================================================================= */

/* ======================================================================
   GOOGLE YORUMLARI ALANI | BAŞLANGIÇ
====================================================================== */

.google-review-area{
  background:#ffffff;
  padding:70px 0 40px;
  font-family:Roboto, Arial, sans-serif;
  overflow:hidden;
}

/* ======================================================================
   ÜST BAŞLIK ALANI
====================================================================== */

.google-review-head{
  text-align:center;
  max-width:900px;
  margin:0 auto 35px;
}

.google-review-mini-title{
  display:inline-block;
  padding:8px 16px;
  background:#f1f3f4;
  color:#5f6368;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  margin-bottom:12px;
}

.google-review-title{
  margin:0 0 12px;
  color:#202124;
  font-size:34px;
  font-weight:700;
  line-height:1.2;
}

.google-review-desc{
  margin:0;
  color:#5f6368;
  font-size:15px;
  line-height:1.8;
}

/* ======================================================================
   SLIDER ALANI
====================================================================== */

.google-review-slider{
  display:flex;
  gap:20px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding:0 4px 20px;
  scrollbar-width:none;
}

.google-review-slider::-webkit-scrollbar{
  display:none;
}

/* ======================================================================
   YORUM KARTI
====================================================================== */

.google-review-card{
  min-width:320px;
  max-width:360px;
  background:#fff;
  border:1px solid #e8eaed;
  border-radius:18px;
  padding:20px;
  color:#202124;
  scroll-snap-align:start;
  flex-shrink:0;
  box-shadow:0 10px 30px rgba(60,64,67,.08);
  transition:.3s ease;
}

.google-review-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(60,64,67,.14);
}

/* ======================================================================
   KART ÜST ALAN
====================================================================== */

.google-review-top{
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.google-review-meta{
  flex:1;
}

/* ======================================================================
   AVATAR
====================================================================== */

.google-avatar{
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:18px;
  color:#fff;
  flex-shrink:0;
}

/* ======================================================================
   KULLANICI ADI
====================================================================== */

.google-user-name{
  font-weight:600;
  font-size:16px;
  color:#202124;
  margin-bottom:6px;
}

/* ======================================================================
   GOOGLE KAYNAK YAZISI
====================================================================== */

.google-source{
  display:flex;
  align-items:center;
  gap:7px;
  font-size:13px;
  margin-bottom:6px;
}

.google-source img{
  width:15px;
  height:15px;
  display:block;
}

.google-word{
  font-weight:700;
  letter-spacing:-0.2px;
}

.g-blue{ color:#4285F4; }
.g-red{ color:#EA4335; }
.g-yellow{ color:#FBBC05; }
.g-green{ color:#34A853; }

.google-source-text{
  color:#5f6368;
  font-weight:500;
}

/* ======================================================================
   YILDIZ / PUAN
====================================================================== */

.google-rating{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:6px;
}

.google-stars{
  color:#FBBC05;
  font-size:14px;
  letter-spacing:1px;
}

.google-score{
  font-size:13px;
  color:#202124;
  font-weight:600;
}

/* ======================================================================
   TARİH
====================================================================== */

.google-time{
  font-size:13px;
  color:#5f6368;
}

/* ======================================================================
   YORUM METNİ
====================================================================== */

.google-review-text{
  margin-top:14px;
  font-size:15px;
  line-height:1.7;
  color:#3c4043;
}

.google-review-text p:last-child{
  margin-bottom:0;
}

/* ======================================================================
   BOŞ DURUM
====================================================================== */

.google-review-empty{
  width:100%;
  text-align:center;
  color:#5f6368;
  font-size:15px;
  padding:30px 0;
}

/* ======================================================================
   ALT BUTON
====================================================================== */

.google-review-button-wrap{
  text-align:center;
  margin-top:18px;
}

.review-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 24px;
  background:#4285F4;
  color:#fff;
  text-align:center;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  transition:.3s ease;
}

.review-btn:hover{
  background:#1a73e8;
  color:#fff;
}

/* ======================================================================
   TABLET
====================================================================== */

@media (max-width:991px){
  .google-review-area{
    padding:55px 0 30px;
  }

  .google-review-title{
    font-size:28px;
  }
}

/* ======================================================================
   MOBİL
====================================================================== */

@media (max-width:767px){
  .google-review-area{
    padding:40px 0 25px;
  }

  .google-review-head{
    margin-bottom:24px;
  }

  .google-review-title{
    font-size:24px;
  }

  .google-review-desc{
    font-size:14px;
  }

  .google-review-card{
    min-width:280px;
    max-width:300px;
    padding:18px;
  }

  .google-review-text{
    font-size:14px;
  }

  .review-btn{
    width:100%;
    max-width:320px;
  }
}

/* ======================================================================
   GOOGLE YORUMLARI ALANI | BİTİŞ
====================================================================== */

/* ======================================================================
   GOOGLE YORUMLARI | MOBİL TEK KART / KOYU TEMA OVERRIDE
   - Mobilde ekranda tek kart görünür
   - Kart koyu Google yorum tarzında olur
   - İçerik beyaz kalır
====================================================================== */

@media (max-width: 767px){

  .google-review-area{
    background:#ffffff;
    padding:32px 0 20px;
    overflow:hidden;
  }

  .google-review-area .container{
    max-width:100%;
    padding-left:16px;
    padding-right:16px;
  }

  .google-review-head{
    margin:0 auto 18px;
    padding:0 4px;
  }

  .google-review-title{
    font-size:24px;
    line-height:1.25;
  }

  .google-review-desc{
    font-size:14px;
    line-height:1.7;
  }

  .google-review-slider{
    display:flex;
    gap:0;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding:0;
    margin:0;
    scrollbar-width:none;
    -ms-overflow-style:none;
  }

  .google-review-slider::-webkit-scrollbar{
    display:none;
  }

  .google-review-card{
    width:100%;
    min-width:100%;
    max-width:100%;
    flex:0 0 100%;
    scroll-snap-align:start;
    border-radius:24px;
    padding:22px 20px;
    margin:0;
    background:#202124;
    border:1px solid #2f3033;
    color:#ffffff;
    box-shadow:none;
  }

  .google-review-card:hover{
    transform:none;
    box-shadow:none;
  }

  .google-review-top{
    gap:14px;
    align-items:flex-start;
  }

  .google-avatar{
    width:56px;
    height:56px;
    font-size:22px;
    flex-shrink:0;
  }

  .google-user-name{
    font-size:16px;
    line-height:1.35;
    color:#ffffff;
    margin-bottom:6px;
  }

  .google-source{
    gap:6px;
    font-size:13px;
    margin-bottom:8px;
    flex-wrap:wrap;
  }

  .google-source-text{
    color:#ffffff;
    opacity:.95;
  }

  .google-rating{
    gap:8px;
    margin-bottom:8px;
  }

  .google-stars{
    color:#fbbc04;
    font-size:15px;
  }

  .google-score{
    color:#ffffff;
    font-size:13px;
    font-weight:700;
  }

  .google-time{
    color:#ffffff;
    opacity:.92;
    font-size:13px;
  }

  .google-review-text{
    margin-top:16px;
    font-size:15px;
    line-height:1.8;
    color:#ffffff;
  }

  .google-review-empty{
    width:100%;
    color:#202124;
    text-align:center;
    padding:24px 0;
  }

  .google-review-button-wrap{
    margin-top:16px;
    padding:0 16px;
  }

  .review-btn{
    width:100%;
    max-width:100%;
    min-height:54px;
    border-radius:999px;
  }
}
/* ======================================================================
   GOOGLE YORUMLARI DESKTOP 10 FARKLI KART RENGİ | BAŞLANGIÇ
   Not:
   - Eski desktop renk css'ini sil
   - Bunu dosyanın en altına ekle
   - nth-of-type ile tek tek kart renklendirme
====================================================================== */

@media (min-width: 768px){

  .google-review-slider .google-review-card{
    transition: .35s ease !important;
  }

  .google-review-slider .google-review-card:hover{
    transform: translateY(-6px) !important;
  }

  /* 1 */
  .google-review-slider .google-review-card:nth-of-type(1){
    background: linear-gradient(135deg,#0f172a,#1e293b) !important;
    border: 1px solid #1e293b !important;
    box-shadow: 0 14px 35px rgba(15,23,42,.18) !important;
  }
  .google-review-slider .google-review-card:nth-of-type(1) .google-user-name,
  .google-review-slider .google-review-card:nth-of-type(1) .google-score,
  .google-review-slider .google-review-card:nth-of-type(1) .google-review-text,
  .google-review-slider .google-review-card:nth-of-type(1) .google-time,
  .google-review-slider .google-review-card:nth-of-type(1) .google-source-text{
    color:#fff !important;
  }

  /* 2 */
  .google-review-slider .google-review-card:nth-of-type(2){
    background: linear-gradient(135deg,#2563eb,#1d4ed8) !important;
    border: 1px solid #1d4ed8 !important;
    box-shadow: 0 14px 35px rgba(37,99,235,.20) !important;
  }
  .google-review-slider .google-review-card:nth-of-type(2) .google-user-name,
  .google-review-slider .google-review-card:nth-of-type(2) .google-score,
  .google-review-slider .google-review-card:nth-of-type(2) .google-review-text,
  .google-review-slider .google-review-card:nth-of-type(2) .google-time,
  .google-review-slider .google-review-card:nth-of-type(2) .google-source-text{
    color:#fff !important;
  }

  /* 3 */
  .google-review-slider .google-review-card:nth-of-type(3){
    background: linear-gradient(135deg,#ffffff,#f8fafc) !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 14px 35px rgba(0,0,0,.08) !important;
  }
  .google-review-slider .google-review-card:nth-of-type(3) .google-user-name,
  .google-review-slider .google-review-card:nth-of-type(3) .google-score{
    color:#111827 !important;
  }
  .google-review-slider .google-review-card:nth-of-type(3) .google-review-text{
    color:#374151 !important;
  }
  .google-review-slider .google-review-card:nth-of-type(3) .google-time,
  .google-review-slider .google-review-card:nth-of-type(3) .google-source-text{
    color:#6b7280 !important;
  }

  /* 4 */
  .google-review-slider .google-review-card:nth-of-type(4){
    background: linear-gradient(135deg,#202124,#2b2b2b) !important;
    border: 1px solid #303134 !important;
    box-shadow: 0 14px 35px rgba(0,0,0,.20) !important;
  }
  .google-review-slider .google-review-card:nth-of-type(4) .google-user-name,
  .google-review-slider .google-review-card:nth-of-type(4) .google-score,
  .google-review-slider .google-review-card:nth-of-type(4) .google-review-text,
  .google-review-slider .google-review-card:nth-of-type(4) .google-time,
  .google-review-slider .google-review-card:nth-of-type(4) .google-source-text{
    color:#fff !important;
  }

  /* 5 */
  .google-review-slider .google-review-card:nth-of-type(5){
    background: linear-gradient(135deg,#166534,#15803d) !important;
    border: 1px solid #15803d !important;
    box-shadow: 0 14px 35px rgba(21,128,61,.20) !important;
  }
  .google-review-slider .google-review-card:nth-of-type(5) .google-user-name,
  .google-review-slider .google-review-card:nth-of-type(5) .google-score,
  .google-review-slider .google-review-card:nth-of-type(5) .google-review-text,
  .google-review-slider .google-review-card:nth-of-type(5) .google-time,
  .google-review-slider .google-review-card:nth-of-type(5) .google-source-text{
    color:#fff !important;
  }

  /* 6 */
  .google-review-slider .google-review-card:nth-of-type(6){
    background: linear-gradient(135deg,#6d28d9,#7c3aed) !important;
    border: 1px solid #7c3aed !important;
    box-shadow: 0 14px 35px rgba(124,58,237,.20) !important;
  }
  .google-review-slider .google-review-card:nth-of-type(6) .google-user-name,
  .google-review-slider .google-review-card:nth-of-type(6) .google-score,
  .google-review-slider .google-review-card:nth-of-type(6) .google-review-text,
  .google-review-slider .google-review-card:nth-of-type(6) .google-time,
  .google-review-slider .google-review-card:nth-of-type(6) .google-source-text{
    color:#fff !important;
  }

  /* 7 */
  .google-review-slider .google-review-card:nth-of-type(7){
    background: linear-gradient(135deg,#ea580c,#f97316) !important;
    border: 1px solid #f97316 !important;
    box-shadow: 0 14px 35px rgba(249,115,22,.22) !important;
  }
  .google-review-slider .google-review-card:nth-of-type(7) .google-user-name,
  .google-review-slider .google-review-card:nth-of-type(7) .google-score,
  .google-review-slider .google-review-card:nth-of-type(7) .google-review-text,
  .google-review-slider .google-review-card:nth-of-type(7) .google-time,
  .google-review-slider .google-review-card:nth-of-type(7) .google-source-text{
    color:#fff !important;
  }

  /* 8 */
  .google-review-slider .google-review-card:nth-of-type(8){
    background: linear-gradient(135deg,#db2777,#ec4899) !important;
    border: 1px solid #ec4899 !important;
    box-shadow: 0 14px 35px rgba(236,72,153,.22) !important;
  }
  .google-review-slider .google-review-card:nth-of-type(8) .google-user-name,
  .google-review-slider .google-review-card:nth-of-type(8) .google-score,
  .google-review-slider .google-review-card:nth-of-type(8) .google-review-text,
  .google-review-slider .google-review-card:nth-of-type(8) .google-time,
  .google-review-slider .google-review-card:nth-of-type(8) .google-source-text{
    color:#fff !important;
  }

  /* 9 */
  .google-review-slider .google-review-card:nth-of-type(9){
    background: linear-gradient(135deg,#0f766e,#14b8a6) !important;
    border: 1px solid #14b8a6 !important;
    box-shadow: 0 14px 35px rgba(20,184,166,.22) !important;
  }
  .google-review-slider .google-review-card:nth-of-type(9) .google-user-name,
  .google-review-slider .google-review-card:nth-of-type(9) .google-score,
  .google-review-slider .google-review-card:nth-of-type(9) .google-review-text,
  .google-review-slider .google-review-card:nth-of-type(9) .google-time,
  .google-review-slider .google-review-card:nth-of-type(9) .google-source-text{
    color:#fff !important;
  }

  /* 10 */
  .google-review-slider .google-review-card:nth-of-type(10){
    background: linear-gradient(135deg,#fef3c7,#fde68a) !important;
    border: 1px solid #fcd34d !important;
    box-shadow: 0 14px 35px rgba(252,211,77,.24) !important;
  }
  .google-review-slider .google-review-card:nth-of-type(10) .google-user-name,
  .google-review-slider .google-review-card:nth-of-type(10) .google-score{
    color:#111827 !important;
  }
  .google-review-slider .google-review-card:nth-of-type(10) .google-review-text{
    color:#374151 !important;
  }
  .google-review-slider .google-review-card:nth-of-type(10) .google-time,
  .google-review-slider .google-review-card:nth-of-type(10) .google-source-text{
    color:#6b7280 !important;
  }

  /* koyu kart yıldızları */
  .google-review-slider .google-review-card:nth-of-type(1) .google-stars,
  .google-review-slider .google-review-card:nth-of-type(2) .google-stars,
  .google-review-slider .google-review-card:nth-of-type(4) .google-stars,
  .google-review-slider .google-review-card:nth-of-type(5) .google-stars,
  .google-review-slider .google-review-card:nth-of-type(6) .google-stars,
  .google-review-slider .google-review-card:nth-of-type(7) .google-stars,
  .google-review-slider .google-review-card:nth-of-type(8) .google-stars,
  .google-review-slider .google-review-card:nth-of-type(9) .google-stars{
    color:#fbbc04 !important;
  }
}

/* ======================================================================
   GOOGLE YORUMLARI DESKTOP 10 FARKLI KART RENGİ | BİTİŞ
====================================================================== */

/* ======================================================================
   GOOGLE YORUMLARI PREMIUM EKSTRA GÖRÜNÜM | BAŞLANGIÇ
   Not:
   - Mevcut kart renk css'inin altına eklenir
   - Sadece görünümü güçlendirir
====================================================================== */

@media (min-width: 768px){

  /* --------------------------------------------------
     KART GENEL PREMIUM DOKUNUŞ
  -------------------------------------------------- */
  .google-review-slider .google-review-card{
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
  }

  /* --------------------------------------------------
     ÜST IŞIK ÇİZGİSİ
  -------------------------------------------------- */
  .google-review-slider .google-review-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg,
      rgba(255,255,255,0),
      rgba(255,255,255,.75),
      rgba(255,255,255,0));
    opacity: .75;
  }

  /* --------------------------------------------------
     İÇ PARLAKLIK KATMANI
  -------------------------------------------------- */
  .google-review-slider .google-review-card::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
      rgba(255,255,255,.10),
      rgba(255,255,255,0));
    pointer-events: none;
    opacity: .35;
  }

  /* --------------------------------------------------
     AVATAR PREMIUM HALO
  -------------------------------------------------- */
  .google-review-slider .google-avatar{
    box-shadow:
      0 0 0 4px rgba(255,255,255,.08),
      0 10px 24px rgba(0,0,0,.18);
  }

  /* --------------------------------------------------
     KULLANICI ADI DAHA PREMIUM
  -------------------------------------------------- */
  .google-review-slider .google-user-name{
    letter-spacing: -.2px;
  }

  /* --------------------------------------------------
     YILDIZLAR PARLAKLIK
  -------------------------------------------------- */
  .google-review-slider .google-stars{
    text-shadow: 0 0 12px rgba(251,188,4,.25);
  }

  /* --------------------------------------------------
     HOVER DERİNLİK
  -------------------------------------------------- */
  .google-review-slider .google-review-card:hover{
    transform: translateY(-8px) scale(1.01) !important;
  }

  /* --------------------------------------------------
     KART METNİ DAHA RAHAT OKUNSUN
  -------------------------------------------------- */
  .google-review-slider .google-review-text{
    position: relative;
    z-index: 2;
  }

  .google-review-slider .google-review-top{
    position: relative;
    z-index: 2;
  }

  /* --------------------------------------------------
     AÇIK KARTLARDA İNCE İÇ GÖLGE
  -------------------------------------------------- */
  .google-review-slider .google-review-card:nth-of-type(3),
  .google-review-slider .google-review-card:nth-of-type(10){
    box-shadow:
      0 14px 35px rgba(0,0,0,.08),
      inset 0 1px 0 rgba(255,255,255,.95) !important;
  }
}

/* ======================================================================
   GOOGLE YORUMLARI PREMIUM EKSTRA GÖRÜNÜM | BİTİŞ
====================================================================== */

/* ======================================================================
   GOOGLE YORUMLARI MOBİL KART EFEKTİ | BAŞLANGIÇ
   Not:
   - Sadece mobilde çalışır
   - Kart rengi değişmez
   - İçerik rengi değişmez
   - Sadece efekt ekler
====================================================================== */

@media (max-width: 767px){

  .google-review-card{
    position: relative;
    overflow: hidden;
    isolation: isolate;
    box-shadow:
      0 14px 35px rgba(0,0,0,.18),
      0 2px 10px rgba(0,0,0,.08) !important;
    transition: .35s ease;
  }

  /* ÜST IŞIK ÇİZGİSİ */
  .google-review-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(
      90deg,
      rgba(255,255,255,0),
      rgba(255,255,255,.70),
      rgba(255,255,255,0)
    );
    opacity: .75;
    z-index: 1;
  }

  /* SAĞ ÜST YUMUŞAK PARLAKLIK */
  .google-review-card::after{
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 72%);
    pointer-events: none;
    z-index: 0;
  }

  /* İÇERİK ÖNDE KALSIN */
  .google-review-top,
  .google-review-text{
    position: relative;
    z-index: 2;
  }

  /* AVATAR HALO */
  .google-avatar{
    box-shadow:
      0 0 0 4px rgba(255,255,255,.07),
      0 10px 22px rgba(0,0,0,.20);
  }

  /* YILDIZ PARLAMA */
  .google-stars{
    text-shadow: 0 0 10px rgba(251,188,4,.25);
  }

  /* METNE DERİNLİK */
  .google-review-text{
    text-shadow: 0 1px 0 rgba(0,0,0,.05);
  }
}

/* ======================================================================
   GOOGLE YORUMLARI MOBİL KART EFEKTİ | BİTİŞ
====================================================================== */

/* ========================= SLIDER CSS BAŞLANGIÇ ========================= */

*{box-sizing:border-box}
html,body{margin:0;overflow-x:hidden}

/* ========================= DESKTOP SLIDER BAŞLANGIÇ ========================= */
.desktop-slider{
  width:100%;
  height:100vh;
  position:relative;
  overflow:hidden;
}

.desktop-track{
  display:flex;
  height:100%;
  transition:.6s ease;
}

.desktop-slide{
  min-width:100%;
  height:100%;
  position:relative;
}

.desktop-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
}

.desktop-content{
  position:absolute;
  left:6%;
  top:50%;
  transform:translateY(-50%);
  max-width:520px;
  background:rgba(0,0,0,.55);
  color:#fff;
  padding:32px;
  border-radius:18px;
  z-index:2;
}

.desktop-content h1{
  font-size:42px;
  line-height:1.2;
  margin:0 0 12px;
}

.desktop-content p{
  margin:0 0 18px;
  line-height:1.7;
}

.d-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border:none;
  border-radius:50%;
  background:rgba(0,0,0,.6);
  color:#fff;
  font-size:26px;
  z-index:3;
  cursor:pointer;
}

.d-prev{left:18px}
.d-next{right:18px}
/* ========================= DESKTOP SLIDER BİTİŞ ========================= */

/* ========================= ORTAK BUTON BAŞLANGIÇ ========================= */
.slider-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 20px;
  border-radius:12px;
  background:#fff;
  color:#111827;
  text-decoration:none;
  font-weight:600;
}
/* ========================= ORTAK BUTON BİTİŞ ========================= */

/* ========================= GÖRÜNÜM GEÇİŞİ BAŞLANGIÇ ========================= */
@media(min-width:992px){
  .mobile-slider{display:none !important}
}
@media(max-width:991px){
  .desktop-slider{display:none !important}
}
/* ========================= GÖRÜNÜM GEÇİŞİ BİTİŞ ========================= */

/* ========================= MOBILE SLIDER BAŞLANGIÇ ========================= */
.mobile-slider{
  width:100%;
  height:100svh;
  position:relative;
  overflow:hidden;
}

.mobile-track{
  display:flex;
  width:100%;
  height:100%;
  transition:.4s ease;
}

.mobile-slide{
  min-width:100%;
  flex:0 0 100%;
  height:100%;
  position:relative;
  overflow:hidden;
}

.mobile-blur{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  filter:blur(35px);
  transform:scale(1.2);
  z-index:0;
}

.mobile-media{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
  padding:20px 20px 170px 20px;
}

.mobile-img{
  width:100%;
  height:100%;
  max-width:100%;
  max-height:100%;
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center center !important;
}

.mobile-content{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:20px;
  width:92%;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(18px);
  padding:18px;
  border-radius:18px;
  text-align:center;
  color:#fff;
  z-index:3;
}

.mobile-content h2{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.3;
}

.mobile-content p{
  margin:0 0 14px;
  line-height:1.7;
}

.m-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border:none;
  border-radius:50%;
  background:rgba(0,0,0,.6);
  color:#fff;
  z-index:4;
  cursor:pointer;
}

.m-prev{left:10px}
.m-next{right:10px}
/* ========================= MOBILE SLIDER BİTİŞ ========================= */

/* ========================= MOBILE İNCE AYAR BAŞLANGIÇ ========================= */
@media(max-width:767px){
  .mobile-media{
    padding:16px 16px 180px 16px;
  }

  .mobile-content{
    width:94%;
    bottom:16px;
    padding:16px;
  }

  .mobile-content h2{
    font-size:22px;
  }

  .mobile-content p{
    font-size:14px;
  }
}
/* ========================= MOBILE İNCE AYAR BİTİŞ ========================= */

/* ========================= SLIDER CSS BİTİŞ ========================= */

/* ========================= MOBİL SLIDER TAM ORTALI BAŞLANGIÇ ========================= */

.mobile-slider{
  width:100%;
  height:100svh;
  position:relative;
  overflow:hidden;
}

.mobile-track{
  display:flex;
  width:100%;
  height:100%;
  transition:.4s ease;
}

.mobile-slide{
  min-width:100%;
  flex:0 0 100%;
  height:100%;
  position:relative;
  overflow:hidden;
}

.mobile-blur{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  filter:blur(35px);
  transform:scale(1.2);
  z-index:0;
}

/* GÖRSEL ALANI */
.mobile-media{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
  padding:20px;
}

/* AÇIKLAMA VARSA ALT KUTUYA YER AÇ */
.mobile-slide:has(.mobile-content) .mobile-media{
  padding:20px 20px 180px 20px;
}

/* GÖRSEL */
.mobile-img{
  width:100%;
  height:100%;
  background-size:contain !important;
  background-repeat:no-repeat !important;
  background-position:center center !important;
}

/* İÇERİK KUTUSU */
.mobile-content{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:20px;
  width:92%;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(18px);
  padding:18px;
  border-radius:18px;
  text-align:center;
  color:#fff;
  z-index:3;
}

.mobile-content h2{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.3;
}

.mobile-content p{
  margin:0 0 14px;
  line-height:1.7;
}

.m-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border:none;
  border-radius:50%;
  background:rgba(0,0,0,.6);
  color:#fff;
  z-index:4;
  cursor:pointer;
}

.m-prev{left:10px}
.m-next{right:10px}

@media(max-width:767px){
  .mobile-media{
    padding:16px;
  }

  .mobile-slide:has(.mobile-content) .mobile-media{
    padding:16px 16px 185px 16px;
  }

  .mobile-content{
    width:94%;
    bottom:16px;
    padding:16px;
  }

  .mobile-content h2{
    font-size:22px;
  }

  .mobile-content p{
    font-size:14px;
  }
}

/* ========================= MOBİL SLIDER TAM ORTALI BİTİŞ ========================= */

.hs-product-card{
    position:relative;
    display:flex;
    flex-direction:column;
    min-height:100%;
    background:#fff;
    border:1px solid #e8ebf0;
    border-radius:24px;
    overflow:hidden;
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    box-shadow:0 8px 24px rgba(15,23,42,.04);
}

.hs-product-card:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 40px rgba(15,23,42,.10);
    border-color:#dbe2ea;
}

.hs-product-media{
    position:relative;
    padding:16px 16px 10px;
}

.hs-product-fav{
    position:absolute;
    top:14px;
    right:14px;
    width:44px;
    height:44px;
    border:1px solid #dbe2ea;
    border-radius:999px;
    background:#fff;
    color:#0f172a;
    font-size:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:3;
    box-shadow:0 8px 18px rgba(15,23,42,.06);
    transition:all .2s ease;
}

.hs-product-fav:hover{
    background:#0f172a;
    color:#fff;
    border-color:#0f172a;
}

.hs-product-badges{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.hs-product-badges-top{
    position:absolute;
    top:14px;
    left:14px;
    right:70px;
    z-index:2;
}

.hs-product-badges-bottom{
    margin-top:10px;
}

.hs-product-badge{
    display:inline-flex;
    align-items:center;
    min-height:32px;
    padding:6px 11px;
    border-radius:10px;
    font-size:13px;
    font-weight:700;
    line-height:1.2;
    width:max-content;
}

.hs-product-badge-quality{
    background:#edf7e8;
    color:#365314;
}

.hs-product-badge-battery{
    background:#eef6ea;
    color:#2f4b2f;
}

.hs-product-guarantee{
    display:inline-flex;
    align-items:center;
    min-height:34px;
    padding:7px 12px;
    border-radius:999px;
    background:#eefaf2;
    color:#15803d;
    font-size:13px;
    font-weight:700;
}

.hs-product-image{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    aspect-ratio:1 / 1;
    text-decoration:none;
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    padding:18px;
}

.hs-product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:transform .3s ease;
}

.hs-product-card:hover .hs-product-image img{
    transform:scale(1.03);
}

.hs-product-body{
    display:flex;
    flex-direction:column;
    flex:1;
    padding:6px 16px 16px;
}

.hs-product-brand{
    display:inline-flex;
    align-items:center;
    align-self:flex-start;
    min-height:30px;
    padding:4px 10px;
    border:1px solid #dbe2ea;
    border-radius:8px;
    font-size:13px;
    font-weight:600;
    color:#0f172a;
    margin-bottom:10px;
    background:#fff;
}

.hs-product-title{
    margin:0 0 12px;
    font-size:18px;
    line-height:1.45;
    font-weight:700;
    color:#1f2937;
    min-height:52px;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.hs-product-title a{
    color:#1f2937;
    text-decoration:none;
}

.hs-product-title a:hover{
    color:#0f172a;
}

.hs-product-installment{
    display:inline-flex;
    align-items:center;
    align-self:flex-start;
    min-height:34px;
    padding:7px 12px;
    border-radius:9px;
    background:#22c55e;
    color:#fff;
    font-size:13px;
    font-weight:800;
    margin-bottom:16px;
}

.hs-product-price-wrap{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
    margin-bottom:18px;
}

.hs-product-price{
    font-size:20px;
    line-height:1.2;
    font-weight:800;
    color:#111827;
}

.hs-product-old-price{
    font-size:14px;
    color:#94a3b8;
    text-decoration:line-through;
}

.hs-product-cart-btn{
    margin-top:auto;
    width:100%;
    height:54px;
    border:none;
    border-radius:14px;
    background:#f3f4f6;
    color:#111827;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:all .2s ease;
}

.hs-product-cart-btn:hover{
    background:#111827;
    color:#fff;
}

@media (max-width: 640px){
    .hs-product-card{
        border-radius:20px;
    }

    .hs-product-media{
        padding:14px 14px 10px;
    }

    .hs-product-fav{
        width:40px;
        height:40px;
        font-size:20px;
        top:12px;
        right:12px;
    }

    .hs-product-badges-top{
        top:12px;
        left:12px;
        right:58px;
    }

    .hs-product-badge,
    .hs-product-guarantee{
        font-size:12px;
        min-height:30px;
        padding:6px 10px;
    }

    .hs-product-image{
        padding:14px;
        border-radius:16px;
    }

    .hs-product-body{
        padding:4px 14px 14px;
    }

    .hs-product-brand{
        font-size:12px;
        min-height:28px;
        padding:4px 9px;
        margin-bottom:8px;
    }

    .hs-product-title{
        font-size:17px;
        min-height:auto;
    }

    .hs-product-installment{
        font-size:12px;
        margin-bottom:14px;
    }

    .hs-product-price{
        font-size:18px;
    }

    .hs-product-old-price{
        font-size:13px;
    }

    .hs-product-cart-btn{
        height:50px;
        font-size:16px;
        border-radius:12px;
    }
}