/* =====================================================================
   HOMCERA — Ön yüz stil dosyası
   Palet: Krem (zemin) · Lacivert (metin/koyu) · Bakır (aksiyon) · Altın (vurgu)
   ===================================================================== */

:root{
  /* Renk */
  --cream:#FAF7F2;
  --cream-2:#F3EEE6;
  --cream-3:#EDE5D9;
  --white:#FFFFFF;
  --navy:#1B2A41;
  --navy-2:#2C3E58;
  --navy-soft:#3B4759;
  --muted:#6B7688;
  --muted-2:#9AA3B0;
  --line:#E7DFD3;
  --line-2:#F0EAE0;
  --copper:#B5763A;
  --copper-dark:#945F2C;
  --copper-light:#F6EADD;
  --gold:#C9A227;
  --success:#2E7D5B;
  --success-bg:#E8F3EE;
  --danger:#C0392B;
  --danger-bg:#FBEAE8;
  --warn:#B07B12;
  --warn-bg:#FCF3E1;
  --wa:#25D366;

  /* Ölçü */
  --r-sm:6px; --r:10px; --r-lg:16px; --r-xl:24px;
  --shadow-sm:0 1px 2px rgba(27,42,65,.06), 0 1px 3px rgba(27,42,65,.04);
  --shadow:0 4px 14px rgba(27,42,65,.08);
  --shadow-lg:0 12px 36px rgba(27,42,65,.13);
  --container:1280px;
  --head-h:74px;

  /* Tipografi */
  --f-head:"Playfair Display", Georgia, "Times New Roman", serif;
  --f-body:"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%; scroll-behavior:smooth}
body{
  margin:0; background:var(--cream); color:var(--navy);
  font-family:var(--f-body); font-size:16px; line-height:1.65;
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
img{max-width:100%; height:auto; display:block}
a{color:var(--copper); text-decoration:none; transition:color .18s}
a:hover{color:var(--copper-dark)}
button,input,select,textarea{font:inherit; color:inherit}
h1,h2,h3,h4{font-family:var(--f-head); font-weight:700; line-height:1.22; color:var(--navy); margin:0 0 .5em}
h1{font-size:clamp(28px,4vw,42px)}
h2{font-size:clamp(23px,3vw,32px)}
h3{font-size:clamp(18px,2.2vw,22px)}
p{margin:0 0 1em}
::selection{background:var(--copper); color:#fff}
:focus-visible{outline:2px solid var(--copper); outline-offset:2px; border-radius:3px}

.container{width:100%; max-width:var(--container); margin:0 auto; padding:0 20px}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}
.hide{display:none !important}

/* ================================================== ÜST BAR */
.topbar{background:var(--navy); color:#D6DCE6; font-size:15px}
.topbar .container{display:flex; align-items:center; justify-content:space-between; gap:16px; min-height:40px}
.topbar a{color:#D6DCE6}
.topbar a:hover{color:var(--gold)}
.topbar-left{display:flex; align-items:center; gap:8px; color:var(--gold); font-weight:500}
.topbar-right{display:flex; align-items:center; gap:22px}
.topbar-right .tb-item{display:flex; align-items:center; gap:7px; white-space:nowrap}
.topbar svg{width:15px;height:15px;flex:none}

/* ================================================== HEADER */
.header{background:var(--white); border-bottom:1px solid var(--line); position:sticky; top:0; z-index:200}
.header-main{display:flex; align-items:center; gap:28px; min-height:var(--head-h)}
.logo{display:flex; align-items:center; gap:11px; flex:none}
.logo img{max-height:48px; width:auto}
.logo-text{font-family:var(--f-head); font-size:27px; font-weight:700; color:var(--navy); letter-spacing:-.4px; line-height:1}
.logo-text span{color:var(--copper)}
.logo-sub{display:block; font-family:var(--f-body); font-size:11.5px; letter-spacing:2.2px; color:var(--muted-2); font-weight:500; margin-top:3px; text-transform:uppercase}

.search{flex:1; max-width:560px; position:relative}
.search form{display:flex; align-items:center; background:var(--cream-2); border:1.5px solid transparent; border-radius:var(--r); transition:.2s}
.search form:focus-within{background:#fff; border-color:var(--copper); box-shadow:0 0 0 4px rgba(181,118,58,.1)}
.search input{flex:1; border:0; background:none; padding:12px 16px; font-size:16px; outline:none}
.search button{border:0; background:none; padding:11px 15px; cursor:pointer; color:var(--muted); display:flex}
.search button:hover{color:var(--copper)}
.search svg{width:19px;height:19px}
.search-results{position:absolute; top:calc(100% + 8px); left:0; right:0; background:#fff; border:1px solid var(--line);
  border-radius:var(--r); box-shadow:var(--shadow-lg); max-height:420px; overflow-y:auto; z-index:300; display:none}
.search-results.is-open{display:block}
.sr-item{display:flex; gap:12px; padding:10px 14px; border-bottom:1px solid var(--line-2); align-items:center; color:var(--navy)}
.sr-item:last-child{border-bottom:0}
.sr-item:hover{background:var(--cream)}
.sr-item img{width:44px;height:44px;object-fit:contain;background:var(--cream-2);border-radius:var(--r-sm);flex:none}
.sr-name{font-size:15.5px; font-weight:500; line-height:1.35}
.sr-price{font-size:15px; color:var(--copper); font-weight:700; margin-left:auto; white-space:nowrap}
.sr-empty{padding:18px; text-align:center; color:var(--muted); font-size:15.5px}

.head-actions{display:flex; align-items:center; gap:6px; margin-left:auto; flex:none}
.hact{display:flex; align-items:center; gap:9px; padding:9px 12px; border-radius:var(--r); color:var(--navy); position:relative; transition:background .18s}
.hact:hover{background:var(--cream-2); color:var(--navy)}
.hact svg{width:21px;height:21px;flex:none}
.hact-txt{display:flex; flex-direction:column; line-height:1.25}
.hact-txt small{font-size:13px; color:var(--muted)}
.hact-txt strong{font-size:15.5px; font-weight:600}
.cart-badge{position:absolute; top:3px; left:27px; min-width:19px; height:19px; padding:0 5px; background:var(--copper);
  color:#fff; font-size:13px; font-weight:700; border-radius:10px; display:flex; align-items:center; justify-content:center}
.burger{display:none; border:0; background:none; padding:9px; cursor:pointer; color:var(--navy)}
.burger svg{width:24px;height:24px}

/* ================================================== NAV */
.nav{background:var(--white); border-bottom:1px solid var(--line)}
.nav-list{display:flex; align-items:center; gap:2px; list-style:none; margin:0; padding:0; flex-wrap:wrap}
.nav-list > li{position:relative}
.nav-list > li > a{display:flex; align-items:center; gap:6px; padding:14px 15px; font-size:15.5px; font-weight:500;
  color:var(--navy); border-bottom:2.5px solid transparent; transition:.18s}
.nav-list > li > a:hover, .nav-list > li.is-active > a{color:var(--copper); border-bottom-color:var(--copper)}
.nav-list .caret{width:11px;height:11px;opacity:.5; transition:transform .2s}
.nav-list > li:hover .caret{transform:rotate(180deg)}
.nav-hot{color:var(--copper) !important; font-weight:600 !important}

.dropdown{position:absolute; top:100%; left:0; min-width:270px; background:#fff; border:1px solid var(--line);
  border-radius:0 0 var(--r) var(--r); box-shadow:var(--shadow-lg); padding:8px; opacity:0; visibility:hidden;
  transform:translateY(8px); transition:.2s; z-index:250}
.nav-list > li:hover .dropdown{opacity:1; visibility:visible; transform:translateY(0)}
.dropdown a{display:block; padding:10px 14px; border-radius:var(--r-sm); font-size:15.5px; color:var(--navy-soft)}
.dropdown a:hover{background:var(--copper-light); color:var(--copper-dark)}

/* Mobil menü */
.mobile-nav{position:fixed; inset:0 auto 0 0; width:min(86vw,340px); background:#fff; z-index:900;
  transform:translateX(-102%); transition:transform .3s cubic-bezier(.4,0,.2,1); overflow-y:auto; box-shadow:var(--shadow-lg)}
.mobile-nav.is-open{transform:none}
.mobile-nav-head{display:flex; align-items:center; justify-content:space-between; padding:16px 18px; border-bottom:1px solid var(--line); background:var(--navy); color:#fff}
.mobile-nav-head .logo-text{color:#fff}
.mobile-nav-head .logo-text span{color:var(--gold)}
.mobile-nav-head button{border:0;background:none;color:#fff;cursor:pointer;padding:4px;display:flex}
.mobile-nav-head svg{width:24px;height:24px}
.mnav{list-style:none;margin:0;padding:8px}
.mnav li{border-bottom:1px solid var(--line-2)}
.mnav > li:last-child{border-bottom:0}
.mnav a{display:block; padding:13px 12px; color:var(--navy); font-size:16.5px; font-weight:500}
.mnav .sub{list-style:none;margin:0;padding:0 0 8px 14px; display:none}
.mnav .sub.is-open{display:block}
.mnav .sub a{padding:9px 12px; font-size:15.5px; font-weight:400; color:var(--muted)}
.mnav-toggle{display:flex;align-items:center;justify-content:space-between;width:100%;background:none;border:0;
  padding:13px 12px;font-size:16.5px;font-weight:500;color:var(--navy);cursor:pointer;text-align:left}
.mnav-toggle svg{width:16px;height:16px;opacity:.5;transition:transform .2s;flex:none}
.mnav-toggle.is-open svg{transform:rotate(180deg)}
.overlay{position:fixed; inset:0; background:rgba(27,42,65,.45); z-index:850; opacity:0; visibility:hidden; transition:.25s}
.overlay.is-open{opacity:1; visibility:visible}

/* ================================================== BUTONLAR */
.btn{display:inline-flex; align-items:center; justify-content:center; gap:9px; padding:13px 26px; border:1.5px solid transparent;
  border-radius:var(--r); font-size:16px; font-weight:600; cursor:pointer; transition:.18s; text-align:center; line-height:1.2}
.btn svg{width:18px;height:18px;flex:none}
.btn-primary{background:var(--copper); color:#fff; border-color:var(--copper)}
.btn-primary:hover{background:var(--copper-dark); border-color:var(--copper-dark); color:#fff; transform:translateY(-1px); box-shadow:0 6px 18px rgba(181,118,58,.3)}
.btn-navy{background:var(--navy); color:#fff; border-color:var(--navy)}
.btn-navy:hover{background:#101d31; color:#fff}
.btn-outline{background:transparent; color:var(--navy); border-color:var(--line)}
.btn-outline:hover{border-color:var(--navy); background:var(--navy); color:#fff}
.btn-phone{background:var(--navy); color:#fff; border-color:var(--navy)}
.btn-phone:hover{background:#101d31; color:#fff}
.btn-wa{background:var(--wa); color:#fff; border-color:var(--wa)}
.btn-wa:hover{background:#1cb355; color:#fff}
.btn-ghost{background:var(--cream-2); color:var(--navy); border-color:transparent}
.btn-ghost:hover{background:var(--cream-3)}
.btn-sm{padding:9px 16px; font-size:15.5px}
.btn-lg{padding:16px 34px; font-size:17px}
.btn-block{width:100%}
.btn:disabled,.btn.is-disabled{opacity:.5; cursor:not-allowed; transform:none !important; box-shadow:none !important}

/* ================================================== HERO / SLIDER */
.hero{position:relative; background:linear-gradient(135deg,#F7F2EA 0%,#EFE7DA 100%); overflow:hidden}
.hero::after{content:""; position:absolute; right:-140px; top:-140px; width:440px; height:440px; border-radius:50%;
  background:radial-gradient(circle,rgba(201,162,39,.16),transparent 68%)}
.hero-slide{display:none; min-height:430px; align-items:center; padding:52px 0}
.hero-slide.is-active{display:flex; animation:fadeUp .55s ease both}
@keyframes fadeUp{from{opacity:0; transform:translateY(14px)} to{opacity:1; transform:none}}
.hero-grid{display:grid; grid-template-columns:1.06fr .94fr; gap:44px; align-items:center; width:100%; position:relative; z-index:2}
.hero-badge{display:inline-flex; align-items:center; gap:8px; background:var(--white); border:1px solid var(--line);
  padding:7px 15px; border-radius:99px; font-size:14.5px; font-weight:600; color:var(--copper-dark); margin-bottom:18px; box-shadow:var(--shadow-sm)}
.hero-badge .dot{width:7px;height:7px;border-radius:50%;background:var(--gold)}
.hero h1{font-size:clamp(30px,4.4vw,48px); margin-bottom:16px; letter-spacing:-.6px}
.hero p{font-size:18px; color:var(--navy-soft); max-width:520px; margin-bottom:26px}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap}
.hero-visual{position:relative; aspect-ratio:4/3; border-radius:var(--r-xl); overflow:hidden; background:var(--white); box-shadow:var(--shadow-lg)}
.hero-visual img{width:100%;height:100%;object-fit:cover}
.hero-visual.is-placeholder{display:flex; align-items:center; justify-content:center;
  background:linear-gradient(140deg,var(--navy) 0%,#2C3E58 100%)}
.hero-ph{text-align:center; color:#fff; padding:28px}
.hero-ph svg{width:82px;height:82px;margin:0 auto 14px; opacity:.85; color:var(--gold)}
.hero-ph div{font-family:var(--f-head); font-size:22px}
.hero-dots{display:flex; gap:9px; justify-content:center; align-items:center; padding:0 0 26px; position:relative; z-index:3}
.hero-dot{width:32px; height:4px; border:0; border-radius:3px; background:var(--line); cursor:pointer; transition:.25s; padding:0}
.hero-dot.is-active{background:var(--copper); width:46px}
.hero-arrow{width:36px; height:36px; border-radius:50%; background:#fff; border:1px solid var(--line); cursor:pointer;
  display:flex; align-items:center; justify-content:center; color:var(--navy); box-shadow:var(--shadow-sm); transition:.18s; padding:0; flex:none}
.hero-arrow:hover{border-color:var(--copper); color:var(--copper)}
.hero-arrow svg{width:17px;height:17px}
.hero-prev{margin-right:8px} .hero-next{margin-left:8px}

/* ================================================== GÜVEN ŞERİDİ */
.trust{background:var(--white); border-bottom:1px solid var(--line)}
.trust-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:0}
.trust-item{display:flex; align-items:center; gap:14px; padding:22px 20px; border-right:1px solid var(--line-2)}
.trust-item:last-child{border-right:0}
.trust-ico{width:42px;height:42px;flex:none; border-radius:11px; background:var(--copper-light); color:var(--copper-dark);
  display:flex; align-items:center; justify-content:center}
.trust-ico svg{width:21px;height:21px}
.trust-txt strong{display:block; font-size:15.5px; font-weight:600; color:var(--navy)}
.trust-txt span{font-size:14.5px; color:var(--muted)}

/* ================================================== BÖLÜM BAŞLIĞI */
.section{padding:58px 0}
.section-sm{padding:40px 0}
.section-alt{background:var(--white)}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:20px; margin-bottom:32px; flex-wrap:wrap}
.section-head .eyebrow{display:block; font-size:14px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--copper); margin-bottom:8px}
.section-head h2{margin:0}
.section-head p{margin:7px 0 0; color:var(--muted); font-size:16px; max-width:560px}
.link-more{display:inline-flex; align-items:center; gap:7px; font-size:15.5px; font-weight:600; color:var(--navy); white-space:nowrap}
.link-more:hover{color:var(--copper)}
.link-more svg{width:16px;height:16px; transition:transform .18s}
.link-more:hover svg{transform:translateX(3px)}

/* ================================================== KATEGORİ KARTLARI */
.cat-grid{display:grid; grid-template-columns:repeat(auto-fill,minmax(212px,1fr)); gap:18px}
.cat-card{position:relative; display:flex; flex-direction:column; background:var(--white); border:1px solid var(--line);
  border-radius:var(--r-lg); overflow:hidden; transition:.22s; min-height:196px}
.cat-card:hover{transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:var(--copper)}
.cat-card-img{aspect-ratio:16/10; background:var(--cream-2); display:flex; align-items:center; justify-content:center; overflow:hidden}
.cat-card-img img{width:100%;height:100%;object-fit:cover; transition:transform .4s}
.cat-card:hover .cat-card-img img{transform:scale(1.05)}
.cat-card-img .ph{color:var(--copper); opacity:.35}
.cat-card-img .ph svg{width:52px;height:52px}
.cat-card-body{padding:15px 17px 17px}
.cat-card h3{font-size:17.5px; margin:0 0 4px; font-family:var(--f-body); font-weight:600}
.cat-card span{display:block; font-size:14.5px; color:var(--muted); line-height:1.5}
.cat-card .count{display:inline-block; margin-top:10px; font-size:13.5px; font-weight:600; color:var(--copper-dark);
  background:var(--copper-light); padding:3px 9px; border-radius:20px}

/* ================================================== ÜRÜN KARTI */
.product-grid{display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:20px}
.product-grid.cols-4{grid-template-columns:repeat(4,1fr)}
.pcard{display:flex; flex-direction:column; background:var(--white); border:1px solid var(--line);
  border-radius:var(--r-lg); overflow:hidden; transition:.22s; position:relative}
.pcard:hover{transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:var(--cream-3)}
.pcard-media{position:relative; aspect-ratio:1/1; background:var(--white); overflow:hidden; display:block}
.pcard-media img{width:100%;height:100%;object-fit:contain; padding:12px; transition:transform .4s}
.pcard:hover .pcard-media img{transform:scale(1.045)}
.pcard-labels{position:absolute; top:11px; left:11px; display:flex; flex-direction:column; gap:5px; z-index:2}
.lbl{font-size:12.5px; font-weight:700; letter-spacing:.6px; text-transform:uppercase; padding:4px 9px; border-radius:4px; color:#fff}
.lbl-new{background:var(--navy)}
.lbl-hot{background:var(--copper)}
.lbl-gift{background:var(--gold); color:var(--navy)}
.lbl-out{background:var(--muted)}
.pcard-quick{position:absolute; top:11px; right:11px; z-index:2; display:flex; flex-direction:column; gap:6px;
  opacity:0; transform:translateX(8px); transition:.22s}
.pcard:hover .pcard-quick{opacity:1; transform:none}
.pquick{width:36px;height:36px; border-radius:50%; background:#fff; border:1px solid var(--line); display:flex;
  align-items:center; justify-content:center; color:var(--navy); box-shadow:var(--shadow-sm)}
.pquick:hover{background:var(--copper); border-color:var(--copper); color:#fff}
.pquick.wa:hover{background:var(--wa); border-color:var(--wa)}
.pquick svg{width:16px;height:16px}
.pcard-body{padding:14px 15px 16px; display:flex; flex-direction:column; flex:1}
.pcard-cat{font-size:13px; font-weight:600; letter-spacing:.9px; text-transform:uppercase; color:var(--muted-2); margin-bottom:6px}
.pcard-title{font-size:16px; font-weight:500; line-height:1.42; color:var(--navy); margin:0 0 4px; min-height:41px;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden}
.pcard:hover .pcard-title{color:var(--copper-dark)}
.pcard-sku{font-size:13.5px; color:var(--muted-2); margin-bottom:9px}
.pcard-variants{font-size:13.5px; color:var(--copper-dark); background:var(--copper-light); display:inline-block;
  padding:2px 8px; border-radius:20px; margin-bottom:9px; align-self:flex-start}
.pcard-price{margin-top:auto; padding-top:6px}
.pcard-price .amount{font-size:19px; font-weight:700; color:var(--navy); letter-spacing:-.3px}
.pcard-price .from{font-size:13.5px; color:var(--muted); display:block; margin-bottom:1px}
.pcard-price .tax-note{font-size:13px; color:var(--muted-2); display:block; margin-top:1px}
.pcard-actions{display:grid; grid-template-columns:1fr auto auto; gap:6px; margin-top:12px}
.pcard-actions .btn{padding:11px 10px; font-size:15.5px}
.pcard-actions .btn-icon{padding:11px 12px; width:auto}
.pcard-actions .btn-icon svg{margin:0}
.pcard-stock{font-size:13.5px; margin-top:8px; display:flex; align-items:center; gap:6px; color:var(--success)}
.pcard-stock .dot{width:6px;height:6px;border-radius:50%;background:var(--success)}
.pcard-stock.is-out{color:var(--warn)}
.pcard-stock.is-out .dot{background:var(--warn)}

/* ================================================== BANNER ŞERİDİ */
.banner-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
.banner{position:relative; min-height:168px; border-radius:var(--r-lg); overflow:hidden; display:flex;
  align-items:flex-end; padding:24px; color:#fff; background:var(--navy)}
.banner img{position:absolute; inset:0; width:100%;height:100%;object-fit:cover; z-index:0}
.banner::after{content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(27,42,65,.85) 0%,rgba(27,42,65,.25) 100%); z-index:1}
.banner-body{position:relative; z-index:2}
.banner h3{color:#fff; font-size:21px; margin:0 0 4px}
.banner span{font-size:15.5px; opacity:.88}
.banner:hover{color:#fff}
.banner:hover img{transform:scale(1.04)}
.banner img{transition:transform .5s}

/* ================================================== BREADCRUMB */
.crumbs{padding:15px 0; font-size:15px; color:var(--muted)}
.crumbs ol{list-style:none; margin:0; padding:0; display:flex; flex-wrap:wrap; align-items:center; gap:7px}
.crumbs a{color:var(--muted)}
.crumbs a:hover{color:var(--copper)}
.crumbs li:not(:last-child)::after{content:"/"; margin-left:7px; color:var(--line)}
.crumbs li:last-child{color:var(--navy); font-weight:500}

/* ================================================== KATALOG */
.catalog{display:grid; grid-template-columns:262px 1fr; gap:30px; align-items:start; padding-bottom:60px}
.filters{background:var(--white); border:1px solid var(--line); border-radius:var(--r-lg); padding:6px 0; position:sticky; top:calc(var(--head-h) + 14px)}
.filter-block{padding:16px 18px; border-bottom:1px solid var(--line-2)}
.filter-block:last-child{border-bottom:0}
.filter-block h4{font-family:var(--f-body); font-size:14.5px; font-weight:700; letter-spacing:1.2px; text-transform:uppercase;
  color:var(--muted); margin:0 0 12px}
.filter-list{list-style:none; margin:0; padding:0; max-height:330px; overflow-y:auto}
.filter-list li{margin-bottom:2px}
.filter-list a{display:flex; justify-content:space-between; align-items:center; gap:8px; padding:7px 9px;
  border-radius:var(--r-sm); font-size:15.8px; color:var(--navy-soft)}
.filter-list a:hover{background:var(--cream); color:var(--copper-dark)}
.filter-list a.is-active{background:var(--copper-light); color:var(--copper-dark); font-weight:600}
.filter-list .n{font-size:13.5px; color:var(--muted-2)}
.filter-list .sub{list-style:none; padding-left:12px; margin:2px 0}
.filter-list .sub a{font-size:15px; color:var(--muted)}
.price-filter{display:flex; gap:8px; align-items:center}
.price-filter input{width:100%; padding:9px 10px; border:1px solid var(--line); border-radius:var(--r-sm); font-size:15.5px; min-width:0}
.price-filter span{color:var(--muted-2)}

.catalog-head{display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:20px; flex-wrap:wrap}
.catalog-head h1{margin:0; font-size:clamp(23px,3vw,31px)}
.catalog-head .cnt{font-size:15.5px; color:var(--muted); margin-top:4px}
.catalog-tools{display:flex; align-items:center; gap:10px; margin-left:auto}
.select{appearance:none; background:#fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7688' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 11px center/15px;
  border:1px solid var(--line); border-radius:var(--r); padding:10px 34px 10px 13px; font-size:15.8px; cursor:pointer; color:var(--navy)}
.select:focus{outline:none; border-color:var(--copper)}
.filter-toggle{display:none}
.cat-desc{background:var(--white); border:1px solid var(--line); border-radius:var(--r-lg); padding:18px 22px; margin-bottom:22px;
  font-size:16px; color:var(--navy-soft)}
.subcat-chips{display:flex; gap:9px; flex-wrap:wrap; margin-bottom:22px}
.chip{display:inline-flex; align-items:center; gap:7px; padding:8px 15px; background:var(--white); border:1px solid var(--line);
  border-radius:99px; font-size:15.5px; color:var(--navy); font-weight:500}
.chip:hover,.chip.is-active{background:var(--navy); border-color:var(--navy); color:#fff}
.chip .n{font-size:13.5px; opacity:.6}

.empty{text-align:center; padding:60px 20px; background:var(--white); border:1px solid var(--line); border-radius:var(--r-lg)}
.empty svg{width:56px;height:56px;color:var(--line); margin:0 auto 14px}
.empty h3{margin-bottom:6px}
.empty p{color:var(--muted); margin-bottom:18px}

/* Sayfalama */
.pagination{display:flex; gap:6px; justify-content:center; align-items:center; margin-top:36px; flex-wrap:wrap}
.pg{min-width:40px; height:40px; padding:0 12px; display:inline-flex; align-items:center; justify-content:center;
  background:var(--white); border:1px solid var(--line); border-radius:var(--r-sm); color:var(--navy); font-size:15.5px; font-weight:500}
.pg:hover{border-color:var(--copper); color:var(--copper)}
.pg.is-active{background:var(--navy); border-color:var(--navy); color:#fff}
.pg-dots{color:var(--muted-2); padding:0 4px}

/* ================================================== ÜRÜN DETAY */
.pdp{display:grid; grid-template-columns:1.02fr .98fr; gap:46px; padding:12px 0 56px; align-items:start}
.gallery-main{position:relative; background:var(--white); border:1px solid var(--line); border-radius:var(--r-lg);
  aspect-ratio:1/1; overflow:hidden; display:flex; align-items:center; justify-content:center}
.gallery-main img{width:100%;height:100%;object-fit:contain; padding:22px; cursor:zoom-in}
.gallery-thumbs{display:flex; gap:10px; margin-top:12px; flex-wrap:wrap}
.gthumb{width:76px; height:76px; border:1.5px solid var(--line); border-radius:var(--r); overflow:hidden;
  background:#fff; cursor:pointer; padding:0; flex:none; transition:.18s}
.gthumb img{width:100%;height:100%;object-fit:contain; padding:6px}
.gthumb:hover{border-color:var(--copper-light)}
.gthumb.is-active{border-color:var(--copper); box-shadow:0 0 0 3px rgba(181,118,58,.14)}

.pdp-info h1{font-size:clamp(23px,3vw,32px); margin-bottom:10px; letter-spacing:-.4px}
.pdp-meta{display:flex; align-items:center; gap:16px; flex-wrap:wrap; font-size:15px; color:var(--muted); margin-bottom:18px}
.pdp-meta .sep{width:1px;height:14px;background:var(--line)}
.pdp-meta b{color:var(--navy); font-weight:600}
.pdp-short{font-size:16.5px; color:var(--navy-soft); background:var(--white); border-left:3px solid var(--gold);
  padding:14px 18px; border-radius:0 var(--r) var(--r) 0; margin-bottom:22px}

.pdp-price-box{background:var(--white); border:1px solid var(--line); border-radius:var(--r-lg); padding:22px; margin-bottom:18px}
.pdp-price{display:flex; align-items:baseline; gap:12px; flex-wrap:wrap}
.pdp-price .amount{font-size:35px; font-weight:700; color:var(--navy); letter-spacing:-1px; line-height:1}
.pdp-price .tax{font-size:15px; color:var(--muted)}
.pdp-price-note{font-size:14.5px; color:var(--muted); margin-top:7px}
.pdp-stock{display:inline-flex; align-items:center; gap:7px; font-size:15.5px; font-weight:500; margin-top:14px;
  padding:6px 13px; border-radius:20px; background:var(--success-bg); color:var(--success)}
.pdp-stock.is-out{background:var(--warn-bg); color:var(--warn)}
.pdp-stock .dot{width:7px;height:7px;border-radius:50%;background:currentColor}

.variant-box{margin:20px 0}
.variant-box label.lbl-title{display:block; font-size:14.5px; font-weight:700; letter-spacing:1.1px; text-transform:uppercase;
  color:var(--muted); margin-bottom:10px}
.variant-opts{display:flex; gap:9px; flex-wrap:wrap}
.variant-opt{position:relative}
.variant-opt input{position:absolute; opacity:0; width:0; height:0}
.variant-opt span{display:flex; flex-direction:column; gap:2px; padding:10px 16px; border:1.5px solid var(--line);
  border-radius:var(--r); font-size:15.5px; cursor:pointer; background:#fff; transition:.18s; min-width:92px}
.variant-opt span small{font-size:14px; color:var(--copper-dark); font-weight:600}
.variant-opt input:checked + span{border-color:var(--copper); background:var(--copper-light); box-shadow:0 0 0 3px rgba(181,118,58,.12)}
.variant-opt input:disabled + span{opacity:.45; cursor:not-allowed; text-decoration:line-through}
.variant-opt span:hover{border-color:var(--copper-light)}

.qty-row{display:flex; align-items:center; gap:14px; margin:20px 0}
.qty{display:inline-flex; align-items:center; border:1.5px solid var(--line); border-radius:var(--r); overflow:hidden; background:#fff}
.qty button{width:42px; height:46px; border:0; background:none; font-size:19px; color:var(--navy); cursor:pointer; transition:.15s}
.qty button:hover{background:var(--cream-2); color:var(--copper)}
.qty input{width:54px; height:46px; border:0; border-left:1px solid var(--line); border-right:1px solid var(--line);
  text-align:center; font-size:17px; font-weight:600; -moz-appearance:textfield}
.qty input::-webkit-outer-spin-button,.qty input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
.qty-unit{font-size:15.5px; color:var(--muted)}

.pdp-actions{display:grid; grid-template-columns:1fr; gap:10px; margin-bottom:20px}
.pdp-actions .btn{padding:15px 24px; font-size:17px}
.pdp-actions-row{display:grid; grid-template-columns:1fr 1fr; gap:10px}

.pdp-assure{display:grid; gap:12px; background:var(--white); border:1px solid var(--line); border-radius:var(--r-lg); padding:18px 20px}
.assure-item{display:flex; gap:12px; align-items:flex-start; font-size:15.5px; color:var(--navy-soft)}
.assure-item svg{width:19px;height:19px;color:var(--copper); flex:none; margin-top:2px}
.assure-item b{color:var(--navy); font-weight:600}

/* Sekmeler */
.tabs{margin-top:20px; background:var(--white); border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden}
.tab-nav{display:flex; border-bottom:1px solid var(--line); overflow-x:auto}
.tab-btn{padding:16px 24px; border:0; background:none; font-size:16px; font-weight:600; color:var(--muted);
  cursor:pointer; border-bottom:2.5px solid transparent; white-space:nowrap; transition:.18s}
.tab-btn:hover{color:var(--navy)}
.tab-btn.is-active{color:var(--copper); border-bottom-color:var(--copper)}
.tab-panel{display:none; padding:28px 30px}
.tab-panel.is-active{display:block}
.prose{font-size:16.5px; color:var(--navy-soft); line-height:1.75; max-width:820px}
.prose h3{font-family:var(--f-body); font-size:17px; font-weight:700; color:var(--navy); margin:22px 0 10px}
.prose h3:first-child{margin-top:0}
.prose p strong{color:var(--navy)}
.prose ul,.prose ol{padding-left:20px; margin:0 0 14px}
.prose li{margin-bottom:6px}
.prose table{width:100%; border-collapse:collapse; margin:14px 0}
.prose td,.prose th{padding:9px 12px; border:1px solid var(--line); text-align:left; font-size:15.5px}
.prose th{background:var(--cream); font-weight:600}
.prose img{border-radius:var(--r); margin:12px 0}
.prose .product-desc > p:first-child{margin-top:0}

/* ================================================== SEPET */
.cart-wrap{display:grid; grid-template-columns:1fr 348px; gap:28px; align-items:start; padding:12px 0 60px}
.cart-list{background:var(--white); border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden}
.cart-item{display:grid; grid-template-columns:96px 1fr auto; gap:18px; padding:18px 20px; border-bottom:1px solid var(--line-2); align-items:center}
.cart-item:last-child{border-bottom:0}
.cart-item-img{width:96px;height:96px;border:1px solid var(--line); border-radius:var(--r); overflow:hidden; background:#fff}
.cart-item-img img{width:100%;height:100%;object-fit:contain; padding:7px}
.cart-item-name{font-size:16.5px; font-weight:500; color:var(--navy); margin-bottom:3px; display:block}
.cart-item-name:hover{color:var(--copper)}
.cart-item-meta{font-size:14.5px; color:var(--muted)}
.cart-item-var{display:inline-block; font-size:14px; background:var(--copper-light); color:var(--copper-dark);
  padding:2px 9px; border-radius:20px; margin-top:6px}
.cart-item-right{text-align:right; display:flex; flex-direction:column; align-items:flex-end; gap:10px}
.cart-item-price{font-size:18px; font-weight:700; color:var(--navy); white-space:nowrap}
.cart-item-unit{font-size:14px; color:var(--muted)}
.cart-qty{display:inline-flex; align-items:center; border:1px solid var(--line); border-radius:var(--r-sm); overflow:hidden}
.cart-qty button{width:32px;height:34px;border:0;background:none;cursor:pointer;color:var(--navy);font-size:17px}
.cart-qty button:hover{background:var(--cream-2)}
.cart-qty input{width:42px;height:34px;border:0;border-left:1px solid var(--line);border-right:1px solid var(--line);
  text-align:center;font-size:15.5px;font-weight:600;-moz-appearance:textfield}
.cart-qty input::-webkit-outer-spin-button,.cart-qty input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
.cart-remove{border:0;background:none;color:var(--muted-2);cursor:pointer;font-size:14.5px;display:inline-flex;align-items:center;gap:5px;padding:2px 0}
.cart-remove:hover{color:var(--danger)}
.cart-remove svg{width:14px;height:14px}

.summary{background:var(--white); border:1px solid var(--line); border-radius:var(--r-lg); padding:22px; position:sticky; top:calc(var(--head-h) + 14px)}
.summary h3{font-family:var(--f-body); font-size:17px; font-weight:700; margin:0 0 16px; padding-bottom:14px; border-bottom:1px solid var(--line-2)}
.summary-row{display:flex; justify-content:space-between; align-items:center; font-size:16px; color:var(--navy-soft); margin-bottom:11px}
.summary-row.total{margin-top:16px; padding-top:16px; border-top:2px solid var(--navy); font-size:18px; font-weight:700; color:var(--navy)}
.summary-row.total .v{font-size:23px; color:var(--copper-dark); letter-spacing:-.5px}
.summary-note{font-size:14.5px; color:var(--muted); background:var(--cream); border-radius:var(--r); padding:12px 14px; margin:16px 0}
.summary .btn{margin-top:4px}

.notice{display:flex; gap:12px; align-items:flex-start; padding:15px 18px; border-radius:var(--r); font-size:15.5px; margin-bottom:20px}
.notice svg{width:20px;height:20px;flex:none;margin-top:1px}
.notice-info{background:#EAF1FA; color:#1F4E79}
.notice-warn{background:var(--warn-bg); color:var(--warn)}
.notice-ok{background:var(--success-bg); color:var(--success)}
.notice-err{background:var(--danger-bg); color:var(--danger)}
.notice b{font-weight:600}

/* ================================================== FORMLAR */
.form-page{max-width:560px; margin:0 auto; padding:34px 0 64px}
.form-page.wide{max-width:900px}
.card{background:var(--white); border:1px solid var(--line); border-radius:var(--r-lg); padding:30px}
.card-head{text-align:center; margin-bottom:26px}
.card-head h1{font-size:27px; margin-bottom:6px}
.card-head p{color:var(--muted); font-size:16px; margin:0}
.fgroup{margin-bottom:17px}
.fgroup label{display:block; font-size:15px; font-weight:600; color:var(--navy); margin-bottom:7px}
.fgroup label .req{color:var(--danger)}
.fgroup .hint{font-size:14px; color:var(--muted); margin-top:5px}
.input,.textarea,select.input{width:100%; padding:12.5px 15px; border:1.5px solid var(--line); border-radius:var(--r);
  font-size:16.3px; background:#fff; transition:.18s}
.input:focus,.textarea:focus{outline:none; border-color:var(--copper); box-shadow:0 0 0 4px rgba(181,118,58,.1)}
.input.is-error{border-color:var(--danger)}
.textarea{min-height:128px; resize:vertical; font-family:inherit}
select.input{appearance:none; background:#fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7688' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 13px center/16px; padding-right:40px; cursor:pointer}
.frow{display:grid; grid-template-columns:1fr 1fr; gap:15px}
.check{display:flex; gap:10px; align-items:flex-start; font-size:15.8px; color:var(--navy-soft); cursor:pointer; margin-bottom:11px; line-height:1.5}
.check input{width:18px;height:18px;margin:1px 0 0; accent-color:var(--copper); cursor:pointer; flex:none}
.form-err{font-size:14.5px; color:var(--danger); margin-top:5px}
.form-foot{text-align:center; margin-top:20px; font-size:15.5px; color:var(--muted)}
.divider{display:flex; align-items:center; gap:14px; margin:22px 0; color:var(--muted-2); font-size:14.5px}
.divider::before,.divider::after{content:""; flex:1; height:1px; background:var(--line)}
.radio-cards{display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:6px}
.radio-card{position:relative}
.radio-card input{position:absolute;opacity:0;width:0;height:0}
.radio-card span{display:block; padding:14px 16px; border:1.5px solid var(--line); border-radius:var(--r); cursor:pointer;
  font-size:16px; font-weight:500; text-align:center; transition:.18s; background:#fff}
.radio-card input:checked + span{border-color:var(--copper); background:var(--copper-light); color:var(--copper-dark); font-weight:600}

/* ================================================== HESABIM */
.account{display:grid; grid-template-columns:238px 1fr; gap:28px; align-items:start; padding:14px 0 64px}
.acc-nav{background:var(--white); border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden}
.acc-user{padding:20px; background:var(--navy); color:#fff}
.acc-user strong{display:block; font-size:17px}
.acc-user span{font-size:14.5px; opacity:.72}
.acc-nav ul{list-style:none;margin:0;padding:8px}
.acc-nav a{display:flex; align-items:center; gap:11px; padding:11px 13px; border-radius:var(--r-sm);
  font-size:15.5px; color:var(--navy-soft); font-weight:500}
.acc-nav a:hover{background:var(--cream)}
.acc-nav a.is-active{background:var(--copper-light); color:var(--copper-dark)}
.acc-nav svg{width:17px;height:17px;flex:none;opacity:.7}
.acc-nav a.danger{color:var(--danger)}
.panel{background:var(--white); border:1px solid var(--line); border-radius:var(--r-lg); padding:26px 28px}
.panel-head{display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:22px; padding-bottom:16px; border-bottom:1px solid var(--line-2); flex-wrap:wrap}
.panel-head h1,.panel-head h2{margin:0; font-size:21px; font-family:var(--f-body); font-weight:700}

.table{width:100%; border-collapse:collapse; font-size:15.5px}
.table th{text-align:left; padding:11px 12px; font-size:13.5px; font-weight:700; letter-spacing:.9px; text-transform:uppercase;
  color:var(--muted); background:var(--cream); border-bottom:1px solid var(--line)}
.table td{padding:13px 12px; border-bottom:1px solid var(--line-2); vertical-align:middle}
.table tr:last-child td{border-bottom:0}
.table tbody tr:hover{background:var(--cream)}
.table .right{text-align:right}
.table .center{text-align:center}

.badge{display:inline-flex; align-items:center; gap:5px; padding:4px 11px; border-radius:20px; font-size:14px; font-weight:600}
.badge-yeni{background:#EAF1FA; color:#1F4E79}
.badge-onaylandi{background:var(--success-bg); color:var(--success)}
.badge-hazirlaniyor{background:var(--warn-bg); color:var(--warn)}
.badge-kargolandi{background:var(--copper-light); color:var(--copper-dark)}
.badge-tamamlandi{background:#E6EAF0; color:var(--navy)}
.badge-iptal{background:var(--danger-bg); color:var(--danger)}

/* ================================================== SAYFA BAŞLIĞI */
.page-hero{background:linear-gradient(135deg,var(--navy) 0%,#2C3E58 100%); color:#fff; padding:42px 0}
.page-hero h1{color:#fff; margin:0}
.page-hero p{color:rgba(255,255,255,.75); margin:9px 0 0; font-size:17px; max-width:640px}

/* ================================================== İLETİŞİM */
.contact-grid{display:grid; grid-template-columns:1fr 380px; gap:30px; align-items:start; padding:34px 0 64px}
.contact-cards{display:grid; gap:14px}
.ccard{display:flex; gap:15px; background:var(--white); border:1px solid var(--line); border-radius:var(--r-lg); padding:19px}
.ccard-ico{width:44px;height:44px;flex:none; border-radius:12px; background:var(--copper-light); color:var(--copper-dark);
  display:flex; align-items:center; justify-content:center}
.ccard-ico svg{width:20px;height:20px}
.ccard strong{display:block; font-size:14px; letter-spacing:1.1px; text-transform:uppercase; color:var(--muted); margin-bottom:4px}
.ccard a,.ccard span{font-size:17px; color:var(--navy); font-weight:500}
.ccard a:hover{color:var(--copper)}

/* ================================================== FOOTER */
.footer{background:var(--navy); color:#B8C2D0; margin-top:auto}
.footer-top{padding:50px 0 38px}
.footer-grid{display:grid; grid-template-columns:1.5fr 1fr 1fr 1.3fr; gap:38px}
.footer h4{color:#fff; font-family:var(--f-body); font-size:14.5px; font-weight:700; letter-spacing:1.5px;
  text-transform:uppercase; margin:0 0 16px}
.footer ul{list-style:none;margin:0;padding:0}
.footer li{margin-bottom:9px}
.footer a{color:#B8C2D0; font-size:15.5px}
.footer a:hover{color:var(--gold)}
.footer-about .logo-text{color:#fff; font-size:25px}
.footer-about .logo-text span{color:var(--gold)}
.footer-about p{font-size:15.8px; line-height:1.75; margin:14px 0 18px; color:#95A1B3}
.footer-contact li{display:flex; gap:11px; align-items:flex-start; font-size:15.5px; margin-bottom:12px}
.footer-contact svg{width:17px;height:17px;color:var(--gold);flex:none;margin-top:3px}
.social{display:flex; gap:9px; margin-top:6px}
.social a{width:38px;height:38px;border-radius:10px; background:rgba(255,255,255,.08); display:flex; align-items:center;
  justify-content:center; color:#fff; transition:.18s}
.social a:hover{background:var(--copper); color:#fff; transform:translateY(-2px)}
.social svg{width:17px;height:17px}
.newsletter-box{background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:var(--r-lg); padding:20px}
.newsletter-box p{font-size:15.5px; color:#95A1B3; margin:0 0 14px}
.newsletter-form{display:flex; gap:8px}
.newsletter-form input{flex:1; min-width:0; padding:11px 14px; border:1px solid rgba(255,255,255,.16); border-radius:var(--r);
  background:rgba(255,255,255,.07); color:#fff; font-size:15.8px}
.newsletter-form input::placeholder{color:#7A869A}
.newsletter-form input:focus{outline:none; border-color:var(--gold); background:rgba(255,255,255,.1)}
.newsletter-form button{padding:11px 19px; border:0; border-radius:var(--r); background:var(--copper); color:#fff;
  font-size:15.8px; font-weight:600; cursor:pointer; transition:.18s}
.newsletter-form button:hover{background:var(--copper-dark)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1); padding:20px 0}
.footer-bottom .container{display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap}
.footer-bottom p{margin:0; font-size:15px; color:#7A869A}
.footer-links{display:flex; gap:20px; flex-wrap:wrap; font-size:15px}

/* ================================================== SABİT MOBİL CTA */
.mobile-cta{display:none; position:fixed; bottom:0; left:0; right:0; z-index:500; background:#fff;
  border-top:1px solid var(--line); padding:9px 12px calc(9px + env(safe-area-inset-bottom,0px)); gap:8px; box-shadow:0 -4px 18px rgba(27,42,65,.1)}
.mobile-cta .btn{flex:1; padding:12px 8px; font-size:15.5px}

/* WhatsApp yüzen buton */
.wa-float{position:fixed; right:18px; bottom:18px; z-index:480; width:56px; height:56px; border-radius:50%;
  background:var(--wa); color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 22px rgba(37,211,102,.4); transition:.2s}
.wa-float:hover{transform:scale(1.08); color:#fff}
.wa-float svg{width:29px;height:29px}

/* ================================================== TOAST */
.toast-wrap{position:fixed; top:16px; right:16px; z-index:1000; display:flex; flex-direction:column; gap:10px; max-width:360px}
.toast{display:flex; gap:11px; align-items:flex-start; background:#fff; border:1px solid var(--line); border-left:4px solid var(--copper);
  border-radius:var(--r); padding:14px 17px; box-shadow:var(--shadow-lg); font-size:15.5px; animation:slideIn .28s ease both}
.toast.ok{border-left-color:var(--success)}
.toast.err{border-left-color:var(--danger)}
.toast.warn{border-left-color:var(--warn)}
.toast svg{width:19px;height:19px;flex:none;margin-top:1px}
.toast.ok svg{color:var(--success)} .toast.err svg{color:var(--danger)} .toast.warn svg{color:var(--warn)}
@keyframes slideIn{from{opacity:0; transform:translateX(26px)} to{opacity:1; transform:none}}

/* Lightbox */
.lightbox{position:fixed; inset:0; background:rgba(27,42,65,.93); z-index:1100; display:none; align-items:center; justify-content:center; padding:32px}
.lightbox.is-open{display:flex}
.lightbox img{max-width:92vw; max-height:88vh; object-fit:contain; border-radius:var(--r)}
.lightbox-close{position:absolute; top:22px; right:26px; width:44px;height:44px; border-radius:50%; border:0;
  background:rgba(255,255,255,.14); color:#fff; cursor:pointer; display:flex; align-items:center; justify-content:center}
.lightbox-close:hover{background:rgba(255,255,255,.26)}
.lightbox-close svg{width:22px;height:22px}

/* ================================================== RESPONSIVE */
@media (max-width:1100px){
  .catalog{grid-template-columns:1fr}
  .filters{position:static; display:none; margin-bottom:20px}
  .filters.is-open{display:block}
  .filter-toggle{display:inline-flex}
  .product-grid.cols-4{grid-template-columns:repeat(auto-fill,minmax(210px,1fr))}
  .footer-grid{grid-template-columns:1fr 1fr; gap:30px}
  .cart-wrap{grid-template-columns:1fr}
  .summary{position:static}
  .contact-grid{grid-template-columns:1fr}
  .account{grid-template-columns:1fr}
}
@media (max-width:980px){
  .pdp{grid-template-columns:1fr; gap:28px}
  .hero-grid{grid-template-columns:1fr; gap:26px}
  .hero-visual{max-height:300px}
  .trust-grid{grid-template-columns:1fr 1fr}
  .trust-item:nth-child(2){border-right:0}
  .trust-item:nth-child(-n+2){border-bottom:1px solid var(--line-2)}
  .banner-grid{grid-template-columns:1fr}
}
@media (max-width:860px){
  .nav{display:none}
  .burger{display:flex}
  .search{order:3; flex-basis:100%; max-width:none; margin-bottom:12px}
  .header-main{flex-wrap:wrap; padding-top:12px; gap:12px}
  .hact-txt{display:none}
  .hact{padding:9px}
  .cart-badge{left:24px; top:1px}
  :root{--head-h:64px}
  .header{position:static}
  .filters,.summary{position:static}
}
@media (max-width:680px){
  .container{padding:0 15px}
  .section{padding:40px 0}
  .topbar-right .tb-item:not(.tb-phone){display:none}
  .topbar .container{min-height:36px}
  .topbar-left span{display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden}
  .trust-item{flex-direction:column; align-items:flex-start; gap:9px; padding:16px 13px}
  .trust-txt strong{font-size:15.5px}
  .trust-txt span{font-size:14px}
  .product-grid{grid-template-columns:repeat(2,1fr); gap:13px}
  .product-grid.cols-4{grid-template-columns:repeat(2,1fr)}
  .pcard-body{padding:11px 12px 13px}
  .pcard-title{font-size:15.3px; min-height:37px}
  .pcard-price .amount{font-size:18px}
  .pcard-actions{grid-template-columns:1fr; gap:5px}
  .pcard-actions .btn{padding:9px; font-size:15px}
  .pcard-actions .btn-icon{display:none}
  .cat-grid{grid-template-columns:1fr 1fr; gap:12px}
  .frow{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .cart-item{grid-template-columns:72px 1fr; gap:13px; padding:15px}
  .cart-item-img{width:72px;height:72px}
  .cart-item-right{grid-column:1/-1; flex-direction:row; align-items:center; justify-content:space-between; width:100%}
  .mobile-cta{display:flex}
  .wa-float{bottom:78px; width:50px;height:50px}
  .wa-float svg{width:25px;height:25px}
  body.has-mobile-cta{padding-bottom:70px}
  .card{padding:22px 18px}
  .panel{padding:20px 17px}
  .tab-panel{padding:20px 17px}
  .pdp-actions-row{grid-template-columns:1fr}
  .radio-cards{grid-template-columns:1fr}
  .table-wrap{overflow-x:auto; -webkit-overflow-scrolling:touch}
  .table{min-width:560px}
}

/* Yazdırma */
@media print{
  .topbar,.header,.nav,.footer,.mobile-cta,.wa-float,.btn,.pagination{display:none !important}
  body{background:#fff}
  .panel,.card{border:0; padding:0}
}
