/* =====================================================================
   Temizlikçi Sepeti — Vitrin Tasarım Sistemi
   Yön: ferah · güven veren · modern perakende (temizlik & hijyen)
   Marka renkleri config'ten CSS değişkeni olarak gelir.
   ===================================================================== */

:root {
    --navy: #175075;
    --green: #3D8B5F;
    --green-d: #2f6e4a;
    --blue: #438AA3;
    --sky: #7DBAD2;
    --yellow: #F5CE1E;

    --ink: #13313d;
    --muted: #5d7682;
    --line: #e7eef2;
    --bg: #f1f6f8;
    --card: #ffffff;
    --coral: #e8543e;

    --shadow-sm: 0 1px 2px rgba(20,49,63,.04), 0 2px 6px rgba(20,49,63,.05);
    --shadow: 0 8px 26px rgba(20,49,63,.09);
    --shadow-lg: 0 24px 60px rgba(20,49,63,.18);

    --radius: 18px;
    --radius-sm: 12px;
    --maxw: 1200px;

    --fd: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
    --fb: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0; font-family: var(--fb); color: var(--ink); background: var(--bg);
    line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--fd); line-height: 1.15; color: var(--navy); margin: 0; font-weight: 800; }
a { color: var(--blue); text-decoration: none; transition: color .15s; }
img, video { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------------- Butonlar ---------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    border: 1px solid transparent; border-radius: 12px; padding: 12px 22px;
    font-family: var(--fb); font-size: 15px; font-weight: 700; line-height: 1;
    cursor: pointer; text-decoration: none; transition: transform .12s, box-shadow .15s, background .15s, filter .15s; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 6px 16px rgba(61,139,95,.28); }
