/* ═══════════════════════════════════════════════════════════════════
   SHIVA — berber/traş ekipmanı temaları için tasarım sistemi
   Kimlik: klasik berber — siyah/beyaz zemin + tek kırmızı vurgu, keskin
   köşeler (ustura hissi), dar/dik başlık fontu (berber tabelası hissi).
   Token adları KASITLI olarak genel `--c-*`/`--f-heading`/`--radius`
   ailesidir (tema-özel `--sh-*` değil) — RenderTrait::inlineCssVars()
   bu adları zaten `--et-*` sözleşmesine eşliyor (THEME_DEVELOPMENT §16.4),
   böylece themes/shared/ altındaki ortak bölümler (checkout/account/
   şifre sıfırlama/misafir takip) hiçbir ek kod olmadan doğru render eder.
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --c-ink:      #0A0A0A;
  --c-ink-2:    #1A1A1A;
  --c-primary:  #B01E2A;
  --c-primary-d:#8A1520;
  --c-bg:       #FFFFFF;
  --c-surface:  #F4F3F1;
  --c-muted:    #6B6B68;
  --c-muted-i:  #B8B4AC;   /* koyu zeminde ikincil metin */
  --c-line:     #E4E1DB;
  --c-line-i:   #2A2A2A;   /* koyu zeminde çizgi */
  --c-sale:     #B01E2A;
  --c-white:    #FFFFFF;

  --f-heading:  'Oswald', 'Arial Narrow', sans-serif;
  --ff-body:    'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-weight-heading: 600;
  --display-transform: uppercase;

  --container:  1320px;
  --radius:     2px;
  --radius-lg:  4px;
  --card-ratio: 1 / 1;

  --shadow-card: 0 1px 2px rgba(10,10,10,.06);
  --shadow-pop:  0 16px 40px rgba(10,10,10,.16);
}

/* ── Sıfırlama + temel ─────────────────────────────────────────────── */
.sh {
  font-family: var(--ff-body);
  color: var(--c-ink);
  background: var(--c-bg);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.sh * { box-sizing: border-box; }
.sh img { max-width: 100%; display: block; }
.sh a { color: inherit; text-decoration: none; }
.sh button { font: inherit; cursor: pointer; }
.sh [hidden] { display: none !important; }

.sh-wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 1024px) { .sh-wrap { padding-inline: 32px; } }

.sh-h1, .sh-h2, .sh-h3, .sh-h4,
.sh h1, .sh h2, .sh h3, .sh h4 {
  font-family: var(--f-heading);
  font-weight: var(--font-weight-heading);
  text-transform: var(--display-transform);
  letter-spacing: .01em;
  line-height: 1.08;
  margin: 0;
}
.sh-h1 { font-size: clamp(2.5rem, 4.6vw, 4.25rem); }
.sh-h2 { font-size: clamp(1.75rem, 2.8vw, 2.75rem); }
.sh-h3 { font-size: clamp(1.25rem, 1.6vw, 1.625rem); }
.sh-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-heading); font-weight: 500;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-primary);
}
.sh-eyebrow::before {
  content: ''; width: 18px; height: 2px; background: var(--c-primary);
}
.sh-lead { color: var(--c-muted); font-size: 16px; line-height: 1.6; }

/* ── Kaydırınca beliren bölümler (reveal_on_scroll ayarı) ──────────── */
body.sh-reveal-on .sh-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
body.sh-reveal-on .sh-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  body.sh-reveal-on .sh-reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Butonlar ───────────────────────────────────────────────────────
   .sh-btn: dolu kırmızı (birincil aksiyon)  .sh-btn--dark: dolu siyah
   .sh-btn--outline: çerçeveli (zeminine göre siyah/beyaz çerçeve)     */
.sh-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding-inline: 26px;
  font-family: var(--f-heading); font-weight: 600; font-size: 14px;
  letter-spacing: .06em; text-transform: uppercase;
  background: var(--c-primary); color: #fff;
  border: 1px solid var(--c-primary); border-radius: var(--radius);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.sh-btn:hover { background: var(--c-primary-d); border-color: var(--c-primary-d); transform: translateY(-1px); }
