@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600;700&display=swap');

html, body { max-width: 100%; overflow-x: clip; }
img, svg, video, canvas, iframe { max-width: 100%; height: auto; }
input, select, textarea, button { max-width: 100%; }
* { box-sizing: border-box; }

/* ── CSS Variables ── */
:root {
  --header-h: 120px;
  --black:  #0a0a0a;
  --charcoal: #1c1c1c;
  --dark:   #2d2d2d;
  --mid:    #6b6b6b;
  --light:  #b0b0b0;
  --border: #e8e8e8;
  --bg:     #f9f9f9;
  --white:  #ffffff;
  --accent: #c41e3a;
  --accent2:#e8003d;
  --green:  #0a0a0a;
  --gdark:  #2d2d2d;
  --glight: #f4f4f4;
  --red:    #c41e3a;
  --gold:   #0a0a0a;
  --text:   #0a0a0a;
  --muted:  #6b6b6b;
  --navbar: #0a0a0a;
  --r: 2px;
  --sh: 0 1px 12px rgba(0,0,0,.06);
  --f: 'DM Sans', -apple-system, sans-serif;
  --fh: 'Playfair Display', Georgia, serif;
}

/* ── Reset ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--f); background: var(--bg); color: var(--black); font-size: 14px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* ── HEADER ── */
.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; transition: box-shadow .2s; }
.hdr { display: flex; align-items: center; gap: 24px; padding: 18px 0; }
.logo { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.lhrt { display: none; }
.ltxt {
  font-family: var(--fh);
  font-size: 26px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.5px;
  position: relative;
}
.ltxt::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.hsrch {
  flex: 1; min-width: 0;
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  max-width: 520px;
  transition: border-color .2s;
}
.hsrch:focus-within { border-color: var(--black); }
.hsrch input { flex: 1; min-width: 0; padding: 10px 14px; border: none; outline: none; font-size: 14px; background: var(--white); color: var(--black); }
.hsrch input::placeholder { color: var(--light); }
.hsrch button { background: var(--black); color: var(--white); border: none; padding: 0 16px; cursor: pointer; flex-shrink: 0; display: flex; align-items: center; transition: background .2s; }
.hsrch button:hover { background: var(--charcoal); }
.hact { display: flex; align-items: center; gap: 6px; margin-left: auto; flex-shrink: 0; }
.hlink { font-size: 13px; font-weight: 500; color: var(--dark); white-space: nowrap; padding: 6px 10px; transition: color .15s; }
.hlink:hover { color: var(--black); }
.siparis-link { display: inline-flex; align-items: center; gap: 5px; padding: 7px 12px; border-radius: 20px; border: 1.5px solid var(--border); transition: all .2s; font-weight: 600; }
.siparis-link:hover { color: var(--black) !important; border-color: var(--black); background: var(--bg); }
.siparis-link:hover svg { stroke: var(--black); }
.hcart { position: relative; display: flex; align-items: center; padding: 6px; transition: opacity .2s; }
.hcart:hover { opacity: .7; }
.cbdg { position: absolute; top: -4px; right: -4px; background: var(--accent); color: #fff; border-radius: 10px; font-size: 10px; font-weight: 700; min-width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; padding: 0 3px; }
.mbtn { display: none; background: none; border: none; cursor: pointer; color: var(--black); padding: 4px; flex-shrink: 0; }

/* ── NAVBAR ── */
.navbar { background: var(--black); z-index: 1000; overflow: visible; }
.nbar-outer { overflow: visible; }
.nbar { display: flex; align-items: stretch; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.nbar::-webkit-scrollbar { display: none; }
.ni { position: relative; }
.nl {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 20px;
  color: rgba(255,255,255,.82);
  font-size: 12px; font-weight: 600;
  white-space: nowrap; letter-spacing: .8px;
  text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: all .15s;
}
.nl:hover, .ni:hover > .nl { color: #fff; background: rgba(255,255,255,.07); }
.ni-icon { font-size: 14px; line-height: 1; }
.mdd {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--black);
  box-shadow: 0 16px 48px rgba(0,0,0,.14);
  z-index: 99999;
  padding: 24px 32px;
  gap: 32px;
  min-width: 480px;
  max-width: 720px;
}
.ni.has-dd:hover > .mdd { display: flex; }
.ni.has-dd > .nl::after { content: '▾'; font-size: 9px; margin-left: 4px; opacity: .5; }
.mdd-col { min-width: 170px; }
.mdd-h {
  font-size: 10px; font-weight: 700; color: var(--light);
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.mdd-col a {
  display: block; font-size: 13px; color: var(--dark);
  padding: 6px 0; line-height: 1.4;
  transition: all .15s; border-bottom: 1px solid transparent;
}
.mdd-col a:hover { color: var(--black); padding-left: 6px; }

/* ── MOBILE PANEL ── */
.mpanel { display: none; position: fixed; inset: 0; background: var(--white); z-index: 99999; overflow-y: auto; flex-direction: column; }
.mpanel.open { display: flex; }
.mpanel-hd { background: var(--black); padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 1; }
.mnav { padding-bottom: 80px; }
.mnav a { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--border); font-size: 14px; font-weight: 500; }
.mnav a:hover { background: var(--bg); color: var(--black); }
.mnav-cat { border-bottom: 1px solid var(--border); }
.mnav-cat > a.mnav-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .3px; border-bottom: none; }
.mnav-arrow { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; font-size: 14px; color: var(--mid); transition: transform .2s; cursor: pointer; flex-shrink: 0; }
.mnav-cat.mnav-open .mnav-arrow { transform: rotate(180deg); }
.mnav-subs { display: none; background: #fafafa; border-top: 1px solid var(--border); }
.mnav-cat.mnav-open .mnav-subs { display: block; }
.mnav-subs a.mnav-sub { padding: 11px 18px 11px 32px; font-size: 13px; color: var(--mid); border-bottom: 1px solid #f0f0f0; }
.mnav-subs a.mnav-sub:last-child { border-bottom: none; }
.mnav-subs a.mnav-sub:hover { color: var(--black); background: #f4f4f4; }

/* ── FLASH ── */
.flash { padding: 12px 16px; border-radius: var(--r); margin-bottom: 12px; font-size: 14px; font-weight: 500; }
.flash.success { background: #f0f4ee; color: #2d5016; border: 1px solid #c5d9b0; }
.flash.error { background: #fdf2f4; color: #7a1a28; border: 1px solid #f0b8c0; }

/* ── CIRCLES ── */
.circles-sec { background: var(--white); padding: 24px 0; border-bottom: 1px solid var(--border); }
.circles-wrap { position: relative; }
.circles-row { display: flex; gap: 6px; overflow-x: auto; padding: 8px 0 12px; scrollbar-width: none; scroll-behavior: smooth; }
.circles-row::-webkit-scrollbar { display: none; }
.ci { display: flex; flex-direction: column; align-items: center; gap: 9px; min-width: 110px; max-width: 110px; cursor: pointer; text-decoration: none; }
.ci-img {
  width: 94px; height: 94px; border-radius: 50%;
  border: 2px solid var(--border);
  overflow: hidden; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.ci:hover .ci-img { border-color: var(--black); transform: scale(1.05); box-shadow: 0 6px 20px rgba(0,0,0,.14); }
.ci-img img { width: 100%; height: 100%; object-fit: cover; }
.ci-emoji { font-size: 34px; }
.ci-lbl { font-size: 11px; font-weight: 600; text-align: center; line-height: 1.3; color: var(--dark); letter-spacing: .2px; }
.ci-arr { position: absolute; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; background: var(--white); border: 1px solid var(--border); border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,.1); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5; font-size: 16px; line-height: 1; color: var(--black); transition: all .2s; }
.ci-arr:hover { border-color: var(--black); background: var(--black); color: var(--white); }
.ci-arr.prev { left: -16px; }
.ci-arr.next { right: -16px; }

/* ── PROMO BANNERS ── */
.promos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 24px 0; }
.pb { border-radius: 0; overflow: hidden; display: block; height: 220px; position: relative; }
.pb img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.7); transition: filter .3s; }
.pb:hover img { filter: brightness(.85); }
.pb-txt { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; background: linear-gradient(0deg, rgba(0,0,0,.55) 0%, transparent 60%); }
.pb-txt h2 { font-family: var(--fh); font-size: 26px; font-weight: 700; color: #fff; line-height: 1.2; }
.pb.p1 { background: #1a1a1a; }
.pb.p2 { background: #2d2d2d; }

/* ── SECTION ── */
.sec { padding: 28px 0; }
.sec-hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; border-bottom: 2px solid var(--black); padding-bottom: 10px; }
.sec-ttl { font-family: var(--fh); font-size: 22px; font-weight: 700; letter-spacing: -.3px; }
.sec-more { font-size: 12px; color: var(--mid); font-weight: 600; letter-spacing: .5px; text-transform: uppercase; transition: color .15s; }
.sec-more:hover { color: var(--black); }

/* ── PRODUCT GRID ── */
.pgrid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.pc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all .25s;
  overflow: hidden;
}
.pc:hover { border-color: var(--black); box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-2px); }
.pc-img { width: 100%; aspect-ratio: 1; overflow: hidden; background: var(--bg); position: relative; display: flex; align-items: center; justify-content: center; }
.pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.pc:hover .pc-img img { transform: scale(1.06); }
.pc-ph { font-size: 56px; opacity: .2; }
.pc-bdg { position: absolute; top: 10px; left: 10px; background: var(--accent); color: var(--white); font-size: 10px; font-weight: 700; padding: 3px 8px; letter-spacing: .5px; text-transform: uppercase; border-radius: 4px; }
.pc-info { padding: 14px; }
.pc-name { font-size: 13px; color: var(--dark); margin-bottom: 10px; min-height: 36px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.45; font-weight: 500; }
.pc-price { font-size: 22px; font-weight: 700; color: var(--black); line-height: 1; font-family: var(--fh); }
.pc-price sup { font-size: 13px; }
.pc-unit { font-size: 11px; color: var(--light); }
.pc-kdv { font-size: 11px; color: var(--light); margin: 4px 0 8px; }
.pc-del { font-size: 12px; color: var(--mid); font-weight: 500; display: flex; align-items: center; gap: 4px; }
.pc-del svg { flex-shrink: 0; }
.pc-add {
  width: 100%; padding: 10px;
  background: var(--black); color: var(--white);
  border: 1.5px solid var(--black);
  border-radius: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase;
  cursor: pointer; margin-top: 10px; transition: all .2s;
}
.pc-add:hover { background: var(--white); color: var(--black); }
.pc-out {
  width: 100%; padding: 10px;
  background: transparent; color: var(--light);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 12px; margin-top: 10px; text-align: center; letter-spacing: .5px;
}

/* ── NEWSLETTER ── */
.nlsec { background: var(--black); padding: 48px 0; margin-top: 32px; }
.nlin { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.nltxt h3 { font-family: var(--fh); font-size: 24px; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.nltxt p { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 18px; }
.nlform { display: flex; border: 1.5px solid rgba(255,255,255,.2); overflow: hidden; }
.nlform input { flex: 1; padding: 12px 16px; border: none; outline: none; font-size: 14px; background: transparent; color: var(--white); }
.nlform input::placeholder { color: rgba(255,255,255,.35); }
.nlform button { background: var(--white); color: var(--black); border: none; padding: 12px 22px; font-size: 12px; font-weight: 700; cursor: pointer; letter-spacing: .8px; text-transform: uppercase; white-space: nowrap; transition: background .2s; }
.nlform button:hover { background: var(--border); }
.nlsoc h3 { font-family: var(--fh); font-size: 20px; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.nlsoc p { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.sicons { display: flex; gap: 10px; }
.sicon { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 16px; font-weight: 700; text-decoration: none; transition: all .2s; }
.sicon:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* ── FOOTER ── */
.site-footer { background: var(--white); border-top: 2px solid var(--black); padding: 40px 0 0; }
.fgrid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; padding-bottom: 32px; }
.fcol h4 { font-size: 12px; font-weight: 700; margin-bottom: 14px; letter-spacing: 1px; text-transform: uppercase; border-bottom: 1px solid var(--border); padding-bottom: 8px; }
.fcol ul li { margin-bottom: 8px; }
.fcol ul li a { font-size: 13px; color: var(--mid); transition: color .15s; }
.fcol ul li a:hover { color: var(--black); }
.fbot { border-top: 1px solid var(--border); padding: 20px 0; text-align: center; }
.flogo { display: flex; align-items: center; justify-content: center; gap: 5px; margin-bottom: 6px; }
.fcp { font-size: 12px; color: var(--light); }

/* ── PAGE HEADER ── */
.phdr { background: var(--white); padding: 20px 0; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.bc { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--light); margin-bottom: 6px; letter-spacing: .2px; }
.bc a { color: var(--mid); }
.bc a:hover { color: var(--black); }
.pttl { font-family: var(--fh); font-size: 28px; font-weight: 700; letter-spacing: -.5px; }
.psubt { color: var(--mid); font-size: 13px; margin-top: 4px; }

/* ── FILTER BAR, CART, CHECKOUT, SUCCESS, PRODUCT DETAIL ── */
.fbar { background: var(--white); border: 1px solid var(--border); padding: 12px 16px; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.fbar label { font-size: 12px; font-weight: 700; color: var(--mid); text-transform: uppercase; letter-spacing: .5px; }
.fsel { padding: 7px 10px; border: 1.5px solid var(--border); font-size: 13px; background: var(--white); cursor: pointer; transition: border-color .2s; }
.fsel:focus { outline: none; border-color: var(--black); }
.cart-layout { display: grid; grid-template-columns: 1fr 320px; gap: 20px; }
.cart-table { background: var(--white); border: 1px solid var(--border); }
.cart-table table { width: 100%; border-collapse: collapse; }
.cart-table th { background: var(--bg); padding: 10px 14px; font-size: 11px; font-weight: 700; text-align: left; color: var(--mid); text-transform: uppercase; letter-spacing: .6px; border-bottom: 1px solid var(--border); }
.cart-table td { padding: 12px 14px; border-top: 1px solid var(--border); font-size: 13px; vertical-align: middle; }
.cart-item-img { width: 52px; height: 52px; object-fit: cover; }
.qty-control { display: flex; align-items: center; gap: 6px; }
.qty-btn { width: 28px; height: 28px; border: 1.5px solid var(--border); background: var(--white); font-size: 15px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .15s; }
.qty-btn:hover { border-color: var(--black); background: var(--black); color: var(--white); }
.qty-val { font-weight: 700; width: 24px; text-align: center; }
.cart-summary { background: var(--white); border: 1px solid var(--border); padding: 20px; height: fit-content; position: sticky; top: calc(var(--header-h) + 16px); }
.cart-summary h3 { font-family: var(--fh); font-size: 16px; font-weight: 700; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; font-size: 13px; padding: 6px 0; color: var(--mid); }
.summary-row.total { font-weight: 700; font-size: 18px; padding-top: 12px; border-top: 2px solid var(--black); margin-top: 8px; color: var(--black); }
.btn-checkout { width: 100%; padding: 14px; background: var(--black); color: var(--white); border: none; font-size: 13px; font-weight: 700; cursor: pointer; margin-top: 14px; letter-spacing: .8px; text-transform: uppercase; transition: background .2s; }
.btn-checkout:hover { background: var(--charcoal); }
.checkout-layout { display: grid; grid-template-columns: 1fr 320px; gap: 20px; }
.cfbox { background: var(--white); border: 1px solid var(--border); padding: 24px; }
.cfbox h2 { font-family: var(--fh); font-size: 18px; font-weight: 700; margin-bottom: 18px; }
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 5px; color: var(--mid); text-transform: uppercase; letter-spacing: .4px; }
.fg input, .fg textarea, .fg select { width: 100%; padding: 10px 12px; border: 1.5px solid var(--border); font-size: 14px; background: var(--white); transition: border-color .2s; }
.fg input:focus, .fg textarea:focus, .fg select:focus { outline: none; border-color: var(--black); }
.fgrid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sbox { max-width: 560px; margin: 56px auto; background: var(--white); border: 1px solid var(--border); padding: 48px; text-align: center; }
.sbox h1 { font-family: var(--fh); font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.sbox p { color: var(--mid); margin-bottom: 16px; }
.btn-primary { display: inline-flex; align-items: center; gap: 6px; background: var(--black); color: var(--white); padding: 11px 24px; font-weight: 700; font-size: 13px; border: none; cursor: pointer; letter-spacing: .5px; text-transform: uppercase; transition: background .2s; }
.btn-primary:hover { background: var(--charcoal); }
.pdlay { display: grid; grid-template-columns: 1fr 440px; gap: 32px; padding: 24px 0; }
.pd-img { overflow: hidden; background: var(--bg); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.pd-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-info h1 { font-family: var(--fh); font-size: 26px; font-weight: 700; margin-bottom: 10px; line-height: 1.2; }
.pd-desc { font-size: 14px; color: var(--mid); margin-bottom: 20px; line-height: 1.7; }
.pd-price { font-family: var(--fh); font-size: 42px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.pd-price sup { font-size: 20px; }
.pd-kdv { font-size: 12px; color: var(--light); margin-bottom: 20px; }
.btn-order { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--accent); color: var(--white); border: none; padding: 16px 32px; font-size: 14px; font-weight: 700; cursor: pointer; width: 100%; letter-spacing: .5px; text-transform: uppercase; transition: all .2s; }
.btn-order:hover { background: var(--accent2); }

/* ── HERO SLIDER ── */
.hero-slider { position: relative; overflow: hidden; background: var(--black); }
.hs-slide { display: none; position: relative; min-height: 380px; align-items: center; }
.hs-slide.active { display: flex; }
.hs-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.hs-content { position: relative; z-index: 2; padding: 56px 64px; color: #fff; max-width: 620px; }
.hs-title { font-family: var(--fh); font-size: 48px; font-weight: 900; line-height: 1.1; margin-bottom: 14px; }
.hs-sub { font-size: 16px; opacity: .8; margin-bottom: 28px; font-weight: 300; }
.hs-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--black); padding: 13px 30px; font-weight: 700; font-size: 13px; border: none; cursor: pointer; letter-spacing: .6px; text-transform: uppercase; transition: all .2s; }
.hs-btn:hover { background: var(--border); }
.hs-prev, .hs-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.3); color: #fff; width: 44px; height: 44px; cursor: pointer; font-size: 20px; z-index: 5; display: flex; align-items: center; justify-content: center; transition: all .2s; backdrop-filter: blur(4px); }
.hs-prev { left: 20px; }
.hs-next { right: 20px; }
.hs-prev:hover, .hs-next:hover { background: rgba(255,255,255,.3); }
.hs-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
.hs-dot { width: 6px; height: 6px; background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: all .25s; }
.hs-dot.active { background: #fff; width: 20px; }

/* ── LOCATION PICKER, BADGE GRID ── */
.loc-bar { display: flex; align-items: center; gap: 10px; border: 2px solid var(--accent); border-radius: 0; padding: 11px 16px; background: var(--white); cursor: pointer; min-width: 280px; max-width: 460px; transition: border-color .2s; }
.loc-bar:hover { border-color: var(--black); }
.badge-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.badge-item { border: 1px solid var(--border); padding: 14px 10px; text-align: center; background: var(--white); transition: border-color .2s; }
.badge-item:hover { border-color: var(--black); }

/* ── MOBILE BOTTOM NAV ── */
.mob-bottom-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); z-index: 9999; padding: 6px 0 env(safe-area-inset-bottom, 6px); box-shadow: 0 -2px 12px rgba(0,0,0,.08); }
.mob-bnav-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 6px 4px 4px; font-size: 10px; font-weight: 600; color: var(--mid); text-decoration: none; background: none; border: none; cursor: pointer; font-family: inherit; transition: color .15s; -webkit-tap-highlight-color: transparent; }
.mob-bnav-item.active { color: var(--accent); }
.mob-bnav-item.active svg { stroke: var(--accent); }
.mob-bnav-cart-wrap { position: relative; display: inline-flex; }
.mob-bnav-badge { position: absolute; top: -6px; right: -10px; background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; min-width: 16px; height: 16px; border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 0 3px; }

/* ── EMPTY STATE ── */
.empty-state { text-align: center; padding: 56px 20px; }
.empty-state .empty-icon { font-size: 48px; margin-bottom: 12px; opacity: .25; }
.empty-state h3 { font-family: var(--fh); font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--mid); }
.empty-state p { font-size: 13px; color: var(--light); }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .pgrid { grid-template-columns: repeat(3,1fr); }
  .container { padding: 0 16px; }
}
@media(max-width:768px) {
  :root { --header-h: 56px; }
  .mob-bottom-nav { display: flex; }
  body { padding-bottom: 64px; }
  .site-header { border-bottom: none; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
  .hdr { gap: 10px; padding: 10px 0; }
  .ltxt { font-size: 20px; }
  .hact .hlink { display: none; }
  .hact .siparis-link { display: none; }
  .mbtn { display: block; }
  .hdr-search-wrap { max-width: none !important; }
  .hsrch { max-width: none; border-radius: 8px; background: #f5f5f5; border-color: transparent; }
  .hsrch:focus-within { border-color: var(--black); background: #fff; }
  .hsrch input { padding: 9px 12px; font-size: 13px; background: transparent; }
  .hsrch button { padding: 0 12px; border-radius: 0 8px 8px 0; }
  .nbar { display: none; }
  .navbar { display: none; }
  .hero-slider { min-height: 180px !important; }
  .hs-slide { min-height: 180px !important; }
  .hs-content { padding: 24px 20px; max-width: 100%; }
  .hs-title { font-size: 22px; }
  .hs-sub { font-size: 12px; margin-bottom: 14px; }
  .hs-btn { padding: 9px 18px; font-size: 11px; border-radius: 20px; }
  .hs-prev, .hs-next { width: 30px; height: 30px; font-size: 16px; }
  .hs-prev { left: 6px; }
  .hs-next { right: 6px; }
  .circles-sec { padding: 12px 0; border-bottom: none; }
  .circles-row { gap: 4px; padding: 4px 0 8px; }
  .ci { min-width: 76px; max-width: 76px; gap: 5px; }
  .ci-img { width: 60px; height: 60px; border-width: 1.5px; }
  .ci-lbl { font-size: 10px; line-height: 1.2; }
  .ci-arr { display: none; }
  .promos { grid-template-columns: 1fr; gap: 10px; }
  .pb { height: 160px; }
  .pb-txt { padding: 18px; }
  .pb-txt h2 { font-size: 20px; }
  .sec { padding: 20px 0; }
  .sec-hd { margin-bottom: 14px; padding-bottom: 8px; }
  .sec-ttl { font-size: 18px; }
  .pgrid { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .pc { border-radius: 10px; }
  .pc:hover { transform: none; box-shadow: none; }
  .pc-info { padding: 10px; }
  .pc-name { font-size: 12px; min-height: 30px; margin-bottom: 6px; line-height: 1.35; }
  .pc-price { font-size: 18px; }
  .pc-price sup { font-size: 11px; }
  .pc-kdv { margin: 2px 0 4px; font-size: 10px; }
  .pc-add { padding: 8px; font-size: 11px; margin-top: 6px; border-radius: 6px; }
  .pc-bdg { top: 8px; left: 8px; font-size: 9px; padding: 2px 6px; border-radius: 3px; }
  .pdlay { grid-template-columns: 1fr; gap: 20px; }
  .pd-info h1 { font-size: 20px; }
  .pd-price { font-size: 32px; }
  .phdr { padding: 14px 0; margin-bottom: 14px; }
  .pttl { font-size: 22px; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .cart-table th, .cart-table td { padding: 8px 10px; font-size: 12px; }
  .cart-item-img { width: 44px; height: 44px; }
  .cart-summary { position: static; }
  .nlsec { padding: 32px 0; }
  .nlin { grid-template-columns: 1fr; gap: 28px; }
  .site-footer { padding-bottom: 20px; }
  .fgrid { grid-template-columns: 1fr 1fr; gap: 20px; padding-bottom: 24px; }
  .fgrid2 { grid-template-columns: 1fr; }
}
@media(max-width:480px) {
  .container { padding: 0 12px; }
  .hdr { gap: 8px; padding: 8px 0; }
  .ltxt { font-size: 17px; }
  .pgrid { grid-template-columns: repeat(2,1fr); gap: 6px; }
  .pc-info { padding: 8px; }
  .pc-name { font-size: 11px; min-height: 26px; margin-bottom: 4px; }
  .pc-price { font-size: 15px; }
  .pc-price sup { font-size: 10px; }
  .pc-kdv { display: none; }
  .pc-add { padding: 7px; font-size: 10px; border-radius: 5px; margin-top: 4px; }
  .hero-slider { min-height: 160px !important; }
  .hs-slide { min-height: 160px !important; }
  .hs-title { font-size: 18px; }
  .ci { min-width: 66px; max-width: 66px; }
  .ci-img { width: 50px; height: 50px; }
  .ci-lbl { font-size: 9px; }
  .fgrid { grid-template-columns: 1fr; }
  .pb { height: 130px; }
  .pb-txt h2 { font-size: 16px; }
  .sec-ttl { font-size: 15px; }
  .pttl { font-size: 16px; }
  .pd-info h1 { font-size: 16px; }
  .pd-price { font-size: 26px; }
}


/* Home - Daha Fazla */
.home-loadmore-wrap{display:flex;justify-content:center;margin:16px 0 0}
.home-loadmore-btn{background:#0a0a0a;color:#fff;border:none;padding:12px 22px;border-radius:999px;font-weight:800;font-size:13px;cursor:pointer;letter-spacing:.3px;transition:.15s}
.home-loadmore-btn:hover{transform:translateY(-1px)}
.home-loadmore-btn:disabled{opacity:.65;cursor:not-allowed;transform:none}
.home-loadmore-btn.alt{background:#f4f4f4;color:#0a0a0a;border:1px solid #e5e7eb}

@media(max-width:768px) {
  .pay-wrap, .wait-wrap, .wiz-wrap, .container, .main-content { max-width: 100%; overflow-x: hidden; }
  .pay-order-box, .iban-row, .wait-row, .ws-row, .ws-item { flex-direction: column; align-items: flex-start; }
  .ws-val { max-width: 100%; text-align: left; }
  .pay-order-box > div, .iban-row > * { width: 100%; }
  .iban-copy { width: 100%; }
  .main-content table { display: block; width: 100%; min-width: 0 !important; }
  .main-content table thead, .main-content table tbody, .main-content table tr, .main-content table th, .main-content table td { display: block; width: 100%; text-align: left !important; }
  .main-content table thead { display: none; }
  .main-content table tr { padding: 10px 12px; border-bottom: 1px solid #222; }
  .main-content table td { padding: 4px 0 !important; min-width: 0 !important; white-space: normal !important; }
}
