:root {
  --lux-bg: #f7f4ef;
  --lux-bg-card: #fff;
  --lux-ink: #141414;
  --lux-ink-muted: #5c5c5c;
  --lux-gold: #c4a962;
  --lux-gold-light: #dbc98a;
  --lux-gold-dark: #9a7b3a;
  --lux-border: rgba(20, 20, 20, 0.08);
  --lux-shadow: 0 4px 24px rgba(20, 20, 20, 0.06);
  --lux-shadow-hover: 0 16px 48px rgba(20, 20, 20, 0.12);
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--lux-ink);
  background: var(--lux-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* —— Header —— */
.headerDiscount {
  background: #e30613;
  color: #fff;
  text-align: center;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
}
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 300;
}
.header-main {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) auto minmax(200px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 14px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 901px) {
  .header-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
  }
  .header-search-col {
    justify-self: unset;
    flex: 0 1 auto;
    max-width: 340px;
    width: min(340px, 36vw);
    z-index: 1;
  }
  .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    justify-self: unset;
  }
  .header-actions {
    justify-self: unset;
    flex: 0 0 auto;
    z-index: 1;
  }
}
.header-search-col { justify-self: start; width: 100%; max-width: 340px; }
.search-form-pill {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.search-form-pill:focus-within {
  border-color: #bbb;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .06);
}
.search-form-pill input {
  flex: 1;
  border: 0;
  padding: 11px 16px;
  font-size: 14px;
  outline: none;
  min-width: 0;
  background: transparent;
}
.search-form-pill input::placeholder { color: #aaa; }
.search-form-pill button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  flex-shrink: 0;
}
.search-form-pill button:hover { color: #b8860b; }

.logo {
  justify-self: center;
  align-self: center;
  text-decoration: none;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  transition: opacity .18s ease;
}
.logo:hover { opacity: .9; }
.logo:focus-visible {
  outline: 2px solid rgba(184, 134, 11, .45);
  outline-offset: 6px;
  border-radius: 4px;
}
.logo-img {
  width: clamp(160px, 26vw, 260px);
  height: auto;
  max-height: 52px;
  display: block;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  text-decoration: none;
  color: #222;
  border-radius: 10px;
  transition: background .15s, color .15s;
  min-width: 72px;
}
.header-action:hover {
  background: #f7f7f7;
  color: #111;
}
.header-action-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
}
.header-action-text {
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: .2px;
}
.header-cart.has-items .header-action-icon { color: #b8860b; }
.header-cart.has-items .header-action-text { color: #111; }
.cart-count-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: #e30613;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  line-height: 1;
}

.main-nav {
  background: #fff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #eee;
}
.nav-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0;
  min-height: 46px;
}
.main-nav > .container.nav-inner,
.main-nav .nav-inner { padding: 0 8px; }
.main-nav a {
  color: #111;
  text-decoration: none;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: color .15s;
}
.main-nav a:hover { color: #b8860b; }
.nav-caret { opacity: .7; margin-top: 1px; }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  z-index: 100;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
  border: 1px solid #eee;
  padding: 8px 0;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #333;
}
.nav-dropdown-menu a:hover { background: #fafafa; color: #b8860b; }
.nav-dropdown-menu .nav-all {
  font-weight: 700;
  border-bottom: 1px solid #eee;
  margin-bottom: 4px;
  color: #111;
}

.marquee {
  background: #0d0d0d;
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  overflow: hidden;
}
.marquee span { display: inline-block; }

.product-card .current { color: #b8860b; }
.btn, .checkout-form button, .product-card button { background: #0d0d0d; }
.btn:hover, .product-card button:hover { background: #b8860b; }
.content-wrap { padding: 24px 16px; max-width: 1200px; margin: 0 auto; }
.banners img { width: 100%; margin-bottom: 12px; border-radius: 8px; }
.products-section h2 { margin-bottom: 20px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  overflow: visible;
}
.product-grid > .product-card { overflow: visible; }
.product-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 12px;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
}
.product-card .product-img {
  position: relative;
  display: block;
  margin-bottom: 8px;
  border-radius: 8px;
  overflow: hidden;
  background: #fafafa;
}
.product-card-badges {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  max-width: calc(100% - 16px);
  pointer-events: none;
}
.product-card .badge {
  position: static;
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.2px;
  color: #fff;
  padding: 4px 7px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}
.product-card .badge.cargo { background: #0d0d0d; }
.product-card .badge.promo { background: #e30613; }
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center center;
  will-change: transform;
}
.product-card .product-img:hover img {
  transform: scale(1.08);
}
.product-card h3 { font-size: 14px; min-height: 40px; }
.product-card .old { text-decoration: line-through; color: #999; margin-right: 8px; }
.product-card .current { color: #ca1b1b; font-weight: 700; }
.product-card button { width: 100%; margin-top: 8px; padding: 10px; background: #111; color: #fff; border: 0; border-radius: 6px; cursor: pointer; }
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 32px; text-align: center; font-size: 14px; }
.site-footer { background: #f5f5f5; padding: 32px 16px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.whatsapp-float { position: fixed; right: 16px; bottom: 16px; background: #25d366; color: #fff; padding: 12px 16px; border-radius: 999px; text-decoration: none; font-weight: 600; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td { border: 1px solid #eee; padding: 10px; }
.checkout-form label { display: block; margin-bottom: 12px; }
.checkout-form input, .checkout-form textarea { width: 100%; padding: 8px; margin-top: 4px; }
.btn, .checkout-form button { display: inline-block; background: #ca1b1b; color: #fff; padding: 12px 24px; text-decoration: none; border: 0; border-radius: 6px; cursor: pointer; }
@media (max-width: 900px) {
  .header-main {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
    padding: 12px 16px;
  }
  .header-search-col { justify-self: center; max-width: 100%; }
  .logo { justify-self: center; }
  .header-actions {
    justify-self: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .main-nav a { font-size: 11px; padding: 10px 12px; }
}
@media (max-width: 768px) {
  .features { grid-template-columns: 1fr 1fr; }
  .header-action-text { font-size: 10px; }
  .header-action { min-width: 64px; padding: 6px 8px; }
  .logo-img { max-height: 44px; width: clamp(140px, 48vw, 220px); }
}

/* —— Ürün detay —— */
.page-product .content-wrap { padding-top: 16px; }
.product-breadcrumb {
  font-size: 13px;
  color: #888;
  margin-bottom: 16px;
}
.product-breadcrumb a { color: #666; text-decoration: none; }
.product-breadcrumb a:hover { color: #b8860b; }
.product-breadcrumb span { margin: 0 6px; }

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 40px;
}
.product-gallery { position: relative; }
.product-gallery-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pd-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  color: #fff;
  width: fit-content;
}
.pd-badge-ship { background: #0d0d0d; }
.pd-badge-promo { background: #ca1b1b; }
.pd-badge-sale { background: #b8860b; }
.product-image-frame {
  background: linear-gradient(145deg, #fafafa 0%, #f0f0f0 100%);
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  overflow: hidden;
  cursor: zoom-in;
}
.product-main-img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center center;
  will-change: transform;
}
.product-image-frame.is-zooming .product-main-img {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  .product-card .product-img:hover img,
  .cart-item-img:hover img,
  .product-main-img {
    transform: none !important;
    transition: none !important;
  }
}

.product-cat-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #b8860b;
  text-decoration: none;
  margin-bottom: 8px;
}
.product-cat-link:hover { text-decoration: underline; }
.product-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.3;
  margin: 0 0 14px;
  color: #111;
}

.live-viewers {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff8e6;
  border: 1px solid #f0e0b0;
  color: #6b5a20;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 18px;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: livePulse 1.4s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.2); }
}
#liveViewers.viewer-pulse { color: #b8860b; }

.product-price-block {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 18px;
}
.product-old-price {
  display: block;
  text-decoration: line-through;
  color: #999;
  font-size: 15px;
  margin-bottom: 4px;
}
.product-save {
  display: inline-block;
  background: #ca1b1b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.product-current-row { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; }
.product-current-price {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #b8860b;
}
.product-you-save { font-size: 13px; color: #22a06b; font-weight: 600; }

.product-trust {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.product-trust li {
  font-size: 13px;
  color: #444;
  padding-left: 22px;
  position: relative;
}
.product-trust li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.product-buy-form { margin-bottom: 14px; }
.qty-row { margin-bottom: 14px; }
.qty-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: #444; }
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.qty-btn {
  width: 44px;
  height: 44px;
  border: 0;
  background: #f5f5f5;
  font-size: 20px;
  cursor: pointer;
  color: #111;
}
.qty-btn:hover { background: #eee; }
.qty-control input {
  width: 56px;
  height: 44px;
  border: 0;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  -moz-appearance: textfield;
}
.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.btn-add-cart {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #0d0d0d 0%, #2a2a2a 100%);
  color: #d4af37;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.btn-add-cart:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

.product-urgency {
  font-size: 13px;
  color: #ca1b1b;
  background: #fff5f5;
  border: 1px dashed #f5c6c6;
  padding: 10px 12px;
  border-radius: 8px;
  line-height: 1.4;
}

.product-details-section {
  border-top: 1px solid #eee;
  padding-top: 28px;
}
.product-details-section h2 {
  font-size: 1.2rem;
  margin: 0 0 14px;
}
.product-desc {
  color: #444;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 24px;
}
.product-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.perk-card {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}
.perk-card strong { display: block; font-size: 14px; margin-bottom: 4px; color: #111; }
.perk-card span { font-size: 12px; color: #777; }

.purchase-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .15);
  padding: 12px 18px;
  border-radius: 12px;
  max-width: min(92vw, 400px);
  font-size: 14px;
  opacity: 0;
  transition: transform .35s cubic-bezier(.34, 1.4, .64, 1), opacity .3s;
  pointer-events: none;
}
.purchase-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.toast-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #22c55e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.toast-text strong { color: #111; }

@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; gap: 20px; }
  .product-image-frame { min-height: 280px; }
  .product-perks { grid-template-columns: 1fr; }
  .product-trust { grid-template-columns: 1fr; }
  .purchase-toast { bottom: 16px; }
}

/* —— Duyuru çubuğu —— */
.site-announcement {
  background: linear-gradient(90deg, #0d0d0d, #1a1a1a);
  color: #d4af37;
  text-align: center;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}

/* —— Sepet —— */
.page-cart .content-wrap {
  max-width: 1080px;
  padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
}
.page-cart .content-wrap:has(.cart-empty) {
  padding-bottom: 24px;
}

.cart-page-header { margin-bottom: 20px; }
.cart-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
}
.cart-breadcrumb a { color: #666; text-decoration: none; }
.cart-breadcrumb a:hover { color: #b8860b; }
.cart-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.cart-page-title {
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  margin: 0;
  font-weight: 800;
  color: #111;
  letter-spacing: -.02em;
}
.cart-page-sub {
  margin: 6px 0 0;
  font-size: 14px;
  color: #777;
}
.cart-header-link {
  font-size: 13px;
  font-weight: 600;
  color: #b8860b;
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid #e8d5a0;
  border-radius: 999px;
  background: #fffbf0;
}
.cart-header-link:hover { background: #fff3d0; }

.cart-trust-strip {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.cart-trust-strip li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #444;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  line-height: 1.25;
}
.cart-trust-ico { font-size: 14px; flex-shrink: 0; }

.cart-promo-card {
  background: linear-gradient(135deg, #0d0d0d 0%, #1f1a12 100%);
  color: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
}
.cart-promo-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 12px;
}
.cart-promo-badge {
  display: inline-block;
  background: #d4af37;
  color: #0d0d0d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 6px;
}
.cart-promo-top strong {
  font-size: 14px;
  font-weight: 700;
  color: #f5e6c8;
}
.cart-promo-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.cart-promo-step {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .15);
  transition: background .25s;
}
.cart-promo-step.is-filled {
  background: linear-gradient(90deg, #d4af37, #f0d78c);
  box-shadow: 0 0 12px rgba(212, 175, 55, .45);
}
.cart-promo-desc {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.45;
}

.cart-empty {
  text-align: center;
  padding: 48px 24px 40px;
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
  border: 1px solid #eee;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .04);
}
.cart-empty-visual {
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 50%;
  color: #bbb;
}
.cart-empty h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  color: #111;
}
.cart-empty p {
  color: #666;
  margin: 0 auto 24px;
  max-width: 320px;
  line-height: 1.5;
  font-size: 14px;
}
.cart-empty-perks {
  list-style: none;
  margin: 24px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  font-size: 12px;
  color: #888;
}
.cart-empty-perks li::before { content: "✓ "; color: #b8860b; font-weight: 700; }

.btn-cart-primary,
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #0d0d0d, #2a2a2a);
  color: #d4af37 !important;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
  transition: transform .15s, box-shadow .15s;
}
.btn-cart-primary:hover,
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr min(360px, 38%);
  gap: 24px;
  align-items: start;
}
.cart-section-label {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #999;
}
.cart-item-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 14px 16px;
  align-items: start;
  padding: 16px;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  transition: box-shadow .2s, border-color .2s;
}
.cart-item:hover {
  border-color: #e0d0a8;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
}
.cart-item-img {
  display: block;
  background: linear-gradient(145deg, #fafafa, #f0f0f0);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center center;
}
.cart-item-img:hover img {
  transform: scale(1.1);
}
.cart-item-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 6px;
}
.cart-chip {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
}
.cart-chip-ship { background: #ecfdf5; color: #047857; }
.cart-chip-promo { background: #0d0d0d; color: #d4af37; }
.cart-item-name {
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  color: #111;
  text-decoration: none;
  margin-bottom: 4px;
}
.cart-item-name:hover { color: #b8860b; }
.cart-item-unit {
  font-size: 12px;
  color: #999;
  margin-bottom: 12px;
}
.cart-item-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.cart-qty {
  display: inline-flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
}
.cart-qty form { display: contents; }
.cart-qty-btn {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  line-height: 1;
  transition: background .12s;
}
.cart-qty-btn:hover { background: #e8e8e8; }
.cart-qty-val {
  min-width: 32px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: #111;
}
.cart-remove-form { margin: 0; }
.cart-remove-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 0;
  color: #999;
  font-size: 12px;
  cursor: pointer;
  padding: 6px 0;
}
.cart-remove-btn:hover { color: #e30613; }
.cart-item-price {
  text-align: right;
  min-width: 88px;
  padding-top: 4px;
}
.cart-item-line {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: #b8860b;
  white-space: nowrap;
}
.cart-item-line-hint {
  display: block;
  font-size: 11px;
  color: #aaa;
  margin-top: 2px;
}

.cart-summary {
  position: sticky;
  top: 96px;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .06);
}
.cart-summary h2 {
  margin: 0 0 16px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #111;
}
.cart-savings-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, #ecfdf5, #f0fdf4);
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
}
.cart-savings-ico { font-size: 22px; }
.cart-savings-banner strong {
  display: block;
  color: #047857;
  font-size: 15px;
}
.cart-savings-banner span {
  font-size: 12px;
  color: #059669;
}
.cart-summary-rows { margin: 0 0 18px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
}
.summary-row:last-child { border-bottom: 0; }
.summary-row dt { color: #555; margin: 0; font-weight: 500; }
.summary-row dd { margin: 0; font-weight: 700; color: #111; text-align: right; }
.summary-muted { font-weight: 400; color: #aaa; font-size: 12px; }
.summary-discount dd { color: #16a34a; }
.summary-free { color: #16a34a !important; }
.summary-total {
  padding-top: 14px;
  margin-top: 6px;
  border-top: 2px solid #111 !important;
}
.summary-total dt { font-weight: 800; color: #111; font-size: 15px; }
.summary-total dd { font-size: 1.4rem; font-weight: 800; color: #b8860b; }

.btn-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, #e30613, #c00510);
  color: #fff !important;
  font-weight: 800;
  font-size: 15px;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 8px;
  border: 0;
  box-shadow: 0 4px 16px rgba(227, 6, 19, .35);
  transition: transform .15s, box-shadow .15s;
}
.btn-checkout:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(227, 6, 19, .4);
}
.btn-checkout-arrow { font-size: 18px; opacity: .9; }
.btn-continue {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  color: #666 !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
}
.btn-continue:hover { background: #f5f5f5; color: #111 !important; }
.cart-summary-notes {
  list-style: none;
  margin: 16px 0 0;
  padding: 14px 0 0;
  border-top: 1px dashed #e8e8e8;
  font-size: 11px;
  color: #999;
  line-height: 1.5;
}
.cart-summary-notes li {
  padding-left: 14px;
  position: relative;
  margin-bottom: 4px;
}
.cart-summary-notes li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d4af37;
}

.cart-mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: #fff;
  border-top: 1px solid #e8e8e8;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, .1);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
}
.cart-mobile-bar-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1080px;
  margin: 0 auto;
}
.cart-mobile-total { flex: 1; min-width: 0; }
.cart-mobile-label {
  display: block;
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.cart-mobile-total strong {
  display: block;
  font-size: 1.25rem;
  color: #b8860b;
  line-height: 1.2;
}
.cart-mobile-save {
  display: block;
  font-size: 11px;
  color: #16a34a;
  font-weight: 600;
}
.btn-checkout-mobile {
  flex-shrink: 0;
  width: auto;
  min-width: 140px;
  margin: 0;
  padding: 14px 20px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .cart-trust-strip { grid-template-columns: repeat(2, 1fr); }
  .cart-layout { grid-template-columns: 1fr; gap: 20px; }
  .cart-summary {
    position: static;
    order: 2;
  }
  .cart-items-panel { order: 1; }
  .cart-item {
    grid-template-columns: 88px 1fr;
    gap: 12px;
  }
  .cart-item-price {
    grid-column: 2;
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 0;
    margin-top: -4px;
  }
  .cart-item-line { font-size: 1.05rem; }
  .cart-mobile-bar { display: block; }
  .cart-summary .btn-checkout { display: none; }
  .page-cart .content-wrap { padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 480px) {
  .cart-header-link { width: 100%; text-align: center; }
  .cart-promo-card { padding: 14px; }
  .cart-item { padding: 14px; }
  .cart-item-actions {
    width: 100%;
    justify-content: space-between;
  }
  .cart-trust-strip li { font-size: 10px; padding: 8px 6px; }
}

.page-checkout .content-wrap { max-width: 1100px; }

.checkout-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #888;
  margin-bottom: 12px;
}
.checkout-breadcrumb a { color: #666; text-decoration: none; }
.checkout-breadcrumb a:hover { color: #b8860b; }

.checkout-header { margin-bottom: 20px; }
.checkout-header h1 {
  margin: 0 0 6px;
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -.02em;
}
.checkout-header-sub {
  margin: 0;
  font-size: 14px;
  color: #777;
}

.checkout-steps {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.checkout-steps li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #aaa;
  padding: 8px 14px;
  background: #f5f5f5;
  border-radius: 999px;
}
.checkout-steps li span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #666;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.checkout-steps li.done {
  color: #047857;
  background: #ecfdf5;
}
.checkout-steps li.done span { background: #a7f3d0; color: #047857; }
.checkout-steps li.active {
  color: #111;
  background: #fffbf0;
  box-shadow: 0 0 0 1px #e8d5a0;
}
.checkout-steps li.active span {
  background: linear-gradient(135deg, #0d0d0d, #2a2a2a);
  color: #d4af37;
}

.checkout-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr min(380px, 38%);
  gap: 24px;
  align-items: start;
}

.checkout-form { display: flex; flex-direction: column; gap: 16px; }

.checkout-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
  overflow: hidden;
}
.checkout-card-note {
  padding: 18px 20px;
  box-shadow: none;
}
.checkout-card-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
  border-bottom: 1px solid #f0f0f0;
}
.checkout-card-ico {
  font-size: 24px;
  line-height: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  flex-shrink: 0;
}
.checkout-card-head h2 {
  margin: 0 0 2px;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}
.checkout-card-head p {
  margin: 0;
  font-size: 12px;
  color: #999;
}
.checkout-card-body { padding: 20px; }

.checkout-field { margin-bottom: 0; }
.checkout-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #555;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.checkout-field .req { color: #e30613; }
.checkout-field .optional {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: #aaa;
  font-size: 11px;
}
.checkout-field input,
.checkout-field textarea,
.checkout-select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: #fafafa;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.checkout-field input:focus,
.checkout-field textarea:focus,
.checkout-select:focus {
  outline: none;
  border-color: #c9a227;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, .15);
}
.checkout-field input::placeholder,
.checkout-field textarea::placeholder { color: #bbb; }
.checkout-field textarea { resize: vertical; min-height: 88px; }

.checkout-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  margin-bottom: 14px;
}
.checkout-field-full { grid-column: 1 / -1; }

.invoice-type-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 0;
}
.invoice-pill {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
  background: #fafafa;
}
.invoice-pill input { position: absolute; opacity: 0; pointer-events: none; }
.invoice-pill.is-selected,
.invoice-pill:has(input:checked) {
  border-color: #c9a227;
  background: #fffbf0;
  box-shadow: 0 4px 16px rgba(201, 162, 39, .12);
}
.invoice-pill-title {
  font-size: 14px;
  font-weight: 700;
  color: #111;
}
.invoice-pill-desc {
  font-size: 11px;
  color: #888;
}
.checkout-corporate {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed #e8e8e8;
}
.checkout-corporate .checkout-field-grid { margin-bottom: 0; }

.checkout-trust {
  list-style: none;
  margin: 0;
  padding: 14px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  background: #f8f8f8;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #555;
}
.checkout-trust li { white-space: nowrap; }

.btn-checkout-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 24px;
  font-size: 16px;
  margin-top: 4px;
}
.checkout-back-link {
  text-align: center;
  margin: 0;
  font-size: 13px;
}
.checkout-back-link a {
  color: #888;
  text-decoration: none;
  font-weight: 600;
}
.checkout-back-link a:hover { color: #b8860b; }
.checkout-summary { position: sticky; top: 100px; }
.checkout-summary-count {
  margin: -8px 0 14px;
  font-size: 13px;
  color: #888;
}
.checkout-order-items {
  list-style: none;
  margin: 0 0 16px;
  padding: 0 0 16px;
  border-bottom: 1px solid #eee;
  max-height: 320px;
  overflow-y: auto;
}
.checkout-order-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 10px 12px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}
.checkout-order-item:last-child { border-bottom: 0; }
.checkout-order-img {
  display: block;
  background: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
}
.checkout-order-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
.checkout-order-name {
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: #111;
  text-decoration: none;
  margin-bottom: 4px;
}
.checkout-order-name:hover { color: #b8860b; }
.checkout-order-meta {
  font-size: 11px;
  color: #999;
}
.checkout-order-line {
  font-size: 13px;
  font-weight: 700;
  color: #b8860b;
  white-space: nowrap;
}
.checkout-promo-hint { margin-bottom: 14px; font-size: 12px; }
.checkout-summary-notes { margin-top: 14px; }
.checkout-summary .cart-savings-banner { margin-bottom: 14px; }
.cart-summary-promo {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.4;
}
.cart-summary-promo.applied {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}
.cart-summary-promo.hint {
  background: #fff8e6;
  border: 1px solid #f0e0b0;
  color: #6b5a20;
}
.promo-tag {
  display: inline-block;
  background: #0d0d0d;
  color: #d4af37;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 6px;
  letter-spacing: .5px;
}

.payment-method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.payment-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, background .2s;
  background: #fff;
}
.payment-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.payment-option.is-selected,
.payment-option:has(input:checked) {
  border-color: #c9a227;
  background: #fffbf0;
  box-shadow: 0 4px 16px rgba(201, 162, 39, .15);
}
.payment-option-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.payment-option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.payment-option-text strong {
  font-size: 14px;
  color: #111;
}
.payment-option-text small {
  font-size: 12px;
  color: #888;
  font-weight: 400;
}
@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
}
@media (max-width: 560px) {
  .payment-method-grid,
  .checkout-field-grid,
  .invoice-type-pills { grid-template-columns: 1fr; }
  .checkout-steps li { font-size: 11px; padding: 6px 10px; }
}

/* Mobil menü */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: none;
  cursor: pointer;
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #111;
  transition: transform .2s, opacity .2s;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 400;
}
body.nav-open { overflow: hidden; }
@media (max-width: 900px) {
  .header-main { position: relative; padding-left: 52px; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: min(300px, 88vw);
    height: 100%;
    z-index: 410;
    transform: translateX(-100%);
    transition: transform .25s;
    overflow-y: auto;
    border-bottom: 0;
  }
  body.nav-open .main-nav { transform: translateX(0); }
  .nav-inner { flex-direction: column; align-items: stretch; padding: 60px 12px 24px; }
  .nav-dropdown-menu {
    position: static;
    display: block;
    box-shadow: none;
    border: 0;
    padding-left: 12px;
    background: #f5f5f5;
  }
  .main-nav a { font-size: 13px; }
}

/* Katalog filtre */
.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: start;
}
.catalog-filters {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 18px;
  position: sticky;
  top: 100px;
}
.filter-form h2 { margin: 0 0 14px; font-size: 1rem; }
.filter-label { display: block; font-size: 12px; font-weight: 600; margin: 10px 0 4px; color: #555; }
.filter-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}
.filter-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.btn-filter {
  width: 100%;
  margin-top: 14px;
  padding: 12px;
  background: #0d0d0d;
  color: #d4af37;
  border: 0;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}
.filter-clear { display: block; text-align: center; margin-top: 10px; font-size: 13px; color: #666; }
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #666;
  position: relative;
  z-index: 5;
}
.search-toolbar { max-width: 1200px; margin: 0 auto 14px; padding: 0 16px; }
.grid-view-toggle {
  display: flex;
  gap: 2px;
  background: #eee;
  padding: 3px;
  border-radius: 8px;
  flex-shrink: 0;
  position: relative;
  z-index: 6;
}
.grid-view-toggle .view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #888;
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}
.grid-view-toggle .view-btn svg {
  pointer-events: none;
}
.grid-view-toggle .view-btn.active {
  background: #fff;
  color: #111;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .12);
}
.grid-view-toggle .view-btn:hover { color: #111; }

@media (max-width: 900px) {
  .catalog-product-grid.view-grid-1 {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
  .catalog-product-grid.view-grid-2 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  .catalog-product-grid.view-grid-2 .product-card { padding: 8px; }
  .catalog-product-grid.view-grid-2 .product-card img { height: 130px; }
  .catalog-product-grid.view-grid-2 .product-card h3 {
    font-size: 11px;
    line-height: 1.35;
    min-height: 0;
    margin: 6px 0 4px;
  }
  .catalog-product-grid.view-grid-2 .product-card .badge {
    font-size: 7px;
    padding: 3px 5px;
  }
  .catalog-product-grid.view-grid-2 .product-card-badges { top: 4px; left: 4px; gap: 3px; }
  .catalog-product-grid.view-grid-2 .product-card .current { font-size: 13px; }
  .catalog-product-grid.view-grid-2 .product-card .old { font-size: 10px; }
  .catalog-product-grid.view-grid-2 .product-card button {
    padding: 8px 4px;
    font-size: 10px;
  }
}
@media (min-width: 901px) {
  .grid-view-toggle { display: none; }
  .catalog-product-grid.view-grid-1,
  .catalog-product-grid.view-grid-2 {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
  }
}
.category-head .cat-count { color: #888; margin: 0; }
@media (max-width: 900px) {
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-filters { position: static; }
}

/* Yorumlar */
.product-reviews-section { margin-top: 40px; padding-top: 28px; border-top: 1px solid #eee; }
.product-rating-summary { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 14px; }
.product-rating-summary .stars { color: #d4af37; }
.review-flash {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 14px;
}
.review-list { list-style: none; padding: 0; margin: 0 0 24px; }
.review-item {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 10px;
}
.review-head { display: flex; flex-wrap: wrap; gap: 8px 12px; align-items: center; margin-bottom: 8px; font-size: 13px; }
.review-stars { color: #d4af37; }
.review-form {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 18px;
  max-width: 520px;
}
.review-form h3 { margin: 0 0 12px; }
.review-form label { display: block; margin-bottom: 10px; font-size: 14px; font-weight: 600; }
.review-form input, .review-form textarea, .review-form select {
  width: 100%; margin-top: 4px; padding: 10px; border: 1px solid #ddd; border-radius: 8px;
}
.similar-section { margin-top: 32px; }
.recent-section { margin-bottom: 32px; }

/* Sticky sepete ekle */
.sticky-add-cart {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 350;
  background: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 -8px 24px rgba(0,0,0,.1);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0));
}
.sticky-add-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-price { font-size: 1.25rem; font-weight: 800; color: #b8860b; }
.sticky-btn { width: auto; min-width: 160px; padding: 14px 20px; margin: 0; }

/* Statik sayfalar */
.static-page { max-width: 720px; line-height: 1.7; }
.static-page h1 { margin-top: 0; }
.static-page h2 { margin-top: 24px; font-size: 1.1rem; }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.contact-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px;
  background: #fafafa;
}
.contact-card h3 { margin: 0 0 8px; font-size: 14px; }
.site-footer .footer-grid { grid-template-columns: repeat(3, 1fr); }
.site-footer a { display: block; color: #444; text-decoration: none; margin-bottom: 6px; font-size: 14px; }
.site-footer a:hover { color: #b8860b; }

/* Çerez banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: #1a1a1a;
  color: #fff;
  padding: 14px 16px;
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  font-size: 13px;
}
.cookie-banner.is-visible {
  display: flex;
}
.cookie-banner[hidden] {
  display: none !important;
}
.cookie-banner a { color: #d4af37; }
.cookie-accept {
  background: #d4af37;
  color: #111;
  border: 0;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.invoice-type-field { border: 0; margin: 0 0 16px; padding: 0; }
.invoice-type-field legend { font-weight: 700; margin-bottom: 8px; }
.invoice-type-field label { display: inline-flex; align-items: center; gap: 6px; margin-right: 16px; font-weight: 500; }
.corporate-fields {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 14px;
}

img[loading="lazy"] { content-visibility: auto; }

/* —— Luxury theme —— */
.site-luxury .headerDiscount {
  background: var(--lux-ink);
  color: var(--lux-gold-light);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 16px;
}

.site-luxury .site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lux-border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.site-luxury .search-form-pill {
  border-color: var(--lux-border);
  background: var(--lux-bg-card);
}
.site-luxury .search-form-pill:focus-within {
  border-color: rgba(196, 169, 98, 0.45);
  box-shadow: 0 0 0 3px rgba(196, 169, 98, 0.12);
}
.site-luxury .search-form-pill button:hover { color: var(--lux-gold-dark); }

.site-luxury .header-action:hover {
  background: rgba(196, 169, 98, 0.08);
  color: var(--lux-ink);
}
.site-luxury .header-action-text {
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 10px;
}
.site-luxury .header-cart.has-items .header-action-icon { color: var(--lux-gold-dark); }
.site-luxury .cart-count-badge {
  background: var(--lux-gold);
  color: var(--lux-ink);
  font-weight: 700;
}

.site-luxury .main-nav {
  background: transparent;
  border-top: 1px solid var(--lux-border);
  border-bottom: 1px solid var(--lux-border);
}
.site-luxury .main-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 14px 16px;
  position: relative;
}
.site-luxury .main-nav a::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  height: 1px;
  background: var(--lux-gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.site-luxury .main-nav a:hover { color: var(--lux-gold-dark); }
.site-luxury .main-nav a:hover::after { transform: scaleX(1); }
.site-luxury .nav-dropdown-menu {
  border: 1px solid var(--lux-border);
  border-radius: 0 0 12px 12px;
  box-shadow: var(--lux-shadow-hover);
  padding: 10px 0;
}
.site-luxury .nav-dropdown-menu a:hover {
  background: rgba(196, 169, 98, 0.06);
  color: var(--lux-gold-dark);
}

.site-luxury .marquee {
  background: var(--lux-ink);
  color: var(--lux-gold-light);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 16px;
}

.site-luxury .content-wrap {
  max-width: 1240px;
  padding: 32px 20px 48px;
}

.site-luxury .section-eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lux-gold-dark);
}

.site-luxury .section-head {
  text-align: center;
  margin-bottom: 36px;
}
.site-luxury .section-head h2,
.site-luxury .products-section h2,
.site-luxury .product-details-section h2,
.site-luxury .static-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--lux-ink);
}
.site-luxury .section-head h2::after,
.site-luxury .products-section > h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
  margin: 16px auto 0;
}

.site-luxury .hero-banners {
  margin-bottom: 56px;
}
.site-luxury .hero-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}
.site-luxury .hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.site-luxury .hero-lead {
  margin: 0;
  color: var(--lux-ink-muted);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}

.site-luxury .banners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.site-luxury .banner-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--lux-shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.site-luxury .banner-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--lux-shadow-hover);
}
.site-luxury .banner-tile img {
  width: 100%;
  display: block;
  margin: 0;
  border-radius: 0;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-luxury .banner-tile:hover img { transform: scale(1.04); }
.site-luxury .banner-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 8px 14px;
  background: rgba(20, 20, 20, 0.72);
  backdrop-filter: blur(8px);
  color: var(--lux-gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-luxury .products-section {
  margin-bottom: 56px;
}
.site-luxury .product-grid {
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.site-luxury .product-card {
  background: var(--lux-bg-card);
  border: 1px solid var(--lux-border);
  border-radius: 2px;
  padding: 16px;
  box-shadow: var(--lux-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.site-luxury .product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lux-shadow-hover);
  border-color: rgba(196, 169, 98, 0.22);
}
.site-luxury .product-card .product-img {
  border-radius: 2px;
  background: linear-gradient(180deg, #faf8f5 0%, #f0ece4 100%);
  margin-bottom: 14px;
}
.site-luxury .product-card img { height: 220px; }
.site-luxury .product-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
  min-height: 44px;
  margin: 0 0 10px;
}
.site-luxury .product-card h3 a {
  color: var(--lux-ink);
  text-decoration: none;
  transition: color 0.2s;
}
.site-luxury .product-card h3 a:hover { color: var(--lux-gold-dark); }
.site-luxury .product-card .current {
  color: var(--lux-gold-dark);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.site-luxury .product-card .old { color: #999; font-size: 0.9rem; }
.site-luxury .product-card .badge.promo {
  background: var(--lux-ink);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-luxury .product-card .badge.cargo {
  background: var(--lux-gold-dark);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-luxury .product-card button,
.site-luxury .btn,
.site-luxury .checkout-form button {
  background: var(--lux-ink);
  color: var(--lux-gold-light);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.site-luxury .product-card button {
  padding: 12px;
  margin-top: 12px;
}
.site-luxury .product-card button:hover,
.site-luxury .btn:hover {
  background: var(--lux-gold-dark);
  color: #fff;
  transform: translateY(-1px);
}

.site-luxury .luxury-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--lux-border);
  border: 1px solid var(--lux-border);
  margin-top: 16px;
}
.site-luxury .trust-item {
  background: var(--lux-bg-card);
  padding: 28px 20px;
  text-align: center;
}
.site-luxury .trust-icon {
  display: block;
  color: var(--lux-gold);
  font-size: 10px;
  margin-bottom: 10px;
}
.site-luxury .trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--lux-ink);
}
.site-luxury .trust-item span:last-child {
  font-size: 12px;
  color: var(--lux-ink-muted);
  line-height: 1.5;
}

.site-luxury .site-footer {
  background: var(--lux-ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 48px 20px 32px;
  margin-top: 64px;
}
.site-luxury .footer-brand {
  text-align: center;
  max-width: 420px;
  margin: 0 auto 36px;
}
.site-luxury .footer-logo {
  width: min(220px, 60vw);
  height: auto;
  margin: 0 auto 14px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.site-luxury .footer-tagline {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
}
.site-luxury .site-footer h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--lux-gold-light);
  margin: 0 0 14px;
  letter-spacing: 0.04em;
}
.site-luxury .site-footer a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.site-luxury .site-footer a:hover { color: var(--lux-gold-light); }
.site-luxury .site-footer .copy {
  text-align: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
}

.site-luxury .whatsapp-float {
  background: var(--lux-ink);
  border: 1px solid rgba(196, 169, 98, 0.35);
  color: var(--lux-gold-light);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--lux-shadow-hover);
}

.site-luxury .product-title { font-family: var(--font-display); font-weight: 500; }
.site-luxury .product-current-price { color: var(--lux-gold-dark); font-family: var(--font-display); }
.site-luxury .product-cat-link { color: var(--lux-gold-dark); }
.site-luxury .product-image-frame {
  border-radius: 2px;
  border-color: var(--lux-border);
  background: linear-gradient(180deg, #faf8f5 0%, #f0ece4 100%);
}
.site-luxury .btn-add-cart {
  border-radius: 2px;
  background: var(--lux-ink);
  color: var(--lux-gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}
.site-luxury .btn-add-cart:hover {
  background: var(--lux-gold-dark);
  color: #fff;
}
.site-luxury .catalog-filters {
  border-radius: 2px;
  border-color: var(--lux-border);
  background: var(--lux-bg-card);
}
.site-luxury .btn-filter {
  border-radius: 2px;
  background: var(--lux-ink);
  color: var(--lux-gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
}

@media (max-width: 900px) {
  .site-luxury .banners { grid-template-columns: 1fr; }
  .site-luxury .luxury-trust { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .site-luxury .luxury-trust { grid-template-columns: 1fr; }
  .site-luxury .hero-title { font-size: 2.25rem; }
  .site-luxury .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .site-luxury .product-card { padding: 10px; }
  .site-luxury .product-card img { height: 150px; }
  .site-luxury .product-card h3 { font-size: 0.9rem; min-height: 0; }
}
