/* ==========================================================================
   MediMarket – Sağlık Ürünleri Marketi
   Pazar yeri (marketplace) düzeni · Mavi #2563eb + Turuncu #f97316 · Inter
   ========================================================================== */

:root {
  --sv-accent: #2563eb;
  --sv-accent-text: #fff;
  --sv-radius: 12px;

  --blue: #2563eb;
  --blue-d: #1d4ed8;
  --blue-l: #dbeafe;
  --blue-xl: #eff6ff;
  --orange: #f97316;
  --orange-d: #ea580c;
  --orange-l: #ffedd5;
  --slate: #1e293b;
  --slate-2: #334155;
  --gray: #64748b;
  --gray-2: #94a3b8;
  --line: #e2e8f0;
  --line-2: #cbd5e1;
  --bg: #f1f5f9;
  --white: #fff;
  --green: #16a34a;
  --green-l: #dcfce7;
  --red: #dc2626;
  --yellow: #f59e0b;

  --sh-1: 0 1px 2px rgba(15, 23, 42, .06);
  --sh-2: 0 2px 10px rgba(15, 23, 42, .07);
  --sh-3: 0 10px 30px rgba(15, 23, 42, .10);
  --sh-4: 0 20px 50px rgba(15, 23, 42, .16);
  --r: 10px;
  --r-l: 16px;
}

html { scroll-padding-top: 120px; }

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--slate);
  font-size: 15px;
  line-height: 1.62;
}

