/** Shopify CDN: Minification failed

Line 640:17 Expected identifier but found whitespace
Line 640:55 Unexpected "("
Line 641:70 Unterminated string token

**/
/* ═══════════════════════════════════════════════════════════
   EROTICSHOP — Global Custom CSS — v1.0
   ───────────────────────────────────────────────────────────
   Cache'lenebilir, merkezileştirilmiş, tek dosya.
   Yükleme: base.css'ten hemen sonra (theme.liquid)
   
   Katmanlar:
   1. Z-index scale
   2. Dark mode — typography & elements
   3. Dark mode — Dawn class overrides
   4. Dark mode — forms & inputs
   5. Dark mode — header
   6. Dark mode — mobile drawer
   7. Header — cart & wishlist icons
   8. Wishlist — global component
   9. Utilities
   ═══════════════════════════════════════════════════════════ */

/* ═══ 1–7 arası stiller theme.liquid inline'a taşındı (kritik yol optimizasyonu) ═══ */

/* ═══ 0. FONT FALLBACK — Metric-matched CLS önleyici fallback'ler ═════
   Amaç: Shopify CDN'den Poppins/Inter yüklenene kadar sistem fontu
   kullanılır. size-adjust + ascent/descent override ile metric'ler
   eşleştirildiği için font swap anında layout shift olmaz.
   Otorite: Shopify font_face filtresi (theme.liquid). Burası sadece
   "yüklenmeden önceki" fallback'i tanımlar, çakışma yapmaz.
   Referans: collection-page.css ile birebir aynı değerler (test edilmiş).
═════════════════════════════════════════════════════════════════════ */
@font-face {
  font-family: 'Poppins Fallback';
  src: local('Arial');
  size-adjust:       106%;
  ascent-override:    93%;
  descent-override:   31%;
  line-gap-override:   0%;
}
@font-face {
  font-family: 'Inter Fallback';
  src: local('Arial');
  size-adjust:       107%;
  ascent-override:    90%;
  descent-override:   22%;
  line-gap-override:   0%;
}

/* ═══ 2. DARK MODE — Typography & Elements ═══════════════ */

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
  color: var(--dm-text);
}

[data-theme="dark"] p,
[data-theme="dark"] span,
[data-theme="dark"] li,
[data-theme="dark"] label,
[data-theme="dark"] figcaption {
  color: var(--dm-text);
}

[data-theme="dark"] a {
  color: var(--dm-text);
}

[data-theme="dark"] a:hover {
  color: var(--dm-text-muted);
}

[data-theme="dark"] hr {
  border-color: var(--dm-border);
}

/* Section title overrides (inline color fix) */
[data-theme="dark"] [class*="__title"],
[data-theme="dark"] [class*="__heading"],
[data-theme="dark"] .title,
[data-theme="dark"] .heading {
  color: var(--dm-text);
}

[data-theme="dark"] .rte,
[data-theme="dark"] .rte h2,
[data-theme="dark"] .rte p {
  color: var(--dm-text);
}

/* Inline style color override (koyu renkler) */
[data-theme="dark"] [style*="color: #111"],
[data-theme="dark"] [style*="color: #000"],
[data-theme="dark"] [style*="color:#111"],
[data-theme="dark"] [style*="color:#000"],
[data-theme="dark"] [style*="color: #1a1a"],
[data-theme="dark"] [style*="color: #222"],
[data-theme="dark"] [style*="color: #333"],
[data-theme="dark"] [style*="color: rgb(0"],
[data-theme="dark"] [style*="color: rgb(17"],
[data-theme="dark"] [style*="color: rgb(34"],
[data-theme="dark"] [style*="color: rgb(51"] {
  color: var(--dm-text);
}

/* Kart içi görseller — dark modda filter uygulama */
[data-theme="dark"] .qc__card img,
[data-theme="dark"] .bs__img-wrap img,
[data-theme="dark"] .card__media img {
  filter: none;
}

/* ═══ 3. DARK MODE — Dawn Class Overrides ════════════════ */

/* Cards & surfaces */
[data-theme="dark"] .card,
[data-theme="dark"] .article-card,
[data-theme="dark"] .product-card-wrapper,
[data-theme="dark"] .collection-card {
  background-color: var(--dm-surface);
  border-color: var(--dm-border);
}

/* Dawn titles */
[data-theme="dark"] .collection-hero__title,
[data-theme="dark"] .collection__title,
[data-theme="dark"] .product__title,
[data-theme="dark"] .card__heading,
[data-theme="dark"] .card__heading a,
[data-theme="dark"] .full-unstyled-link {
  color: var(--dm-text);
}

/* Price */
[data-theme="dark"] .price-item,
[data-theme="dark"] .price-item--regular,
[data-theme="dark"] .price__regular .price-item {
  color: var(--dm-text);
}

