/* ============================================================
   Bigjoy Theme — CSS Custom Properties
   Admin: config_theme = 'bigjoy'
   Font: Hanken Grotesk (tek font — gövde + başlıklar)
   ============================================================ */

/* Hanken Grotesk — self-hosted variable font (bigjoy'un TEK fontu).
   Tek woff2 tüm ağırlıkları (100-900) taşır. latin + latin-ext. */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal; font-weight: 100 900; font-display: swap;
  src: url('/css/fonts/hanken-grotesk/hanken-grotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal; font-weight: 100 900; font-display: swap;
  src: url('/css/fonts/hanken-grotesk/hanken-grotesk-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* Primary — bigjoy orange. STANDART turuncu CTA buton rengi = #fd4f00 (253 79 0).
     Projedeki dolu butonlar bg-primary-600 kullandığı için 600 = #fd4f00;
     hover (700) = koyu turuncu #d84600. 500 ve altı açık vurgu/aksan tonları. */
  --primary-50:  255 240 232;
  --primary-100: 255 221 204;
  --primary-200: 255 184 150;
  --primary-300: 255 140  92;
  --primary-400: 254 110  56;
  --primary-500: 254  92  26;
  --primary-600: 253  79   0;
  --primary-700: 216  70   0;
  --primary-800: 168  55   0;
  --primary-900: 120  40   2;
  --primary-950:  64  20   0;

  /* Bigjoy Navy */
  --bigjoy-navy: #0d2461;
  --bigjoy-navy-dark: #091a4a;
  --bigjoy-navy-light: #1a3578;

  /* Tema vurgu rengi — checkout step header, CTA buton, progress bar.
     Ortak component'ler bg-theme-accent / text-theme-accent kullanır;
     her tema kendi rengini bu değişkenle verir. */
  --theme-accent:       37 37 37;   /* #252525 */
  --theme-accent-hover: 10 10 10;   /* #0a0a0a */

  /* BJ lacivert standart class rengi (= --theme-accent / #252525).
     Ayrı bir alias ki tema vurgu rengi değişse bile lacivert sabit kalsın istenirse
     buradan ayrıştırılabilir. */
  --bj-navy: 37 37 37;        /* #252525 */
  --bj-navy-hover: 10 10 10;   /* #0a0a0a */

  /* Typography — tek font: Hanken Grotesk (gövde + tüm başlıklar) */
  --font-sans: 'Hanken Grotesk', system-ui, sans-serif;
  --font-display: 'Hanken Grotesk', system-ui, sans-serif;

  /* Border radius tokens */
  --radius-card: 0.75rem;
  --radius-btn:  0.375rem;
  --radius-input: 0.5rem;

  /* Shadow tokens */
  --shadow-card: 0 1px 4px 0 rgb(0 0 0 / 0.06), 0 1px 2px -1px rgb(0 0 0 / 0.04);
  --shadow-hover: 0 8px 24px -4px rgb(0 0 0 / 0.12);

  --header-height: 4rem;
}

body.theme-bigjoy,
body.theme-bigjoy .font-sans {
  font-family: var(--font-sans) !important;
}

/* ── BJ Lacivert utility class'ları ─────────────────────────────────────────
 * Orange standardı (bg-primary-600) ile simetrik lacivert standardı.
 * RGB-token olduğu için opaklık da çalışır: bg-[rgb(var(--bj-navy)/0.1)]
 */
.bg-bj-navy        { background-color: rgb(var(--bj-navy)); }
.text-bj-navy      { color: rgb(var(--bj-navy)); }
.border-bj-navy    { border-color: rgb(var(--bj-navy)); }
.hover\:bg-bj-navy:hover     { background-color: rgb(var(--bj-navy-hover)); }
.hover\:text-bj-navy:hover   { color: rgb(var(--bj-navy)); }
.hover\:border-bj-navy:hover { border-color: rgb(var(--bj-navy)); }
h1, h2, h3 {
  color: #252525;
}
/* TÜM h1 ve h2 başlıklarda hafif sıkı letter-spacing — Tailwind tracking-*
   utility'lerini de yenmek için !important + yüksek özgüllük. */
body.theme-bigjoy h1,
body.theme-bigjoy h2 {
  letter-spacing: -0.5px !important;
}
/* Bigjoy nav koyu arka plan utility */
.bigjoy-nav {
  background-color: var(--bigjoy-navy);
}

/* ── Hesaplayıcı formları — alt-çizgili input/select + lacivert buton ────────
   Tüm bigjoy Calculator* şablonları bu ortak sınıfları kullanır (DRY). */
body.theme-bigjoy .calc-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9aa0b0;
  margin-bottom: 7px;
}
body.theme-bigjoy .calc-field {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #e5e7eb;
  border-radius: 0;
  padding: 8px 0;
  font-size: 17px;
  font-weight: 600;
  color: #252525;
  outline: none;
  transition: border-color 0.2s;
}
body.theme-bigjoy .calc-field:focus { border-bottom-color: #fd4f00; }
body.theme-bigjoy .calc-field::placeholder { color: #c7ccd6; font-weight: 400; }
body.theme-bigjoy select.calc-field {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 24px;
  cursor: pointer;
}
body.theme-bigjoy .calc-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 32px;
  border-radius: 16px;
  background: #1b1b4b;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, transform 0.1s;
  cursor: pointer;
  box-shadow: 0 12px 22px -8px rgba(27, 27, 75, 0.45);
}
body.theme-bigjoy .calc-btn:hover { background: #26265f; }
body.theme-bigjoy .calc-btn:active { transform: scale(0.98); }

/* Bigjoy Header — Timer rakamları sabit genişlik */
.bigjoy-timer-digit {
  font-variant-numeric: tabular-nums;
  min-width: 1.5ch;
  text-align: center;
}

/* Header icon grup hover */
.bigjoy-header-icon {
  min-width: 48px;
}

/* Arama çubuğu — placeholder fontu */
.bigjoy-search-bar input::placeholder {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #9ca3af;
}
.grident-bg-top {
    background: #fff;
   /* background: linear-gradient(180deg, #d9d9d9 -61.29%, #fff 27.09%);*/
    height: 230px;
    position: absolute;
    width: 100%;
    z-index:-3;
    left: 0px;
}
.blogpages .grident-bg-top {
display:none;
}
.solmenu #lacivert path {
    fill: #fff;
}
 
.tp-section-title {
    font-weight: 400;
    position: relative;
    z-index: 1;
}
 
.tp-section-altbaslik {
    color: #7a7a7a;
    padding-bottom: 20px;
    padding-top: 7px;
    text-align: center;
    width: 100%;
}

.sponsorluklar-dis-big span.gs-spnsr {
    color: #91092d;
    font-weight: 600;
    padding-left:0px;
    padding-right: 4px;
}
.sponsorluklar-dis-big svg {
    margin-left: 5px;
    margin-right: 5px;
}
.yazilar_sponsor {
  display:inline-block;
    padding-top:5px;
 }

.sponsorluklar-dis-big {
    background-color: #fff;
    border: 0 solid #e7e7e7;
    border-radius: 25px;
    box-shadow: 0 4px 76.8px #0000001a;
    color: #7a7a7a;
    font-size: 15px;
    margin-bottom: -80px;
    margin-top:25px;
    margin-left: auto;
    margin-right: auto;
    align-self: center !important;
    display: flex !important;justify-content: center !important;
    max-width: 420px;
    padding: 10px 15px 10px 10px;
    position: relative;
    text-align: center;
}
.sponsorluklar-dis-big img{
height: fit-content;
margin-right: 5px;
margin-left: 5px;
}
/* 2. MOBİL İÇİN (Ekran genişliği 768px ve altı olduğunda çalışır) */
@media screen and (max-width: 768px) {
    .sponsorluklar-dis-big {
    margin-bottom: -65px;
    margin-top:5px;
    }
 
.sponsorluklar-dis-big img{
height: fit-content;
margin-right: 5px;
}
.yazilar_sponsor {
    display: inline-block;
    padding-top: 5px;
    font-size: 13px;
}

}

@media screen and (max-width: 768px) {
.lansmanaozel a.bigjoy-mm-item  {
    background-color: #fd4f00;
}
 
.kampanyamobil a.bigjoy-mm-item  {
 
  background-color: #fff2ec !important;
}
.kampanyamobil a.bigjoy-mm-item span  {
  color: #fd4f00;
} 

.avantaj-paketler a.bigjoy-mm-item  {
 
  background-color: #ebeef6 !important;
}
.avantaj-paketler a.bigjoy-mm-item span  {
  color: #252525;
} 

}

.tp-feature-item {
    border-radius: 15px;
    cursor: pointer;
    padding: 25px 20px;
    position: relative;
    text-align: center;
    top: 0;
}
.tp-feature-title {
    color:#0a4482;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    width: 100%;
}
.tp-feature-item:before {
    background: linear-gradient(180deg, #f6f7f9, #fff) 0;
    border-radius: 15px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
.tp-feature-item:after {
    background: linear-gradient(180deg, #0a4482, #3f6d9d);
    border-radius: 15px;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all .5s ease;
    width: 100%;
    z-index: -1;
}
.tp-feature-icon {
    height: 55px;
    margin-bottom: 10px;
    position: relative;
    width: 100%;
    text-align: center;
}
.tp-feature-icon svg{
  margin: auto;
}
.tp-feature-icon span {
    color: #fd4f00;
    display: inline-block;
    font-size: 24px;
    left: 30%;
    min-width: 30px;
    position: absolute;
    right: 30%;
}
.tp-feature-item:hover {
    top: -10px;
    transition: all .5s ease;
}
.tp-feature-item:hover:before {
    border-radius: 15px;
    opacity: 0;
    transition: all .5s ease;
}
.tp-feature-item:hover .tp-feature-title {
    color:#ffffff;
}
.tp-feature-item:before, .tp-feature-item:hover:after {
    opacity: 1;
    transition: all .5s ease;
}
.tp-feature-item:hover .tp-feature-icon svg .beyazol {
    fill: #fff;
    transition: all .5s ease;
}
.tp-feature-item .tp-feature-icon svg {
    transform: rotate(0);
    transition: all .4s ease;
}
.tp-feature-item:hover .tp-feature-icon svg {
    transform: rotate(1turn);
    transition: all .4s ease;
}

.tp-feature-inner-2 {
    background: linear-gradient(95deg, #236cb9, #1558a1);
    border-radius: 15px;
    min-height: 220px;
    padding: 0 7px;
    text-align: center;
}
.align-items-center {
    align-items: center !important;
}
.mobileappdiv {
    background-color: #fff;
    border-radius: 8px;
    color:#252525;
    cursor: pointer;
    display: inline-block;
    padding: 8px;
    text-align: left;
    width: 46%;
}
.mobileappdiv {
    background-color: #fff;
    border-radius: 8px;
    color:#252525;
    cursor: pointer;
    display: inline-block;
    padding: 8px;
    text-align: left;
    width: 46%;
}
.tp-feature-title-2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 600;
    line-height: 20px;
    padding-left:20px;
    padding-right:20px;
    line-height: 1;
    margin-bottom: 15px;
}
.tp-feature-content-2 p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 0;
}
.tp-feature-icon-2 {
    margin-left: auto;
    margin-right: auto;
    width: 70%;
}
.tp-feature-icon-2 .app-icon {
    display: inline-block;
    margin-right: 6px;
    padding-left: 5px;
}

.tp-feature-icon-2 span {
    line-height: 16px;
}
.tp-feature-icon-2 span {
    color: #000000;
    font-size: 35px;
}
.tp-feature-icon-2 .app-yazi {
    color:#252525;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    line-height: 16px;
    margin-bottom: 0;
    position: relative;
}
 

/* ── InformationDetail lightbox (Teleport ile body'ye render edilir) ───── */
.info-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2.5rem 1.25rem 1.25rem;
  background: rgba(15, 15, 15, 0.88);
  backdrop-filter: blur(4px);
  animation: lightboxFadeIn 0.18s ease;
  cursor: zoom-out;
}
.info-lightbox-image {
  max-width: min(96vw, 1100px);
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 24px 64px -16px rgba(0, 0, 0, 0.6);
  cursor: default;
  animation: lightboxImageIn 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.info-lightbox-caption {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  max-width: 90vw;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  margin: 0;
  cursor: default;
}
.info-lightbox-close {
  position: absolute;
  top: 0.875rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.info-lightbox-close:hover {
  background: rgba(var(--primary-500), 0.9);
  border-color: rgb(var(--primary-500));
  transform: scale(1.08);
}
@keyframes lightboxFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lightboxImageIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.icindekilerfull img{
    width: 100%;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SEÇİM REHBERİ (rehber sayfası) — <details>/<summary> accordion
   HTML inline style'a gerek kalmadan: marker gizleme, +/−, hizalama.
   ═══════════════════════════════════════════════════════════════════════════ */

/* TÜM seçiciler .scrnekullanmaliyim (rehber sayfası kök div'i) ile ön eklendi
   → bu CSS YALNIZCA rehber sayfasında çalışır, başka bilgi sayfalarındaki
   <details>/<summary> accordion'ları (mensei, bayilik vb.) ETKİLENMEZ. */


.scrnekullanmaliyim {
  margin-bottom:25px
}

/* Başlık satırı: ikon(sol) | yazı(orta, 2 satır) | +/− (sağ) — GRID */
.scrnekullanmaliyim .scr-summary {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 12px;
    list-style: none;
}
/* Tarayıcı varsayılan ▶ disclosure üçgenini kaldır */
.scrnekullanmaliyim .scr-summary::-webkit-details-marker { display: none; }
.scrnekullanmaliyim .scr-summary::marker { content: ""; }

/* İkon: 1. sütun, iki satır boyunca dikey ortalı */
.scrnekullanmaliyim .scr-summary > [class*="sricon"] {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
}
/* Başlık (özel class scr-title): 2. sütun 1. satır, ortalı */
.scrnekullanmaliyim .scr-summary > .scr-title {
    grid-column: 2;
    grid-row: 1;
    text-align: center;
    font-weight: 700;
    font-size: 1.0625rem;
    line-height: 1.2;
}
/* İtalik açıklama (özel class scr-desc): 2. sütun 2. satır, ortalı */
.scrnekullanmaliyim .scr-summary > .scr-desc {
    grid-column: 2;
    grid-row: 2;
    text-align: center;
    font-size: .8rem;
    font-style: italic;
    font-weight: 300;
    opacity: .9;
    margin-top: 2px;
}

/* +/− işareti — editör boş scr-arti span'ini siliyor, işareti summary'nin
   KENDİSİNE ::after ile basıyoruz (summary asla silinmez). */
.scrnekullanmaliyim .scr-arti { display: none; }
.scrnekullanmaliyim .scr-summary::after {
    content: "+";
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: end;
    font-size: 1.875rem;
    font-weight: 300;
    line-height: 1;
    width: 1.5rem;
    text-align: center;
}
.scrnekullanmaliyim details[open] .scr-summary::after { content: "−"; }

/* Açıkken içeriğin görünür kalmasını garanti et */
.scrnekullanmaliyim details[open] > .card-body { display: block; }

/* ═══════════════════════════════════════════════════════════════════════════
   KARGOM NE ZAMAN GELİR (bilgi sayfası) — kart grid + başlık ikon/yazı
   Tüm seçiciler .kargom_nezaman_gelir ile izole; başka sayfayı etkilemez.
   ═══════════════════════════════════════════════════════════════════════════ */

/* Kart: beyaz zemin + ince açık gri border (resimdeki gibi) */
.kargom_nezaman_gelir .kargom_nezaman_ickutu {
    background: #ffffff;
    border: 1px solid #e6e8ec;
    border-radius: 10px;
    padding: 26px 28px;
    height: 100%;
}

/* Başlık bloğu: lacivert, büyük, sıkı satır aralığı */
.kargom_nezaman_gelir .kargom_nezaman_baslik p {
    color: #252525;
    font-size: 1.35rem;
    line-height: 1.12;
    letter-spacing: .2px;
    margin: 0;
}
/* İnce satırlar = bigjoy turuncu (#fd4f00), normal kalınlık.
   Kalın satırlar = lacivert, bold. */
.kargom_nezaman_gelir .kargom_nezaman_baslik .knerede_ince  { color: #fd4f00; font-weight: 400; }
.kargom_nezaman_gelir .kargom_nezaman_baslik .knerede_kalin { color: #252525; font-weight: 700; }
/* Başlık altındaki {{shipptime}} (strong) — turuncu, biraz küçük */
.kargom_nezaman_gelir .kargom_nezaman_baslik strong {
    display: inline-block;
    color: #fd4f00;
    font-weight: 700;
    font-size: 1.05rem;
    margin-top: 4px;
}

/* Sağ üstteki ikon görseli */
.kargom_nezaman_gelir .icon_knerede img {
    max-height: 64px;
    width: auto;
    display: inline-block;
}

/* Açıklama metni — gri, küçük; içindeki strong vurgular turuncu */
.kargom_nezaman_gelir .kargom_nezaman_aciklama p {
    color: #5b6470;
    font-size: .875rem;
    line-height: 1.65;
    margin: 0;
}
.kargom_nezaman_gelir .kargom_nezaman_aciklama strong {
    color: #fd4f00;
    font-weight: 600;
}

.cls-1 {
fill: #fc5000;
}

.cls-2 {
fill: #191f6c;
}
 .solmenu .cls-1{
  fill: #fc5000;
}
 
.solmenu .cls-2 {
fill: #ffffff;
}

.hakkimizda-wrap {
  --hk-brand: var(--gs-primary-hex, #ff5000);
  --hk-brand-soft: color-mix(in srgb, var(--hk-brand) 45%, #fff);
  --hk-text: #7a7a7a;
  --hk-panel: #f8f8f8;
}

/* ── Üst açıklama paragrafları ───────────────────────────── */
.hk-icsatir {
  background: linear-gradient(111.87deg, var(--hk-panel) 0.65%, transparent 101.88%);
  border-radius: 31px;
  color: #666;
  padding: 20px 30px;
}

/* ── Bölüm başlığı ───────────────────────────────────────── */
.hk-baslik {
  font-size: 28px;
  text-align: center;
}
@media (min-width: 1024px) {
  .hk-baslik { font-size: 36px; }
}

/* ── Zaman çizelgesi: logo tarafı ────────────────────────── */
.hk-lg {
  border-radius: 82px;
  height: 118px;
  position: relative;
  padding: 0;
}
.hk-lg--sol { background: linear-gradient(276.77deg, var(--hk-brand) -30.23%, transparent 41.92%); }
.hk-lg--sag { background: linear-gradient(90deg,     var(--hk-brand) -30.23%, transparent 41.92%); }

/* Tarih dairesi — logo şeridinin üstünde mutlak konumlu */
.hk-daire {
  align-items: center;
  background-color: var(--hk-brand);
  border-radius: 82px;
  color: #fff;
  display: flex;
  font-weight: 600;
  height: 90px;
  width: 90px;
  justify-content: center;
  padding: 20px;
  position: absolute;
  text-align: center;
  top: 15px;
}
.hk-lg--sol .hk-daire { right: 15px; }
.hk-lg--sag .hk-daire { left: 15px; }

/* Logo/görsel kutusu */
.hk-gorsel {
  align-items: center;
  display: flex;
  height: 118px;
  justify-content: center;
  width: 60%;
}
.hk-lg--sol .hk-gorsel { float: left;  text-align: right; }
.hk-lg--sag .hk-gorsel { float: right; text-align: left;  }

.hk-lg img.hk-logo    { max-width: 220px; max-height: 90px; object-fit: contain; }
.hk-lg img.hk-urun    { max-width: 240px; max-height: 110px; object-fit: contain; }

/* ── Zaman çizelgesi: yazı tarafı ────────────────────────── */
.hk-yz {
  align-items: center;
  border-radius: 31px;
  color: var(--hk-text);
  display: flex;
  font-size: 16px;
  min-height: 118px;
  position: relative;
  text-align: left;
}
.hk-yz--sol {
  background: linear-gradient(276.92deg, var(--hk-panel) -4.01%, transparent 117.03%);
  padding: 20px 32px 20px 20px;
}
.hk-yz--sag {
  background: linear-gradient(111.87deg, var(--hk-panel) 0.65%, transparent 101.88%);
  padding: 20px 20px 20px 32px;
}
@media (min-width: 1024px) {
  .hk-yz { font-size: 18px; }
}

/* ── Masaüstü asimetrik kolonlar (55 / 45) ───────────────── */
/* Mobilde iki sütun da tam genişlik; lg'de orijinal oran.
   55+45 = %100 olduğu için iki kolon BİTİŞİK duruyordu; genişlikten
   boşluğun yarısı düşülerek aralarında --hk-ara kadar mesafe bırakılır. */
.hakkimizda-wrap { --hk-ara: 24px; }

@media (min-width: 1024px) {
  .hk-kol-logo {
    max-width: calc(55% - (var(--hk-ara) / 2));
    flex: 0 0 calc(55% - (var(--hk-ara) / 2));
  }
  .hk-kol-yazi {
    max-width: calc(45% - (var(--hk-ara) / 2));
    flex: 0 0 calc(45% - (var(--hk-ara) / 2));
  }
  /* Boşluk satırın kendisinden gelir — kolon sırası değişse de (order-*)
     aradaki mesafe aynı kalır, tek taraflı margin bunu sağlayamazdı. */
  .hk-satir { column-gap: var(--hk-ara); }
}

/* ── Alt istatistik ikonları ─────────────────────────────── */
.hk-ikon {
  align-items: center;
  background-color: var(--hk-brand);
  border: 8px solid var(--hk-brand-soft);
  border-radius: 50%;
  display: flex;
  height: 92px;
  width: 92px;
  justify-content: center;
  margin-inline: auto;
}
.hk-ikon-yazi     { color: var(--hk-text); font-size: 16px; }
.hk-ikon-yazi b   { color: var(--hk-brand); display: block; font-size: 40px; font-weight: 700; padding-top: 22px; margin-bottom: 5px; }

/* ── Mutlu müşteri vurgusu ───────────────────────────────── */
.hk-ve   { color: var(--hk-text); font-size: 25px; font-weight: 600; }
.hk-sayi { color: var(--hk-brand); font-size: 40px; font-weight: 700; }
@media (min-width: 1024px) {
  .hk-sayi { font-size: 58px; }
}
.hk-alt-yazi { color: var(--hk-text); }

/* "1.000.000+" altındaki turuncu gülümseme çizgisi */
.hk-gulus { display: block; margin-inline: auto; max-width: 330px; width: 60%; height: auto; }
.hk-gulus path { stroke: var(--hk-brand); }

/* ── Sertifikalar ────────────────────────────────────────── */
/* Sertifika görselleri BİLGİ amaçlıdır — tıklanabilir değildir, bu yüzden
   hover/imleç efekti YOKTUR (tıklanabilir izlenimi vermemek için). */
.hk-sertifika img {
  max-height: 150px;
  width: auto;
  margin-inline: auto;
}