.sh-btn--dark { background: var(--c-ink); border-color: var(--c-ink); }
.sh-btn--dark:hover { background: var(--c-ink-2); border-color: var(--c-ink-2); }
.sh-btn--outline { background: transparent; color: var(--c-ink); border-color: var(--c-ink); }
.sh-btn--outline:hover { background: var(--c-ink); color: #fff; }
.sh-btn--outline-invert { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.sh-btn--outline-invert:hover { background: #fff; color: var(--c-ink); border-color: #fff; }
.sh-btn--sm { height: 40px; padding-inline: 18px; font-size: 13px; }
.sh-btn--block { width: 100%; }
.sh-btn[disabled] { opacity: .5; pointer-events: none; }

.sh-link { font-weight: 600; color: var(--c-ink); border-bottom: 1px solid var(--c-line); padding-bottom: 2px; }
.sh-link:hover { border-color: var(--c-primary); color: var(--c-primary); }

/* ── Form girdileri (genel) ────────────────────────────────────────── */
.sh-input, .sh-textarea {
  width: 100%; min-height: 46px; padding: 0 14px; border: 1px solid var(--c-line);
  border-radius: var(--radius); font-size: 14px; font-family: var(--ff-body); background: var(--c-bg); color: var(--c-ink);
}
.sh-textarea { min-height: 100px; padding-block: 12px; resize: vertical; }
.sh-input:focus, .sh-textarea:focus, .sh-select:focus { outline: none; border-color: var(--c-ink); }
.sh-input::placeholder, .sh-textarea::placeholder { color: var(--c-muted-i); }

/* ── Kart / rozet ilkelleri ─────────────────────────────────────────── */
.sh-card {
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--radius-lg); overflow: hidden;
}
.sh-badge {
  display: inline-flex; align-items: center;
  font-family: var(--f-heading); font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 9px; border-radius: var(--radius);
  background: var(--c-ink); color: #fff;
}
.sh-badge--sale { background: var(--c-sale); }
.sh-badge--outline { background: transparent; border: 1px solid currentColor; }

/* ── Bölüm iskeleti (global widget dış boşluğu global_widget_outer_style
   ile PHP tarafında inline basılır; burada yalnız iç düzen)            */
.sh-section { }
.sh-section__head { margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.sh-section__head--row {
  flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 20px;
}
.sh-section__head--center { align-items: center; text-align: center; }

/* ═══════════════ HEADER ═══════════════ */
.sh-announce {
  background: var(--c-primary); color: #fff;
  font-family: var(--f-heading); font-size: 12.5px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  text-align: center; padding: 9px 16px;
}
.sh-announce a { text-decoration: underline; text-underline-offset: 2px; }

.sh-header {
  background: var(--c-ink); color: #fff;
  border-bottom: 1px solid var(--c-line-i);
}
.sh-header.is-sticky { position: sticky; top: 0; z-index: 60; }
.sh-header__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 76px;
}
.sh-logo { font-family: var(--f-heading); font-weight: 700; font-size: 22px; letter-spacing: .04em; text-transform: uppercase; color: #fff; }
.sh-logo img { height: 34px; width: auto; }

.sh-nav-sub {
  background: var(--c-bg); border-bottom: 1px solid var(--c-line);
}
.sh-nav-sub__row { display: flex; align-items: center; gap: 28px; height: 52px; overflow-x: auto; scrollbar-width: none; }
.sh-nav-sub__row::-webkit-scrollbar { display: none; }
.sh-nav-sub a {
  font-family: var(--f-heading); font-weight: 500; font-size: 14px;
  letter-spacing: .03em; text-transform: uppercase; white-space: nowrap;
  color: var(--c-ink); position: relative; padding: 4px 0;
}
.sh-nav-sub a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -1px; height: 2px;
  background: var(--c-primary); transition: right .18s ease;
}
.sh-nav-sub a:hover::after { right: 0; }

.sh-header__icons { display: flex; align-items: center; gap: 18px; }
.sh-header__icons a, .sh-header__icons button {
  color: #fff; display: inline-flex; position: relative; background: none; border: 0; padding: 4px;
}
.sh-header__icons a:hover, .sh-header__icons button:hover { color: var(--c-muted-i); }
.sh-cart-count {
  position: absolute; top: -4px; right: -6px;
  min-width: 16px; height: 16px; padding: 0 3px;
  background: var(--c-primary); color: #fff;
  border-radius: 999px; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.sh-burger { display: none; }
@media (max-width: 900px) {
  .sh-nav-sub { display: none; }
  .sh-burger { display: inline-flex; }
}
.sh-header.is-scrolled { box-shadow: 0 4px 16px rgba(0,0,0,.28); }

/* Arama katmanı + mobil menü (header.php içindeki #shSearchOverlay/
   #shMobileNav/#shMobileBackdrop) — açma/kapama theme.js'te, once()
   korumalı (§12.1 kilitli bölüm yeniden-render riski). */
#shSearchOverlay:not([hidden]) { display: flex !important; }
#shMobileNav.is-open { transform: translateX(0) !important; }
#shMobileBackdrop:not([hidden]) { display: block !important; }
body.sh-noscroll { overflow: hidden; }

/* ═══════════════ HERO — bölünmüş vitrin ═══════════════
   Referans yapı: sol büyük panel (tam yükseklik) + sağda üst üste iki küçük
   panel. Her panel kendi görseli üzerine koyu degrade + sol-alt metin/CTA
   taşır (stylecraftus.com'dan yapısal ilham — renk paleti kasıtlı olarak
   farklı, bkz. tema yol haritası). */
.sh-hero { background: var(--c-ink); }
.sh-hero__split { display: grid; grid-template-columns: 1fr; gap: 3px; min-height: 420px; }
@media (min-width: 860px) {
  .sh-hero__split { grid-template-columns: 1.3fr 1fr; min-height: 620px; }
  .sh-hero__split--single { grid-template-columns: 1fr; }
}
.sh-hpanel__side { display: grid; grid-template-rows: 1fr 1fr; gap: 3px; }

.sh-hpanel {
  position: relative; overflow: hidden; background: var(--c-ink-2);
  display: flex; align-items: flex-end; min-height: 210px;
}
.sh-hpanel--lg { min-height: 420px; }
@media (min-width: 860px) { .sh-hpanel--lg { min-height: 100%; } }
.sh-hpanel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sh-hpanel::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,.82) 0%, rgba(10,10,10,.25) 55%, rgba(10,10,10,.05) 100%);
}
.sh-hpanel__body { position: relative; z-index: 1; padding: 28px; width: 100%; }
.sh-hpanel--lg .sh-hpanel__body { padding: 40px; max-width: 30ch; }
.sh-hpanel__title { color: #fff; margin: 0; }
.sh-hpanel--lg .sh-hpanel__title { max-width: 12ch; }
.sh-hpanel__sub { color: var(--c-muted-i); font-size: 15px; margin: 14px 0 0; max-width: 42ch; }
.sh-hpanel__body .sh-btn { margin-top: 18px; }
.sh-hpanel--sm .sh-hpanel__body .sh-btn { margin-top: 12px; }
.sh-hpanel__tag {
  position: absolute; z-index: 1; top: 18px; right: 18px;
  background: var(--c-primary); color: #fff;
  font-family: var(--f-heading); font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--radius);
}