/* Captions */
[data-theme="dark"] .caption,
[data-theme="dark"] .caption-large,
[data-theme="dark"] .caption-with-letter-spacing {
  color: var(--dm-text-muted);
}

/* Buttons */
[data-theme="dark"] .button--secondary {
  background-color: var(--dm-surface);
  color: var(--dm-text);
  border-color: var(--dm-border-strong);
}

/* Footer */
[data-theme="dark"] .footer,
[data-theme="dark"] .section-footer {
  background-color: var(--dm-bg-alt);
  color: var(--dm-text);
}

/* Drawer / Modals */
[data-theme="dark"] .menu-drawer,
[data-theme="dark"] .cart-drawer,
[data-theme="dark"] .modal__content {
  background-color: var(--dm-surface);
  color: var(--dm-text);
}

/* Announcement bar */
[data-theme="dark"] .announcement-bar {
  background-color: var(--dm-bg-alt);
  color: var(--dm-text);
}

/* Scrollbar */
[data-theme="dark"] ::-webkit-scrollbar-thumb {
  background-color: var(--dm-scrollbar);
}

[data-theme="dark"] ::-webkit-scrollbar-track {
  background-color: var(--dm-bg-alt);
}


/* ═══ 4. DARK MODE — Forms & Inputs ══════════════════════ */

[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
  background-color: var(--dm-input-bg);
  color: var(--dm-text);
  border-color: var(--dm-input-border);
}

[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
  color: var(--dm-text-subtle);
}




/* ═══ 6. DARK MODE — Mobile Drawer ══════════════════════ */

[data-theme="dark"] .md__top-bar {
  border-bottom-color: var(--dm-border);
}

[data-theme="dark"] .md__close-btn svg {
  stroke: var(--dm-text);
}

[data-theme="dark"] .md__top-icon svg {
  stroke: var(--dm-text);
}

[data-theme="dark"] .md__service-links {
  border-bottom-color: var(--dm-border);
}

[data-theme="dark"] .md__service-link {
  color: var(--dm-text-muted);
  border-bottom-color: var(--dm-border);
}

[data-theme="dark"] .md__service-link:hover {
  color: var(--dm-text);
}
/* ═══ 5. DARK MODE — Header — theme.liquid inline'a taşındı ═══ */

/* ═══ 7. HEADER — Cart & Wishlist Icons — theme.liquid inline'a taşındı ═══ */

/* Wishlist icon (header) */
.header__wishlist {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 36px;
  height: 36px;
}

.header__wishlist svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: fill 0.25s ease, transform 0.15s ease;
}

.header__wishlist-heart {
  fill: none;
  stroke: #e63946;
}

.header__wishlist.has-items .header__wishlist-heart {
  fill: #e63946;
}

.header__wishlist:hover svg {
  transform: scale(1.1);
}

.header__wishlist:focus-visible {
  outline: 2px solid var(--dm-focus-ring, rgba(91, 31, 168, 0.4));
  outline-offset: 2px;
  border-radius: 4px;
}

/* Cart icon */
.header__icon--cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.custom-cart-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #333;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}

[data-theme="dark"] .custom-cart-icon svg {
  stroke: var(--dm-text);
}

/* Dawn default cart icon hide */
#cart-icon-bubble .icon-cart,
#cart-icon-bubble > .svg-wrapper:not(.custom-cart-icon) {
  display: none;
}

#cart-icon-bubble .custom-cart-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cart count bubble */
#cart-icon-bubble .cart-count-bubble {
  position: absolute;
  top: 0;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: #339900;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  pointer-events: none;
  z-index: var(--z-card);
}

[data-theme="dark"] #cart-icon-bubble .cart-count-bubble {
  background: #339900;
}

/* Account icon */
.header__icon--account .svg-wrapper svg,
.header__icon--account .icon {
  width: 22px;
  height: 22px;
}

/* Header icons alignment */
.header__icons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__icon:focus-visible {
  outline: 2px solid var(--dm-focus-ring, rgba(91, 31, 168, 0.4));
  outline-offset: 2px;
}


/* ═══ 8. WISHLIST — Global Component ════════════════════ */

/* Dawn card — wishlist button stacking fix */
.card .card__inner {
  position: relative;
  z-index: 2;
}

.card__media {
  position: relative;
  z-index: 3;
}
/* Drawer açıkken kart wishlist butonları drawer'ın altında kalır */
/* Spesifite: 0,0,2,0 — !important gerektirmez */
.drawer-open .card__media .wl__toggle {
  z-index: 1;
}

/* Heart toggle (card & product page) */
.wl__toggle {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 10;
  pointer-events: auto !important;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}
/* Dawn card — link overlay'lar wishlist butonunu engellemesin */
.card-wrapper a::after,
.card-wrapper a::before,
.card a::after,
.card a::before {
  pointer-events: none;
}
.wl__toggle:hover {
  background: #fff;
  transform: scale(1.1);
}

