/* Bi'Tişört v5.0.7 — generated product-detail CSS bundle. Source order preserved. */

/* ===== BEGIN SOURCE: bitisort-design-tokens-v408.css ===== */
/*
 * Bi'Tişört v4.0.8 — Global Design Tokens
 * Editorial/minimal foundation adapted from the supplied reference system.
 * This file intentionally defines the visual language without forcing a full redesign.
 */
:root {
  /* Brand + ink */
  --bt-color-carbon: #151515;
  --bt-color-ink: #171717;
  --bt-color-paper: #ffffff;
  --bt-color-smoke: #333333;
  --bt-color-muted: #6f6a64;
  --bt-color-line: #e9e2da;
  --bt-color-soft-mist: #e5e7eb;
  --bt-color-warm-fog: #f0efe7;
  --bt-color-blush-sand: #f5ebd5;
  --bt-color-pale-tide: #badce4;
  --bt-color-accent: #ff6b18;
  --bt-color-accent-hover: #e85c0a;
  --bt-color-accent-soft: #fff1e8;

  /* Semantic surfaces */
  --bt-surface-page: #ffffff;
  --bt-surface-subtle: #fbfaf8;
  --bt-surface-soft: var(--bt-color-soft-mist);
  --bt-surface-warm: var(--bt-color-warm-fog);
  --bt-surface-highlight: var(--bt-color-blush-sand);
  --bt-surface-dark: var(--bt-color-carbon);
  --bt-text-primary: var(--bt-color-ink);
  --bt-text-secondary: var(--bt-color-muted);
  --bt-border-subtle: var(--bt-color-line);
  --bt-action-primary: var(--bt-color-accent);
  --bt-action-primary-hover: var(--bt-color-accent-hover);

  /* Typography — Inter is the safe Bi'Tişört substitute for Favorit */
  --bt-font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --bt-font-weight-regular: 400;
  --bt-font-weight-medium: 500;
  --bt-font-weight-semibold: 600;
  --bt-font-weight-bold: 700;
  --bt-font-weight-black: 900;

  --bt-text-xs: 11px;
  --bt-text-sm: 12px;
  --bt-text-body: 14px;
  --bt-text-base: 16px;
  --bt-text-heading: 20px;
  --bt-text-display: 30px;
  --bt-text-hero: clamp(36px, 4vw, 52px);
  --bt-leading-tight: 1.2;
  --bt-leading-body: 1.45;
  --bt-leading-relaxed: 1.65;
  --bt-tracking-ui: .025em;
  --bt-tracking-heading: .02em;

  /* 4px spacing rhythm */
  --bt-space-1: 4px;
  --bt-space-2: 8px;
  --bt-space-3: 12px;
  --bt-space-4: 16px;
  --bt-space-5: 20px;
  --bt-space-6: 24px;
  --bt-space-8: 32px;
  --bt-space-10: 40px;
  --bt-space-12: 48px;
  --bt-space-16: 64px;
  --bt-space-20: 80px;

  /* Layout */
  --bt-page-max: 1440px;
  --bt-shell-max: 1400px;
  --bt-section-gap: 64px;
  --bt-card-padding: 16px;
  --bt-element-gap: 8px;
  --bt-page-gutter-desktop: 28px;
  --bt-page-gutter-tablet: 18px;
  --bt-page-gutter-mobile: 14px;

  /* Editorial geometry */
  --bt-radius-none: 0px;
  --bt-radius-editorial: 4px;
  --bt-radius-control: 4px;
  --bt-radius-pill: 999px;
  --bt-border-hairline: 1px solid var(--bt-border-subtle);
  --bt-shadow-none: none;

  /* Motion */
  --bt-duration-fast: 160ms;
  --bt-duration-normal: 220ms;
  --bt-ease-standard: cubic-bezier(.2,.7,.2,1);
}

/* Compatibility aliases: current public shell can consume the new system immediately. */
:root {
  --bts-bg: var(--bt-surface-subtle);
  --bts-line: var(--bt-border-subtle);
  --bts-ink: var(--bt-text-primary);
  --bts-muted: var(--bt-text-secondary);
  --bts-accent: var(--bt-action-primary);
  --bts-dark: var(--bt-surface-dark);
}