/* ═══════════════ PERKS (güven şeridi) ═══════════════ */
.sh-perks {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px; background: var(--c-line); border: 1px solid var(--c-line);
}
.sh-perk {
  background: var(--c-bg); padding: 30px 26px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.sh-perk__icon {
  width: 52px; height: 52px; border-radius: 999px;
  border: 1.5px solid var(--c-ink); display: flex; align-items: center; justify-content: center;
  color: var(--c-ink);
}
.sh-perk__title { font-family: var(--f-heading); font-weight: 600; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; }
.sh-perk__text { color: var(--c-muted); font-size: 14px; line-height: 1.55; max-width: 30ch; }

/* ═══════════════ CATEGORY TABS ═══════════════ */
.sh-tabs {
  display: inline-flex; padding: 4px; background: var(--c-surface);
  border: 1px solid var(--c-line); border-radius: 999px;
}
.sh-tabs__btn {
  border: 0; background: transparent; padding: 9px 22px; border-radius: 999px;
  font-family: var(--f-heading); font-weight: 600; font-size: 13px;
  letter-spacing: .04em; text-transform: uppercase; color: var(--c-muted);
}
.sh-tabs__btn.is-active { background: var(--c-ink); color: #fff; }

.sh-cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 32px; }
@media (min-width: 720px) { .sh-cat-grid { grid-template-columns: repeat(4, 1fr); } }
.sh-cat-tile { display: block; text-align: center; }
.sh-cat-tile__media {
  position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--c-surface); display: flex; align-items: center; justify-content: center;
}
.sh-cat-tile__media img { width: 78%; height: 78%; object-fit: contain; transition: transform .4s ease; }
.sh-cat-tile:hover .sh-cat-tile__media img { transform: scale(1.06); }
.sh-cat-tile__label {
  margin-top: 14px; font-family: var(--f-heading); font-weight: 600; font-size: 14px;
  letter-spacing: .06em; text-transform: uppercase; color: var(--c-ink);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.sh-cat-tile__label span { color: var(--c-muted); font-size: 12px; text-transform: none; letter-spacing: 0; font-family: var(--ff-body); font-weight: 400; }

/* ═══════════════ ÜRÜN RAYI + KART ═══════════════ */
.sh-rail-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.sh-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (min-width: 720px) { .sh-grid { grid-template-columns: repeat(var(--cols, 4), 1fr); } }

.sh-product {
  display: flex; flex-direction: column; background: var(--c-bg);
}
.sh-product__media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--c-surface); aspect-ratio: var(--card-ratio);
}
.sh-product__media img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
  transition: opacity .35s ease;
}
.sh-product__media img.sh-product__img--alt { opacity: 0; }
.sh-product:hover .sh-product__img--alt { opacity: 1; }
.sh-product__badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 6px; }
.sh-product__brand { margin-top: 14px; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--c-muted); }
.sh-product__name { margin-top: 4px; font-weight: 600; font-size: 15px; line-height: 1.35; }
.sh-product__rating { margin-top: 6px; display: flex; align-items: center; gap: 6px; color: var(--c-primary); font-size: 13px; }
.sh-product__rating span { color: var(--c-muted); }
.sh-product__price { margin-top: 8px; display: flex; align-items: baseline; gap: 8px; }
.sh-product__price strong { font-family: var(--f-heading); font-size: 17px; font-weight: 600; }
.sh-product__price del { color: var(--c-muted); font-size: 13px; }
.sh-product__cta { margin-top: 14px; }

/* ═══════════════ İHTİYACINA GÖRE SEÇ ═══════════════ */
.sh-usecase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (min-width: 720px) { .sh-usecase-grid { grid-template-columns: repeat(4, 1fr); } }
.sh-usecase {
  position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius-lg);
  overflow: hidden; display: flex; align-items: flex-end; padding: 18px;
  background: var(--c-ink);
}
.sh-usecase img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .72; }
.sh-usecase::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,.05), rgba(10,10,10,.85)); }
.sh-usecase span {
  position: relative; z-index: 1; color: #fff;
  font-family: var(--f-heading); font-weight: 600; font-size: 15px;
  letter-spacing: .04em; text-transform: uppercase;
}

/* ═══════════════ BLOG ═══════════════ */
.sh-blog-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
@media (min-width: 720px) { .sh-blog-grid { grid-template-columns: repeat(var(--cols, 3), 1fr); } }
.sh-blog-card__media { aspect-ratio: 16 / 10; border-radius: var(--radius-lg); overflow: hidden; background: var(--c-surface); }
.sh-blog-card__media img { width: 100%; height: 100%; object-fit: cover; }
.sh-blog-card__date { margin-top: 14px; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--c-muted); }
.sh-blog-card__title { margin-top: 6px; font-weight: 600; font-size: 17px; line-height: 1.35; }
.sh-blog-card__title:hover { color: var(--c-primary); }