h1, h2, h3, h4, h5 { margin: 0 0 .5em; line-height: 1.22; font-weight: 800; letter-spacing: -.02em; color: var(--slate); }
h1 { font-size: 34px; }
h2 { font-size: 26px; }
h3 { font-size: 19px; }
h4 { font-size: 16px; }
p { margin: 0 0 1em; }
a { text-decoration: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
s { color: var(--gray-2); }
table { border-collapse: collapse; width: 100%; }
svg { flex: none; }
:focus-visible { outline: 3px solid rgba(37, 99, 235, .45); outline-offset: 2px; border-radius: 4px; }

.container { width: 100%; max-width: 1340px; margin: 0 auto; padding: 0 20px; }
.muted { color: var(--gray); }
.small { font-size: 13px; }
.tiny { font-size: 12px; }
.center { text-align: center; }
.mb0 { margin-bottom: 0; }
.hide { display: none !important; }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 2000; background: var(--blue); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border: 1px solid transparent; border-radius: var(--r);
  font-weight: 700; font-size: 14px; line-height: 1.2; cursor: pointer;
  background: var(--blue); color: #fff; transition: .22s ease; white-space: nowrap;
}
.btn:hover { background: var(--blue-d); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37, 99, 235, .28); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-cta { background: var(--orange); color: #fff; }
.btn-cta:hover { background: var(--orange-d); box-shadow: 0 8px 20px rgba(249, 115, 22, .32); }
.btn-dark { background: var(--slate); color: #fff; }
.btn-dark:hover { background: #0f172a; box-shadow: 0 8px 20px rgba(30, 41, 59, .3); }
.btn-green { background: var(--green); }
.btn-green:hover { background: #15803d; box-shadow: 0 8px 20px rgba(22, 163, 74, .3); }
.btn-outline { background: #fff; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-ghost { background: #fff; color: var(--slate-2); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--bg); color: var(--slate); border-color: var(--gray-2); box-shadow: var(--sh-2); }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--blue-xl); }
.btn-block { width: 100%; }
.btn-lg { padding: 14px 28px; font-size: 15.5px; border-radius: 12px; }
.btn-sm { padding: 7px 13px; font-size: 13px; border-radius: 8px; }

/* ---------- Formlar ---------- */
.inp, input[type=text], input[type=email], input[type=tel], input[type=search], input[type=password],
input[type=number], input[type=date], select, textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--line); border-radius: var(--r);
  background: #fff; color: var(--slate); transition: .2s; font-size: 14.5px;
}
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37, 99, 235, .14); outline: none; }
textarea { min-height: 130px; resize: vertical; }
label.lbl { display: block; font-weight: 600; font-size: 13px; margin-bottom: 6px; color: var(--slate-2); }
.frow { margin-bottom: 14px; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.chk { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--slate-2); cursor: pointer; }
.chk input { width: 17px; height: 17px; flex: none; margin: 2px 0 0; accent-color: var(--blue); }

/* ---------- Rozetler & yıldız ---------- */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 9px; border-radius: 7px; font-size: 11.5px; font-weight: 800; letter-spacing: .01em; color: #fff; background: var(--slate); }
.badge-sale { background: var(--orange); }
.badge-new { background: var(--green); }
.badge-out { background: var(--gray); }
.badge-free { background: var(--blue); }
.badge-soft { background: var(--blue-l); color: var(--blue-d); }
.badge-warn { background: #fef3c7; color: #b45309; }

.stars { display: inline-flex; gap: 1.5px; }
.star { fill: #e2e8f0; }
.star.on { fill: var(--yellow); }
.star.half { fill: url(#halfstar); fill: #fcd34d; }
.rating { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--gray); }
.rating-val { font-weight: 800; color: var(--slate); }

/* ---------- Bölüm başlıkları ---------- */
.sec { padding: 42px 0; }
.sec-tight { padding: 26px 0; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 22px; flex-wrap: wrap; }
.sec-head h2 { margin: 0; font-size: 25px; display: flex; align-items: center; gap: 10px; }
.sec-head h2 .ico { width: 38px; height: 38px; border-radius: 10px; background: var(--blue-l); color: var(--blue); display: grid; place-items: center; }
.sec-head p { margin: 4px 0 0; color: var(--gray); font-size: 14px; }
.sec-head .more { color: var(--blue); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 5px; }
.sec-head .more:hover { gap: 9px; color: var(--orange); }
.sec-title-line { display: flex; align-items: center; gap: 12px; }
.sec-title-line::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* ==========================================================================
   ÜST ŞERİT
   ========================================================================== */
.topstrip { background: var(--slate); color: #cbd5e1; font-size: 12.5px; }
.topstrip-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 38px; }
.topstrip-msg { margin: 0; display: flex; align-items: center; gap: 8px; }
.topstrip-msg strong { color: #fff; }
.topstrip-msg svg { color: var(--orange); }
.topstrip-links { display: flex; align-items: center; gap: 4px; }
.topstrip-links a { display: inline-flex; align-items: center; gap: 6px; padding: 9px 11px; border-radius: 6px; transition: .2s; }
.topstrip-links a:hover, .topstrip-links a.active { background: rgba(255, 255, 255, .1); color: #fff; }

/* ==========================================================================
   ANA BAŞLIK
   ========================================================================== */
.shop-header { background: #fff; position: sticky; top: 0; z-index: 200; border-bottom: 1px solid var(--line); transition: box-shadow .3s; }
.shop-header.is-scrolled { box-shadow: var(--sh-3); }
.shop-header-in { display: flex; align-items: center; gap: 22px; padding-top: 14px; padding-bottom: 14px; }

.burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: #fff; border-radius: 10px; flex-direction: column; align-items: center; justify-content: center; gap: 4.5px; flex: none; }
.burger span { display: block; width: 19px; height: 2px; background: var(--slate); border-radius: 2px; transition: .28s; }
body.nav-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.logo { display: flex; align-items: center; gap: 11px; flex: none; }
.logo-mark { color: var(--blue); display: grid; place-items: center; transition: .3s; }
.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.06); }
.logo-text strong { display: block; font-size: 22px; font-weight: 900; letter-spacing: -.035em; color: var(--slate); line-height: 1.05; }
.logo-text strong em { font-style: normal; color: var(--orange); }
.logo-text small { display: block; font-size: 10.5px; color: var(--gray); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

/* Arama çubuğu */
.searchbar { flex: 1; display: flex; align-items: stretch; border: 2px solid var(--blue); border-radius: 12px; background: #fff; overflow: hidden; max-width: 720px; }
.searchbar-cat { position: relative; display: flex; align-items: center; border-right: 1px solid var(--line); background: var(--blue-xl); }
.searchbar-cat select { border: 0; background: transparent; padding: 0 32px 0 14px; height: 100%; font-size: 13.5px; font-weight: 600; color: var(--slate-2); width: 165px; box-shadow: none; background-image: none; }
.searchbar-cat select:focus { box-shadow: none; }
.searchbar-cat > svg { position: absolute; right: 10px; color: var(--gray); pointer-events: none; }
.searchbar input { border: 0; border-radius: 0; padding: 12px 16px; background: transparent; }
.searchbar input:focus { box-shadow: none; }
.searchbar button { display: inline-flex; align-items: center; gap: 7px; border: 0; background: var(--blue); color: #fff; padding: 0 22px; font-weight: 700; font-size: 14.5px; transition: .2s; }
.searchbar button:hover { background: var(--orange); }

/* Hesap / favori / sepet */
.header-actions { display: flex; align-items: center; gap: 6px; flex: none; }
.hact { display: flex; align-items: center; gap: 9px; padding: 8px 12px; border-radius: 10px; transition: .2s; color: var(--slate-2); }
.hact:hover, .hact.active { background: var(--blue-xl); color: var(--blue); }
.hact small { display: block; font-size: 11px; color: var(--gray); line-height: 1.15; }
.hact strong { display: block; font-size: 13.5px; font-weight: 700; line-height: 1.25; }
.hact-ico { position: relative; display: grid; place-items: center; }
.pill { position: absolute; top: -7px; right: -9px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px; background: var(--blue); color: #fff; font-size: 11px; font-weight: 800; font-style: normal; display: grid; place-items: center; border: 2px solid #fff; }
.pill-orange { background: var(--orange); }
.hact-cart { background: var(--orange); color: #fff; }
.hact-cart:hover { background: var(--orange-d); color: #fff; }
.hact-cart small { color: rgba(255, 255, 255, .8); }
.hact-cart .pill { background: #fff; color: var(--orange); border-color: var(--orange); }

/* ==========================================================================
   KATEGORİ ŞERİDİ
   ========================================================================== */
.catbar { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 71px; z-index: 150; }
.catbar-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.catbar-list { display: flex; align-items: center; gap: 2px; }
.catbar-list > li { position: relative; }
.catbar-list > li > a { display: inline-flex; align-items: center; gap: 7px; padding: 13px 13px; font-size: 13.8px; font-weight: 600; color: var(--slate-2); border-bottom: 3px solid transparent; transition: .2s; }
.catbar-list > li > a svg:first-child { color: var(--blue); }
.catbar-list > li > a svg:last-child { color: var(--gray-2); transition: .25s; }
.catbar-list > li > a:hover, .catbar-list > li > a.active { color: var(--blue); border-bottom-color: var(--blue); }
.catbar-list > li:hover > a svg:last-child { transform: rotate(180deg); }
.catbar-extra { display: flex; gap: 4px; }
.catbar-extra a { display: inline-flex; align-items: center; gap: 6px; padding: 13px 12px; font-size: 13.5px; font-weight: 700; color: var(--slate-2); }
.catbar-extra a:hover, .catbar-extra a.active { color: var(--blue); }
.catbar-extra a.hot { color: var(--orange); }
.catbar-extra a.hot svg { animation: mmZap 2.2s infinite; }
@keyframes mmZap { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.22); } }

.catdrop { position: absolute; top: 100%; left: 0; width: 560px; background: #fff; border: 1px solid var(--line); border-radius: 0 0 14px 14px; box-shadow: var(--sh-4); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s; z-index: 160; }
.catbar-list > li:hover .catdrop { opacity: 1; visibility: visible; transform: none; }
.catdrop-in { display: grid; grid-template-columns: 1fr 200px; gap: 20px; padding: 20px; }
.catdrop-links h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--gray); margin-bottom: 10px; }
.catdrop-links ul li a { display: flex; align-items: center; gap: 6px; padding: 6px 0; font-size: 14px; color: var(--slate-2); transition: .18s; }
.catdrop-links ul li a svg { color: var(--gray-2); }
.catdrop-links ul li a:hover { color: var(--blue); transform: translateX(4px); }
.catdrop-links ul li a.tumu { color: var(--orange); font-weight: 700; margin-top: 6px; }
.catdrop-promo { position: relative; border-radius: 10px; overflow: hidden; display: block; min-height: 150px; }
.catdrop-promo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: .5s; }
.catdrop-promo:hover img { transform: scale(1.08); }
.catdrop-promo span { position: absolute; inset: auto 0 0 0; padding: 26px 12px 12px; background: linear-gradient(transparent, rgba(15, 23, 42, .88)); color: #fff; font-size: 12.5px; font-weight: 600; line-height: 1.35; }

/* ==========================================================================
   MOBİL MENÜ
   ========================================================================== */
.mobilenav { position: fixed; top: 0; left: 0; bottom: 0; width: 330px; max-width: 88vw; background: #fff; z-index: 1200; transform: translateX(-102%); transition: transform .38s cubic-bezier(.65, 0, .2, 1); display: flex; flex-direction: column; overflow-y: auto; box-shadow: var(--sh-4); }
body.nav-open .mobilenav { transform: none; }
.nav-backdrop { position: fixed; inset: 0; background: rgba(15, 23, 42, .55); z-index: 1100; opacity: 0; visibility: hidden; transition: .35s; }
body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }
.mobilenav-head { display: flex; align-items: center; gap: 10px; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.mobilenav-head strong { font-size: 18px; font-weight: 900; letter-spacing: -.02em; flex: 1; }
.mobilenav-head .logo-mark { color: var(--blue); }
.mobilenav-head button { background: none; border: 0; color: var(--gray); padding: 4px; }
.mobilenav-head button:hover { color: var(--red); }
.mobilenav-acc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-bottom: 1px solid var(--line); }
.mobilenav-acc a { background: #fff; display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 14px 4px; font-size: 12px; font-weight: 600; color: var(--slate-2); }
.mobilenav-acc a:hover { background: var(--blue-xl); color: var(--blue); }
.mobilenav-list { flex: 1; padding: 8px 0; }
.mobilenav-list > li { position: relative; border-bottom: 1px solid #f1f5f9; }
.mobilenav-list > li > a { display: flex; align-items: center; gap: 11px; padding: 13px 18px; font-weight: 600; font-size: 14.5px; color: var(--slate-2); }
.mobilenav-list > li > a svg { color: var(--blue); }
.mobilenav-list > li.ana > a { color: var(--blue); }
.mobilenav-list > li > a:hover { background: var(--blue-xl); }
.mobilenav-list [data-submenu-toggle] { position: absolute; top: 4px; right: 6px; width: 42px; height: 42px; background: none; border: 0; color: var(--gray); display: grid; place-items: center; transition: .25s; }
.mobilenav-list li.is-open [data-submenu-toggle] { transform: rotate(180deg); color: var(--blue); }
.mobilenav-list .sub { display: none; background: var(--bg); padding: 4px 0 8px; }
.mobilenav-list li.is-open .sub { display: block; }
.mobilenav-list .sub a { display: block; padding: 8px 18px 8px 47px; font-size: 13.5px; color: var(--gray); }
.mobilenav-list .sub a:hover { color: var(--blue); }
.mobilenav-foot { padding: 16px 18px 22px; border-top: 1px solid var(--line); }
.mobilenav-foot p { margin: 10px 0 0; font-size: 12px; color: var(--gray); text-align: center; }

/* ==========================================================================
   EKMEK KIRINTISI
   ========================================================================== */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; padding: 14px 0; font-size: 13px; color: var(--gray); }
.crumbs a { color: var(--gray); }
.crumbs a:hover { color: var(--blue); }
.crumbs span[aria-current] { color: var(--slate); font-weight: 600; }
.crumbs .sep { color: var(--line-2); }

/* ==========================================================================
   ANA SAYFA — ÜST BÖLGE
   ========================================================================== */
.homehero { padding: 20px 0 8px; }
.homehero-grid { display: grid; grid-template-columns: 250px 1fr 296px; gap: 18px; align-items: stretch; }

/* Sol dikey kategori menüsü */
.vertcat { background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); overflow: hidden; box-shadow: var(--sh-1); display: flex; flex-direction: column; }
.vertcat-head { background: var(--slate); color: #fff; padding: 12px 16px; font-size: 13.5px; font-weight: 700; display: flex; align-items: center; gap: 9px; }
.vertcat-head svg { color: var(--orange); }
.vertcat ul { flex: 1; }
.vertcat li { border-bottom: 1px solid #f1f5f9; position: relative; }
.vertcat li:last-child { border-bottom: 0; }
.vertcat li > a { display: flex; align-items: center; gap: 10px; padding: 11.5px 15px; font-size: 13.6px; font-weight: 600; color: var(--slate-2); transition: .2s; }
.vertcat li > a > svg:first-child { color: var(--blue); transition: .25s; }
.vertcat li > a .cnt { margin-left: auto; font-size: 11px; color: var(--gray-2); font-weight: 700; background: var(--bg); padding: 2px 7px; border-radius: 999px; }
.vertcat li > a:hover { background: var(--blue-xl); color: var(--blue); padding-left: 19px; }
.vertcat li > a:hover > svg:first-child { transform: scale(1.15); }
.vertcat-foot { padding: 12px 15px; background: var(--blue-xl); border-top: 1px solid var(--line); }
.vertcat-foot a { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--blue); }
.vertcat-foot a:hover { gap: 11px; }

/* Promosyon slider */
.promo { position: relative; border-radius: var(--r-l); overflow: hidden; min-height: 430px; box-shadow: var(--sh-2); background: var(--slate); }
.promo .slide { position: relative; min-height: 430px; height: 100%; display: flex; align-items: center; }
.promo .slide-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo .slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(15, 23, 42, .93) 8%, rgba(30, 58, 138, .78) 46%, rgba(37, 99, 235, .18) 88%); }
.promo-body { position: relative; z-index: 3; padding: 44px 46px; max-width: 600px; color: #fff; }
.promo-body .ust { display: inline-flex; align-items: center; gap: 7px; background: var(--orange); color: #fff; padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; margin-bottom: 16px; }
.promo-body h2 { font-size: 40px; color: #fff; line-height: 1.14; margin-bottom: 14px; letter-spacing: -.035em; }
.promo-body p { font-size: 15.5px; color: #dbeafe; max-width: 460px; margin-bottom: 24px; }
.promo-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.promo-nav { position: absolute; z-index: 6; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .18); backdrop-filter: blur(6px); color: #fff; display: grid; place-items: center; transition: .25s; }
.promo-nav:hover { background: #fff; color: var(--blue); }
.promo-nav.prev { left: 18px; }
.promo-nav.next { right: 18px; }
.promo [data-dots] { position: absolute; z-index: 6; bottom: 22px; left: 46px; }
.promo [data-dots] button { width: 26px; height: 5px; border-radius: 3px; background: rgba(255, 255, 255, .4); }
.promo [data-dots] button.is-active { background: var(--orange); transform: none; width: 42px; }

/* Yan mini bannerlar */
.minibanners { display: grid; grid-template-rows: 1fr 1fr; gap: 18px; }
.minibanner { position: relative; border-radius: var(--r-l); overflow: hidden; display: block; min-height: 206px; box-shadow: var(--sh-2); }
.minibanner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: .6s; }
.minibanner:hover img { transform: scale(1.07); }
.minibanner-in { position: relative; z-index: 2; padding: 20px; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; }
.minibanner::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(15, 23, 42, .1), rgba(15, 23, 42, .88)); }
.minibanner .tag { align-self: flex-start; background: var(--orange); font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 6px; margin-bottom: auto; }
.minibanner.b2 .tag { background: var(--green); }
.minibanner strong { display: block; font-size: 18px; font-weight: 800; line-height: 1.22; margin-bottom: 4px; letter-spacing: -.02em; }
.minibanner span.sub { font-size: 12.5px; color: #cbd5e1; }
.minibanner .go { margin-top: 10px; font-size: 12.5px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; color: #fff; }
.minibanner:hover .go { gap: 10px; }

/* ---------- Avantaj şeridi ---------- */
.advstrip { padding: 22px 0 4px; }
.advstrip-in { background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); box-shadow: var(--sh-1); display: grid; grid-template-columns: repeat(4, 1fr); }
.adv { display: flex; align-items: center; gap: 13px; padding: 19px 20px; border-right: 1px solid var(--line); transition: .25s; }
.adv:last-child { border-right: 0; }
.adv:hover { background: var(--blue-xl); }
.adv i { width: 46px; height: 46px; border-radius: 12px; background: var(--blue-l); color: var(--blue); display: grid; place-items: center; flex: none; transition: .3s; }
.adv:nth-child(2) i { background: var(--green-l); color: var(--green); }
.adv:nth-child(3) i { background: var(--orange-l); color: var(--orange-d); }
.adv:nth-child(4) i { background: #ede9fe; color: #7c3aed; }
.adv:hover i { transform: translateY(-3px) scale(1.06); }
.adv strong { display: block; font-size: 14px; font-weight: 700; }
.adv span { display: block; font-size: 12.3px; color: var(--gray); }

/* ==========================================================================
   ÜRÜN KARTI
   ========================================================================== */
.pcard { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: .28s cubic-bezier(.2, .7, .2, 1); position: relative; }
.pcard:hover { border-color: var(--blue-l); box-shadow: var(--sh-3); transform: translateY(-4px); }
.pcard-media { position: relative; aspect-ratio: 1; background: #fff; overflow: hidden; }
.pcard-media a { display: block; height: 100%; }
.pcard-media img { width: 100%; height: 100%; object-fit: cover; transition: .55s cubic-bezier(.2, .7, .2, 1); }
.pcard:hover .pcard-media img { transform: scale(1.07); }
.pcard-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; align-items: flex-start; gap: 5px; z-index: 2; }
.pcard-fav { position: absolute; top: 10px; right: 10px; z-index: 2; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255, 255, 255, .94); color: var(--gray); display: grid; place-items: center; transition: .22s; }
.pcard-fav:hover { color: var(--orange); border-color: var(--orange); transform: scale(1.1); }
.pcard-fav svg { fill: none; transition: .2s; }
.pcard-fav.is-active { color: #e11d48; border-color: #fecdd3; background: #fff1f2; }
.pcard-fav.is-active svg { fill: #e11d48; }
.pcard-body { padding: 14px 15px 16px; display: flex; flex-direction: column; flex: 1; gap: 7px; }
.pcard-brand { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--blue); }
.pcard-title { margin: 0; font-size: 14.2px; font-weight: 600; line-height: 1.4; letter-spacing: -.005em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 40px; }
.pcard-title a:hover { color: var(--blue); }
.pcard-desc { margin: 0; font-size: 12.4px; color: var(--gray); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pcard-price { display: flex; align-items: baseline; gap: 9px; margin-top: auto; padding-top: 4px; flex-wrap: wrap; }
.pcard-price s { font-size: 13px; }
.pcard-price strong { font-size: 20px; font-weight: 900; color: var(--orange); letter-spacing: -.025em; }
.pcard .btn { margin-top: 4px; }
.pcard.is-out .pcard-media img { filter: grayscale(1); opacity: .62; }

/* Ürün ızgaraları */
.pgrid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.pgrid-4 { grid-template-columns: repeat(4, 1fr); }
.pgrid-3 { grid-template-columns: repeat(3, 1fr); }
.pcarousel .track { gap: 18px; }
.pcarousel .track > * { flex: 0 0 calc(20% - 14.4px); }
.carousel-nav { display: flex; gap: 8px; }
.carousel-nav button { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line-2); background: #fff; color: var(--slate-2); display: grid; place-items: center; transition: .22s; }
.carousel-nav button:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ==========================================================================
   GÜNÜN FIRSATLARI
   ========================================================================== */
.deals { background: linear-gradient(135deg, #1e293b, #1e3a8a 60%, #1d4ed8); padding: 40px 0 44px; color: #fff; margin-top: 24px; }
.deals .sec-head h2 { color: #fff; }
.deals .sec-head p { color: #bfdbfe; }
.deals-top { display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; margin-bottom: 24px; }
.deals-title { display: flex; align-items: center; gap: 14px; }
.deals-title .bolt { width: 52px; height: 52px; border-radius: 14px; background: var(--orange); display: grid; place-items: center; color: #fff; box-shadow: 0 10px 26px rgba(249, 115, 22, .4); }
.deals-title h2 { margin: 0; font-size: 27px; color: #fff; }
.deals-title p { margin: 2px 0 0; font-size: 13.5px; color: #bfdbfe; }
.countdown { display: flex; align-items: center; gap: 10px; }
.countdown-lbl { font-size: 13px; color: #bfdbfe; font-weight: 600; margin-right: 4px; }
.cd-box { background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .18); border-radius: 10px; min-width: 62px; padding: 8px 6px; text-align: center; backdrop-filter: blur(4px); }
.cd-box b { display: block; font-size: 24px; font-weight: 900; line-height: 1; font-variant-numeric: tabular-nums; }
.cd-box span { display: block; font-size: 10.5px; color: #bfdbfe; text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }
.cd-sep { font-size: 22px; font-weight: 800; color: rgba(255, 255, 255, .45); }

/* ==========================================================================
   KATEGORİ KUTULARI
   ========================================================================== */
.catboxes { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.catbox { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; text-align: center; transition: .28s; display: block; }
.catbox:hover { transform: translateY(-5px); box-shadow: var(--sh-3); border-color: var(--blue-l); }
.catbox-img { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.catbox-img img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.catbox:hover .catbox-img img { transform: scale(1.09); }
.catbox-img i { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); width: 44px; height: 44px; border-radius: 12px; background: #fff; color: var(--blue); display: grid; place-items: center; box-shadow: var(--sh-2); border: 1px solid var(--line); }
.catbox-body { padding: 30px 12px 17px; }
.catbox-body strong { display: block; font-size: 14.5px; font-weight: 700; margin-bottom: 3px; }
.catbox-body span { font-size: 12px; color: var(--gray); }

/* ==========================================================================
   MARKA ŞERİDİ
   ========================================================================== */
.brands { display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px; }
.brand { background: #fff; border: 1px solid var(--line); border-radius: 12px; height: 78px; display: grid; place-items: center; font-weight: 800; font-size: 14px; color: var(--gray); letter-spacing: -.02em; transition: .25s; text-align: center; padding: 6px; }
.brand:hover { color: var(--blue); border-color: var(--blue-l); box-shadow: var(--sh-2); transform: translateY(-3px); }

/* ==========================================================================
   BLOG ÖNİZLEME / KARTLAR
   ========================================================================== */
.bgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bcard { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: .28s; }
.bcard:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.bcard-img { aspect-ratio: 16 / 9; overflow: hidden; position: relative; }
.bcard-img img { width: 100%; height: 100%; object-fit: cover; transition: .55s; }
.bcard:hover .bcard-img img { transform: scale(1.07); }
.bcard-img .kat { position: absolute; top: 12px; left: 12px; background: rgba(255, 255, 255, .95); color: var(--blue); font-size: 11.5px; font-weight: 800; padding: 5px 11px; border-radius: 7px; }
.bcard-body { padding: 17px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.bcard-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--gray); margin-bottom: 8px; }
.bcard-meta span { display: inline-flex; align-items: center; gap: 5px; }
.bcard h3 { font-size: 17px; line-height: 1.32; margin-bottom: 8px; }
.bcard h3 a:hover { color: var(--blue); }
.bcard p { font-size: 13.4px; color: var(--gray); margin-bottom: 14px; }
.bcard .read { margin-top: auto; font-size: 13px; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }
.bcard:hover .read { gap: 10px; color: var(--orange); }

/* ==========================================================================
   BÜLTEN
   ========================================================================== */
.newsletter { background: var(--slate); color: #fff; padding: 40px 0; margin-top: 40px; position: relative; overflow: hidden; }
.newsletter::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(37, 99, 235, .38), transparent 68%); top: -180px; right: -60px; }
.newsletter::after { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(249, 115, 22, .28), transparent 68%); bottom: -180px; left: 5%; }
.newsletter-in { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.newsletter h2 { color: #fff; font-size: 27px; display: flex; align-items: center; gap: 12px; }
.newsletter h2 svg { color: var(--orange); }
.newsletter p { color: #cbd5e1; margin: 0; font-size: 14.5px; }
.newsletter form { display: flex; gap: 10px; }
.newsletter input { border: 0; padding: 14px 18px; border-radius: 12px; }
.newsletter .np { display: flex; gap: 18px; margin-top: 12px; font-size: 12px; color: #94a3b8; flex-wrap: wrap; }
.newsletter .np span { display: inline-flex; align-items: center; gap: 6px; }
.newsletter .np svg { color: var(--green); }

/* ==========================================================================
   KATEGORİ SAYFASI
   ========================================================================== */
.shoplayout { display: grid; grid-template-columns: 272px 1fr; gap: 24px; align-items: start; padding-bottom: 50px; }
.filters { background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); position: sticky; top: 130px; overflow: hidden; box-shadow: var(--sh-1); }
.filters-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--line); background: var(--bg); }
.filters-head strong { font-size: 14.5px; display: flex; align-items: center; gap: 8px; }
.filters-head button { background: none; border: 0; color: var(--blue); font-size: 12.5px; font-weight: 700; padding: 4px; }
.filters-head button:hover { color: var(--orange); }
.fgroup { border-bottom: 1px solid var(--line); padding: 14px 16px 16px; }
.fgroup:last-child { border-bottom: 0; }
.fgroup > h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .055em; color: var(--gray); margin-bottom: 11px; }
.fopt { display: flex; align-items: center; gap: 9px; padding: 5px 0; font-size: 13.6px; color: var(--slate-2); cursor: pointer; transition: .18s; }
.fopt:hover { color: var(--blue); }
.fopt input { width: 16px; height: 16px; accent-color: var(--blue); flex: none; margin: 0; }
.fopt .n { margin-left: auto; font-size: 11.5px; color: var(--gray-2); font-weight: 700; }
.fopt .stars { margin-right: 2px; }
.frange { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.frange input { padding: 8px 10px; font-size: 13px; text-align: center; }
.frange span { color: var(--gray-2); }
.fchips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.fchip { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 5px 12px; font-size: 12.3px; font-weight: 600; color: var(--slate-2); transition: .2s; }
.fchip:hover, .fchip.is-active { background: var(--blue); border-color: var(--blue); color: #fff; }
.filters-cta { padding: 14px 16px; background: var(--blue-xl); }

.shop-toolbar { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 11px 15px; display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; flex-wrap: wrap; box-shadow: var(--sh-1); }
.shop-toolbar .cnt { font-size: 13.5px; color: var(--gray); }
.shop-toolbar .cnt b { color: var(--slate); }
.toolbar-right { display: flex; align-items: center; gap: 10px; }
.toolbar-right select { width: auto; min-width: 190px; padding: 8px 34px 8px 12px; font-size: 13.5px; font-weight: 600; }
.viewtoggle { display: flex; gap: 2px; background: var(--bg); border-radius: 9px; padding: 3px; }
.viewtoggle button { width: 34px; height: 32px; border: 0; border-radius: 7px; background: none; color: var(--gray); display: grid; place-items: center; transition: .2s; }
.viewtoggle button.is-active { background: #fff; color: var(--blue); box-shadow: var(--sh-1); }

.activefilters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.activefilters .af { display: inline-flex; align-items: center; gap: 7px; background: var(--blue-l); color: var(--blue-d); border-radius: 999px; padding: 5px 8px 5px 13px; font-size: 12.5px; font-weight: 700; }
.activefilters .af button { background: rgba(37, 99, 235, .18); border: 0; border-radius: 50%; width: 18px; height: 18px; color: var(--blue-d); display: grid; place-items: center; font-size: 13px; line-height: 1; }
.activefilters .af button:hover { background: var(--blue); color: #fff; }

#plist.is-list { display: flex; flex-direction: column; gap: 14px; }
#plist.is-list .pcard { flex-direction: row; }
#plist.is-list .pcard-media { width: 230px; flex: none; aspect-ratio: 4 / 3; }
#plist.is-list .pcard-body { padding: 18px 22px; }
#plist.is-list .pcard-title { font-size: 17px; -webkit-line-clamp: 2; min-height: 0; }
#plist.is-list .pcard-desc { -webkit-line-clamp: 3; font-size: 13.5px; }
#plist.is-list .pcard .btn { max-width: 230px; }
.noresult { background: #fff; border: 1px dashed var(--line-2); border-radius: var(--r-l); padding: 60px 24px; text-align: center; }
.noresult svg { color: var(--gray-2); margin: 0 auto 14px; }

.pager { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 32px; flex-wrap: wrap; }
.pager a, .pager span { min-width: 40px; height: 40px; padding: 0 12px; border-radius: 10px; border: 1px solid var(--line); background: #fff; display: grid; place-items: center; font-size: 14px; font-weight: 700; color: var(--slate-2); transition: .2s; }
.pager a:hover { border-color: var(--blue); color: var(--blue); }
.pager .is-active { background: var(--blue); border-color: var(--blue); color: #fff; }
.pager .dots { border: 0; background: none; }
.pager .nav { font-weight: 600; color: var(--gray); }

.mobile-filter-btn { display: none; }

/* ==========================================================================
   ÜRÜN DETAY
   ========================================================================== */
.pd { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.pd-gallery { display: grid; grid-template-columns: 84px 1fr; gap: 14px; position: sticky; top: 130px; }
.pd-thumbs { display: flex; flex-direction: column; gap: 10px; }
.pd-thumb { border: 2px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff; aspect-ratio: 1; padding: 0; transition: .22s; }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb:hover { border-color: var(--blue-l); }
.pd-thumb.is-active { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37, 99, 235, .14); }
.pd-main { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); overflow: hidden; aspect-ratio: 1; }
.pd-main img { width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.pd-main .pcard-badges { top: 14px; left: 14px; }

.pd-info h1 { font-size: 27px; line-height: 1.28; margin-bottom: 10px; }
.pd-brandline { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 10px; font-size: 13px; color: var(--gray); }
.pd-brandline .bl-brand { background: var(--blue-l); color: var(--blue-d); font-weight: 800; font-size: 12px; padding: 4px 11px; border-radius: 7px; }
.pd-brandline .sku { color: var(--gray-2); }
.pd-rate { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 13.5px; color: var(--gray); flex-wrap: wrap; }
.pd-rate a { color: var(--blue); font-weight: 600; }
.pd-kisa { font-size: 14.8px; color: var(--slate-2); background: var(--blue-xl); border-left: 4px solid var(--blue); padding: 13px 16px; border-radius: 0 10px 10px 0; margin-bottom: 20px; }

.pd-buy { background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); padding: 22px; box-shadow: var(--sh-2); }
.pd-price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 4px; }
.pd-price s { font-size: 18px; }
.pd-price strong { font-size: 36px; font-weight: 900; color: var(--orange); letter-spacing: -.035em; line-height: 1; }
.pd-price .off { background: var(--orange); color: #fff; font-size: 12.5px; font-weight: 800; padding: 4px 10px; border-radius: 7px; }
.pd-taksit { font-size: 13px; color: var(--gray); margin-bottom: 16px; }
.pd-taksit b { color: var(--blue); }
.pd-stock { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; padding: 7px 13px; border-radius: 9px; margin-bottom: 18px; }
.pd-stock.ok { background: var(--green-l); color: #15803d; }
.pd-stock.low { background: #fef3c7; color: #b45309; }
.pd-stock.no { background: #fee2e2; color: #b91c1c; }

.pd-variant { margin-bottom: 18px; }
.pd-variant > span.lbl2 { display: block; font-size: 13px; font-weight: 700; color: var(--slate-2); margin-bottom: 8px; }
.variants { display: flex; flex-wrap: wrap; gap: 9px; }
[data-variant] { border: 1.5px solid var(--line-2); background: #fff; border-radius: 9px; padding: 9px 15px; font-size: 13.3px; font-weight: 600; color: var(--slate-2); transition: .2s; }
[data-variant]:hover { border-color: var(--blue); color: var(--blue); }
[data-variant].is-active { border-color: var(--blue); background: var(--blue); color: #fff; box-shadow: 0 4px 12px rgba(37, 99, 235, .25); }

.pd-actions { display: flex; align-items: stretch; gap: 11px; margin-bottom: 16px; }
.qty { display: flex; align-items: center; border: 1.5px solid var(--line-2); border-radius: var(--r); overflow: hidden; background: #fff; flex: none; }
.qty button { width: 42px; height: 46px; border: 0; background: none; color: var(--slate-2); display: grid; place-items: center; transition: .18s; }
.qty button:hover { background: var(--blue-xl); color: var(--blue); }
.qty input { width: 52px; border: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line); text-align: center; font-weight: 800; font-size: 15px; padding: 0; height: 46px; border-radius: 0; }
.qty input:focus { box-shadow: none; }
.pd-actions .btn { flex: 1; height: 46px; font-size: 15px; }
.btn-fav { width: 46px; height: 46px; flex: none; border: 1.5px solid var(--line-2); background: #fff; border-radius: var(--r); color: var(--gray); display: grid; place-items: center; transition: .22s; }
.btn-fav svg { fill: none; }
.btn-fav:hover { color: #e11d48; border-color: #fda4af; }
.btn-fav.is-active { color: #e11d48; border-color: #fda4af; background: #fff1f2; }
.btn-fav.is-active svg { fill: #e11d48; }

.pd-assure { display: grid; gap: 10px; border-top: 1px solid var(--line); padding-top: 16px; }
.pd-assure div { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--slate-2); }
.pd-assure svg { color: var(--green); flex: none; }

/* Sekmeler */
.pd-tabs { background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); overflow: hidden; margin-top: 44px; }
.tabnav { display: flex; border-bottom: 1px solid var(--line); overflow-x: auto; background: var(--bg); }
.tabnav button { padding: 15px 24px; border: 0; background: none; font-size: 14.5px; font-weight: 700; color: var(--gray); border-bottom: 3px solid transparent; white-space: nowrap; transition: .22s; }
.tabnav button:hover { color: var(--slate); }
.tabnav button.is-active { color: var(--blue); border-bottom-color: var(--blue); background: #fff; }
.tabpanels { padding: 28px 30px 32px; }
.tabpanels p { color: var(--slate-2); font-size: 14.8px; }
.spec-table th, .spec-table td { padding: 11px 16px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--line); }
.spec-table th { width: 34%; color: var(--gray); font-weight: 600; background: var(--bg); }
.spec-table td { font-weight: 600; color: var(--slate); }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }

.review { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.review:last-child { border-bottom: 0; }
.review-av { width: 44px; height: 44px; border-radius: 50%; background: var(--blue-l); color: var(--blue-d); display: grid; place-items: center; font-weight: 800; font-size: 15px; flex: none; }
.review-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 5px; }
.review-head strong { font-size: 14.5px; }
.review-head .ver { background: var(--green-l); color: #15803d; font-size: 11px; font-weight: 800; padding: 3px 8px; border-radius: 6px; display: inline-flex; align-items: center; gap: 4px; }
.review-head time { font-size: 12px; color: var(--gray-2); margin-left: auto; }
.review p { margin: 0; font-size: 14px; color: var(--slate-2); }
.review-sum { display: flex; align-items: center; gap: 26px; background: var(--bg); border-radius: var(--r); padding: 18px 22px; margin-bottom: 10px; flex-wrap: wrap; }
.review-sum .big { font-size: 44px; font-weight: 900; color: var(--slate); line-height: 1; letter-spacing: -.04em; }
.bars { flex: 1; min-width: 220px; display: grid; gap: 5px; }
.bar { display: flex; align-items: center; gap: 9px; font-size: 12px; color: var(--gray); }
.bar .t { width: 100%; height: 7px; background: var(--line); border-radius: 4px; overflow: hidden; }
.bar .t i { display: block; height: 100%; background: var(--yellow); border-radius: 4px; }

/* ==========================================================================
   SEPET
   ========================================================================== */
.cartlayout { display: grid; grid-template-columns: 1fr 356px; gap: 24px; align-items: start; padding-bottom: 50px; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); box-shadow: var(--sh-1); overflow: hidden; }
.panel-head { padding: 16px 20px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.panel-head h2, .panel-head h3 { margin: 0; font-size: 17px; display: flex; align-items: center; gap: 9px; }
.panel-body { padding: 20px; }

.citem { display: grid; grid-template-columns: 92px 1fr auto; gap: 16px; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.citem:last-child { border-bottom: 0; }
.citem-img { width: 92px; height: 92px; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.citem-img img { width: 100%; height: 100%; object-fit: cover; }
.citem-info h3 { font-size: 14.8px; margin-bottom: 4px; line-height: 1.35; }
.citem-info h3 a:hover { color: var(--blue); }
.citem-info .vr { font-size: 12.5px; color: var(--gray); }
.citem-info .unit { font-size: 13px; color: var(--gray); margin-top: 4px; }
.citem-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.citem-right .tot { font-size: 19px; font-weight: 900; color: var(--orange); letter-spacing: -.02em; }
.citem-ops { display: flex; align-items: center; gap: 10px; }
.citem-del { background: none; border: 0; color: var(--gray-2); display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; transition: .2s; padding: 4px; }
.citem-del:hover { color: var(--red); }
.qty-sm button { width: 32px; height: 36px; }
.qty-sm input { width: 42px; height: 36px; font-size: 14px; }

.summary { position: sticky; top: 130px; }
.sumrow { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 0; font-size: 14.2px; color: var(--slate-2); }
.sumrow b { font-weight: 700; }
.sumrow.disc { color: var(--green); }
.sumrow.total { border-top: 2px dashed var(--line); margin-top: 10px; padding-top: 14px; font-size: 17px; font-weight: 800; color: var(--slate); }
.sumrow.total b { font-size: 26px; color: var(--orange); font-weight: 900; letter-spacing: -.025em; }
.coupon { display: flex; gap: 8px; margin-bottom: 6px; }
.coupon input { text-transform: uppercase; }
.coupon-msg { font-size: 12.5px; margin: 6px 0 0; font-weight: 600; }
.coupon-msg.ok { color: var(--green); }
.coupon-msg.err { color: var(--red); }
.freeship { background: var(--blue-xl); border: 1px dashed var(--blue-l); border-radius: var(--r); padding: 12px 14px; font-size: 12.8px; color: var(--blue-d); margin-bottom: 14px; display: flex; gap: 10px; align-items: flex-start; }
.freeship svg { flex: none; color: var(--blue); }
.freeship .prog { height: 6px; background: #fff; border-radius: 4px; margin-top: 8px; overflow: hidden; }
.freeship .prog i { display: block; height: 100%; background: var(--blue); border-radius: 4px; transition: width .5s; }
.paylogos { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.paylogo { border: 1px solid var(--line); border-radius: 7px; padding: 5px 10px; font-size: 11px; font-weight: 800; color: var(--gray); background: #fff; letter-spacing: .02em; }

.empty { text-align: center; padding: 64px 24px; }
.empty .ico { width: 92px; height: 92px; border-radius: 50%; background: var(--blue-xl); color: var(--blue); display: grid; place-items: center; margin: 0 auto 20px; }
.empty h2 { font-size: 23px; }
.empty p { color: var(--gray); max-width: 440px; margin: 0 auto 22px; }

/* ==========================================================================
   ÖDEME (3 ADIM)
   ========================================================================== */
.steps { display: flex; align-items: center; gap: 0; margin-bottom: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); padding: 16px 22px; box-shadow: var(--sh-1); }
.step { display: flex; align-items: center; gap: 11px; flex: 1; background: none; border: 0; text-align: left; padding: 0; }
.step i { width: 38px; height: 38px; border-radius: 50%; background: var(--bg); color: var(--gray); display: grid; place-items: center; font-weight: 800; font-size: 15px; font-style: normal; flex: none; transition: .25s; border: 2px solid var(--line); }
.step small { display: block; font-size: 11px; color: var(--gray-2); text-transform: uppercase; letter-spacing: .05em; font-weight: 700; }
.step strong { display: block; font-size: 14.5px; color: var(--gray); font-weight: 700; }
.step.is-active i { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 0 0 4px rgba(37, 99, 235, .15); }
.step.is-active strong { color: var(--slate); }
.step.is-done i { background: var(--green); border-color: var(--green); color: #fff; }
.step.is-done strong { color: var(--slate-2); }
.step-line { flex: none; width: 60px; height: 2px; background: var(--line); margin: 0 8px; }
@media (max-width: 780px) { .step-line { width: 18px; } .step small { display: none; } }

.addr-card { border: 2px solid var(--line); border-radius: var(--r); padding: 15px 16px; cursor: pointer; transition: .22s; display: flex; gap: 12px; align-items: flex-start; }
.addr-card:hover { border-color: var(--blue-l); }
.addr-card.is-active { border-color: var(--blue); background: var(--blue-xl); }
.addr-card input { margin: 3px 0 0; accent-color: var(--blue); width: 17px; height: 17px; flex: none; }
.addr-card strong { display: block; font-size: 14.5px; margin-bottom: 3px; }
.addr-card p { margin: 0; font-size: 13px; color: var(--gray); }
.addr-grid { display: grid; gap: 12px; margin-bottom: 18px; }

.ship-opt { display: flex; align-items: center; gap: 13px; border: 2px solid var(--line); border-radius: var(--r); padding: 14px 16px; cursor: pointer; transition: .22s; }
.ship-opt:hover { border-color: var(--blue-l); }
.ship-opt.is-active { border-color: var(--blue); background: var(--blue-xl); }
.ship-opt input { accent-color: var(--blue); width: 17px; height: 17px; flex: none; margin: 0; }
.ship-opt .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--bg); color: var(--blue); display: grid; place-items: center; flex: none; }
.ship-opt strong { display: block; font-size: 14.3px; }
.ship-opt span { font-size: 12.5px; color: var(--gray); }
.ship-opt .pr { margin-left: auto; font-weight: 800; color: var(--orange); font-size: 15px; }
.ship-opt .pr.free { color: var(--green); }

.creditcard { background: linear-gradient(135deg, #1e293b, #1e40af 70%, #2563eb); border-radius: 16px; padding: 22px 24px; color: #fff; box-shadow: var(--sh-3); margin-bottom: 20px; max-width: 400px; position: relative; overflow: hidden; }
.creditcard::after { content: ""; position: absolute; width: 230px; height: 230px; border-radius: 50%; background: rgba(255, 255, 255, .07); top: -110px; right: -60px; }
.cc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; position: relative; z-index: 2; }
.cc-chip { width: 44px; height: 33px; border-radius: 6px; background: linear-gradient(135deg, #fcd34d, #f59e0b); }
.cc-brand { font-weight: 900; font-size: 17px; letter-spacing: .06em; opacity: .9; }
.cc-num { font-size: 21px; font-weight: 700; letter-spacing: .14em; font-variant-numeric: tabular-nums; margin-bottom: 18px; position: relative; z-index: 2; }
.cc-bot { display: flex; gap: 28px; position: relative; z-index: 2; }
.cc-bot small { display: block; font-size: 9.5px; text-transform: uppercase; letter-spacing: .1em; opacity: .65; }
.cc-bot span { font-size: 13.5px; font-weight: 600; letter-spacing: .04em; }
.taksit-table th, .taksit-table td { font-size: 13px; padding: 9px 12px; border-bottom: 1px solid var(--line); text-align: left; }
.taksit-table th { background: var(--bg); color: var(--gray); font-weight: 600; font-size: 12px; }

.checkout-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 22px; flex-wrap: wrap; }

/* ==========================================================================
   SİPARİŞ TAMAM / TAKİP — ZAMAN ÇİZELGESİ
   ========================================================================== */
.thanks { text-align: center; padding: 46px 24px 20px; }
.thanks .tick { width: 92px; height: 92px; border-radius: 50%; background: var(--green-l); color: var(--green); display: grid; place-items: center; margin: 0 auto 20px; animation: mmPop .6s cubic-bezier(.2, 1.4, .4, 1); }
@keyframes mmPop { from { transform: scale(.4); opacity: 0; } }
.thanks h1 { font-size: 31px; }
.thanks p { color: var(--gray); max-width: 520px; margin: 0 auto 8px; }
.ordernum { display: inline-flex; align-items: center; gap: 12px; background: var(--bg); border: 1px dashed var(--line-2); border-radius: var(--r); padding: 12px 20px; margin: 18px 0 8px; }
.ordernum small { font-size: 11.5px; color: var(--gray); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }
.ordernum b { font-size: 20px; letter-spacing: .05em; color: var(--blue); font-weight: 900; }

.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ""; position: absolute; left: 15px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding-bottom: 26px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -32px; top: 3px; width: 17px; height: 17px; border-radius: 50%; background: #fff; border: 3px solid var(--line-2); z-index: 2; }
.tl-item.done::before { border-color: var(--green); background: var(--green); box-shadow: 0 0 0 4px var(--green-l); }
.tl-item.now::before { border-color: var(--blue); background: var(--blue); box-shadow: 0 0 0 4px var(--blue-l); animation: mmPulse 1.8s infinite; }
@keyframes mmPulse { 0%, 100% { box-shadow: 0 0 0 4px var(--blue-l); } 50% { box-shadow: 0 0 0 9px rgba(37, 99, 235, .12); } }
.tl-item strong { display: block; font-size: 15px; margin-bottom: 2px; }
.tl-item time { font-size: 12.5px; color: var(--gray-2); }
.tl-item p { margin: 4px 0 0; font-size: 13.4px; color: var(--gray); }

/* ==========================================================================
   HESABIM
   ========================================================================== */
.auth-wrap { max-width: 540px; margin: 0 auto; }
.auth-tabs { display: flex; background: var(--bg); border-radius: var(--r); padding: 4px; margin-bottom: 22px; }
.auth-tabs button { flex: 1; padding: 11px; border: 0; background: none; border-radius: 8px; font-weight: 700; font-size: 14.5px; color: var(--gray); transition: .22s; }
.auth-tabs button.is-active { background: #fff; color: var(--blue); box-shadow: var(--sh-1); }
.social-login { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.divider { display: flex; align-items: center; gap: 12px; margin: 18px 0; color: var(--gray-2); font-size: 12.5px; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.acclayout { display: grid; grid-template-columns: 258px 1fr; gap: 24px; align-items: start; }
.accnav { background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); overflow: hidden; box-shadow: var(--sh-1); }
.accnav-user { padding: 20px; background: linear-gradient(135deg, var(--blue), #1e40af); color: #fff; display: flex; align-items: center; gap: 12px; }
.accnav-user .av { width: 48px; height: 48px; border-radius: 50%; background: rgba(255, 255, 255, .2); display: grid; place-items: center; font-weight: 800; font-size: 18px; flex: none; }
.accnav-user strong { display: block; font-size: 15px; }
.accnav-user span { font-size: 12px; color: #bfdbfe; }
.accnav ul li a, .accnav ul li button { display: flex; align-items: center; gap: 11px; padding: 12px 18px; font-size: 14px; font-weight: 600; color: var(--slate-2); border-bottom: 1px solid #f1f5f9; width: 100%; background: none; border-left: 0; border-right: 0; border-top: 0; text-align: left; transition: .2s; }
.accnav ul li a svg, .accnav ul li button svg { color: var(--gray-2); }
.accnav ul li a:hover, .accnav ul li button:hover, .accnav ul li button.is-active { background: var(--blue-xl); color: var(--blue); }
.accnav ul li button.is-active svg { color: var(--blue); }
.accnav ul li:last-child a { color: var(--red); border-bottom: 0; }

.dtable { width: 100%; }
.dtable th { background: var(--bg); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--gray); padding: 11px 16px; text-align: left; font-weight: 700; white-space: nowrap; }
.dtable td { padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: 13.8px; vertical-align: middle; }
.dtable tr:last-child td { border-bottom: 0; }
.dtable tbody tr:hover { background: #f8fafc; }
.dtable .ono { font-weight: 800; color: var(--blue); }
.dtable .amt { font-weight: 800; color: var(--orange); white-space: nowrap; }
.stat { display: inline-flex; align-items: center; gap: 5px; font-size: 11.8px; font-weight: 800; padding: 4px 10px; border-radius: 7px; white-space: nowrap; }
.stat.ok { background: var(--green-l); color: #15803d; }
.stat.way { background: var(--blue-l); color: var(--blue-d); }
.stat.prep { background: #fef3c7; color: #b45309; }
.stat.cancel { background: #fee2e2; color: #b91c1c; }
.tablewrap { overflow-x: auto; }

.addrbox { border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px; position: relative; }
.addrbox .t { display: inline-flex; align-items: center; gap: 6px; background: var(--blue-l); color: var(--blue-d); font-size: 11.5px; font-weight: 800; padding: 3px 9px; border-radius: 6px; margin-bottom: 8px; }
.addrbox p { font-size: 13.4px; color: var(--gray); margin: 0 0 10px; }
.addrbox .ops { display: flex; gap: 8px; }
.addrbox .ops button { background: none; border: 0; font-size: 12.5px; font-weight: 700; color: var(--blue); padding: 2px 0; }
.addrbox .ops button:last-child { color: var(--red); }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.statbox { background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); padding: 18px 20px; box-shadow: var(--sh-1); }
.statbox i { width: 42px; height: 42px; border-radius: 11px; background: var(--blue-l); color: var(--blue); display: grid; place-items: center; margin-bottom: 12px; }
.statbox b { display: block; font-size: 27px; font-weight: 900; letter-spacing: -.03em; line-height: 1.1; }
.statbox span { font-size: 12.8px; color: var(--gray); }

/* ==========================================================================
   SAYFA BAŞLIĞI (iç sayfalar)
   ========================================================================== */
.pagehead { background: linear-gradient(120deg, var(--slate) 0%, #1e3a8a 62%, var(--blue) 100%); color: #fff; padding: 40px 0 44px; position: relative; overflow: hidden; }
.pagehead::before { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(249, 115, 22, .26), transparent 66%); top: -220px; right: 4%; }
.pagehead-in { position: relative; z-index: 2; }
.pagehead .crumbs { padding: 0 0 10px; color: #bfdbfe; }
.pagehead .crumbs a { color: #bfdbfe; }
.pagehead .crumbs a:hover { color: #fff; }
.pagehead .crumbs span[aria-current] { color: #fff; }
.pagehead .crumbs .sep { color: rgba(191, 219, 254, .5); }
.pagehead h1 { color: #fff; font-size: 34px; margin-bottom: 8px; }
.pagehead p { color: #dbeafe; max-width: 680px; margin: 0; font-size: 15px; }

/* ==========================================================================
   KAMPANYALAR
   ========================================================================== */
.campgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.camp { background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); overflow: hidden; display: flex; flex-direction: column; transition: .28s; }
.camp:hover { transform: translateY(-5px); box-shadow: var(--sh-3); }
.camp-img { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.camp-img img { width: 100%; height: 100%; object-fit: cover; transition: .55s; }
.camp:hover .camp-img img { transform: scale(1.07); }
.camp-img .et { position: absolute; top: 13px; left: 13px; color: #fff; font-size: 12px; font-weight: 800; padding: 6px 13px; border-radius: 8px; box-shadow: var(--sh-2); }
.camp-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.camp-body h3 { font-size: 18px; line-height: 1.3; }
.camp-body p { font-size: 13.6px; color: var(--gray); flex: 1; }
.camp-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); padding-top: 14px; margin-top: 6px; flex-wrap: wrap; }
.camp-kod { background: var(--bg); border: 1px dashed var(--line-2); border-radius: 8px; padding: 6px 12px; font-weight: 900; letter-spacing: .07em; font-size: 13px; color: var(--slate); }
.camp-bitis { font-size: 12.3px; color: var(--gray); display: inline-flex; align-items: center; gap: 5px; }

/* ==========================================================================
   İÇERİK SAYFALARI
   ========================================================================== */
.prose { font-size: 15.4px; color: var(--slate-2); line-height: 1.78; }
.prose h2 { font-size: 23px; margin: 34px 0 12px; }
.prose h3 { font-size: 18.5px; margin: 26px 0 10px; }
.prose ul { list-style: none; margin: 0 0 18px; }
.prose ul li { position: relative; padding-left: 26px; margin-bottom: 9px; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.prose blockquote, .quote { margin: 24px 0; padding: 20px 24px; background: var(--blue-xl); border-left: 4px solid var(--blue); border-radius: 0 12px 12px 0; font-size: 15.5px; font-style: italic; color: var(--slate); }
.prose img { border-radius: var(--r-l); margin: 20px 0; }

.contentlayout { display: grid; grid-template-columns: 1fr 320px; gap: 30px; align-items: start; }
.side-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); padding: 20px; box-shadow: var(--sh-1); margin-bottom: 20px; }
.side-panel h3 { font-size: 16px; display: flex; align-items: center; gap: 8px; padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.side-list li a { display: flex; gap: 11px; padding: 9px 0; border-bottom: 1px solid #f1f5f9; font-size: 13.6px; color: var(--slate-2); transition: .2s; align-items: center; }
.side-list li:last-child a { border-bottom: 0; }
.side-list li a:hover { color: var(--blue); padding-left: 5px; }
.side-list img { width: 56px; height: 56px; border-radius: 9px; object-fit: cover; flex: none; }
.side-sticky { position: sticky; top: 130px; }
.taglist { display: flex; flex-wrap: wrap; gap: 8px; }
.taglist a { background: var(--bg); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-size: 12.6px; font-weight: 600; color: var(--slate-2); transition: .2s; }
.taglist a:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

.info-tile { background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); padding: 24px 22px; text-align: center; transition: .26s; height: 100%; }
.info-tile:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.info-tile i { width: 52px; height: 52px; border-radius: 14px; background: var(--blue-l); color: var(--blue); display: grid; place-items: center; margin: 0 auto 14px; }
.info-tile h3 { font-size: 16.5px; }
.info-tile p { font-size: 13.6px; color: var(--gray); margin: 0; }
.info-tile a { color: var(--blue); font-weight: 700; }

.acc-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 10px; overflow: hidden; transition: .22s; }
.acc-item.is-open { border-color: var(--blue-l); box-shadow: var(--sh-2); }
.acc-head { display: flex; align-items: center; gap: 14px; padding: 16px 20px; font-size: 15.2px; font-weight: 700; color: var(--slate); }
.acc-head .q { width: 28px; height: 28px; border-radius: 8px; background: var(--blue-l); color: var(--blue); display: grid; place-items: center; font-size: 12.5px; font-weight: 800; flex: none; }
.acc-head .arrow { margin-left: auto; color: var(--gray-2); transition: .3s; flex: none; }
.acc-item.is-open .acc-head { color: var(--blue); }
.acc-item.is-open .acc-head .arrow { transform: rotate(180deg); color: var(--blue); }
.acc-body .in { padding: 0 20px 18px 62px; font-size: 14.3px; color: var(--slate-2); }

.map-frame { border: 1px solid var(--line); border-radius: var(--r-l); overflow: hidden; box-shadow: var(--sh-1); background: #fff; }
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }

.team-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); overflow: hidden; text-align: center; transition: .26s; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.team-card .tb { padding: 16px 14px 20px; }
.team-card strong { display: block; font-size: 15.5px; }
.team-card span { font-size: 12.7px; color: var(--blue); font-weight: 600; }

.mission { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mission > div { background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); padding: 26px; border-top: 4px solid var(--blue); }
.mission > div:last-child { border-top-color: var(--orange); }
.mission h3 { display: flex; align-items: center; gap: 10px; font-size: 18px; }
.mission h3 svg { color: var(--blue); }
.mission > div:last-child h3 svg { color: var(--orange); }
.mission p { margin: 0; font-size: 14.3px; color: var(--slate-2); }

.figures { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.figure { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); padding: 26px 16px; }
.figure b { display: block; font-size: 34px; font-weight: 900; color: var(--blue); letter-spacing: -.035em; line-height: 1.1; }
.figure span { font-size: 13px; color: var(--gray); font-weight: 600; }

.blogfilter { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 24px; }
.blogfilter a { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 18px; font-size: 13.3px; font-weight: 600; color: var(--slate-2); transition: .22s; }
.blogfilter a:hover, .blogfilter a.is-active { background: var(--blue); border-color: var(--blue); color: #fff; }

.share { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.share a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gray); background: #fff; transition: .22s; }
.share a:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-2px); }

.track-form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); padding: 28px; box-shadow: var(--sh-2); max-width: 560px; margin: 0 auto; }
.track-result { display: none; }
.track-result.is-open { display: block; animation: svFade .4s ease; }
@keyframes svFade { from { opacity: 0; transform: translateY(10px); } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.shop-footer { background: var(--slate); color: #cbd5e1; margin-top: 50px; }
.footer-adv { border-bottom: 1px solid rgba(255, 255, 255, .09); }
.footer-adv-in { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.footer-adv .adv { border-right: 1px solid rgba(255, 255, 255, .09); }
.footer-adv .adv:hover { background: rgba(255, 255, 255, .04); }
.footer-adv .adv strong { color: #fff; }
.footer-adv .adv span { color: #94a3b8; }
.footer-adv .adv i { background: rgba(255, 255, 255, .09); color: #93c5fd; }
.footer-adv .adv:nth-child(2) i { background: rgba(255, 255, 255, .09); color: #86efac; }
.footer-adv .adv:nth-child(3) i { background: rgba(255, 255, 255, .09); color: #fdba74; }
.footer-adv .adv:nth-child(4) i { background: rgba(255, 255, 255, .09); color: #c4b5fd; }

.footer-main { padding: 44px 0 34px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr; gap: 34px; }
.footer-main h4 { color: #fff; font-size: 14px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .05em; }
.footer-main ul li { margin-bottom: 9px; }
.footer-main ul li a { font-size: 13.6px; color: #cbd5e1; transition: .2s; display: inline-flex; align-items: center; gap: 6px; }
.footer-main ul li a:hover { color: #fff; transform: translateX(4px); }
.footer-brand .logo-text strong { color: #fff; }
.footer-brand .logo-text small { color: #94a3b8; }
.footer-brand .logo-mark { color: #60a5fa; }
.footer-brand p { font-size: 13.5px; margin: 16px 0 18px; color: #94a3b8; line-height: 1.65; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 13.5px; }
.footer-contact svg { color: var(--orange); flex: none; margin-top: 2px; }
.footer-contact a:hover { color: #fff; }
.social { display: flex; gap: 9px; margin-top: 4px; }
.social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255, 255, 255, .08); display: grid; place-items: center; color: #cbd5e1; transition: .25s; }
.social a:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }
.footer-apps { display: flex; gap: 9px; margin-top: 14px; flex-wrap: wrap; }
.footer-apps a { border: 1px solid rgba(255, 255, 255, .16); border-radius: 9px; padding: 8px 13px; font-size: 12px; display: inline-flex; align-items: center; gap: 7px; transition: .22s; }
.footer-apps a:hover { border-color: var(--blue); background: rgba(37, 99, 235, .18); color: #fff; }
.footer-pay { border-top: 1px solid rgba(255, 255, 255, .09); padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-pay .pays { display: flex; gap: 7px; flex-wrap: wrap; }
.footer-pay .pays span { border: 1px solid rgba(255, 255, 255, .16); border-radius: 7px; padding: 5px 12px; font-size: 11px; font-weight: 800; letter-spacing: .03em; color: #cbd5e1; }
.footer-pay .secure { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: #86efac; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .09); padding: 16px 0 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.6px; color: #94a3b8; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom nav a:hover { color: #fff; }
.footer-note { background: rgba(0, 0, 0, .22); padding: 12px 0; font-size: 11.8px; color: #94a3b8; text-align: center; line-height: 1.6; }

/* WhatsApp balonu */
.wa-float { position: fixed; right: 22px; bottom: 84px; z-index: 900; width: 54px; height: 54px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37, 211, 102, .42); transition: .26s; }
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: mmWa 2.4s infinite; }
@keyframes mmWa { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.5); opacity: 0; } }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1400px) {
  .homehero-grid { grid-template-columns: 230px 1fr 270px; }
  .pgrid { grid-template-columns: repeat(4, 1fr); }
  .pcarousel .track > * { flex: 0 0 calc(25% - 13.5px); }
}

@media (max-width: 1200px) {
  .homehero-grid { grid-template-columns: 215px 1fr; }
  .minibanners { grid-column: 1 / -1; grid-template-rows: none; grid-template-columns: 1fr 1fr; }
  .minibanner { min-height: 165px; }
  .catboxes { grid-template-columns: repeat(3, 1fr); }
  .brands { grid-template-columns: repeat(6, 1fr); }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
  .promo-body h2 { font-size: 34px; }
  .catdrop { width: 480px; }
}

@media (max-width: 1024px) {
  .catbar { display: none; }
  .shop-header { top: 0; }
  .filters { position: fixed; top: 0; left: 0; bottom: 0; width: 320px; max-width: 90vw; z-index: 1250; border-radius: 0; transform: translateX(-102%); transition: transform .35s; overflow-y: auto; }
  body.filters-open .filters { transform: none; }
  body.filters-open::after { content: ""; position: fixed; inset: 0; background: rgba(15, 23, 42, .5); z-index: 1240; }
  .mobile-filter-btn { display: inline-flex; }
  .shoplayout, .cartlayout, .acclayout, .contentlayout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .pd { grid-template-columns: 1fr; gap: 26px; }
  .pd-gallery { position: static; max-width: 560px; }
  .side-sticky { position: static; }
  .pgrid { grid-template-columns: repeat(3, 1fr); }
  .pcarousel .track > * { flex: 0 0 calc(33.333% - 12px); }
  .bgrid, .campgrid, .grid3 { grid-template-columns: repeat(2, 1fr); }
  .figures, .grid4 { grid-template-columns: repeat(2, 1fr); }
  .newsletter-in { grid-template-columns: 1fr; gap: 22px; }
  .footer-adv-in { grid-template-columns: 1fr 1fr; }
  .footer-adv .adv:nth-child(2n) { border-right: 0; }
  .footer-adv .adv { border-bottom: 1px solid rgba(255, 255, 255, .09); }
  h1 { font-size: 29px; }
  h2 { font-size: 23px; }
}

@media (max-width: 900px) {
  .burger { display: flex; }
  .shop-header-in { flex-wrap: wrap; gap: 12px 14px; }
  .searchbar { order: 3; flex: 0 0 100%; max-width: none; }
  .searchbar-cat { display: none; }
  .logo { margin-right: auto; }
  .hact span:not(.hact-ico) { display: none; }
  .hact { padding: 9px; }
  .header-actions { gap: 3px; }
  .topstrip-msg { font-size: 11.5px; }
  .topstrip-links a:not(.active) { display: none; }
  .homehero-grid { grid-template-columns: 1fr; }
  .vertcat { display: none; }
  .promo, .promo .slide { min-height: 340px; }
  .promo-body { padding: 30px 28px; }
  .promo-body h2 { font-size: 28px; }
  .promo [data-dots] { left: 28px; bottom: 16px; }
  .advstrip-in { grid-template-columns: 1fr 1fr; }
  .adv:nth-child(2n) { border-right: 0; }
  .adv:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .pgrid, .pgrid-4, .pgrid-3 { grid-template-columns: repeat(2, 1fr); }
  .pcarousel .track > * { flex: 0 0 calc(50% - 9px); }
  .catboxes { grid-template-columns: repeat(2, 1fr); }
  .brands { grid-template-columns: repeat(4, 1fr); }
  .fgrid, .mission, .grid2 { grid-template-columns: 1fr; }
  .deals-top { flex-direction: column; align-items: flex-start; }
  #plist.is-list .pcard { flex-direction: column; }
  #plist.is-list .pcard-media { width: 100%; aspect-ratio: 1; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .tabpanels { padding: 20px 18px 24px; }
  .tabnav button { padding: 13px 16px; font-size: 13.5px; }
}

@media (max-width: 640px) {
  body { font-size: 14.5px; }
  h1 { font-size: 25px; }
  h2, .sec-head h2 { font-size: 21px; }
  .pagehead h1 { font-size: 26px; }
  .sec { padding: 30px 0; }
  .container { padding: 0 14px; }
  .pgrid, .pgrid-4, .pgrid-3, .catboxes, .bgrid, .campgrid, .grid3, .grid4, .figures, .footer-main { grid-template-columns: 1fr; }
  .pcarousel .track > * { flex: 0 0 82%; }
  .brands { grid-template-columns: repeat(3, 1fr); }
  .minibanners { grid-template-columns: 1fr; }
  .advstrip-in, .footer-adv-in { grid-template-columns: 1fr; }
  .adv { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .advstrip-in .adv:last-child { border-bottom: 0; }
  .promo-body h2 { font-size: 24px; }
  .promo-body p { font-size: 14px; }
  .promo, .promo .slide { min-height: 320px; }
  .promo-nav { display: none; }
  .pd-gallery { grid-template-columns: 1fr; }
  .pd-thumbs { flex-direction: row; overflow-x: auto; order: 2; }
  .pd-thumb { width: 68px; flex: none; }
  .pd-price strong { font-size: 30px; }
  .citem { grid-template-columns: 72px 1fr; gap: 12px; padding: 14px; }
  .citem-img { width: 72px; height: 72px; }
  .citem-right { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
  .steps { padding: 12px; }
  .step strong { font-size: 12.5px; }
  .step i { width: 32px; height: 32px; font-size: 13px; }
  .newsletter form { flex-direction: column; }
  .shop-toolbar { gap: 10px; }
  .toolbar-right { width: 100%; justify-content: space-between; }
  .toolbar-right select { flex: 1; min-width: 0; }
  .footer-bottom { justify-content: center; text-align: center; }
  .acc-body .in { padding-left: 20px; }
  .review-sum .big { font-size: 34px; }
  .wa-float { right: 14px; bottom: 78px; width: 48px; height: 48px; }
  .sv-totop { right: 14px; bottom: 22px; }
}

@media print {
  .topstrip, .shop-header, .catbar, .shop-footer, .wa-float, .sv-demobar, .sv-totop { display: none !important; }
}

/* ==========================================================================
   EK DÜZELTMELER (sayfa bileşenleri)
   ========================================================================== */
[data-accordion] .acc-head { padding: 16px 20px; width: 100%; cursor: pointer; font: 700 15.2px/1.4 inherit; font-family: inherit; }
[data-accordion] .acc-item.is-open .acc-head { color: var(--blue); }

.deals-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.deals .carousel-nav button { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .22); color: #fff; }
.deals .carousel-nav button:hover { background: #fff; color: var(--blue); border-color: #fff; }
.deals .pgrid { row-gap: 18px; }

.hide-desktop { display: none; background: none; border: 0; font-size: 22px; line-height: 1; padding: 0 4px; }
@media (max-width: 1024px) { .hide-desktop { display: inline-block; } }
.filters-head { gap: 8px; }
.filters-head strong { flex: 1; }

#plist .pcard.hide { display: none !important; }
.shop-toolbar .cnt b { font-weight: 800; }

.pd-info .info-tile { text-align: left; display: block; }
.pd-info .info-tile i { margin: 0 0 8px; width: 40px; height: 40px; border-radius: 11px; }
.pd-info .info-tile p { font-size: 12.8px; }

.side-list li a strong { color: var(--slate); }
.side-list li a:hover strong { color: var(--blue); }

.review-sum > div:last-child { min-width: 200px; }
.tabpanel .prose ul { margin-bottom: 14px; }

.creditcard + form { max-width: 400px; }
[data-mini-list] .citem { border-bottom: 1px solid var(--line); }
[data-mini-list] .citem:last-child { border-bottom: 0; }
[data-mini-list] .citem-img { border: 1px solid var(--line); border-radius: 8px; }

.figure b { font-variant-numeric: tabular-nums; }
.minibanner .minibanner-in { display: flex; }

@media (max-width: 900px) {
  .deals-top { width: 100%; }
  .deals-title { max-width: 100%; }
  .deals-title p { margin-right: 0; }
}
@media (max-width: 640px) {
  .countdown { flex-wrap: wrap; width: 100%; gap: 6px; }
  .countdown-lbl { flex: 0 0 100%; margin: 0 0 2px; }
  .cd-box { min-width: 0; flex: 1 1 0; }
  .cd-box b { font-size: 20px; }
  .cd-sep { display: none; }
  .deals-title .bolt { width: 44px; height: 44px; }
  .deals-title h2 { font-size: 21px; }
  .deals-foot { flex-direction: column; align-items: stretch; }
  .deals-foot .btn { width: 100%; }
  .topstrip-msg { flex-wrap: wrap; row-gap: 2px; line-height: 1.35; }
  .shop-toolbar .cnt { width: 100%; }
  .ordernum { width: 100%; justify-content: center; text-align: center; }
  .review-sum { gap: 16px; }
}

/* Grid çocuklarının min-content taşmasını engelle */
.shoplayout > *, .cartlayout > *, .contentlayout > *, .acclayout > *,
.homehero-grid > *, .pgrid > *, .grid2 > *, .grid3 > *, .grid4 > * { min-width: 0; }
.shop-toolbar, .toolbar-right { min-width: 0; }
.citem-info h3, .citem-info .vr { overflow-wrap: anywhere; }
.pd > *, .pd-gallery > *, .mission > *, .figures > *, .campgrid > *, .bgrid > *, .catboxes > * { min-width: 0; }
.pd-info h1, .pd-brandline, .pd-kisa { overflow-wrap: anywhere; }

@media (max-width: 430px) {
  .pd-actions { flex-wrap: wrap; }
  .pd-actions .qty { order: 0; }
  .pd-actions .btn-fav { order: 1; margin-left: auto; }
  .pd-actions .btn { order: 2; flex: 1 1 100%; }
}