/* Low-specificity foundation. Existing page CSS still wins until each section is migrated. */
:where(html) {
  color-scheme: light;
  font-family: var(--bt-font-sans);
}
:where(body) {
  color: var(--bt-text-primary);
  font-family: var(--bt-font-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Reusable primitives for the next migration phases. */
.bt-editorial-container {
  width: min(var(--bt-page-max), calc(100% - (var(--bt-page-gutter-desktop) * 2)));
  margin-inline: auto;
}
.bt-editorial-section { margin-block: var(--bt-section-gap); }
.bt-editorial-hairline { border-color: var(--bt-border-subtle); border-style: solid; border-width: 1px 0 0; }
.bt-editorial-surface-soft { background: var(--bt-surface-soft); }
.bt-editorial-surface-warm { background: var(--bt-surface-warm); }
.bt-editorial-surface-highlight { background: var(--bt-surface-highlight); }
.bt-editorial-ghost-action,
.bt-editorial-primary-action {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border-radius: var(--bt-radius-control);
  font: var(--bt-font-weight-semibold) var(--bt-text-sm)/1 var(--bt-font-sans);
  letter-spacing: var(--bt-tracking-ui);
  text-decoration: none;
  transition: background var(--bt-duration-fast) var(--bt-ease-standard), color var(--bt-duration-fast) var(--bt-ease-standard), border-color var(--bt-duration-fast) var(--bt-ease-standard);
}
.bt-editorial-ghost-action {
  border: 1px solid var(--bt-color-carbon);
  background: transparent;
  color: var(--bt-color-carbon);
}
.bt-editorial-primary-action {
  border: 1px solid var(--bt-action-primary);
  background: var(--bt-action-primary);
  color: #fff;
}
.bt-editorial-primary-action:hover { background: var(--bt-action-primary-hover); border-color: var(--bt-action-primary-hover); }

@media (max-width: 900px) {
  .bt-editorial-container { width: calc(100% - (var(--bt-page-gutter-tablet) * 2)); }
  :root { --bt-section-gap: 52px; }
}
@media (max-width: 600px) {
  .bt-editorial-container { width: calc(100% - (var(--bt-page-gutter-mobile) * 2)); }
  :root { --bt-section-gap: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  :root { --bt-duration-fast: 0ms; --bt-duration-normal: 0ms; }
}


/* v4.0.8.1 — Editorial header tokens */
:root {
  --bt-announcement-bg: #000000;
  --bt-announcement-text: #ffffff;
  --bt-announcement-accent: var(--bt-color-accent);
  --bt-announcement-height: 28px;
  --bt-announcement-font-size: 10px;
  --bt-header-bg: #ffffff;
  --bt-header-text: var(--bt-color-carbon);
  --bt-header-height: 68px;
  --bt-header-mobile-height: 58px;
  --bt-header-link-size: 11px;
  --bt-header-control-radius: var(--bt-radius-editorial);
  --bt-header-hairline: #d8d8d8;
}

/* ===== END SOURCE: bitisort-design-tokens-v408.css ===== */

/* ===== BEGIN SOURCE: store-shell-v4.6.css ===== */
/* Bi'Tişört v4.0.8.1 — Editorial Header + Announcement */
/* bi'tişört v4.6.0 — centralized configurable public store shell */
:root{--bts-bg:var(--bt-surface-subtle,#fbfaf8);--bts-line:var(--bt-border-subtle,#e9e2da);--bts-ink:var(--bt-text-primary,#171717);--bts-muted:var(--bt-text-secondary,#6f6a64);--bts-accent:var(--bt-action-primary,#ff6b18);--bts-dark:var(--bt-surface-dark,#151515)}
.bt-shell-announcement{position:relative;z-index:130;height:var(--bt-shell-ann-height,34px);overflow:hidden;background:var(--bt-shell-ann-bg,#111827);color:var(--bt-shell-ann-text,#fff)}
.bt-shell-announcement>a,.bt-shell-announcement>div{display:block;height:100%;color:inherit;text-decoration:none;overflow:hidden}.bt-shell-ann-track{display:flex;align-items:center;width:max-content;height:100%;white-space:nowrap;animation:btShellTicker var(--bt-shell-ann-speed,28s) linear infinite;font-size:var(--bt-shell-ann-font,11px);font-weight:750}.bt-shell-ann-track.is-right{animation-direction:reverse}.bt-shell-announcement.is-pausable:hover .bt-shell-ann-track{animation-play-state:paused}.bt-shell-ann-track b{font-weight:750}.bt-shell-ann-track i{margin:0 24px;color:var(--bt-shell-ann-accent,#ff6b18);font-style:normal}@keyframes btShellTicker{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.bt-shell-header{position:relative!important;z-index:120!important;border-bottom:1px solid rgba(233,226,218,.92)!important;background:color-mix(in srgb,var(--bts-header-bg,#fbfaf8) 94%,transparent)!important;color:var(--bts-header-text,#171717)!important;backdrop-filter:blur(18px) saturate(145%)!important;box-shadow:none!important}.bt-shell-header.is-sticky{position:sticky!important;top:0!important}.bt-shell-nav{display:grid!important;grid-template-columns:auto 1fr auto auto auto!important;align-items:center!important;width:min(1400px,calc(100% - 56px))!important;height:var(--bts-header-height,74px)!important;min-height:var(--bts-header-height,74px)!important;margin:0 auto!important;gap:12px!important;padding:0!important}.bt-shell-brand{justify-self:start!important;display:inline-flex!important;align-items:center!important;min-width:0!important;color:var(--bts-header-text,#171717)!important;text-decoration:none!important}.bt-shell-logo{display:block!important;width:auto!important;height:var(--bt-shell-logo-height,40px)!important;max-width:210px!important;object-fit:contain!important}.bt-shell-logo.is-footer{filter:brightness(0) invert(1)}.bt-shell-wordmark{font-size:20px;font-weight:900;letter-spacing:-.04em;color:inherit}.bt-shell-menu{justify-self:center!important;display:flex!important;align-items:center!important;gap:6px!important;padding:5px!important;border:1px solid color-mix(in srgb,var(--bts-header-text,#171717) 11%,transparent)!important;border-radius:999px!important;background:color-mix(in srgb,var(--bts-menu-bg,#fff) 82%,transparent)!important}.bt-shell-menu>a:not(.bt-shell-mobile-primary),.bt-shell-mobile-links>a{display:inline-flex!important;align-items:center!important;min-height:36px!important;padding:0 13px!important;border-radius:999px!important;color:color-mix(in srgb,var(--bts-header-text,#171717) 72%,transparent)!important;font-size:11px!important;font-weight:760!important;text-decoration:none!important;white-space:nowrap!important;transition:background .18s ease,color .18s ease!important}.bt-shell-menu>a:hover,.bt-shell-mobile-links>a:hover{background:color-mix(in srgb,var(--bts-header-text,#171717) 7%,transparent)!important;color:var(--bts-header-text,#171717)!important}.bt-shell-mobile-links,.bt-shell-mobile-primary{display:none!important}.bt-shell-cta{display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:9px!important;min-height:42px!important;padding:0 18px!important;border:0!important;border-radius:999px!important;background:var(--bts-accent,#ff6b18)!important;color:#fff!important;font-size:10px!important;font-weight:900!important;text-decoration:none!important;white-space:nowrap!important;box-shadow:none!important}.bt-shell-header .bt-account-chip{display:inline-flex!important;align-items:center!important;gap:8px!important;min-height:42px!important;padding:0 13px!important;border:1px solid color-mix(in srgb,var(--bts-header-text,#171717) 12%,transparent)!important;border-radius:999px!important;background:color-mix(in srgb,var(--bts-menu-bg,#fff) 90%,transparent)!important;color:var(--bts-header-text,#171717)!important;font-size:10px!important;font-weight:800!important;text-decoration:none!important;white-space:nowrap!important;box-shadow:none!important}.bt-shell-header .bt-account-chip i{display:grid!important;place-items:center!important;width:22px!important;height:22px!important;border-radius:50%!important;background:color-mix(in srgb,var(--bts-accent,#ff6b18) 11%,transparent)!important;color:var(--bts-accent,#ff6b18)!important;font-style:normal!important;font-size:10px!important}.bt-shell-header .store-cart-button{position:relative!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:7px!important;min-height:42px!important;padding:0 12px!important;border:1px solid color-mix(in srgb,var(--bts-header-text,#171717) 12%,transparent)!important;border-radius:999px!important;background:color-mix(in srgb,var(--bts-menu-bg,#fff) 90%,transparent)!important;color:var(--bts-header-text,#171717)!important;font-size:10px!important;font-weight:850!important;text-decoration:none!important;white-space:nowrap!important;cursor:pointer!important;box-shadow:none!important}.bt-shell-header .store-cart-count{display:grid!important;place-items:center!important;min-width:18px!important;height:18px!important;padding:0 4px!important;border-radius:999px!important;background:var(--bts-accent,#ff6b18)!important;color:#fff!important;font-size:8px!important}.bt-shell-menu-btn{display:none!important}.bt-shell-menu-backdrop{display:none!important}

/* Professional footer */
.bt-shell-footer{margin-top:68px!important;padding:0!important;background:var(--bts-footer-bg,#151515)!important;color:var(--bts-footer-text,#fff)!important;border:0!important;border-radius:0!important;max-width:none!important;width:100%!important;box-sizing:border-box!important}.bt-shell-footer .shell{width:min(1360px,calc(100% - 64px))!important;max-width:none!important;margin-left:auto!important;margin-right:auto!important}.bt-shell-footer-main{display:grid!important;grid-template-columns:minmax(300px,.9fr) minmax(0,2.1fr)!important;gap:70px!important;align-items:start!important;padding:72px 0 56px!important}.bt-shell-footer-brand-panel{max-width:380px!important;padding-right:10px!important}.bt-shell-footer-brand-panel .brand{display:inline-flex!important;margin-bottom:24px!important;color:var(--bts-footer-text,#fff)!important}.bt-shell-footer-brand-panel p{max-width:350px!important;margin:0 0 26px!important;color:var(--bts-footer-muted,#a8a29e)!important;font-size:13px!important;line-height:1.75!important}.bt-shell-footer-brand-panel>a{display:inline-flex!important;align-items:center!important;justify-content:space-between!important;gap:22px!important;min-height:46px!important;padding:0 18px!important;border-radius:999px!important;background:var(--bts-footer-accent,#ff6b18)!important;color:#fff!important;font-size:10px!important;font-weight:900!important;text-decoration:none!important}.bt-shell-footer-brand-panel>a span{font-size:15px!important}.bt-shell-footer-columns{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:34px!important}.bt-shell-footer-column{display:flex!important;flex-direction:column!important;align-items:flex-start!important;gap:12px!important;min-width:0!important}.bt-shell-footer-column>strong{margin-bottom:8px!important;color:var(--bts-footer-text,#fff)!important;font-size:10px!important;font-weight:900!important;letter-spacing:.13em!important;text-transform:uppercase!important}.bt-shell-footer-column>a,.bt-shell-footer-column>span{max-width:100%!important;color:var(--bts-footer-muted,#a8a29e)!important;font-size:11px!important;line-height:1.55!important;text-decoration:none!important;overflow-wrap:anywhere!important;transition:color .18s ease!important}.bt-shell-footer-column>a:hover{color:var(--bts-footer-text,#fff)!important}.bt-shell-footer-contact-more{display:inline-flex!important;align-items:center!important;gap:6px!important;margin-top:4px!important;color:color-mix(in srgb,var(--bts-footer-accent,#ff6b18) 82%,white)!important;font-weight:800!important}.bt-shell-footer .store-footer-bottom{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:20px!important;padding:22px 0 25px!important;border-top:1px solid color-mix(in srgb,var(--bts-footer-text,#fff) 12%,transparent)!important;color:color-mix(in srgb,var(--bts-footer-muted,#a8a29e) 72%,transparent)!important;font-size:9px!important}

@media(max-width:1180px){.bt-shell-nav{grid-template-columns:auto 1fr auto auto!important;width:calc(100% - 36px)!important}.bt-shell-menu{gap:2px!important}.bt-shell-menu>a:not(.bt-shell-mobile-primary){padding:0 9px!important;font-size:10px!important}.bt-shell-header .bt-account-chip span{display:none!important}.bt-shell-cta{padding:0 14px!important}.bt-shell-footer-main{grid-template-columns:1fr!important;gap:40px!important}.bt-shell-footer-brand-panel{max-width:560px!important}.bt-shell-footer-columns{grid-template-columns:repeat(4,1fr)!important}}
@media(max-width:820px){.bt-shell-footer-columns{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:34px 22px!important}}
@media(max-width:760px){.bt-shell-announcement{height:32px}.bt-shell-ann-track{font-size:10px}.bt-shell-ann-track i{margin:0 17px}.bt-shell-header{height:var(--bts-header-mobile-height,62px)!important}.bt-shell-nav{position:relative!important;display:grid!important;grid-template-columns:1fr auto auto!important;width:calc(100% - 24px)!important;height:var(--bts-header-mobile-height,62px)!important;min-height:var(--bts-header-mobile-height,62px)!important;gap:5px!important;padding:0!important}.bt-shell-brand{grid-column:1!important;max-width:155px!important;z-index:1004!important}.bt-shell-logo{max-width:145px!important;height:min(var(--bt-shell-logo-height,38px),38px)!important}.bt-shell-cta,.bt-shell-header .bt-account-chip{display:none!important}.bt-shell-header .store-cart-button{grid-column:2!important;width:40px!important;height:40px!important;min-height:40px!important;padding:0!important;border:0!important;background:transparent!important;z-index:1004!important}.bt-shell-header .store-cart-button .bt-cart-label{display:none!important}.bt-shell-header .store-cart-count{position:absolute!important;right:-1px!important;top:1px!important;min-width:16px!important;height:16px!important;border:2px solid var(--bts-header-bg,#fbfaf8)!important;font-size:7px!important}.bt-shell-menu-btn{grid-column:3!important;display:grid!important;place-items:center!important;width:40px!important;height:40px!important;padding:0!important;border:0!important;background:transparent!important;color:var(--bts-header-text,#171717)!important;font-size:25px!important;z-index:1004!important;cursor:pointer!important}.bt-shell-menu{position:fixed!important;z-index:1003!important;right:0!important;top:0!important;bottom:0!important;display:flex!important;flex-direction:column!important;align-items:stretch!important;justify-content:flex-start!important;width:min(88vw,380px)!important;height:100dvh!important;padding:88px 22px 28px!important;border:0!important;border-radius:0!important;background:var(--bts-menu-bg,#fff)!important;box-shadow:-24px 0 60px rgba(17,24,39,.14)!important;transform:translateX(105%)!important;transition:transform .25s ease!important;overflow-y:auto!important}.bt-shell-menu>a:not(.bt-shell-mobile-primary),.bt-shell-mobile-links>a{justify-content:flex-start!important;min-height:48px!important;padding:0 12px!important;border-bottom:1px solid color-mix(in srgb,var(--bts-header-text,#171717) 10%,transparent)!important;border-radius:0!important;background:transparent!important;font-size:14px!important;color:var(--bts-header-text,#171717)!important}.bt-shell-mobile-links{display:flex!important;flex-direction:column!important}.bt-shell-mobile-primary{display:flex!important;align-items:center!important;justify-content:space-between!important;min-height:52px!important;margin-top:18px!important;padding:0 17px!important;border-radius:14px!important;background:var(--bts-accent,#ff6b18)!important;color:#fff!important;font-size:13px!important;font-weight:900!important;text-decoration:none!important}.bt-shell-menu-backdrop{position:fixed!important;z-index:1002!important;inset:0!important;display:block!important;border:0!important;background:rgba(15,23,42,.28)!important;opacity:0!important;pointer-events:none!important;transition:opacity .25s ease!important}.bt-shell-menu-open .bt-shell-menu{transform:translateX(0)!important}.bt-shell-menu-open .bt-shell-menu-backdrop{opacity:1!important;pointer-events:auto!important}.bt-shell-footer{margin-top:46px!important}.bt-shell-footer .shell{width:calc(100% - 28px)!important}.bt-shell-footer-main{padding:48px 0 38px!important;gap:36px!important}.bt-shell-footer-columns{grid-template-columns:1fr 1fr!important;gap:30px 20px!important}.bt-shell-footer-brand-panel p{font-size:12px!important}.bt-shell-footer .store-footer-bottom{align-items:flex-start!important;flex-direction:column!important;gap:8px!important}}
@media(max-width:480px){.bt-shell-footer-columns{grid-template-columns:1fr!important}.bt-shell-footer-column{padding-bottom:18px!important;border-bottom:1px solid color-mix(in srgb,var(--bts-footer-text,#fff) 9%,transparent)!important}}
@media(prefers-reduced-motion:reduce){.bt-shell-ann-track{animation:none!important}.bt-shell-menu,.bt-shell-menu-backdrop{transition:none!important}}


/* Bi'Tişört v4.6.1 shell sync — tüm mağaza sayfalarında ana sayfa ile aynı header/ticker geometrisi */
.bt-shell-announcement{
  display:block!important;
  width:100%!important;
  max-width:none!important;
  margin:0!important;
  padding:0!important;
  box-sizing:border-box!important;
}
.bt-shell-announcement>a,
.bt-shell-announcement>div{
  width:100%!important;
  max-width:none!important;
  margin:0!important;
  box-sizing:border-box!important;
}
.bt-shell-header{
  width:100%!important;
  max-width:none!important;
  margin:0!important;
  padding:0!important;
  min-height:var(--bts-header-height,74px)!important;
  box-sizing:border-box!important;
}
/* Eski sayfalardaki .shell max-width değeri merkezi header'ı daraltmasın. */
.bt-shell-header .bt-shell-nav,
.bt-shell-header .nav.shell.bt-shell-nav{
  width:min(1400px,calc(100% - 56px))!important;
  max-width:none!important;
  min-width:0!important;
  margin-left:auto!important;
  margin-right:auto!important;
  box-sizing:border-box!important;
}
/* Header içindeki eski nav/brand kuralları merkez geometrisini değiştirmesin. */
.bt-shell-header .bt-shell-brand,
.bt-shell-header .bt-shell-menu,
.bt-shell-header .bt-shell-cta,
.bt-shell-header .bt-account-chip,
.bt-shell-header .store-cart-button{
  box-sizing:border-box!important;
}
@media(max-width:1180px){
  .bt-shell-header .bt-shell-nav,
  .bt-shell-header .nav.shell.bt-shell-nav{
    width:calc(100% - 36px)!important;
    max-width:none!important;
  }
}
@media(max-width:760px){
  .bt-shell-header{
    min-height:var(--bts-header-mobile-height,62px)!important;
  }
  .bt-shell-header .bt-shell-nav,
  .bt-shell-header .nav.shell.bt-shell-nav{
    width:calc(100% - 24px)!important;
    max-width:none!important;
  }
}

/* ========================================================================
   Bi'Tişört v4.0.8.1 — Editorial Header + Announcement
   Adanola-inspired restraint, adapted to Bi'Tişört's orange action color.
   ======================================================================== */

/* Announcement: slimmer, black, typographic; no pill/card feeling. */
.bt-shell-announcement.bt-shell-announcement-editorial{
  height:clamp(26px,var(--bt-shell-ann-height,var(--bt-announcement-height,28px)),30px)!important;
  min-height:26px!important;
  background:var(--bt-shell-ann-bg,var(--bt-announcement-bg,#000))!important;
  color:var(--bt-shell-ann-text,var(--bt-announcement-text,#fff))!important;
  border:0!important;
  box-shadow:none!important;
}
.bt-shell-announcement-editorial .bt-shell-ann-track{
  font-family:var(--bt-font-sans,Inter,system-ui,sans-serif)!important;
  font-size:clamp(9px,var(--bt-shell-ann-font,var(--bt-announcement-font-size,10px)),10px)!important;
  font-weight:500!important;
  line-height:1!important;
  letter-spacing:.11em!important;
  text-transform:uppercase!important;
}
.bt-shell-announcement-editorial .bt-shell-ann-track b{
  font-weight:500!important;
}
.bt-shell-announcement-editorial .bt-shell-ann-track i{
  margin-inline:22px!important;
  color:var(--bt-shell-ann-accent,var(--bt-announcement-accent,#ff6b18))!important;
  font-size:.8em!important;
}

/* Header canvas: true white / configured color, no glass or elevation. */
.bt-shell-header.bt-shell-header-editorial{
  min-height:clamp(64px,var(--bts-header-height,var(--bt-header-height,68px)),72px)!important;
  border:0!important;
  border-bottom:1px solid var(--bt-header-hairline,#d8d8d8)!important;
  background:var(--bts-header-bg,var(--bt-header-bg,#fff))!important;
  backdrop-filter:none!important;
  -webkit-backdrop-filter:none!important;
  box-shadow:none!important;
}
.bt-shell-header-editorial .bt-shell-nav,
.bt-shell-header-editorial .nav.shell.bt-shell-nav{
  width:min(var(--bt-shell-max,1400px),calc(100% - 56px))!important;
  height:clamp(64px,var(--bts-header-height,var(--bt-header-height,68px)),72px)!important;
  min-height:clamp(64px,var(--bts-header-height,var(--bt-header-height,68px)),72px)!important;
  grid-template-columns:minmax(150px,auto) 1fr auto auto auto!important;
  gap:16px!important;
}

/* Brand: clean, photography-first scale. */
.bt-shell-header-editorial .bt-shell-brand{
  min-height:44px!important;
  padding:0!important;
}
.bt-shell-header-editorial .bt-shell-logo{
  height:min(var(--bt-shell-logo-height,36px),38px)!important;
  max-width:196px!important;
}
.bt-shell-header-editorial .bt-shell-wordmark{
  font-family:var(--bt-font-sans,Inter,system-ui,sans-serif)!important;
  font-size:21px!important;
  font-weight:700!important;
  letter-spacing:-.035em!important;
}

/* Desktop navigation: remove the pill container entirely. */
.bt-shell-header-editorial .bt-shell-menu{
  justify-self:center!important;
  display:flex!important;
  align-items:stretch!important;
  gap:22px!important;
  padding:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
}
.bt-shell-header-editorial .bt-shell-menu>a:not(.bt-shell-mobile-primary){
  position:relative!important;
  display:inline-flex!important;
  align-items:center!important;
  min-height:42px!important;
  padding:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  color:var(--bts-header-text,var(--bt-header-text,#151515))!important;
  font-family:var(--bt-font-sans,Inter,system-ui,sans-serif)!important;
  font-size:var(--bt-header-link-size,11px)!important;
  font-weight:600!important;
  letter-spacing:.055em!important;
  text-transform:uppercase!important;
  transition:color var(--bt-duration-fast,160ms) ease!important;
}
.bt-shell-header-editorial .bt-shell-menu>a:not(.bt-shell-mobile-primary)::after{
  content:"";
  position:absolute;
  left:0;
  right:100%;
  bottom:5px;
  height:1px;
  background:currentColor;
  transition:right var(--bt-duration-fast,160ms) var(--bt-ease-standard,ease);
}
.bt-shell-header-editorial .bt-shell-menu>a:not(.bt-shell-mobile-primary):hover{
  background:transparent!important;
  color:var(--bts-header-text,var(--bt-header-text,#151515))!important;
}
.bt-shell-header-editorial .bt-shell-menu>a:not(.bt-shell-mobile-primary):hover::after{
  right:0;
}

/* Main action keeps Bi'Tişört orange, but with editorial geometry. */
.bt-shell-header-editorial .bt-shell-cta{
  min-height:40px!important;
  padding:0 17px!important;
  border:1px solid var(--bts-accent,var(--bt-action-primary,#ff6b18))!important;
  border-radius:var(--bt-header-control-radius,4px)!important;
  background:var(--bts-accent,var(--bt-action-primary,#ff6b18))!important;
  color:#fff!important;
  font-family:var(--bt-font-sans,Inter,system-ui,sans-serif)!important;
  font-size:10px!important;
  font-weight:700!important;
  letter-spacing:.06em!important;
  text-transform:uppercase!important;
  transition:background var(--bt-duration-fast,160ms) ease,border-color var(--bt-duration-fast,160ms) ease!important;
}
.bt-shell-header-editorial .bt-shell-cta:hover{
  background:var(--bt-action-primary-hover,#e85c0a)!important;
  border-color:var(--bt-action-primary-hover,#e85c0a)!important;
}

/* Account and cart become light utility actions, not rounded cards. */
.bt-shell-header-editorial .bt-account-chip,
.bt-shell-header-editorial .store-cart-button{
  min-height:40px!important;
  padding:0 4px!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  color:var(--bts-header-text,var(--bt-header-text,#151515))!important;
  box-shadow:none!important;
  font-family:var(--bt-font-sans,Inter,system-ui,sans-serif)!important;
  font-size:10px!important;
  font-weight:600!important;
  letter-spacing:.04em!important;
}
.bt-shell-header-editorial .bt-account-chip{
  padding-left:14px!important;
  border-left:1px solid var(--bt-header-hairline,#d8d8d8)!important;
}
.bt-shell-header-editorial .bt-account-chip i{
  width:auto!important;
  height:auto!important;
  border-radius:0!important;
  background:transparent!important;
  color:currentColor!important;
  font-size:12px!important;
}
.bt-shell-header-editorial .store-cart-button{
  position:relative!important;
  padding-left:10px!important;
}
.bt-shell-header-editorial .store-cart-button:hover,
.bt-shell-header-editorial .bt-account-chip:hover{
  color:var(--bts-accent,var(--bt-action-primary,#ff6b18))!important;
}
.bt-shell-header-editorial .store-cart-count{
  min-width:17px!important;
  height:17px!important;
  padding:0 4px!important;
  border-radius:999px!important;
  background:var(--bts-accent,var(--bt-action-primary,#ff6b18))!important;
  color:#fff!important;
  font-size:8px!important;
  font-weight:700!important;
}

/* Tablet: tighten spacing before switching to drawer. */
@media(max-width:1180px){
  .bt-shell-header-editorial .bt-shell-nav,
  .bt-shell-header-editorial .nav.shell.bt-shell-nav{
    width:calc(100% - 36px)!important;
    gap:11px!important;
  }
  .bt-shell-header-editorial .bt-shell-menu{gap:14px!important}
  .bt-shell-header-editorial .bt-shell-menu>a:not(.bt-shell-mobile-primary){font-size:10px!important}
  .bt-shell-header-editorial .bt-shell-cta{padding-inline:13px!important}
}

/* Mobile: retain drawer usability but use the same flat editorial language. */
@media(max-width:760px){
  .bt-shell-announcement.bt-shell-announcement-editorial{
    height:26px!important;
    min-height:26px!important;
  }
  .bt-shell-announcement-editorial .bt-shell-ann-track{
    font-size:9px!important;
    letter-spacing:.08em!important;
  }
  .bt-shell-announcement-editorial .bt-shell-ann-track i{margin-inline:16px!important}

  .bt-shell-header.bt-shell-header-editorial{
    height:clamp(56px,var(--bts-header-mobile-height,var(--bt-header-mobile-height,58px)),62px)!important;
    min-height:clamp(56px,var(--bts-header-mobile-height,var(--bt-header-mobile-height,58px)),62px)!important;
  }
  .bt-shell-header-editorial .bt-shell-nav,
  .bt-shell-header-editorial .nav.shell.bt-shell-nav{
    width:calc(100% - 24px)!important;
    height:clamp(56px,var(--bts-header-mobile-height,var(--bt-header-mobile-height,58px)),62px)!important;
    min-height:clamp(56px,var(--bts-header-mobile-height,var(--bt-header-mobile-height,58px)),62px)!important;
    grid-template-columns:1fr auto auto!important;
    gap:8px!important;
  }
  .bt-shell-header-editorial .bt-shell-logo{
    height:min(var(--bt-shell-logo-height,34px),34px)!important;
    max-width:150px!important;
  }
  .bt-shell-header-editorial .store-cart-button{
    width:38px!important;
    height:38px!important;
    min-height:38px!important;
    padding:0!important;
    border:0!important;
  }
  .bt-shell-header-editorial .bt-shell-menu-btn{
    width:38px!important;
    height:38px!important;
    font-size:22px!important;
  }
  .bt-shell-header-editorial .bt-shell-menu{
    gap:0!important;
    padding:78px 22px 28px!important;
    border-left:1px solid var(--bt-header-hairline,#d8d8d8)!important;
    background:var(--bts-menu-bg,#fff)!important;
    box-shadow:none!important;
  }
  .bt-shell-header-editorial .bt-shell-menu>a:not(.bt-shell-mobile-primary),
  .bt-shell-header-editorial .bt-shell-mobile-links>a{
    min-height:49px!important;
    padding:0 2px!important;
    border:0!important;
    border-bottom:1px solid var(--bt-border-subtle,#e9e2da)!important;
    border-radius:0!important;
    background:transparent!important;
    color:var(--bts-header-text,#151515)!important;
    font-size:12px!important;
    font-weight:600!important;
    letter-spacing:.045em!important;
    text-transform:uppercase!important;
  }
  .bt-shell-header-editorial .bt-shell-menu>a:not(.bt-shell-mobile-primary)::after{display:none!important}
  .bt-shell-header-editorial .bt-shell-mobile-primary{
    min-height:48px!important;
    margin-top:22px!important;
    padding:0 15px!important;
    border:1px solid var(--bts-accent,#ff6b18)!important;
    border-radius:var(--bt-header-control-radius,4px)!important;
    background:var(--bts-accent,#ff6b18)!important;
    font-size:11px!important;
    font-weight:700!important;
    letter-spacing:.05em!important;
    text-transform:uppercase!important;
  }
  .bt-shell-menu-backdrop{
    background:rgba(0,0,0,.24)!important;
  }
}

/* ===== END SOURCE: store-shell-v4.6.css ===== */

/* ===== BEGIN SOURCE: store-shell-global-qa-v40810.css ===== */
/* ========================================================================
   Bi'Tişört v4.0.8.10 — Global StoreShell Responsive / Typography QA
   Merkezi public header + footer son kalite katmanı.
   İş mantığına ve sayfa içeriğine dokunmaz.
   ======================================================================== */

/* Common font rendering and box model inside the central shell. */
html body .bt-shell-announcement,
html body .bt-shell-header,
html body .bt-shell-footer,
html body .bt-shell-announcement *,
html body .bt-shell-header *,
html body .bt-shell-footer * {
  box-sizing: border-box !important;
  font-family: "Segoe UI Variable Text", "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ------------------------------------------------------------------------
   Header typography — calmer and consistent across every public page.
   ------------------------------------------------------------------------ */
html body .bt-shell-header-editorial .bt-shell-menu > a:not(.bt-shell-mobile-primary) {
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

html body .bt-shell-header-editorial .bt-shell-cta {
  min-height: 42px !important;
  padding-inline: 18px !important;
  border-radius: 4px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: -.01em !important;
  text-transform: none !important;
}
html body .bt-shell-header-editorial .bt-shell-cta span,
html body .bt-shell-header-editorial .bt-shell-cta b,
html body .bt-shell-header-editorial .bt-shell-cta strong {
  font-weight: inherit !important;
}

html body .bt-shell-header-editorial .bt-account-chip,
html body .bt-shell-header-editorial .store-cart-button {
  min-height: 42px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: -.005em !important;
  text-transform: none !important;
}
html body .bt-shell-header-editorial .bt-account-chip span,
html body .bt-shell-header-editorial .store-cart-button span {
  font-weight: inherit !important;
}
html body .bt-shell-header-editorial .store-cart-count {
  font-size: 9px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

html body .bt-shell-header-editorial .bt-shell-wordmark {
  font-weight: 650 !important;
  letter-spacing: -.035em !important;
}

/* Keep the ticker compact but avoid artificial ultra-bold text. */
html body .bt-shell-announcement-editorial .bt-shell-ann-track,
html body .bt-shell-announcement-editorial .bt-shell-ann-track b {
  font-weight: 500 !important;
}

/* ------------------------------------------------------------------------
   Footer spacing + typography — same breathing room on every page.
   ------------------------------------------------------------------------ */
html body .bt-shell-footer-editorial .shell {
  width: min(var(--bt-page-width, 1440px), calc(100% - 96px)) !important;
  max-width: none !important;
  margin-inline: auto !important;
}
html body .bt-shell-footer-editorial .bt-shell-footer-brand-panel p {
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  letter-spacing: 0 !important;
}
html body .bt-shell-footer-editorial .bt-shell-footer-brand-panel > a {
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: -.01em !important;
  text-transform: none !important;
}
html body .bt-shell-footer-editorial .bt-shell-footer-brand-panel > a span,
html body .bt-shell-footer-editorial .bt-shell-footer-brand-panel > a b,
html body .bt-shell-footer-editorial .bt-shell-footer-brand-panel > a strong {
  font-weight: inherit !important;
}
html body .bt-shell-footer-editorial .bt-shell-footer-column > strong {
  font-size: 10px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  letter-spacing: .08em !important;
}
html body .bt-shell-footer-editorial .bt-shell-footer-column > a,
html body .bt-shell-footer-editorial .bt-shell-footer-column > span {
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  letter-spacing: 0 !important;
}
html body .bt-shell-footer-editorial .bt-shell-footer-contact-more {
  font-weight: 500 !important;
}
html body .bt-shell-footer-editorial .store-footer-bottom {
  font-size: 10px !important;
  font-weight: 400 !important;
  letter-spacing: .035em !important;
}

/* ------------------------------------------------------------------------
   Interaction QA
   ------------------------------------------------------------------------ */
html body .bt-shell-header a,
html body .bt-shell-header button,
html body .bt-shell-footer a,
html body .bt-shell-footer button {
  -webkit-tap-highlight-color: transparent;
}
html body .bt-shell-header a:focus-visible,
html body .bt-shell-header button:focus-visible,
html body .bt-shell-footer a:focus-visible,
html body .bt-shell-footer button:focus-visible {
  outline: 2px solid var(--bt-action-primary, #ff6b18) !important;
  outline-offset: 3px !important;
}

/* ------------------------------------------------------------------------
   Tablet / mobile QA
   ------------------------------------------------------------------------ */
@media (max-width: 1180px) {
  html body .bt-shell-footer-editorial .shell {
    width: calc(100% - 56px) !important;
  }
}

@media (max-width: 760px) {
  html body .bt-shell-header-editorial .bt-shell-nav,
  html body .bt-shell-header-editorial .nav.shell.bt-shell-nav {
    width: calc(100% - 32px) !important;
  }
  html body .bt-shell-header-editorial .bt-shell-menu > a:not(.bt-shell-mobile-primary),
  html body .bt-shell-header-editorial .bt-shell-mobile-links > a {
    min-height: 48px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }
  html body .bt-shell-header-editorial .bt-shell-mobile-primary {
    min-height: 48px !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: -.01em !important;
    text-transform: none !important;
  }
  html body .bt-shell-footer-editorial .shell {
    width: calc(100% - 40px) !important;
  }
  html body .bt-shell-footer-editorial .bt-shell-footer-main {
    padding-top: 44px !important;
    padding-bottom: 34px !important;
  }
}

@media (max-width: 480px) {
  html body .bt-shell-header-editorial .bt-shell-nav,
  html body .bt-shell-header-editorial .nav.shell.bt-shell-nav {
    width: calc(100% - 24px) !important;
  }
  html body .bt-shell-footer-editorial .shell {
    width: calc(100% - 32px) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html body .bt-shell-header *,
  html body .bt-shell-footer * {
    transition-duration: .01ms !important;
  }
}

/* ===== END SOURCE: store-shell-global-qa-v40810.css ===== */

/* ===== BEGIN SOURCE: store-home-shell-sync-v408101.css ===== */
/* ========================================================================
   Bi'Tişört v4.0.8.10.1 — Home Header Utility + Home-Reference Footer Sync
   - Ana sayfa Giriş/Hesabım/Sepet: StoreShell/sepet görünümüyle eşleşir.
   - Merkezi public footer: ana sayfanın açık renkli yerleşimini kullanır.
   ======================================================================== */

/* ------------------------------------------------------------------------
   1) HOME HEADER — sync account/cart utilities with the StoreShell header.
   ------------------------------------------------------------------------ */
body[data-bt-home-shell-sync="4.0.8.10.1"] > .site-header .bt-account-chip,
body[data-bt-home-shell-sync="4.0.8.10.1"] > .site-header .store-cart-button{
  box-sizing:border-box!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:42px!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  color:#151515!important;
  box-shadow:none!important;
  font-family:"Segoe UI Variable Text","Segoe UI",Inter,system-ui,-apple-system,BlinkMacSystemFont,Arial,sans-serif!important;
  font-size:12px!important;
  font-weight:500!important;
  line-height:1!important;
  letter-spacing:-.005em!important;
  text-transform:none!important;
  text-decoration:none!important;
  white-space:nowrap!important;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
body[data-bt-home-shell-sync="4.0.8.10.1"] > .site-header .bt-account-chip{
  gap:8px!important;
  padding:0 4px 0 14px!important;
  border-left:1px solid #d8d8d8!important;
}
body[data-bt-home-shell-sync="4.0.8.10.1"] > .site-header .bt-account-chip i{
  display:grid!important;
  place-items:center!important;
  width:auto!important;
  min-width:14px!important;
  height:auto!important;
  margin:0!important;
  padding:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  color:inherit!important;
  font-family:"Segoe UI Symbol","Segoe UI Variable Text","Segoe UI",sans-serif!important;
  font-size:12px!important;
  font-style:normal!important;
  font-weight:500!important;
  line-height:1!important;
}
body[data-bt-home-shell-sync="4.0.8.10.1"] > .site-header .bt-account-chip span,
body[data-bt-home-shell-sync="4.0.8.10.1"] > .site-header .store-cart-button .bt-cart-label{
  font:inherit!important;
}
body[data-bt-home-shell-sync="4.0.8.10.1"] > .site-header .store-cart-button{
  position:relative!important;
  gap:7px!important;
  padding:0 4px 0 10px!important;
  cursor:pointer!important;
}
body[data-bt-home-shell-sync="4.0.8.10.1"] > .site-header .store-cart-button .bt-cart-icon{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-width:18px!important;
  font-family:"Segoe UI Emoji","Segoe UI Symbol",sans-serif!important;
  font-size:17px!important;
  font-weight:400!important;
  line-height:1!important;
}
body[data-bt-home-shell-sync="4.0.8.10.1"] > .site-header .store-cart-count{
  display:grid!important;
  place-items:center!important;
  min-width:17px!important;
  height:17px!important;
  padding:0 4px!important;
  border:0!important;
  border-radius:999px!important;
  background:#ff6b18!important;
  color:#fff!important;
  font-family:"Segoe UI Variable Text","Segoe UI",Inter,system-ui,sans-serif!important;
  font-size:8px!important;
  font-weight:600!important;
  line-height:1!important;
  letter-spacing:0!important;
}
body[data-bt-home-shell-sync="4.0.8.10.1"] > .site-header .bt-account-chip:hover,
body[data-bt-home-shell-sync="4.0.8.10.1"] > .site-header .store-cart-button:hover{
  color:#ff6b18!important;
}
body[data-bt-home-shell-sync="4.0.8.10.1"] > .site-header .bt-account-chip:focus-visible,
body[data-bt-home-shell-sync="4.0.8.10.1"] > .site-header .store-cart-button:focus-visible{
  outline:2px solid #ff6b18!important;
  outline-offset:3px!important;
}

/* ------------------------------------------------------------------------
   2) CENTRAL FOOTER — exact placement language of the homepage footer.
   ------------------------------------------------------------------------ */
html body .bt-shell-footer-home-reference{
  box-sizing:border-box!important;
  margin:0!important;
  padding:48px 0 0!important;
  border:0!important;
  border-top:1px solid #eadfd4!important;
  background:var(--footer-bg,#fff8f1)!important;
  color:var(--footer-text,#172033)!important;
  box-shadow:none!important;
  font-family:"Segoe UI Variable Text","Segoe UI",Inter,system-ui,-apple-system,BlinkMacSystemFont,Arial,sans-serif!important;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
html body .bt-shell-footer-home-reference *,
html body .bt-shell-footer-home-reference *::before,
html body .bt-shell-footer-home-reference *::after{box-sizing:border-box!important}
html body .bt-shell-footer-home-reference > .shell{
  width:min(1440px,calc(100% - 96px))!important;
  max-width:none!important;
  margin-inline:auto!important;
  padding:0!important;
}
html body .bt-shell-footer-home-reference .store-footer-top{
  display:grid!important;
  grid-template-columns:minmax(330px,.9fr) minmax(0,1.65fr)!important;
  align-items:start!important;
  gap:54px!important;
}
html body .bt-shell-footer-home-reference .store-footer-brand-card{
  min-width:0!important;
  padding:28px!important;
  border:1px solid #eadfd4!important;
  border-radius:24px!important;
  background:var(--footer-card,#fff)!important;
  box-shadow:none!important;
}
html body .bt-shell-footer-home-reference .store-footer-logo{
  display:inline-flex!important;
  align-items:center!important;
  max-width:210px!important;
  color:var(--footer-text,#172033)!important;
  text-decoration:none!important;
}
html body .bt-shell-footer-home-reference .store-footer-logo .brand{
  display:inline-flex!important;
  align-items:center!important;
  min-width:0!important;
}
html body .bt-shell-footer-home-reference .store-footer-logo .bt-shell-logo{
  display:block!important;
  width:auto!important;
  height:min(var(--bt-shell-logo-height,40px),44px)!important;
  max-width:190px!important;
  object-fit:contain!important;
  filter:none!important;
}
html body .bt-shell-footer-home-reference .store-footer-logo .bt-shell-wordmark{
  color:var(--footer-text,#172033)!important;
  font-size:22px!important;
  font-weight:600!important;
  letter-spacing:-.035em!important;
}
html body .bt-shell-footer-home-reference .store-footer-brand-card > p{
  max-width:440px!important;
  margin:24px 0 20px!important;
  color:var(--footer-muted,#667085)!important;
  font-size:12px!important;
  font-weight:400!important;
  line-height:1.7!important;
  letter-spacing:0!important;
}
html body .bt-shell-footer-home-reference .store-footer-brand-actions{
  display:flex!important;
  align-items:center!important;
  flex-wrap:wrap!important;
  gap:10px!important;
}
html body .bt-shell-footer-home-reference .store-footer-primary,
html body .bt-shell-footer-home-reference .store-footer-secondary{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:12px!important;
  min-height:44px!important;
  padding:0 18px!important;
  border-radius:999px!important;
  box-shadow:none!important;
  font-size:11px!important;
  font-weight:500!important;
  line-height:1!important;
  letter-spacing:-.01em!important;
  text-decoration:none!important;
  text-transform:none!important;
}
html body .bt-shell-footer-home-reference .store-footer-primary{
  border:1px solid var(--footer-accent,#f97316)!important;
  background:var(--footer-accent,#f97316)!important;
  color:#fff!important;
}
html body .bt-shell-footer-home-reference .store-footer-secondary{
  border:1px solid #ddd4ca!important;
  background:transparent!important;
  color:var(--footer-text,#172033)!important;
}
html body .bt-shell-footer-home-reference .store-footer-primary b,
html body .bt-shell-footer-home-reference .store-footer-secondary b{
  font-weight:500!important;
}
html body .bt-shell-footer-home-reference .store-footer-primary:hover{filter:brightness(.95)}
html body .bt-shell-footer-home-reference .store-footer-secondary:hover{
  border-color:var(--footer-accent,#f97316)!important;
  color:var(--footer-accent,#f97316)!important;
}
html body .bt-shell-footer-home-reference .store-footer-links{
  display:grid!important;
  grid-template-columns:.82fr 1.12fr 1fr!important;
  gap:46px!important;
  min-width:0!important;
  padding-top:8px!important;
}
html body .bt-shell-footer-home-reference .store-footer-col{
  display:flex!important;
  align-items:flex-start!important;
  flex-direction:column!important;
  min-width:0!important;
  gap:10px!important;
}
html body .bt-shell-footer-home-reference .store-footer-col > strong{
  width:100%!important;
  margin:0 0 7px!important;
  padding-bottom:12px!important;
  border-bottom:1px solid #eadfd4!important;
  color:var(--footer-text,#172033)!important;
  font-size:11px!important;
  font-weight:600!important;
  line-height:1.2!important;
  letter-spacing:.075em!important;
  text-transform:uppercase!important;
}
html body .bt-shell-footer-home-reference .store-footer-col > a,
html body .bt-shell-footer-home-reference .store-footer-col > span{
  max-width:100%!important;
  color:var(--footer-muted,#667085)!important;
  font-size:12px!important;
  font-weight:400!important;
  line-height:1.5!important;
  letter-spacing:0!important;
  text-decoration:none!important;
  overflow-wrap:anywhere!important;
}
html body .bt-shell-footer-home-reference .store-footer-col > a:hover{
  color:var(--footer-accent,#f97316)!important;
}
html body .bt-shell-footer-home-reference .store-footer-more{
  display:inline-flex!important;
  align-items:center!important;
  gap:8px!important;
  margin-top:8px!important;
  color:var(--footer-text,#172033)!important;
  font-weight:500!important;
}
html body .bt-shell-footer-home-reference .store-footer-more b{
  color:var(--footer-accent,#f97316)!important;
  font-weight:500!important;
}
html body .bt-shell-footer-home-reference .store-footer-bottom{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:24px!important;
  width:100%!important;
  margin-top:38px!important;
  padding:18px 0 20px!important;
  border-top:1px solid #eadfd4!important;
  color:var(--footer-muted,#667085)!important;
  font-size:10px!important;
  font-weight:400!important;
  line-height:1.4!important;
  letter-spacing:.025em!important;
  text-transform:none!important;
}
html body .bt-shell-footer-home-reference .store-footer-slogan{text-align:right!important}
html body .bt-shell-footer-home-reference a:focus-visible{
  outline:2px solid var(--footer-accent,#f97316)!important;
  outline-offset:3px!important;
}

@media(max-width:1180px){
  body[data-bt-home-shell-sync="4.0.8.10.1"] > .site-header .bt-account-chip span{display:none!important}
  html body .bt-shell-footer-home-reference > .shell{width:calc(100% - 56px)!important}
  html body .bt-shell-footer-home-reference .store-footer-top{grid-template-columns:1fr!important;gap:38px!important}
  html body .bt-shell-footer-home-reference .store-footer-brand-card{max-width:720px!important}
  html body .bt-shell-footer-home-reference .store-footer-links{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:30px!important}
}

@media(max-width:760px){
  body[data-bt-home-shell-sync="4.0.8.10.1"] > .site-header .bt-account-chip{display:none!important}
  body[data-bt-home-shell-sync="4.0.8.10.1"] > .site-header .store-cart-button{
    width:40px!important;
    height:40px!important;
    min-height:40px!important;
    padding:0!important;
  }
  body[data-bt-home-shell-sync="4.0.8.10.1"] > .site-header .store-cart-button .bt-cart-label{display:none!important}
  body[data-bt-home-shell-sync="4.0.8.10.1"] > .site-header .store-cart-count{
    position:absolute!important;
    top:1px!important;
    right:-1px!important;
    min-width:16px!important;
    height:16px!important;
    border:2px solid #fff!important;
    font-size:7px!important;
  }
  html body .bt-shell-footer-home-reference{padding-top:34px!important}
  html body .bt-shell-footer-home-reference > .shell{width:calc(100% - 40px)!important}
  html body .bt-shell-footer-home-reference .store-footer-brand-card{padding:22px!important;border-radius:20px!important}
  html body .bt-shell-footer-home-reference .store-footer-links{grid-template-columns:1fr 1fr!important;gap:30px 24px!important}
  html body .bt-shell-footer-home-reference .store-footer-contact{grid-column:1/-1!important}
  html body .bt-shell-footer-home-reference .store-footer-bottom{align-items:flex-start!important;flex-direction:column!important;gap:7px!important;margin-top:30px!important}
  html body .bt-shell-footer-home-reference .store-footer-slogan{text-align:left!important}
}

@media(max-width:480px){
  html body .bt-shell-footer-home-reference > .shell{width:calc(100% - 28px)!important}
  html body .bt-shell-footer-home-reference .store-footer-links{grid-template-columns:1fr!important;gap:24px!important}
  html body .bt-shell-footer-home-reference .store-footer-contact{grid-column:auto!important}
  html body .bt-shell-footer-home-reference .store-footer-brand-actions{align-items:stretch!important;flex-direction:column!important}
  html body .bt-shell-footer-home-reference .store-footer-primary,
  html body .bt-shell-footer-home-reference .store-footer-secondary{width:100%!important}
}

@media(prefers-reduced-motion:reduce){
  html body .bt-shell-footer-home-reference *,
  body[data-bt-home-shell-sync="4.0.8.10.1"] > .site-header *{
    scroll-behavior:auto!important;
    transition:none!important;
    animation:none!important;
  }
}

/* ===== END SOURCE: store-home-shell-sync-v408101.css ===== */
