/* ========================================
   SHADOW CSS — Shuttle Theme
   Override / migration layer.
   style.css'ten sonra yüklenir (isteğe bağlı).

   Kullanım: Tema ayarlarından "Yeni CSS (Shadow) Aktif"
   açıldığında yüklenir. Deneysel stilleri veya
   override'ları buraya yazın.

   C4-5: Migration Engine — Product Card + Footer v2
   Aynı seçiciler, aynı computed values, temiz organizasyon.
   ======================================== */


/* ═══════════════════════════════════════════════════════════════════
   SECTION 00 — VARIABLES & TOKENS
   ═══════════════════════════════════════════════════════════════════ */
:root {
  --main-color: #ff6000;
  --main-color2: #ff6f61;
}


/* ═══════════════════════════════════════════════════════════════════
   SECTION 10 — BASE / UTILITY
   ═══════════════════════════════════════════════════════════════════ */
.col-xl-custom-5 {
  flex: 0 0 20%;
  max-width: 20%;
}


/* ═══════════════════════════════════════════════════════════════════
   SECTION 30A — PRODUCT CARD: tilbe-anasayfa01 (Custom Card)
   Template: liste-kartim.twig
   Consolidated from style.css lines 13787–13903, 17040–17045, 17111–17125
   ═══════════════════════════════════════════════════════════════════ */

/* ── Card Structure ── */
.tilbe-anasayfa01-card-product {
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,.1);
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.tilbe-anasayfa01-card-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,.15);
}