/* ═══════════════ FOOTER ═══════════════ */
.sh-newsletter { background: var(--c-ink); color: #fff; padding-block: 40px; border-top: 1px solid var(--c-line-i); }
.sh-newsletter__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.sh-newsletter__form { display: flex; gap: 0; max-width: 420px; width: 100%; }
.sh-newsletter__form input {
  flex: 1; height: 48px; padding-inline: 16px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.22); border-right: 0;
  border-radius: var(--radius) 0 0 var(--radius); color: #fff; font-size: 14px;
}
.sh-newsletter__form input::placeholder { color: var(--c-muted-i); }
.sh-newsletter__form button { border-radius: 0 var(--radius) var(--radius) 0; }

.sh-footer { background: var(--c-ink); color: var(--c-muted-i); padding-block: 48px 24px; }
.sh-footer__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (min-width: 720px) { .sh-footer__grid { grid-template-columns: repeat(4, 1fr) 1.2fr; } }
.sh-footer__col-title { font-family: var(--f-heading); font-weight: 600; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.sh-footer__col a { display: block; padding: 5px 0; font-size: 14px; }
.sh-footer__col a:hover { color: #fff; }
.sh-footer__social { display: flex; gap: 12px; }
.sh-footer__social a {
  width: 36px; height: 36px; border-radius: 999px; border: 1px solid rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.sh-footer__social a:hover { background: var(--c-primary); border-color: var(--c-primary); }
.sh-footer__wordmark {
  margin-top: 44px; font-family: var(--f-heading); font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 5rem); letter-spacing: .02em; text-transform: uppercase;
  color: var(--c-ink-2); line-height: 1;
}
.sh-footer__bottom {
  margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--c-line-i);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 13px;
}
.sh-footer__bottom a:hover { color: #fff; }

@media (prefers-reduced-transparency: reduce) {
  .sh-newsletter__form input { background: var(--c-ink-2); }
}

/* ═══════════════ KIRINTI YOLU (breadcrumb) ═══════════════ */
.sh-crumb { display: flex; gap: 6px; flex-wrap: wrap; font-size: 12px; color: var(--c-muted); padding: 16px 0; }
.sh-crumb a:hover { color: var(--c-ink); }
.sh-crumb__sep { color: var(--c-muted-i); }

/* ═══════════════ ÜRÜN LİSTELEME (kategori/mağaza/marka/arama) ═══════════════ */
.sh-listing-head { padding-bottom: 8px; }
.sh-listing-head__desc { color: var(--c-muted); max-width: 62ch; margin: 8px 0 0; font-size: 15px; }

.sh-shop { display: grid; gap: 28px; padding-block: 24px 64px; }
@media (min-width: 1024px) { .sh-shop { grid-template-columns: 260px minmax(0, 1fr); gap: 40px; align-items: start; } }

.sh-filters {
  position: fixed; inset: 0 20% 0 0; z-index: 90; background: var(--c-bg);
  padding: 20px; overflow-y: auto; transform: translateX(-100%);
  transition: transform .28s ease;
}
.sh-filters.is-open { transform: none; }
@media (min-width: 1024px) {
  .sh-filters { position: static; transform: none; inset: auto; padding: 0; overflow: visible; }
}
.sh-filters__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
@media (min-width: 1024px) { .sh-filters__head { display: none; } }
.sh-fgroup { border-bottom: 1px solid var(--c-line); padding: 16px 0; }
.sh-fgroup__t {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  background: none; border: 0; padding: 0; text-align: left;
  font-family: var(--f-heading); font-weight: 600; font-size: 13px;
  letter-spacing: .06em; text-transform: uppercase; color: var(--c-ink);
}
.sh-fgroup__t svg { width: 16px; height: 16px; transition: transform .2s ease; }
.sh-fgroup.is-open .sh-fgroup__t svg { transform: rotate(180deg); }
.sh-fgroup__body { padding-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.sh-fgroup__body a { font-size: 14px; color: var(--c-muted); }
.sh-fgroup__body a:hover, .sh-fgroup__body a.is-active { color: var(--c-ink); font-weight: 600; }
.sh-fgroup__body a.is-active { color: var(--c-primary); }
.sh-pricerow { display: flex; gap: 8px; align-items: center; }
.sh-pricerow input {
  min-height: 42px; flex: 1; min-width: 0; padding-inline: 10px;
  border: 1px solid var(--c-line); border-radius: var(--radius); font-size: 14px;
}

.sh-shop__bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.sh-shop__count { font-size: 13px; color: var(--c-muted); }
.sh-filterbtn { display: inline-flex; }
@media (min-width: 1024px) { .sh-filterbtn { display: none; } }
.sh-select {
  appearance: none; min-height: 40px; padding: 0 34px 0 14px; border: 1px solid var(--c-line);
  border-radius: var(--radius); font-size: 13px; background: var(--c-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6B68' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center; background-size: 16px;
}

.sh-pager { display: flex; gap: 6px; justify-content: center; align-items: center; margin-top: 36px; flex-wrap: wrap; }
.sh-pager a, .sh-pager span {
  min-width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--c-line); border-radius: var(--radius); font-size: 13px; font-weight: 600;
}
.sh-pager .is-current { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }
.sh-pager .is-disabled { opacity: .35; pointer-events: none; }

.sh-empty { text-align: center; padding: 64px 20px; }
.sh-empty__icon { color: var(--c-muted-i); margin-bottom: 16px; }
.sh-empty__icon svg { width: 44px; height: 44px; }
.sh-empty__title { margin: 0 0 8px; }
.sh-empty__text { color: var(--c-muted); margin: 0 0 22px; }

.sh-scrim {
  position: fixed; inset: 0; z-index: 85; background: rgba(10, 10, 10, .5);
  opacity: 0; visibility: hidden; transition: opacity .28s ease, visibility .28s;
}
.sh-scrim.is-open { opacity: 1; visibility: visible; }
@media (min-width: 1024px) { .sh-scrim { display: none; } }

/* ═══════════════ ÜRÜN DETAY (PDP) ═══════════════ */
.sh-pdp { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(28px, 3.6vw, 64px); align-items: start; padding-block: clamp(20px, 3vw, 40px) 64px; }
@media (max-width: 900px) { .sh-pdp { grid-template-columns: minmax(0, 1fr); } }

.sh-gal { display: flex; flex-direction: column; gap: 10px; }
.sh-gal__stack img, .sh-gal__stack picture { width: 100%; border-radius: var(--radius-lg); background: var(--c-surface); }
.sh-gal__stack img { display: block; }

.sh-buy { position: relative; }
.sh-buy.is-sticky { position: sticky; top: 96px; }
.sh-buy__brand { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--c-primary); margin-bottom: 10px; display: inline-block; }
.sh-buy__title { margin: 0 0 14px; }
.sh-buy__meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; font-size: 12px; color: var(--c-muted); }
.sh-buy__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.sh-buy__tag { display: inline-flex; align-items: center; padding: 5px 12px; border: 1px solid var(--c-line); border-radius: 999px; font-size: 11px; font-weight: 600; color: var(--c-muted); }

.sh-buy__price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.sh-buy__price ins { text-decoration: none; font-family: var(--f-heading); font-weight: 600; font-size: clamp(24px, 3vw, 32px); color: var(--c-primary); }
.sh-buy__price .sh-buy__now { font-family: var(--f-heading); font-weight: 600; font-size: clamp(24px, 3vw, 32px); }
.sh-buy__price del { color: var(--c-muted); font-size: 16px; }
.sh-buy__save { font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--c-primary); margin-bottom: 18px; }
.sh-buy__excerpt { color: var(--c-muted); font-size: 14.5px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--c-line); }