.wl__toggle:focus-visible {
  outline: 2px solid var(--dm-focus-ring, rgba(91, 31, 168, 0.4));
  outline-offset: 2px;
}

.wl__toggle svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
  transition: fill 0.25s ease, stroke 0.25s ease;
}

.wl__toggle .wl__heart {
  fill: none;
  stroke: #e63946;
}

.wl__toggle.is-active .wl__heart {
  fill: #e63946;
  stroke: #e63946;
  animation: wl-pop 0.35s ease;
}

@keyframes wl-pop {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.25); }
  60%  { transform: scale(0.95); }
  100% { transform: scale(1); }
}

[data-theme="dark"] .wl__toggle {
  background: rgba(30, 30, 30, 0.9);
}

[data-theme="dark"] .wl__toggle:hover {
  background: rgba(40, 40, 40, 1);
}

/* Product page wishlist button */
.wl__product-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid var(--dm-border-strong, #ddd);
  border-radius: 8px;
  background: transparent;
  color: var(--dm-text, #333);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.wl__product-btn:hover {
  border-color: #e63946;
  color: #e63946;
}

.wl__product-btn:focus-visible {
  outline: 2px solid var(--dm-focus-ring, rgba(91, 31, 168, 0.4));
  outline-offset: 2px;
}

.wl__product-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: fill 0.25s ease, stroke 0.25s ease;
}

.wl__product-btn .wl__heart {
  fill: none;
  stroke: currentColor;
}

.wl__product-btn.is-active {
  border-color: #e63946;
  color: #e63946;
}

.wl__product-btn.is-active .wl__heart {
  fill: #e63946;
  stroke: #e63946;
}

.wl__product-btn .wl__label-add,
.wl__product-btn.is-active .wl__label-remove {
  display: inline;
}

.wl__product-btn .wl__label-remove,
.wl__product-btn.is-active .wl__label-add {
  display: none;
}

/* Toast notification */
.wl__toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #333;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  z-index: var(--z-toast);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