/* ── Badges: Kargo + Teslimat ── */
.tilbe-anasayfa01-free-cargo-badge,
.tilbe-anasayfa01-hizli-teslimat {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #27ae60;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.tilbe-anasayfa01-hizli-teslimat { top: 30px; }

/* ── Image & Carousel ── */
.tilbe-anasayfa01-carousel,
.tilbe-anasayfa01-image-wrapper { position: relative; }

.tilbe-anasayfa01-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.tilbe-anasayfa01-carousel-item { display: none; width: 100%; }
.tilbe-anasayfa01-carousel-item.active { display: block; }

/* ── Carousel Controls (A11y reset) ── */
.tilbe-anasayfa01-carousel-control-prev,
.tilbe-anasayfa01-carousel-control-next {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #333;
  font-size: 16px;
  opacity: .7;
  transition: opacity .2s;
}
.tilbe-anasayfa01-carousel-control-prev:hover,
.tilbe-anasayfa01-carousel-control-next:hover { opacity: 1; }
.tilbe-anasayfa01-carousel-control-prev { left: 4px; }
.tilbe-anasayfa01-carousel-control-next { right: 4px; }

/* ── Title ── */
.tilbe-anasayfa01-itlewrtwrts {
  font-size: 12px;
  font-weight: 400;
  color: #333;
  margin: 10px 0;
}

/* ── Brand / Product Code / Barcode ── */
.tilbe-anasayfa01-barcode,
.tilbe-anasayfa01-brand,
.tilbe-anasayfa01-product-code {
  font-size: 12px;
  color: #666;
  margin: 5px 0;
}

/* ── Price Group (final computed values) ── */
.tilbe-anasayfa01-price-group { margin-top: 10px; }

.tilbe-anasayfa01-list-price {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}
.tilbe-anasayfa01-sale-price {
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

/* ── Product Label ── */
.tilbe-anasayfa01-urun-etiketi img { width: 24px; height: auto; }

/* ── Discount Percentage Badge ── */
.tilbe-card-discount-pct {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  background: #dc2626;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  line-height: 1.2;
}

/* ── Add-to-Cart Button ── */
.tilbe-card-addcart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px 12px;
  margin-top: 8px;
  background: var(--main-color, #ff6000);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.tilbe-card-addcart:hover { background: #e55500; transform: translateY(-1px); }
.tilbe-card-addcart:active { transform: translateY(0); }
.tilbe-card-addcart i { font-size: 14px; }

/* ── Out of Stock ── */
.tilbe-card-outofstock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px 12px;
  margin-top: 8px;
  background: #f3f4f6;
  color: #9ca3af;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

/* ── Mobile: Larger Add-to-Cart ── */
@media (max-width: 576px) {
  .tilbe-card-addcart { padding: 12px; font-size: 14px; border-radius: 10px; }
  .tilbe-card-addcart i { font-size: 16px; }
}


/* ═══════════════════════════════════════════════════════════════════
   SECTION 30B — PRODUCT CARD: card-product (Platform Card)
   Templates: kart.twig, anasayfa_kart.twig, kat-ozel-kart.twig
   Consolidated from 15+ scattered locations in style.css
   ═══════════════════════════════════════════════════════════════════ */

/* ── Card Structure ── */
.card-product {
  border-radius: 15px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.card-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.13);
}

.card-product .card-product-inner {
  overflow: hidden;
  border-radius: 15px;
  padding: 0 !important;
  border: 1px solid #e9e9e9;
}

/* ── Image Wrapper ── */
.cp-image-wrapper {
  position: relative;
  overflow: hidden;
  display: block;
}
.cp-img-link { display: block; }
.cp-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Image Zoom */
.cp-image-wrapper .image img,
.cp-image-wrapper .image .lazy {
  transition: transform 0.42s cubic-bezier(0.25,0.46,0.45,0.94);
  display: block;
  width: 100%;
}
.card-product:hover .cp-image-wrapper .image img,
.card-product:hover .cp-image-wrapper .image .lazy {
  transform: scale(1.05);
}

/* Platform image wrapper (aspect-ratio 2:3) */
.card-product .card-product-inner .image-wrapper .image {
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-product .card-product-inner .image-wrapper .image img {
  transform: scale(1);
  transition: all .4s;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-product:hover .card-product-inner .image-wrapper .image img {
  transform: scale(1.04);
  transition: all .4s;
}

/* ── Favorite Button ── */
.cp-fav {
  position: absolute;
  top: 8px; right: 8px;
  z-index: 10;
}
.cp-fav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  font-size: 14px;
  color: #888;
  text-decoration: none;
  transition: color 0.18s, box-shadow 0.18s;
}
.cp-fav a:hover,
.cp-fav a.active {
  color: #e53935;
  box-shadow: 0 4px 14px rgba(229,57,53,0.28);
}

/* ── Hover Overlay ── */
.cp-hover-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.24s ease, transform 0.24s ease;
  z-index: 9;
  pointer-events: none;
}
.card-product:hover .cp-hover-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ── Overlay Buttons ── */
.cp-overlay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.14s ease, opacity 0.14s ease;
  white-space: nowrap;
  border: none;
  letter-spacing: 0.2px;
}
.cp-overlay-btn i { font-size: 11px; }

.cp-overlay-btn--cart { background: var(--main-color, #ff6000); color: #fff; }
.cp-overlay-btn--cart:hover { background: #e55500; color: #fff; transform: scale(1.02); }

.cp-overlay-btn--examine {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.cp-overlay-btn--examine:hover { background: rgba(255,255,255,0.28); color: #fff; transform: scale(1.02); }

.cp-overlay-btn--disabled {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.45);
  border: 1.5px solid rgba(255,255,255,0.2);
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Badge Strip ── */
.cp-badge-strip {
  min-height: 30px;
  padding: 5px 10px;
  background: #f8f8f8;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cp-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.cp-badge i { font-size: 10px; }
.cp-badge--coksatan { background: #ff7f46; color: #fff; }
.cp-badge--flash    { background: #e53935; color: #fff; }
.cp-badge--firsat   { background: #0d9969; color: #fff; }
.cp-badge--hediye   { background: #7c3aed; color: #fff; }
.cp-badge--kampanya { background: #1c7ad2; color: #fff; }
.cp-badge--kargo    { background: #00897b; color: #fff; }
.cp-badge--genel    { background: #546e7a; color: #fff; }

/* ── Unit ── */
.cp-unit { font-size: 10px; color: #9ca3af; padding: 3px 12px 0; }

/* ── Out of Stock Card ── */
.card-product.stok-out-card .cp-image-wrapper .image img {
  filter: grayscale(30%);
  opacity: 0.85;
}

/* ── Title ── */
.itlewrtwrts {
  max-width: 100%;
  line-height: 14px;
  height: 30px;
  font-weight: 400;
  font-size: 11px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  display: block;
  text-align: left;
  background-color: #fff;
  z-index: 9999;
  padding: 2px 7px;
}

/* ── Price Group (platform) ── */
.card-product .card-product-inner .price-group {
  display: flex;
  font-weight: 400;
  height: auto;
  justify-content: center;
  align-items: center;
  color: #333;
  margin-top: 4px !important;
}
.card-product .card-product-inner .price-group .prices {
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-product .card-product-inner .price-group .prices .sale-price {
  font-size: 16px;
  color: #f27a1a;
  margin-left: 2px;
  font-weight: 600;
}
.card-product .card-product-inner .price-group .prices .list-price {
  font-size: 12px;
  color: #a7a7a7;
  font-weight: 400;
  text-decoration: line-through !important;
}
.card-product .card-product-inner .price-group .prices .sale-price-2 {
  color: #a7a7a7 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}

/* ── Card Price (new layout) ── */
.card-product .card-price {
  margin-top: 6px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 52px;
}
.card-product .card-discount-badge {
  min-width: 44px;
  padding: 6px;
  border-radius: 6px;
  background: #fbe9e7;
  color: #f27a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 13px;
  font-weight: 700;
}
.card-product .card-discount-badge::after {
  content: "İNDİRİM";
  margin-top: 2px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .3px;
  line-height: 1;
}
.card-product .card-prices {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.card-product .card-old-price {
  font-size: 12px;
  color: #bdbdbd;
  text-decoration: line-through;
  font-weight: 400;
}
.card-product .card-sale-price {
  font-size: 19px;
  font-weight: 600;
  color: #f27a1a;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.card-product .card-sale-price.line-through {
  font-size: 13px;
  color: #bdbdbd;
  text-decoration: line-through;
  font-weight: 400;
  letter-spacing: 0;
}

/* ── Out of Stock Overlay ── */
.card-product .it-over {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  background: rgb(255 255 255 / 80%);
  color: #fff;
  height: 50px;
  cursor: pointer;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── Carousel Controls ── */
.card-product .carousel-control-prev i,
.card-product .carousel-control-next i {
  padding: 5px;
  background: #fff;
  font-size: 18px;
  color: #000;
}

/* ── Overlay Button Animations ── */
.card-product .buttons-wrapper.right-to-left {
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .25s ease, transform .25s ease;
}
.card-product:hover .buttons-wrapper.right-to-left {
  opacity: 1;
  transform: translateX(0);
}
.card-product .buttons-wrapper.down-to-top {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}
.card-product:hover .buttons-wrapper.down-to-top {
  opacity: 1;
  transform: translateY(0);
}

/* ── Skeleton Loading ── */
@keyframes th-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}
.card-product.th-skeleton .image,
.card-product.th-skeleton .itlewrtwrts,
.card-product.th-skeleton .card-sale-price,
.card-product.th-skeleton .card-discount-badge {
  background: linear-gradient(90deg,#f0f0f0 25%,#e0e0e0 50%,#f0f0f0 75%) !important;
  background-size: 400px 100% !important;
  animation: th-shimmer 1.4s infinite linear;
  border-radius: 6px;
  color: transparent !important;
  border-color: transparent !important;
}
.card-product.th-skeleton .image { min-height: 200px; }
.card-product.th-skeleton .itlewrtwrts { height: 14px; margin: 8px 0; }
.card-product.th-skeleton .card-sale-price { height: 18px; width: 70px; }

/* ── Responsive: 480px ── */
@media (max-width: 480px) {
  .cp-title      { font-size: 12px; }
  .cp-price-now  { font-size: 15px; }
  .cp-overlay-btn { font-size: 11px; padding: 7px 12px; }
  .card-product .buttons .btn-cart { font-size: 12px; }
}

/* ── Cargo Badge (merged from 3 identical @485/400/354px queries) ── */
@media (max-width: 485px) {
  .pattern-group-body .card-product .card-product-inner .free-cargo-badge {
    align-items: center;
    border-radius: 3px;
    background: #0bc15c;
    color: #fff;
    display: flex;
    font-size: 6px;
    font-weight: 400;
    height: 13px;
    justify-content: center;
    line-height: 8px;
    position: absolute;
    right: 5px; left: 5px; top: 5px;
    text-align: center;
    width: 50px;
    z-index: 1;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   SECTION 31 — C7-1: PRODUCT CARD UX ENGINE
   Hover overlay wiring, keyboard a11y, fav premium, old-button hide
   ═══════════════════════════════════════════════════════════════════ */

/* ── Image wrapper: positioned context for overlays ── */
.card-product .image-wrapper { position: relative; overflow: hidden; }

/* ── Fav button: premium circle (cp-fav wraps .product-favourite-kart) ── */
.card-product .cp-fav {
  position: absolute; top: 10px; right: 10px; z-index: 10;
}
.card-product .cp-fav .product-favourite-kart { margin: 0; }
.card-product .cp-fav .product-favourite-kart a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  font-size: 15px; color: #999;
  text-decoration: none;
  transition: color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.card-product .cp-fav .product-favourite-kart a:hover {
  color: #e53935;
  box-shadow: 0 4px 14px rgba(229,57,53,0.28);
  transform: scale(1.1);
}

/* ── Desktop: hide old button systems when overlay present ── */
@media (min-width: 769px) {
  .cp-hover-overlay ~ .buttons-wrapper { display: none !important; }
}

/* ── Focus-visible: keyboard navigation ── */
.cp-overlay-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.card-product .cp-fav a:focus-visible {
  outline: 2px solid var(--main-color, #ff6000);
  outline-offset: 2px;
}

/* ── Overlay visible on keyboard focus-within ── */
.card-product:focus-within .cp-hover-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ── Mobile: hide hover overlay (touch uses inline CTA) ── */
@media (max-width: 768px) {
  .card-product .cp-hover-overlay { display: none !important; }
}


/* ═══════════════════════════════════════════════════════════════════
   SECTION 31B — C7-3: PDP FAQ ACCORDION + STICKY CTA POLISH
   ═══════════════════════════════════════════════════════════════════ */

/* ── FAQ Accordion ── */
.pdp2-faq { margin-top: 16px; }
.pdp2-faq-title {
  font-size: 14px; font-weight: 700; color: #111;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.pdp2-faq-title i { color: var(--main-color, #ff6000); font-size: 16px; }

.pdp2-faq-item {
  border: 1px solid #f0f0f0; border-radius: 10px;
  margin-bottom: 6px; overflow: hidden;
  transition: box-shadow 0.2s;
}
.pdp2-faq-item[open] {
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-color: #e0e0e0;
}
.pdp2-faq-q {
  padding: 12px 16px; cursor: pointer;
  font-size: 13px; font-weight: 600; color: #333;
  list-style: none; display: flex; align-items: center;
  transition: background 0.15s;
}
.pdp2-faq-q:hover { background: #fafafa; }
.pdp2-faq-q::after {
  content: '\f078'; font-family: 'Font Awesome 5 Free'; font-weight: 900;
  font-size: 10px; color: #999; margin-left: auto;
  transition: transform 0.2s;
}
.pdp2-faq-item[open] .pdp2-faq-q::after { transform: rotate(180deg); }
.pdp2-faq-q::-webkit-details-marker { display: none; }

.pdp2-faq-a {
  padding: 0 16px 14px; font-size: 13px; color: #555;
  line-height: 1.6; border-top: 1px solid #f0f0f0;
  padding-top: 12px;
}

/* ── Sticky CTA polish ── */
.pp-sticky-cta {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.95);
}
.pp-sticky-btn {
  background: var(--main-color, #ff6000) !important;
  color: #fff !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  padding: 10px 24px !important;
  transition: background 0.2s, transform 0.15s !important;
}
.pp-sticky-btn:hover {
  background: #e55500 !important;
  transform: translateY(-1px);
}


/* ═══════════════════════════════════════════════════════════════════
   SECTION 32 — C7-2: QUICK VIEW MODAL PREMIUM
   Styling for hizli_sepet_kutusu.twig (platform native modal)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Modal container ── */
.native-modal.show .hizli-sepet .modal-content {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  border: none;
}

/* ── Gallery image ── */
.native-modal.show .hizli-sepet .carousel-item img {
  width: 100%; height: auto;
  object-fit: contain;
  aspect-ratio: 1/1;
  background: #f8f8f8;
  border-radius: 0;
}

/* ── Carousel controls ── */
.native-modal.show .hizli-sepet .carousel-control-prev i,
.native-modal.show .hizli-sepet .carousel-control-next i {
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ── Product title ── */
.native-modal.show .hizli-sepet .fast-product-cart-box h4 {
  font-size: 18px; font-weight: 700; color: #111;
  line-height: 1.4; margin-bottom: 8px;
}

/* ── Price ── */
.native-modal.show .hizli-sepet .product-price-group .sale-price {
  font-size: 24px; font-weight: 700;
  color: var(--main-color, #ff6000);
}
.native-modal.show .hizli-sepet .product-price-group .list-price {
  font-size: 14px; color: #999;
  text-decoration: line-through;
}

/* ── Variant chips ── */
.native-modal.show .hizli-sepet .variant-box .options a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; padding: 8px 16px;
  border: 1.5px solid #e0e0e0; border-radius: 8px;
  font-size: 13px; font-weight: 500; color: #333;
  text-decoration: none; margin: 3px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.native-modal.show .hizli-sepet .variant-box .options a:hover {
  border-color: var(--main-color, #ff6000);
  color: var(--main-color, #ff6000);
}
.native-modal.show .hizli-sepet .variant-box .options a.active {
  background: var(--main-color, #ff6000);
  border-color: var(--main-color, #ff6000);
  color: #fff;
}
.native-modal.show .hizli-sepet .variant-box .options a.sold-out {
  opacity: 0.4; text-decoration: line-through; cursor: not-allowed;
}

/* ── Add to cart button ── */
.native-modal.show .hizli-sepet .buttons .btn-cart {
  width: 100%; padding: 14px 24px;
  background: var(--main-color, #ff6000); color: #fff;
  border: none; border-radius: 10px;
  font-size: 15px; font-weight: 700;
  cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
}
.native-modal.show .hizli-sepet .buttons .btn-cart:hover {
  background: #e55500; transform: translateY(-1px);
}

/* ── Quantity controls ── */
.native-modal.show .hizli-sepet .product-quantity {
  display: inline-flex; align-items: center;
  border: 1.5px solid #e0e0e0; border-radius: 8px;
  overflow: hidden; margin-bottom: 12px;
}
.native-modal.show .hizli-sepet .product-quantity .btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: #f5f5f5; border: none; font-size: 12px; color: #333;
}
.native-modal.show .hizli-sepet .product-quantity input {
  width: 50px; text-align: center; border: none;
  font-size: 15px; font-weight: 600;
}

/* ── Trust bar (added via twig) ── */
.qv-trust {
  display: flex; gap: 16px; padding: 12px 0; margin-top: 16px;
  border-top: 1px solid #f0f0f0;
}
.qv-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: #666; white-space: nowrap;
}
.qv-trust-item i { color: var(--main-color, #ff6000); font-size: 13px; }

/* ── Product page link ── */
.qv-product-link {
  display: block; text-align: center; padding: 10px; margin-top: 8px;
  color: var(--main-color, #ff6000); font-size: 13px; font-weight: 600;
  text-decoration: none; transition: opacity 0.2s;
}
.qv-product-link:hover { opacity: 0.8; color: var(--main-color, #ff6000); }

/* ── Modal entry animation ── */
.native-modal .modal-dialog {
  transform: translateY(20px) scale(0.98); opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.native-modal.show .modal-dialog {
  transform: translateY(0) scale(1); opacity: 1;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .native-modal.show .hizli-sepet { max-width: 100% !important; margin: 8px; }
  .native-modal.show .hizli-sepet .modal-content { border-radius: 12px; }
  .native-modal.show .hizli-sepet .fast-product-cart-box { max-height: 70vh; padding-right: 12px !important; }
  .qv-trust { flex-wrap: wrap; gap: 10px; }
}


/* ═══════════════════════════════════════════════════════════════════
   SECTION 40 — FOOTER v2 (tf2-)
   Direct copy from style.css lines 15351–15574
   WhatsApp color moved to variable system
   ═══════════════════════════════════════════════════════════════════ */
.tf2-footer {
  --tf2-bg:       #0f1419;
  --tf2-bg2:      #161d26;
  --tf2-bg3:      #1b2433;
  --tf2-bgbar:    #090d12;
  --tf2-accent:   var(--main-color, #ff6000);
  --tf2-text:     #e2e8f0;
  --tf2-muted:    #8899aa;
  --tf2-border:   rgba(255,255,255,.07);
  --tf2-radius:   8px;
  --tf2-whatsapp: #25d366;
}

/* TOP BAR */
.tf2-footer-top { background: var(--tf2-bg2); border-bottom: 1px solid var(--tf2-border); }
.tf2-footer-top-inner {
  max-width: 1440px; margin: 0 auto; padding: 36px 24px;
  display: flex; align-items: flex-start; gap: 32px;
}
.tf2-top-sep { width: 1px; align-self: stretch; background: var(--tf2-border); flex-shrink: 0; }

/* Newsletter */
.tf2-newsletter { flex: 2; display: flex; flex-direction: column; gap: 12px; }
.tf2-sec-icon {
  width: 42px; height: 42px; background: rgba(255,96,0,.12);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: var(--tf2-accent); font-size: 18px;
}
.tf2-newsletter strong, .tf2-app-block strong, .tf2-social-block strong {
  font-size: 15px; font-weight: 700; color: var(--tf2-text); display: block;
}
.tf2-newsletter > span, .tf2-app-block > span {
  font-size: 12px; color: var(--tf2-muted); line-height: 1.5;
}
.tf2-newsletter em { color: var(--tf2-accent); font-style: normal; font-weight: 600; }
.tf2-nl-form {
  display: flex; max-width: 400px;
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--tf2-radius);
  overflow: hidden; background: rgba(255,255,255,.04);
}
.tf2-nl-form input {
  flex: 1; padding: 11px 14px; background: transparent;
  border: none; outline: none; font-size: 13px; color: var(--tf2-text);
}
.tf2-nl-form input::placeholder { color: var(--tf2-muted); }
.tf2-nl-form button {
  padding: 11px 18px; background: var(--tf2-accent); color: #fff;
  border: none; cursor: pointer; font-size: 13px; font-weight: 600;
  white-space: nowrap; transition: filter .2s;
}
.tf2-nl-form button:hover { filter: brightness(1.1); }
.tf2-kvkk { display: flex; align-items: flex-start; gap: 7px; cursor: pointer; }
.tf2-kvkk input { margin-top: 2px; accent-color: var(--tf2-accent); flex-shrink: 0; }
.tf2-kvkk span { font-size: 11px; color: var(--tf2-muted); line-height: 1.5; }
.tf2-kvkk a { color: var(--tf2-accent); text-decoration: none; }

/* App */
.tf2-app-block { flex: 1.5; display: flex; flex-direction: column; gap: 12px; }
.tf2-app-btns { display: flex; flex-direction: column; gap: 8px; }
.tf2-app-btns a img { border-radius: 6px; border: 1px solid rgba(255,255,255,.1); max-width: 130px; display: block; }

/* Social */
.tf2-social-block { flex: 1; display: flex; flex-direction: column; gap: 14px; }
.tf2-social-icons { display: flex; flex-wrap: wrap; gap: 8px; }
.tf2-social-icons a {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--tf2-radius); color: var(--tf2-muted); font-size: 14px;
  transition: background .2s, color .2s, border-color .2s; text-decoration: none;
}
.tf2-social-icons a:hover { background: var(--tf2-accent); border-color: var(--tf2-accent); color: #fff; }

/* MAIN NAV */
.tf2-footer-main { background: var(--tf2-bg); }
.tf2-footer-main-inner {
  max-width: 1440px; margin: 0 auto; padding: 48px 24px;
  display: grid; grid-template-columns: 220px repeat(4, 1fr); gap: 40px;
}
.tf2-brand { display: flex; flex-direction: column; gap: 14px; }
.tf2-brand img { max-width: 150px; height: auto; }
.tf2-brand p { font-size: 12px; color: var(--tf2-muted); line-height: 1.7; }
.tf2-trust { display: flex; flex-direction: column; gap: 6px; }
.tf2-trust li {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; color: var(--tf2-muted); list-style: none;
}
.tf2-trust li i { color: var(--tf2-accent); width: 13px; }

/* Columns */
.tf2-col-toggle {
  display: flex; align-items: center; gap: 8px; width: 100%;
  background: none; border: none; border-bottom: 1px solid var(--tf2-border);
  padding: 0 0 13px; cursor: pointer;
  font-size: 11px; font-weight: 700; color: var(--tf2-text);
  text-transform: uppercase; letter-spacing: .8px; text-align: left;
}
.tf2-col-toggle > i:first-child { color: var(--tf2-accent); font-size: 12px; }
.tf2-col-arrow {
  margin-left: auto; font-size: 10px; color: var(--tf2-muted);
  display: none; transition: transform .25s;
}
.tf2-links {
  list-style: none; padding: 14px 0 0; margin: 0;
  display: flex; flex-direction: column; gap: 9px;
}
.tf2-links a {
  font-size: 13px; color: var(--tf2-muted); text-decoration: none;
  display: flex; align-items: center; gap: 6px; transition: color .15s;
}
.tf2-links a:hover { color: var(--tf2-accent); }
.tf2-wa-link { color: var(--tf2-whatsapp) !important; }
.tf2-wa-link:hover { filter: brightness(1.15); }

/* Contact */
.tf2-contact {
  font-style: normal; padding-top: 14px;
  display: flex; flex-direction: column; gap: 12px;
}
.tf2-c-row { display: flex; align-items: flex-start; gap: 10px; }
.tf2-c-icon {
  width: 28px; height: 28px; background: rgba(255,255,255,.05);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  color: var(--tf2-accent); font-size: 12px; flex-shrink: 0; margin-top: 1px;
}
.tf2-c-label {
  display: block; font-size: 10px; font-weight: 700; color: var(--tf2-accent);
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px;
}
.tf2-c-row div { display: flex; flex-direction: column; }
.tf2-c-row a, .tf2-c-row span { font-size: 12px; color: var(--tf2-muted); text-decoration: none; }
.tf2-c-row a:hover { color: var(--tf2-accent); }
.tf2-etbis {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--tf2-border);
}
.tf2-etbis a { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.tf2-etbis img { width: 52px; height: auto; border-radius: 4px; }
.tf2-etbis span { font-size: 11px; color: var(--tf2-muted); line-height: 1.4; }

/* BOTTOM */
.tf2-footer-bottom {
  background: var(--tf2-bg3);
  border-top: 1px solid var(--tf2-border); border-bottom: 1px solid var(--tf2-border);
}
.tf2-footer-bottom-inner {
  max-width: 1440px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.tf2-cargo { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.tf2-cargo-label {
  font-size: 10px; font-weight: 700; color: var(--tf2-muted);
  text-transform: uppercase; letter-spacing: .6px; white-space: nowrap;
}
.tf2-cargo-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.tf2-cargo-chip {
  padding: 4px 11px; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1); border-radius: 20px;
  font-size: 11px; color: var(--tf2-muted); white-space: nowrap;
}
.tf2-security { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.tf2-sec-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 11px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08); border-radius: 6px;
  font-size: 11px; color: var(--tf2-muted); font-weight: 500;
  white-space: nowrap; text-decoration: none; transition: border-color .2s, color .2s;
}
.tf2-sec-etbis { color: var(--tf2-accent); border-color: rgba(255,96,0,.2); }
.tf2-sec-etbis:hover { border-color: var(--tf2-accent); }
.tf2-rating {
  display: flex; align-items: center; gap: 10px;
  background: var(--tf2-accent); padding: 10px 16px; border-radius: var(--tf2-radius);
}
.tf2-rating-score { font-size: 26px; font-weight: 700; color: #fff; line-height: 1; }
.tf2-rating-info { display: flex; flex-direction: column; gap: 3px; }
.tf2-rating-stars { display: flex; gap: 2px; color: #fff; font-size: 11px; }
.tf2-rating-info > span { font-size: 10px; color: rgba(255,255,255,.85); font-weight: 600; }
.tf2-rating-count { font-size: 10px; color: rgba(255,255,255,.7); }

/* BAR */
.tf2-footer-bar { background: var(--tf2-bgbar); }
.tf2-footer-bar-inner {
  max-width: 1440px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.tf2-bar-left { font-size: 12px; color: var(--tf2-muted); }
.tf2-bar-nav { display: flex; align-items: center; gap: 18px; }
.tf2-bar-nav a { font-size: 12px; color: var(--tf2-muted); text-decoration: none; transition: color .15s; }
.tf2-bar-nav a:hover { color: var(--tf2-accent); }
.tf2-bar-cards img { height: 22px; width: auto; }

/* MOBILE */
@media (max-width: 992px) {
  .tf2-footer-top-inner { flex-direction: column; padding: 24px 16px; gap: 20px; }
  .tf2-top-sep { width: 100%; height: 1px; align-self: auto; }
  .tf2-footer-main-inner { grid-template-columns: 1fr; padding: 20px 16px; gap: 0; }
  .tf2-brand { padding-bottom: 20px; border-bottom: 1px solid var(--tf2-border); }
  .tf2-footer-col { border-bottom: 1px solid var(--tf2-border); }
  .tf2-col-toggle { padding: 13px 0; }
  .tf2-col-arrow { display: block; }
  .tf2-links {
    max-height: 0; overflow: hidden; padding-top: 0; gap: 0;
    transition: max-height .3s ease, padding .3s ease, gap .3s ease;
  }
  .tf2-footer-col.tf2-open .tf2-links { max-height: 600px; padding-top: 10px; gap: 9px; }
  .tf2-footer-col.tf2-open .tf2-col-arrow { transform: rotate(180deg); }
  .tf2-contact { max-height: 0; overflow: hidden; padding-top: 0; transition: max-height .3s ease, padding .3s ease; }
  .tf2-footer-col.tf2-open .tf2-contact { max-height: 600px; padding-top: 10px; }
  .tf2-etbis { display: none; }
  .tf2-footer-bottom-inner { flex-direction: column; align-items: flex-start; padding: 14px 16px; gap: 10px; }
  .tf2-footer-bar-inner { flex-direction: column; text-align: center; gap: 10px; padding: 12px 16px; }
  .tf2-bar-nav { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .tf2-rating { width: 100%; justify-content: center; }
  .tf2-security { justify-content: center; }
  .tf2-cargo { justify-content: center; }
}
@media (max-width: 576px) {
  .tf2-app-btns { flex-direction: row; flex-wrap: wrap; }
  .tf2-nl-form { max-width: 100%; }
}


/* ═══════════════════════════════════════════════════════════════════
   SECTION 33 — C7-4: HEADER COMPACT + SEARCH POLISH
   ═══════════════════════════════════════════════════════════════════ */

/* --- Top bar smooth collapse on scroll --- */
.tilbehead19-top-bar {
  transition: height .3s cubic-bezier(.4,0,.2,1),
              opacity .25s ease,
              margin .3s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.tilbehead19-header.th-compact .tilbehead19-top-bar {
  height: 0;
  opacity: 0;
  margin: 0;
  pointer-events: none;
}

/* --- Compact main bar tighter --- */
.tilbehead19-header.th-compact .tilbehead19-main-bar {
  padding-top: 6px;
  padding-bottom: 6px;
  transition: padding .3s cubic-bezier(.4,0,.2,1);
}
.tilbehead19-header.th-compact .tilbehead19-search-form {
  height: 40px;
}
.tilbehead19-header.th-compact .tilbehead19-search-input {
  height: 40px;
}

/* --- Search dropdown premium polish --- */
.tilbehead19-search-dropdown {
  border-top: 3px solid var(--main-color, #ff6000);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.tilbehead19-search-section-header span {
  color: #1f2937;
}
.tilbehead19-popular-tag {
  background: #fafafa;
  font-weight: 500;
}
.tilbehead19-popular-tag:hover {
  background: rgba(255, 96, 0, .06);
  border-color: var(--main-color, #ff6000);
  color: var(--main-color, #ff6000);
}
.tilbehead19-clear-history {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

/* --- Search form focus glow override --- */
.tilbehead19-search-form:focus-within {
  border-color: var(--main-color, #ff6000);
  box-shadow: 0 0 0 3px rgba(255, 96, 0, .15);
}

/* --- Mobile: no top-bar collapse (already hidden) --- */
@media (max-width: 992px) {
  .tilbehead19-header.th-compact .tilbehead19-top-bar {
    display: none; /* already hidden by base CSS */
  }
  .tilbehead19-header.th-compact .tilbehead19-main-bar {
    padding-top: 0;
    padding-bottom: 6px;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   SECTION 34 — C7-5: ADD TO CART DRAWER
   ═══════════════════════════════════════════════════════════════════ */

/* --- Overlay --- */
.th-cd-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 10000;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.th-cd-overlay.th-cd-open {
  opacity: 1; visibility: visible;
}

/* --- Drawer panel --- */
.th-cd {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 400px; max-width: 92vw;
  background: #fff;
  z-index: 10001;
  display: flex; flex-direction: column;
  box-shadow: -8px 0 30px rgba(0,0,0,.12);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.th-cd.th-cd-open {
  transform: translateX(0);
}

/* --- Header --- */
.th-cd-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  background: #f0fdf4;
  border-bottom: 1px solid #d1fae5;
  flex-shrink: 0;
}
.th-cd-success {
  font-size: 14px; font-weight: 600; color: #16a34a;
  display: flex; align-items: center; gap: 8px;
}
.th-cd-success i { font-size: 18px; }
.th-cd-close {
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #6b7280; font-size: 16px;
  transition: background .2s, color .2s;
}
.th-cd-close:hover { background: #f3f4f6; color: #111827; }

/* --- Body --- */
.th-cd-body {
  flex: 1; overflow-y: auto; padding: 20px;
}

/* Added product */
.th-cd-product-inner {
  display: flex; gap: 14px; padding-bottom: 16px;
  border-bottom: 1px solid #f3f4f6; margin-bottom: 16px;
}
.th-cd-product-img {
  width: 80px; height: 80px; object-fit: contain;
  border-radius: 8px; border: 1px solid #f3f4f6; background: #fafafa;
  flex-shrink: 0;
}
.th-cd-product-name {
  font-size: 14px; font-weight: 500; color: #1f2937;
  line-height: 1.4; margin-bottom: 6px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.th-cd-product-price {
  font-size: 16px; font-weight: 700; color: var(--main-color, #ff6000);
}

/* Shipping */
.th-cd-ship-ok {
  background: #f0fdf4; border-radius: 8px; padding: 10px 14px;
  font-size: 13px; font-weight: 600; color: #16a34a;
  display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
}

/* Summary */
.th-cd-summary {
  background: #f9fafb; border-radius: 10px; padding: 14px 16px;
}
.th-cd-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: #374151;
}
.th-cd-summary-row strong {
  font-size: 18px; font-weight: 700; color: #111827;
}

/* --- Footer --- */
.th-cd-footer {
  padding: 16px 20px;
  border-top: 1px solid #e5e7eb;
  display: flex; flex-direction: column; gap: 10px;
  flex-shrink: 0;
}
.th-cd-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 20px; border-radius: 10px;
  font-size: 15px; font-weight: 600;
  cursor: pointer; border: none;
  transition: background .2s, transform .1s;
  text-decoration: none; text-align: center;
}
.th-cd-btn:active { transform: scale(.98); }
.th-cd-btn--cart {
  background: var(--main-color, #ff6000); color: #fff;
}
.th-cd-btn--cart:hover { background: var(--main-color2, #e55500); color: #fff; }
.th-cd-btn--continue {
  background: #f3f4f6; color: #374151;
}
.th-cd-btn--continue:hover { background: #e5e7eb; }

/* --- Mobile --- */
@media (max-width: 576px) {
  .th-cd { width: 100%; max-width: 100%; }
}


/* ═══════════════════════════════════════════════════════════════════
   SECTION 35 — C7-6: MOBILE UX UPGRADE
   ═══════════════════════════════════════════════════════════════════ */

/* --- Bottom nav: theme color for center cart button --- */
.tilbehomeMobilMenu456-menu-center-wrapper {
  background: var(--main-color, #ff6000);
  box-shadow: 0 -2px 16px rgba(255,96,0,.25);
}

/* --- Bottom nav: premium styling --- */
.tilbehomeMobilMenu456-container {
  box-shadow: 0 -2px 16px rgba(0,0,0,.08);
  border-top: 1px solid #f0f0f0;
  border-left: none; border-right: none;
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0px));
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.tilbehomeMobilMenu456-container.th-nav-hidden {
  transform: translateY(100%);
}

/* --- Active state on current page --- */
.tilbehomeMobilMenu456-menu-item.active i,
.tilbehomeMobilMenu456-menu-item.active span {
  color: var(--main-color, #ff6000);
}

/* --- Mobile hamburger menu: smoother open --- */
.tilbehead19-mobile-menu {
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}

/* --- Mobile product card: touch-friendly spacing --- */
@media (max-width: 768px) {
  .card-product .cp-hover-overlay { display: none; }
  .card-product .buttons-wrapper { display: block !important; }
  .card-product .buttons { margin-top: 8px; }
  .card-product .btn-cart {
    min-height: 44px; border-radius: 8px; font-size: 13px; font-weight: 600;
  }
}

/* --- Mobile: drawer full width --- */
@media (max-width: 768px) {
  .th-cd { width: 100%; max-width: 100%; border-radius: 0; }
  .th-cd-product-img { width: 64px; height: 64px; }
}