.btn-primary:hover { filter: brightness(1.06); box-shadow: 0 10px 22px rgba(61,139,95,.34); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { filter: brightness(1.1); }
.btn-yellow { background: var(--yellow); color: #3a2e00; box-shadow: 0 6px 16px rgba(245,206,30,.35); }
.btn-yellow:hover { filter: brightness(1.04); }
.btn-ghost { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { background: #eef5f8; border-color: var(--sky); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 28px; font-size: 16px; border-radius: 13px; }

/* ---------------- Üst menü ---------------- */
.site-head {
    position: sticky; top: 0; z-index: 50; background: #ffffff;
    border-bottom: 1px solid var(--line); box-shadow: 0 1px 0 rgba(20,49,63,.03);
}
.head-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 80px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-logo { height: 64px; width: auto; max-width: 240px; object-fit: contain; display: block; }
.brand-mark {
    width: 38px; height: 38px; border-radius: 11px; flex: 0 0 auto;
    background: linear-gradient(140deg, var(--blue), var(--navy)); color: #fff;
    display: grid; place-items: center; box-shadow: 0 4px 12px rgba(23,80,117,.3);
}
.brand-name { font-family: var(--fd); font-weight: 800; font-size: 20px; color: var(--navy); letter-spacing: -.01em; }

.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
    position: relative; color: var(--navy); font-weight: 600; font-size: 15px;
    padding: 9px 13px; border-radius: 10px; white-space: nowrap;
}
.site-nav a:not(.cart-link)::after {
    content: ''; position: absolute; left: 13px; right: 13px; bottom: 5px; height: 2px;
    background: var(--green); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .2s;
}
.site-nav a:not(.cart-link):hover { color: var(--navy); }
.site-nav a:not(.cart-link):hover::after { transform: scaleX(1); }
.cart-link {
    display: inline-flex; align-items: center; gap: 7px; background: var(--navy); color: #fff !important;
    padding: 10px 16px !important; border-radius: 11px; margin-left: 6px; font-weight: 700;
}
.cart-link:hover { filter: brightness(1.12); }
.cart-link svg { width: 18px; height: 18px; }
.cart-count { background: var(--yellow); color: #3a2e00; font-size: 11px; font-weight: 800; border-radius: 999px; padding: 1px 7px; min-width: 18px; text-align: center; }

.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--navy); }
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------------- Hero (ana sayfa) ---------------- */
.home-hero {
    position: relative; overflow: hidden; color: #fff;
    background: radial-gradient(1100px 500px at 88% -10%, rgba(125,186,210,.45), transparent 60%),
                linear-gradient(135deg, #123f5a 0%, var(--navy) 52%, #1a5c7c 100%);
    padding: clamp(52px, 8vw, 90px) 0;
}
.home-hero .hero-in { position: relative; z-index: 2; max-width: 640px; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 9px; text-transform: uppercase;
    letter-spacing: .14em; font-size: 12px; font-weight: 700; color: var(--sky); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--yellow); border-radius: 2px; }
.home-hero h1 { color: #fff; font-size: clamp(30px, 5.4vw, 50px); line-height: 1.06; letter-spacing: -.02em; margin-bottom: 16px; }
.home-hero p { color: rgba(255,255,255,.86); font-size: clamp(15px, 2vw, 18px); max-width: 540px; margin: 0 0 26px; }
.home-hero .cta { display: flex; gap: 13px; flex-wrap: wrap; }
.hero-deco { position: absolute; right: -60px; top: 50%; transform: translateY(-50%); width: 520px; max-width: 55%; opacity: .9; z-index: 1; pointer-events: none; }
/* Videosuz hero: ortalanmış düzen */
.home-hero:not(.has-video) .hero-in { margin-left: auto; margin-right: auto; text-align: center; }
.home-hero:not(.has-video) .hero-in p { margin-left: auto; margin-right: auto; }
.home-hero:not(.has-video) .hero-in .cta { justify-content: center; }
.home-hero:not(.has-video) .hero-in .eyebrow { justify-content: center; }

/* ---------------- Güven şeridi ---------------- */
.trust { background: var(--bg); }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 26px 0; }
.trust-item { display: flex; align-items: center; gap: 12px; min-width: 0; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 13px 15px; box-shadow: 0 5px 16px rgba(20,49,63,.06); transition: transform .18s, box-shadow .18s; }
.trust-item:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(20,49,63,.09); }
.trust-item .ti-ic { width: 44px; height: 44px; border-radius: 13px; background: #eaf5ef; color: var(--green); display: grid; place-items: center; flex: 0 0 auto; }
.trust-item .ti-ic svg { width: 22px; height: 22px; }
.trust-item b { display: block; font-size: 14.5px; color: var(--ink); font-family: var(--fd); }
.trust-item span { font-size: 12.5px; color: var(--muted); }
@media (max-width: 760px) { .trust-row { grid-template-columns: repeat(2, 1fr); gap: 12px; } .trust-item { padding: 11px 13px; gap: 10px; } }

/* ---------------- İç sayfa başlığı ---------------- */
.page-hero {
    color: #fff; padding: clamp(30px, 5vw, 54px) 0;
    background: radial-gradient(700px 300px at 90% -30%, rgba(125,186,210,.4), transparent 60%),
                linear-gradient(135deg, var(--navy), #1c5e7e);
}
.page-hero h1 { color: #fff; font-size: clamp(24px, 4vw, 33px); letter-spacing: -.01em; margin-bottom: 6px; }
.page-hero p { margin: 0; color: rgba(255,255,255,.85); }
.crumbs { font-size: 13px; color: rgba(255,255,255,.72); margin-bottom: 14px; }
.crumbs a { color: rgba(255,255,255,.92); }
.crumbs a:hover { color: var(--yellow); }
.crumbs-dark { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.crumbs-dark a { color: var(--navy); }
.crumbs-dark a:hover { color: var(--green); }
.crumbs-dark .cur { color: var(--ink); }

/* ---------------- Bölümler ---------------- */
section.block { padding: clamp(40px, 6vw, 68px) 0; }
.section-title { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 28px; }
.section-title h2 { position: relative; font-size: clamp(22px, 3vw, 31px); letter-spacing: -.01em; padding-bottom: 12px; }
.section-title h2::after { content: ''; position: absolute; left: 0; bottom: 0; width: 46px; height: 3px; background: var(--green); border-radius: 2px; }
.section-title a { font-weight: 700; color: var(--green-d); font-size: 14.5px; white-space: nowrap; }
.section-title a:hover { color: var(--navy); }

/* ---------------- Ürün ızgarası / kart ---------------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(224px, 1fr)); gap: 22px; }
.product-card {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
    display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #d7e6ec; }
.product-card .pthumb { position: relative; display: block; aspect-ratio: 1/1; background: #eef5f8 center/cover no-repeat; }
.product-card .pthumb .ph-ico { position: absolute; inset: 0; display: grid; place-items: center; color: #aebfc9; }
.product-card .pthumb .ph-ico svg { width: 46px; height: 46px; }
.product-card .tag {
    position: absolute; bottom: 12px; right: 12px; z-index: 2; background: var(--coral); color: #fff;
    font-size: 11px; font-weight: 800; letter-spacing: .03em; padding: 4px 10px; border-radius: 999px; text-transform: uppercase;
}
.ship-badge { position: absolute; top: 10px; left: 10px; z-index: 2; display: inline-flex; align-items: center; gap: 6px; background: var(--green); color: #fff; padding: 5px 9px 5px 7px; border-radius: 11px; box-shadow: 0 5px 13px rgba(20,49,63,.22); }
.ship-badge svg { width: 17px; height: 17px; flex: 0 0 auto; }
.ship-badge .st { display: flex; flex-direction: column; line-height: 1.06; }
.ship-badge .st b { font-size: 10px; font-weight: 800; letter-spacing: .02em; }
.ship-badge .st span { font-size: 9px; opacity: .95; }
.related-block { border-top: 1px solid var(--line); }
.product-card .pbody { padding: 15px 16px 16px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.product-card .pcat { font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.product-card .pname {
    font-family: var(--fd); font-weight: 700; color: var(--ink); font-size: 15px; line-height: 1.34;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card a.pname:hover { color: var(--navy); }
.product-card .pprice { margin: 4px 0 12px; display: flex; align-items: baseline; gap: 9px; }
.product-card .pprice .now { font-family: var(--fd); font-size: 20px; font-weight: 800; color: var(--navy); }
.product-card .pprice .old { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.product-card .btn { margin-top: auto; }

/* ---------------- Galeri kartları ---------------- */
.gal-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.gal-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.gal-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.gal-card .cover { aspect-ratio: 16/10; background: #dde8ee center/cover no-repeat; position: relative; }
.gal-card .cover .count { position: absolute; right: 12px; bottom: 12px; background: rgba(19,49,61,.82); color: #fff; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px; backdrop-filter: blur(4px); }
.gal-card .body { padding: 16px 18px; }
.gal-card h3 { font-size: 17px; margin-bottom: 4px; }
.gal-card p { margin: 0; font-size: 13.5px; color: var(--muted); }

/* ---------------- Otomatik oynayan galeri duvarı ---------------- */
.media-wall { columns: 4 250px; column-gap: 16px; }
.media-wall .item { break-inside: avoid; margin-bottom: 16px; border-radius: 16px; overflow: hidden; background: #0c1d27; box-shadow: var(--shadow-sm); position: relative; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.media-wall .item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.media-wall .item img, .media-wall .item video { width: 100%; height: auto; display: block; }
.media-wall .item .vbadge { position: absolute; left: 12px; top: 12px; background: rgba(0,0,0,.62); color: #fff; font-size: 12px; padding: 4px 10px; border-radius: 999px; backdrop-filter: blur(4px); }

/* ---------------- Ana sayfa galeri (kategoriyle, otomatik oynayan) ---------------- */
.home-gal-cat { margin-top: 28px; }
.home-gal-cat:first-of-type { margin-top: 4px; }
.home-gal-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.home-gal-head h3 { font-size: 19px; color: var(--navy); margin: 0; }
.home-gal-head a { font-size: 13.5px; color: var(--green-d); font-weight: 600; white-space: nowrap; }
.home-gal-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px; }
.hg-item { position: relative; display: block; aspect-ratio: 1/1; border-radius: 14px; overflow: hidden; background: #0c1d27; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.hg-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.hg-item img, .hg-item video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hg-item .vbadge { position: absolute; left: 10px; top: 10px; background: rgba(0,0,0,.6); color: #fff; font-size: 11px; padding: 3px 9px; border-radius: 999px; backdrop-filter: blur(4px); }
@media (max-width: 760px) { .home-gal-wall { grid-template-columns: repeat(2, 1fr); gap: 10px; } .home-gal-head h3 { font-size: 17px; } }

/* Lightbox */
.lb { position: fixed; inset: 0; background: rgba(8,18,24,.94); z-index: 100; display: none; }
.lb.show { display: grid; place-items: center; }
.lb .inner { max-width: 92vw; max-height: 88vh; }
.lb img, .lb video { max-width: 92vw; max-height: 88vh; border-radius: 12px; }
.lb .close { position: absolute; top: 18px; right: 22px; color: #fff; font-size: 34px; cursor: pointer; background: none; border: 0; line-height: 1; }
.lb .nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 38px; cursor: pointer; background: rgba(255,255,255,.08); border: 0; padding: 8px 16px; border-radius: 12px; }
.lb .prev { left: 12px; } .lb .next { right: 12px; }

/* ---------------- Ürün detay ---------------- */
.pd { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: start; }
.pd-media .main { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.pd-media .main img, .pd-media .main video { width: 100%; height: 100%; object-fit: contain; }
.pd-media .main img { cursor: zoom-in; }
.pd-zoom-lens { position: absolute; border-radius: 50%; pointer-events: none; border: 3px solid #fff; box-shadow: 0 8px 26px rgba(8,24,33,.38), 0 0 0 1px rgba(0,0,0,.08); background-repeat: no-repeat; background-color: #fff; display: none; z-index: 6; }
@media (hover: none) { .pd-zoom-lens { display: none !important; } .pd-media .main img { cursor: default; } }
.pd-thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.pd-thumbs .t { width: 72px; height: 72px; border-radius: 12px; overflow: hidden; border: 2px solid var(--line); cursor: pointer; background: #eef5f8 center/cover no-repeat; position: relative; transition: border-color .15s; }
.pd-thumbs .t:hover { border-color: var(--sky); }
.pd-thumbs .t.active { border-color: var(--green); }
.pd-thumbs .t .pi { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; background: rgba(0,0,0,.32); font-size: 15px; }
.pd-info h1 { font-size: clamp(24px, 3.4vw, 31px); letter-spacing: -.01em; margin-bottom: 6px; }
.pd-info .pcat { color: var(--green-d); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.pd-info .sku { color: var(--muted); font-size: 13px; margin-bottom: 14px; }
.pd-price { display: flex; align-items: baseline; gap: 13px; margin: 16px 0; }
.pd-price .now { font-family: var(--fd); font-size: clamp(28px, 4vw, 34px); font-weight: 800; color: var(--navy); }
.pd-price .old { font-size: 17px; color: var(--muted); text-decoration: line-through; }
.pd-short { color: #41535d; margin: 12px 0 20px; font-size: 15.5px; }
.pd-desc { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line); line-height: 1.8; color: #2f414b; white-space: pre-line; }
.stock-ok { color: var(--green-d); font-weight: 700; font-size: 14.5px; }
.stock-no { color: var(--coral); font-weight: 700; font-size: 14.5px; }

/* Adet seçici */
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff; }
.qty button { width: 44px; height: 48px; border: 0; background: #f2f8fa; font-size: 20px; cursor: pointer; color: var(--navy); transition: background .15s; }
.qty button:hover { background: #e6f0f4; }
.qty input { width: 54px; height: 48px; border: 0; text-align: center; font-size: 16px; font-family: var(--fb); font-weight: 600; }
.buy-row { display: flex; gap: 12px; align-items: center; margin-top: 10px; flex-wrap: wrap; }

/* ---------------- Sepet & ödeme ---------------- */
.cart-wrap { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.cart-line { display: grid; grid-template-columns: 80px 1fr auto; gap: 15px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-line:last-child { border-bottom: 0; }
.cart-line .ct { width: 80px; height: 80px; border-radius: 12px; background: #eef5f8 center/cover no-repeat; border: 1px solid var(--line); }
.cart-line .cn { font-family: var(--fd); font-weight: 700; color: var(--ink); }
.cart-line .cp { color: var(--muted); font-size: 13px; }
.cart-line .crm { background: none; border: 0; color: var(--coral); cursor: pointer; font-size: 13px; padding: 4px 0; }
.cart-line .crm:hover { text-decoration: underline; }
.summary { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); position: sticky; top: 90px; }
.summary h3 { font-size: 18px; margin-bottom: 16px; }
.summary .row { display: flex; justify-content: space-between; margin: 9px 0; color: #41535d; font-size: 14.5px; }
.summary .total { font-size: 20px; font-weight: 800; color: var(--navy); font-family: var(--fd); border-top: 1px solid var(--line); padding-top: 14px; margin-top: 14px; }
.field-s { margin-bottom: 13px; }
.field-s label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field-s input, .field-s textarea { width: 100%; border: 1px solid var(--line); border-radius: 11px; padding: 12px 13px; font-size: 14.5px; font-family: var(--fb); background: #fff; transition: border-color .15s, box-shadow .15s; }
.field-s input:focus, .field-s textarea:focus { outline: 0; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(125,186,210,.25); }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Kupon & sözleşme */
.coupon-box { padding-bottom: 16px; margin-bottom: 8px; border-bottom: 1px dashed var(--line); }
.coupon-msg { font-size: 12.5px; margin-top: 7px; min-height: 16px; }
.coupon-msg.ok { color: var(--green-d); } .coupon-msg.err { color: var(--coral); }
.agree { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: #41535d; margin: 16px 0; cursor: pointer; }
.agree input { margin-top: 3px; flex: 0 0 auto; width: 17px; height: 17px; accent-color: var(--green); }
.agree a { font-weight: 600; color: var(--green-d); }

/* Ödeme seçenekleri (ürün) */
.pay-box { border: 1px solid var(--line); border-radius: var(--radius); background: #fbfdfe; padding: 18px 20px; margin-top: 24px; }
.pay-box h3 { font-size: 16px; margin-bottom: 12px; }
.pay-opt { display: flex; gap: 13px; align-items: flex-start; padding: 13px 0; }
.pay-opt + .pay-opt { border-top: 1px solid var(--line); }
.pay-opt .pic { width: 38px; height: 38px; border-radius: 11px; background: #eaf5ef; color: var(--green); display: grid; place-items: center; flex: 0 0 auto; font-size: 19px; }
.pay-opt .body { flex: 1; min-width: 0; }
.pay-opt .body b { color: var(--ink); font-family: var(--fd); }
.pay-opt .body p { margin: 4px 0 0; font-size: 13.5px; color: var(--muted); }
.iban-line { display: flex; align-items: center; gap: 10px; margin-top: 9px; background: #fff; border: 1px solid var(--line); border-radius: 11px; padding: 9px 11px; flex-wrap: wrap; }
.iban-line code { font-family: 'SF Mono', ui-monospace, monospace; font-size: 14px; letter-spacing: .5px; color: var(--navy); word-break: break-all; flex: 1; }
.copy-btn { border: 0; background: var(--navy); color: #fff; border-radius: 9px; padding: 8px 15px; font-weight: 700; font-size: 13px; cursor: pointer; font-family: var(--fb); white-space: nowrap; transition: background .15s; }
.copy-btn:hover { filter: brightness(1.12); }
.copy-btn.done { background: var(--green); }

/* ---------------- Yardımcılar ---------------- */
.toast { position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%) translateY(20px); background: var(--navy); color: #fff; padding: 13px 22px; border-radius: 13px; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; z-index: 200; font-weight: 600; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.notice { background: #FFF8E1; border: 1px solid #F1E2A6; color: #6b5800; padding: 13px 16px; border-radius: 12px; margin: 14px 0; font-size: 14px; }
.success-box { text-align: center; padding: 54px 20px 30px; }
.success-box .ic { font-size: 62px; line-height: 1; }
.success-box h1 { margin: 16px 0 8px; }
.order-no { font-family: var(--fd); font-size: 23px; font-weight: 800; color: var(--green-d); letter-spacing: .04em; }
.empty-note { text-align: center; color: var(--muted); padding: 60px 20px; }
.track-status { display: inline-block; padding: 7px 15px; border-radius: 999px; font-weight: 700; font-size: 14px; }
.track-pending { background: #FFF3D6; color: #8a6b00; }
.track-paid, .track-preparing { background: #E1F0FF; color: #1c5aa6; }
.track-shipped { background: #E4F3EA; color: #1f7a44; }
.track-delivered { background: #DCF3E3; color: #176b34; }
.track-cancelled, .track-refunded { background: #F6E3E0; color: #b23a26; }

/* ---------------- Footer ---------------- */
.site-foot { background: #0e2c39; color: rgba(255,255,255,.72); padding: 50px 0 26px; margin-top: 60px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 34px; text-align: center; justify-items: center; }
.foot-brand .brand-name { color: #fff; }
.foot-brand p { margin: 12px auto 0; font-size: 14px; max-width: 340px; }
.foot-col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; font-family: var(--fd); }
.foot-col a { display: block; color: rgba(255,255,255,.7); padding: 5px 0; font-size: 14px; }
.foot-col a:hover { color: var(--yellow); }
.foot-contact div { padding: 4px 0; font-size: 14px; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 20px; display: flex; justify-content: center; align-items: center; gap: 8px 22px; flex-wrap: wrap; text-align: center; font-size: 13px; color: rgba(255,255,255,.6); }
.foot-bottom a { color: rgba(255,255,255,.78); }
.foot-bottom a:hover { color: var(--yellow); }

/* ---------------- Yüzen WhatsApp / Arama ---------------- */
.float-contact { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.fc-btn { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: 0 8px 22px rgba(0,0,0,.28); transition: transform .15s; }
.fc-btn:hover { transform: scale(1.08); }
.fc-wa { background: #25D366; }
.fc-call { background: var(--green); }

/* ---------------- Açılış görseli ---------------- */
#ts-splash { position: fixed; inset: 0; z-index: 9999; background: var(--navy); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; padding: 20px; opacity: 1; transition: opacity .45s ease; }
#ts-splash.hide { opacity: 0; }
#ts-splash img { max-width: min(86vw, 680px); max-height: 64vh; object-fit: contain; border-radius: 16px; box-shadow: var(--shadow-lg); }
#ts-splash .ts-splash-count { width: 46px; height: 46px; border-radius: 50%; border: 3px solid rgba(255,255,255,.35); display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 18px; }
#ts-splash .ts-skip { background: var(--yellow); color: #3a2e00; border: 0; border-radius: 999px; padding: 11px 26px; font-weight: 800; font-size: 15px; cursor: pointer; font-family: var(--fb); }
#ts-splash .ts-skip:hover { filter: brightness(1.05); }

/* =====================================================================
   MOBİL
   ===================================================================== */
@media (max-width: 920px) {
    .pd { grid-template-columns: 1fr; gap: 24px; }
    .cart-wrap { grid-template-columns: 1fr; }
    .summary { position: static; }
    .media-wall { columns: 3 200px; }
}
@media (max-width: 760px) {
    .nav-toggle { display: inline-flex; }
    .site-nav {
        position: fixed; top: 80px; left: 0; right: 0; background: #fff;
        flex-direction: column; align-items: stretch; gap: 2px; padding: 12px 16px 18px;
        border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-130%);
        transition: transform .28s ease; max-height: calc(100vh - 80px); overflow-y: auto;
    }
    .site-nav.open { transform: translateY(0); }
    .site-nav a { padding: 13px 12px; border-radius: 10px; font-size: 16px; }
    .site-nav a:not(.cart-link):hover { background: #f1f6f8; }
    .site-nav a:not(.cart-link)::after { display: none; }
    .cart-link { justify-content: center; margin-left: 0; margin-top: 6px; }
    .foot-grid { grid-template-columns: 1fr; gap: 26px; }
    .media-wall { columns: 2 150px; column-gap: 12px; }
}
@media (max-width: 600px) {
    .container { padding: 0 16px; }
    .brand-logo { height: 50px; }
    .home-hero .cta .btn { flex: 1 1 auto; }
    .section-title { align-items: center; }
    .two { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 13px; }
    .product-card .pbody { padding: 13px; }
    .product-card .pprice .now { font-size: 18px; }
    .summary { padding: 18px; }
    .trust-item { gap: 10px; }
    .trust-item .ti-ic { width: 40px; height: 40px; }
    .trust-item .ti-ic svg { width: 20px; height: 20px; }
    .trust-item b { font-size: 13px; }
    .trust-item span { font-size: 11px; }
    .ship-badge { padding: 4px 7px 4px 6px; border-radius: 9px; gap: 5px; top: 8px; left: 8px; }
    .ship-badge svg { width: 14px; height: 14px; }
    .ship-badge .st b { font-size: 9px; }
    .ship-badge .st span { font-size: 8px; }
}
@media (max-width: 480px) {
    .cart-line { grid-template-columns: 64px 1fr; }
    .cart-line .ct { width: 64px; height: 64px; }
    .cart-line > div:last-child { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; }
    .fc-btn { width: 52px; height: 52px; }
    .float-contact { right: 14px; bottom: 14px; }
}
@media (max-width: 360px) {
    .product-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; scroll-behavior: auto !important; }
}

/* Vitrinde kullanılan içerik kutusu dolgusu */
.card-pad { padding: 20px 22px; }
@media (max-width: 600px) { .card-pad { padding: 16px; } }

/* ==================== Hakkımızda ==================== */
.about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 46px; align-items: center; }

.about-img { position: relative; }
.about-img img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 4/3; display: block; background: #fff; }
.about-badge { position: absolute; left: 14px; bottom: 14px; background: var(--yellow); color: #3a2e00; font-family: var(--fd); font-weight: 800; font-size: 13px; padding: 7px 14px; border-radius: 999px; box-shadow: var(--shadow-sm); }

.about-panel { aspect-ratio: 4/3; border-radius: var(--radius); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 26px; box-shadow: var(--shadow); position: relative; overflow: hidden;
    background: radial-gradient(440px 240px at 82% -10%, rgba(125,186,210,.42), transparent 60%), linear-gradient(140deg, #134561 0%, var(--navy) 58%, #1b5a78 100%); }
.about-panel > svg { opacity: .92; margin-bottom: 8px; }
.about-panel .ap-num { font-family: var(--fd); font-weight: 800; font-size: clamp(46px, 8vw, 66px); line-height: 1; }
.about-panel .ap-num span { color: var(--yellow); }
.about-panel .ap-lbl { font-size: 14px; color: rgba(255,255,255,.85); }
.about-panel .ap-brand { margin-top: 12px; font-family: var(--fd); font-weight: 700; font-size: 18px; letter-spacing: .01em; }

.about .eyebrow { color: var(--green-d); }
.about .eyebrow::before { background: var(--green); }
.about-body h2 { font-size: clamp(23px, 3vw, 31px); letter-spacing: -.01em; margin-bottom: 16px; }
.about-text { color: #44555f; font-size: 15.5px; }
.about-text p { margin: 0 0 13px; line-height: 1.8; }
.about-text p:first-child { font-size: 16.5px; color: var(--ink); }
.about-text p:last-child { margin-bottom: 0; }

.about-sign { display: flex; align-items: center; gap: 12px; margin: 20px 0 6px; }
.about-sign .sign-av { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; background: linear-gradient(140deg, var(--blue), var(--navy)); color: #fff; display: grid; place-items: center; font-family: var(--fd); font-weight: 800; font-size: 19px; flex: 0 0 auto; box-shadow: 0 4px 12px rgba(20, 49, 63, .18); }
.about-sign .sign-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-sign b { display: block; color: var(--ink); font-family: var(--fd); font-size: 15px; }
.about-sign > div span { font-size: 13px; color: var(--muted); }

.about-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 24px; }
.about-chip { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font-size: 13.5px; font-weight: 600; color: var(--navy); }
.about-chip svg { color: var(--green); flex: 0 0 auto; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 26px; } }

/* ==================== Hero videosu ==================== */
.home-hero.has-video .container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.home-hero.has-video .hero-in { max-width: none; }
.home-hero.has-video .hero-deco { display: none; }
.hero-video { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/9; background: #0c1d27; }
.hero-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-sound { position: absolute; right: 14px; bottom: 14px; width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(0,0,0,.5); color: #fff; cursor: pointer; display: grid; place-items: center; backdrop-filter: blur(4px); transition: background .15s; }
.hero-sound:hover { background: rgba(0,0,0,.72); }
@media (max-width: 860px) { .home-hero.has-video .container { grid-template-columns: 1fr; gap: 26px; } }

/* ==================== Kategoriler (kompakt ikon kutular) ==================== */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(116px, 1fr)); gap: 12px; }
.cat-card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; padding: 15px 9px 13px; text-decoration: none; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s, border-color .15s; }
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--sky); }
.cat-ic { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; color: var(--navy); background: linear-gradient(140deg, #eaf5ef, #e4eef4); flex: 0 0 auto; }
.cat-ic svg { width: 40px; height: 40px; }
.cat-name { font-family: var(--fd); font-weight: 700; font-size: 14px; line-height: 1.28; color: var(--ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cat-count { font-size: 11px; color: var(--muted); }
.cat-intro { max-width: 880px; margin: 18px auto 0; color: var(--muted); line-height: 1.75; font-size: 15px; text-align: center; }
@media (max-width: 600px) {
    .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 9px; }
    .cat-card { padding: 13px 7px 11px; gap: 7px; }
    .cat-ic { width: 56px; height: 56px; border-radius: 16px; }
    .cat-ic svg { width: 34px; height: 34px; }
    .cat-name { font-size: 13px; }
}
@media (max-width: 380px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==================== Başlık dönen slogan ==================== */
.head-slogan { flex: 1; display: flex; justify-content: center; align-items: center; min-width: 0; padding: 0 16px; }
.head-slogan span { display: inline-flex; align-items: center; gap: 9px; color: var(--navy); font-family: var(--fd); font-weight: 700; font-size: 15px; white-space: nowrap; opacity: 1; transform: translateY(0); transition: opacity .36s, transform .36s; }
.head-slogan span svg { width: 18px; height: 18px; color: var(--green); flex: 0 0 auto; }
.head-slogan.out span { opacity: 0; transform: translateY(-7px); }
@media (max-width: 980px) { .head-slogan { display: none; } }

/* Mobil slogan şeridi (başlık altında) */
.head-slogan-m { display: none; }
@media (max-width: 980px) {
    .head-slogan-m { display: flex; justify-content: center; align-items: center; gap: 8px; background: #eef5f8; border-bottom: 1px solid var(--line); padding: 9px 14px; }
    .head-slogan-m span { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-family: var(--fd); font-weight: 700; font-size: 13.5px; white-space: nowrap; opacity: 1; transform: translateY(0); transition: opacity .36s, transform .36s; }
    .head-slogan-m span svg { width: 16px; height: 16px; color: var(--green); flex: 0 0 auto; }
    .head-slogan-m.out span { opacity: 0; transform: translateY(-6px); }
}