[data-theme="dark"] .wl__toast {
  background: #2a2a2a;
  color: #e8e8e8;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.wl__toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}


/* ═══ 9. UTILITIES ═══════════════════════════════════════ */

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.u-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ═══ Section Başlıkları — Sadece Dark Temada ═══════════ */
[data-theme="dark"] .bs__title,
[data-theme="dark"] .qc__title {
  color: #F5F5F5 !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-left: 12px;
  border-left: 3px solid #CC0000;
  line-height: 1.2;
}
/* ═══ Drawer — Tema bazlı arka plan fix ═══════════════ */
[data-theme="light"] .menu-drawer.menu-drawer {
  background: #ffffff !important;
  color: #111111 !important;
}

[data-theme="light"] .menu-drawer a,
[data-theme="light"] .menu-drawer__menu-item,
[data-theme="light"] .md__close-btn {
  color: #111111 !important;
}

[data-theme="dark"] .menu-drawer.menu-drawer {
  background: #111111 !important;
  color: #f5f5f5 !important;
}

[data-theme="dark"] .menu-drawer a,
[data-theme="dark"] .menu-drawer__menu-item,
[data-theme="dark"] .md__close-btn {
  color: #f5f5f5 !important;
}
/* ═══ Brand Slider — Tema bazlı başlık ═══════════════════ */

/* Beyaz tema: siyah, sola hizalı, çizgi yok */
[data-theme="light"] .eroticshop-brand-slider .bs__title,
:root:not([data-theme]) .eroticshop-brand-slider .bs__title {
  color: #111111 !important;
  border-left: none !important;
  padding-left: 0 !important;
  display: block !important;
}

/* Dark tema: beyaz + kırmızı çizgi */
[data-theme="dark"] .eroticshop-brand-slider .bs__title {
  color: #F5F5F5 !important;
  padding-left: 12px !important;
  border-left: 3px solid #CC0000 !important;
  display: block !important;
}
.eroticshop-brand-slider .bs__inner {
  max-width: 1400px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}
[data-theme="dark"] .qc_img-wrap {
  background-color: transparent !important;
}

/* Mobil header layout ve tablet search fix — theme.liquid inline'a taşındı */
   ───────────────────────────────────────────────────────────────
   header.liquid: .section-header { position: sticky } (top yok)
   Hamburger açılınca body overflow:hidden → section-header y=0'a
   atlıyor, utility bar ile çakışıyor.
   2-class specificity (0,0,2,0) > header.liquid (0,0,1,0)
   ═══════════════════════════════════════════════════════════════ */
@media screen and (max-width: 749px) {
  .shopify-section-group-header-group.section-header {
    position: relative;
  }
}

/* ═══════════════════════════════════════════════════════════════
   HEADER — Arama ikonu renk + boyut
   ─────────────────────────────────────────────────────────────
   currentColor üzerinden mor renk atar.
   Base: 2rem (32px) → 34px (+2px)
   Dark modda daha açık mor — koyu zeminde okunabilirlik için.
   ═══════════════════════════════════════════════════════════════ */
.header__icon--search .icon {
  color: #663399;
  width: 34px;
  height: 34px;
}

[data-theme="dark"] .header__icon--search .icon,
[data-theme="dark"] .header__icon--search svg {
  color: #a566cc !important;
  stroke: none !important;
  fill: #a566cc !important;
}

/* ═══════════════════════════════════════════════════════════════
   MOBİL HEADER — Nihai Yerleşim v2.0
   ─────────────────────────────────────────────────────────────
   Row 1 (56px): [≡ 44px] [LOGO flex:1] [❤ 36px][🛒 36px]
   Row 2 (50px): [Arama çubuğu — tam genişlik]
   Drawer başlangıcı: Row1 altından (JS ile hesaplanır)
   ═══════════════════════════════════════════════════════════════ */
@media screen and (max-width: 749px) {

  /* ── Header: 2 satırlı grid ── */
  .header.page-width {
    padding: 0 !important;
    gap: 0 !important;
    grid-template-rows: 56px auto;
    align-items: center; /* Row 1 öğelerini dikey ortalar */
  }

  /* ── Logo ── */
  .header__heading-logo-wrapper {
    max-width: 150px;
  }
  .header__heading-logo {
    max-width: 150px;
    height: auto;
    display: block;
  }
  .header__heading,
  .header__heading-link {
    display: flex;
    align-items: center;
    padding-left: 6px;
  }

  /* ── Hamburger ── */
  header-drawer {
    display: flex;
    align-items: center;
    height: 44px;
    padding-left: 4px;
  }
  .header__icon--menu {
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .header__icon--menu .icon {
    width: 20px;
    height: 16px;
  }

  /* ── İkonlar grubu ── */
  .header__icons {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;           /* Wishlist + cart arasında boşluk yok */
    padding-right: -3px;
    height: 56px;
  }

  /* Wishlist: mobilde göster + dar dokunma alanı */
  .header__wishlist.small-hide {
    display: flex !important;
  }
  .header__wishlist {
    width: 36px !important;
    height: 44px !important;
    justify-content: center !important;
  }

  /* Sepet */
  .header__icon--cart {
    width: 36px !important;
    height: 44px !important;
    margin-right: 0 !important;
  }

  /* Gizlenenler */
  .header__dm-toggle,
  .header__search {
    display: none !important;
  }

  /* ── Row 2: Arama çubuğu ── */
  .header__search-open-bar {
    display: flex !important;
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    align-self: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 7px 12px !important;
    height: 50px !important;
    border-top: 0.5px solid var(--dm-border, rgba(0,0,0,.06)) !important;
    align-items: center !important;
    background: var(--dm-bg, #fff) !important;
    box-sizing: border-box !important;
  }
  [data-theme="dark"] .header__search-open-bar {
    background: var(--dm-header-bg, #111) !important;
    border-top-color: var(--dm-border, rgba(255,255,255,.08)) !important;
  }
  .header .header__search-open-bar form {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
  }

  /* ── Arama ikonu (search modal trigger — gizli ama eroticshop-base override) ── */
  .header__icon--search .icon {
    width: 20px;
    height: 20px;
  }
  .header__icon--search,
  .header__icon--search .svg-wrapper {
    width: 32px !important;
    height: 44px !important;
  }
}
/* ═══ Mobil arama sayfası — Dawn başlık + ikinci arama kutusu gizle ═══ */
@media screen and (max-width: 749px) {
  .template-search__header {
    display: none;
  }
}
/* ═══════════════════════════════════════════════
   EROTICSHOP — Header Responsive Fix — Patch
   ───────────────────────────────────────────────
   Sorun 1: Tablet (750-1199px) aralığında search
            modal ikonu (büyüteç) görünüyordu.
   Sorun 2: 990-1199px aralığında inline search bar
            display:none kuralı !important eksikti,
            override ediliyordu → logo çakışması.

   Bu patch, mevcut eroticshop-base.css dosyasının
   sonuna (son } 'dan hemen önce değil, sona) eklenmelidir.
   ═══════════════════════════════════════════════ */

/* ═══ HEADER — Tablet Search Icon Fix ══════════
   750-1199px aralığında search modal tetikleyicisi
   (.header__search details elementi) gizlenir.
   Inline search bar bu aralıkta zaten gizli,
   mobilde ise Row 2 search bar var.
   ════════════════════════════════════════════════ */
@media screen and (min-width: 750px) and (max-width: 1199px) {
  .header__search {
    display: none !important;
  }
}