.sh-digital { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--c-surface); border-radius: var(--radius); margin-bottom: 18px; font-size: 13px; }
.sh-digital svg { width: 20px; height: 20px; flex: none; color: var(--c-primary); }

.sh-stock { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; margin-bottom: 18px; }
.sh-stock::before { content: ""; width: 7px; height: 7px; border-radius: 999px; background: currentColor; }
.sh-stock--in { color: #2E6B3E; }
.sh-stock--low { color: #9A6B14; }
.sh-stock--out { color: var(--c-primary); }

.sh-opt { margin-bottom: 22px; }
.sh-opt__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 10px; }
.sh-opt__name { font-family: var(--f-heading); font-weight: 600; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.sh-opt__picked { font-size: 12.5px; color: var(--c-muted); }
.sh-opt__list { display: flex; flex-wrap: wrap; gap: 8px; }
.sh-opt__btn {
  min-width: 44px; height: 44px; padding: 0 14px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--c-line); border-radius: var(--radius); font-size: 13px; font-weight: 600; background: var(--c-bg);
}
.sh-opt__btn:hover { border-color: var(--c-ink); }
.sh-opt__btn.is-active { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }
.sh-opt__btn.is-out { opacity: .4; text-decoration: line-through; cursor: not-allowed; }
.sh-opt__color { width: 38px; height: 38px; min-width: 0; padding: 0; border-radius: 999px; position: relative; }
.sh-opt__color.is-active { outline: 2px solid var(--c-ink); outline-offset: 3px; }
.sh-opt__img { width: 52px; height: 52px; min-width: 0; padding: 0; overflow: hidden; }
.sh-opt__img img { width: 100%; height: 100%; object-fit: cover; }

.sh-qty { display: inline-flex; align-items: center; border: 1px solid var(--c-line); border-radius: var(--radius); }
.sh-qty button { width: 44px; height: 48px; display: grid; place-items: center; font-size: 17px; background: none; border: 0; }
.sh-qty button:hover { background: var(--c-surface); }
.sh-qty input { width: 52px; height: 48px; border: 0; text-align: center; background: none; font-size: 14px; font-variant-numeric: tabular-nums; }

.sh-buy__actions { display: flex; gap: 10px; margin: 22px 0 18px; }
.sh-buy__actions .sh-btn { flex: 1; }
.sh-buy__favbtn { width: 52px; flex: none; display: grid; place-items: center; border: 1px solid var(--c-line); border-radius: var(--radius); background: var(--c-bg); transition: color .2s, border-color .2s; }
.sh-buy__favbtn:hover, .sh-buy__favbtn.is-fav { color: var(--c-primary); border-color: var(--c-primary); }
.sh-buy__favbtn svg { width: 19px; height: 19px; }
.sh-buy__favbtn.is-fav svg { fill: currentColor; }

.sh-share { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--c-line); }
.sh-share__lab { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--c-muted); }
.sh-share a { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--c-line); border-radius: 999px; transition: background .2s, color .2s, border-color .2s; }
.sh-share a:hover { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }
.sh-share svg { width: 15px; height: 15px; }

.sh-tabs-section { border-top: 1px solid var(--c-line); padding-top: clamp(30px, 4vw, 56px); }
.sh-tabs-section__nav { display: flex; gap: 28px; border-bottom: 1px solid var(--c-line); margin-bottom: 28px; flex-wrap: wrap; }
.sh-tabs-section__btn {
  padding-bottom: 14px; border-bottom: 2px solid transparent; background: none; border-top: 0; border-left: 0; border-right: 0;
  font-family: var(--f-heading); font-weight: 600; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--c-muted);
}
.sh-tabs-section__btn:hover { color: var(--c-ink); }
.sh-tabs-section__btn.is-active { color: var(--c-ink); border-color: var(--c-ink); }

.sh-prose { max-width: 72ch; font-size: 16px; line-height: 1.75; }
.sh-prose h2 { font-family: var(--f-heading); font-size: clamp(20px, 2.2vw, 26px); margin-top: 1.6em; }
.sh-prose h3 { font-family: var(--f-heading); font-size: clamp(17px, 1.8vw, 20px); margin-top: 1.4em; }
.sh-prose img { margin: 1.6em 0; border-radius: var(--radius-lg); }
.sh-prose ul, .sh-prose ol { margin: 0 0 1em 1.2em; }
.sh-prose ul { list-style: disc; }
.sh-prose ol { list-style: decimal; }
.sh-prose li { margin-bottom: .4em; }
.sh-prose a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 3px; }

.sh-spec { max-width: 720px; }
.sh-spec__row { display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--c-line); font-size: 14px; }
.sh-spec__row dt { color: var(--c-muted); margin: 0; }
.sh-spec__row dd { margin: 0; }
@media (max-width: 600px) { .sh-spec__row { grid-template-columns: minmax(0, 1fr); gap: 4px; } }

.sh-reviews { display: flex; flex-direction: column; gap: 22px; max-width: 780px; }
.sh-review { padding-bottom: 22px; border-bottom: 1px solid var(--c-line); }
.sh-review:last-child { border-bottom: 0; }
.sh-review__top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 9px; flex-wrap: wrap; }
.sh-review__who { font-family: var(--f-heading); font-weight: 600; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.sh-review__date { font-size: 11.5px; color: var(--c-muted); }
.sh-review__title { font-weight: 600; font-size: 16px; margin: 8px 0 6px; }
.sh-review__body { font-size: 14px; color: var(--c-muted); margin: 0; }

.sh-field { margin-bottom: 20px; }
.sh-flabel { display: block; font-family: var(--f-heading); font-weight: 600; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 8px; }
.sh-req { color: var(--c-primary); }

/* ═══════════════ SEPET ═══════════════ */
.sh-cart-page { padding-block: 24px 64px; }
.sh-cart-ship-bar { margin-bottom: 24px; padding: 14px 18px; background: var(--c-surface); border-radius: var(--radius-lg); }
.sh-cart-ship-bar__text { font-size: 13px; margin: 0 0 10px; }
.sh-cart-ship-bar__track { height: 6px; background: var(--c-line); border-radius: 999px; overflow: hidden; }
.sh-cart-ship-bar__fill { height: 100%; background: var(--c-primary); border-radius: 999px; transition: width .3s ease; }

.sh-cart-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; }
@media (min-width: 960px) { .sh-cart-grid { grid-template-columns: minmax(0, 1fr) 340px; align-items: start; gap: 40px; } }

.sh-cart-table { width: 100%; border-collapse: collapse; }
.sh-cart-table thead th {
  text-align: left; font-family: var(--f-heading); font-weight: 600; font-size: 11px;
  letter-spacing: .06em; text-transform: uppercase; color: var(--c-muted);
  padding-bottom: 14px; border-bottom: 1px solid var(--c-line);
}
.sh-cart-table td { padding: 18px 0; border-bottom: 1px solid var(--c-line); vertical-align: top; }
.sh-cart-item { display: flex; gap: 14px; align-items: flex-start; }
.sh-cart-item__img { width: 74px; height: 74px; flex: none; border-radius: var(--radius); background: var(--c-surface); object-fit: cover; }
.sh-cart-item__name { font-weight: 600; font-size: 14px; }
.sh-cart-item__variant { font-size: 12.5px; color: var(--c-muted); margin-top: 3px; }
.sh-cart-item__gift {
  display: inline-block; background: var(--c-ink); color: #fff; font-size: 10px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; padding: 2px 8px; border-radius: 20px; margin-left: 6px; vertical-align: middle;
}
.sh-cart-price-old { font-size: 11px; text-decoration: line-through; color: var(--c-muted); margin-bottom: 2px; }
.sh-cart-remove { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--c-line); border-radius: var(--radius); background: none; }
.sh-cart-remove:hover { border-color: var(--c-primary); color: var(--c-primary); }

.sh-cart-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 20px; }

.sh-coupon { display: flex; gap: 8px; max-width: 340px; }
.sh-coupon input { flex: 1; min-width: 0; height: 42px; padding-inline: 12px; border: 1px solid var(--c-line); border-radius: var(--radius); font-size: 13px; }
.sh-coupon-applied {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: #F0FDF4; border: 1px solid #BBF7D0; color: #166534; font-size: 13px; padding: 8px 12px; border-radius: var(--radius);
}
.sh-coupon-applied button { background: none; border: 0; color: #EF4444; font-size: 12px; text-decoration: underline; }
.sh-coupon-msg { font-size: 12px; margin-top: 6px; }
.sh-coupon-msg--error { color: #EF4444; }
.sh-coupon-msg--success { color: #16A34A; }

.sh-cart-totals { background: var(--c-surface); border-radius: var(--radius-lg); padding: 24px; }
.sh-cart-totals__title { font-family: var(--f-heading); font-weight: 600; font-size: 15px; letter-spacing: .03em; text-transform: uppercase; margin: 0 0 18px; }
.sh-cart-totals__row { display: flex; align-items: center; justify-content: space-between; font-size: 14px; padding: 8px 0; }
.sh-cart-totals__row--total { border-top: 1px solid var(--c-line); margin-top: 8px; padding-top: 16px; font-weight: 700; font-size: 16px; }
.sh-cart-totals__row .is-free { color: #16A34A; }
.sh-cart-totals__row .is-discount { color: #16A34A; }

.sh-cart-empty { text-align: center; padding: 72px 20px; }
.sh-cart-empty__icon { color: var(--c-muted-i); margin-bottom: 18px; }
.sh-cart-empty__icon svg { width: 46px; height: 46px; }
.sh-cart-empty__title { margin: 0 0 8px; }
.sh-cart-empty__text { color: var(--c-muted); margin: 0 0 24px; }

.et-qty-pending { opacity: .45; transition: opacity .15s ease; }

@media (max-width: 640px) {
  .sh-cart-table thead { display: none; }
  .sh-cart-table, .sh-cart-table tbody, .sh-cart-table tr, .sh-cart-table td { display: block; width: 100%; }
  .sh-cart-table tr { padding: 16px 0; }
  .sh-cart-table td { padding: 4px 0; border-bottom: 0; }
  .sh-cart-table tr + tr { border-top: 1px solid var(--c-line); }
}

/* ═══════════════ İŞLEM SONUCU (sipariş tamamlandı vb.) ═══════════════ */
.sh-note { max-width: 560px; margin: 0 auto; text-align: center; padding-block: 56px 40px; }
.sh-note__icon {
  width: 64px; height: 64px; border-radius: 999px; margin: 0 auto 20px;
  display: grid; place-items: center; background: var(--c-surface); color: var(--c-muted);
}
.sh-note__icon--ok { background: #F0FDF4; color: #16A34A; }
.sh-note__icon--error { background: #FEF2F2; color: #B91C1C; }
.sh-note__icon--pending { background: #EFF6FF; color: #2563EB; }
.sh-note__icon svg { width: 28px; height: 28px; }
.sh-note__title { margin: 0 0 10px; }
.sh-note__text { color: var(--c-muted); margin: 0 0 20px; }
.sh-note__acts { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.sh-label { font-size: 12px; color: var(--c-muted); }

.sh-summary { max-width: 640px; margin: 0 auto 40px; background: var(--c-surface); border-radius: var(--radius-lg); padding: 24px; }
.sh-summary__title { font-family: var(--f-heading); font-weight: 600; font-size: 15px; letter-spacing: .03em; text-transform: uppercase; margin: 0 0 16px; }
.sh-summary__row { display: flex; align-items: center; justify-content: space-between; font-size: 14px; padding: 8px 0; }
.sh-summary__row--total { border-top: 1px solid var(--c-line); margin-top: 8px; padding-top: 16px; font-weight: 700; font-size: 16px; }
.sh-summary__note { font-size: 12px; color: var(--c-muted); margin-top: 12px; }

.sh-co__item { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--c-line); }
.sh-co__item:last-of-type { border-bottom: 0; }
.sh-co__itemname { font-weight: 600; font-size: 14px; margin: 0; }
.sh-co__itemmeta { font-size: 12.5px; color: var(--c-muted); }
.sh-co__itemprice { font-weight: 600; font-size: 14px; white-space: nowrap; }

.sh-alert { padding: 12px 16px; border-radius: var(--radius); font-size: 13px; }
.sh-alert--error { background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; }
.sh-alert--success { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }

/* ═══════════════ GİRİŞ / KAYIT ═══════════════ */
.sh-auth { display: grid; grid-template-columns: 1fr; min-height: 60vh; }
.sh-auth:not(.sh-auth--single) { grid-template-columns: 1fr; }
@media (min-width: 900px) { .sh-auth:not(.sh-auth--single) { grid-template-columns: 1fr 1fr; } }
.sh-auth__aside { position: relative; background: var(--c-ink); display: none; }
@media (min-width: 900px) { .sh-auth__aside { display: block; } }
.sh-auth__aside img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .6; }
.sh-auth__asidebody { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 48px; color: #fff; }
.sh-auth__asidetitle { font-family: var(--f-heading); font-weight: 600; font-size: 26px; text-transform: uppercase; margin: 0 0 10px; }
.sh-auth__asidetext { color: var(--c-muted-i); font-size: 14px; max-width: 34ch; }
.sh-auth__form { display: flex; align-items: center; justify-content: center; padding: 56px 20px; }
.sh-auth__inner { width: 100%; max-width: 400px; }
.sh-auth__title { margin: 0 0 8px; }
.sh-auth__lede { color: var(--c-muted); font-size: 14px; margin: 0 0 24px; }
.sh-orbar { text-align: center; font-size: 12px; color: var(--c-muted); text-transform: uppercase; letter-spacing: .06em; margin: 20px 0; position: relative; }
.sh-orbar::before, .sh-orbar::after { content: ''; position: absolute; top: 50%; width: 42%; height: 1px; background: var(--c-line); }
.sh-orbar::before { left: 0; } .sh-orbar::after { right: 0; }
.sh-social { display: flex; flex-direction: column; gap: 10px; }
.sh-social__btn {
  display: flex; align-items: center; justify-content: center; gap: 10px; height: 46px;
  border: 1px solid var(--c-line); border-radius: var(--radius); font-size: 14px; font-weight: 600;
}
.sh-social__btn:hover { border-color: var(--c-ink); }
.sh-social__btn svg { width: 18px; height: 18px; }
.sh-auth__foot { text-align: center; font-size: 13px; color: var(--c-muted); margin-top: 24px; }
.sh-auth__foot a { color: var(--c-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ═══════════════ BLOG LİSTE / DETAY ═══════════════ */
.sh-catrail { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.sh-blog-card__meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--c-muted); margin-top: 14px; text-transform: uppercase; letter-spacing: .04em; }

.sh-article { max-width: 760px; margin: 0 auto; }
.sh-article__meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--c-muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 12px; }
.sh-article__hero { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 28px; background: var(--c-surface); }
.sh-article__hero img { width: 100%; display: block; }
.sh-article__body { max-width: 72ch; font-size: 16px; line-height: 1.75; }
.sh-article__body h2 { font-family: var(--f-heading); font-size: clamp(20px, 2.2vw, 26px); margin-top: 1.6em; }
.sh-article__body h3 { font-family: var(--f-heading); font-size: clamp(17px, 1.8vw, 20px); margin-top: 1.4em; }
.sh-article__body img { margin: 1.6em 0; border-radius: var(--radius-lg); max-width: 100%; }
.sh-article__body ul, .sh-article__body ol { margin: 0 0 1em 1.2em; }
.sh-article__body ul { list-style: disc; }
.sh-article__body ol { list-style: decimal; }
.sh-article__body li { margin-bottom: .4em; }
.sh-article__body a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 3px; }
.sh-article__body p { margin: 0 0 1.2em; }

/* ═══════════════ İLETİŞİM / 404 ═══════════════ */
.sh-editorial { display: grid; grid-template-columns: minmax(0, 1fr); gap: 40px; align-items: start; }
@media (min-width: 900px) { .sh-editorial { grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr); } }
.sh-field-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 20px; }
@media (min-width: 560px) { .sh-field-row { grid-template-columns: 1fr 1fr; } }

.sh-panel { background: var(--c-surface); border-radius: var(--radius-lg); padding: 24px; }
.sh-panel__t { font-family: var(--f-heading); font-weight: 600; font-size: 15px; letter-spacing: .03em; text-transform: uppercase; margin: 0 0 14px; }

.sh-search-404 { display: flex; gap: 8px; }
.sh-search-404 input { flex: 1; min-width: 0; }
.sh-search-404 button { width: 46px; height: 46px; flex: none; border: 1px solid var(--c-line); border-radius: var(--radius); background: var(--c-ink); color: #fff; display: grid; place-items: center; }
.sh-search-404 button svg { width: 18px; height: 18px; }

/* ═══════════════ VURGU BANDI (promo_band) ═══════════════ */
.sh-promo { position: relative; background: var(--c-ink); overflow: hidden; min-height: 320px; display: flex; align-items: center; }
.sh-promo__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.sh-promo__line {
  position: absolute; top: -20%; right: 18%; width: 3px; height: 160%;
  background: linear-gradient(180deg, transparent, var(--c-primary) 35%, var(--c-primary) 65%, transparent);
  transform: rotate(18deg); opacity: .85; pointer-events: none;
}
.sh-promo__inner { position: relative; z-index: 1; padding-block: 64px; }
.sh-promo__copy { max-width: 46ch; }
.sh-promo__title { color: #fff; margin: 12px 0 0; }
.sh-promo__accent { display: block; color: var(--c-primary); }
.sh-promo__text { color: var(--c-muted-i); font-size: 15px; margin: 18px 0 0; max-width: 42ch; }
.sh-promo .sh-btn { margin-top: 26px; }

/* ═══════════════ MARKA ŞERİDİ (brand_strip) ═══════════════ */
.sh-brandstrip__title { text-align: center; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted); margin: 0 0 24px; }
.sh-brandstrip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px; }
.sh-brandstrip__item {
  font-family: var(--f-heading); font-weight: 600; font-size: 18px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--c-muted); opacity: .75; transition: opacity .2s ease;
}
.sh-brandstrip__item:hover { opacity: 1; color: var(--c-ink); }
.sh-brandstrip__item img { height: 28px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .7; }
.sh-brandstrip__item:hover img { opacity: 1; filter: none; }
