/** Shopify CDN: Minification failed

Line 320:21 Expected ")" to end URL token

**/
/* === HEADER GENEL === */
.site-header {
  background-color: #000;
  color: #fff;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  box-sizing: border-box;
  border-bottom: 1px solid #111;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Sol: Logo + Menü */
.header-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.logo-img {
  width: auto;
  height: 40px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease, opacity 0.3s ease;
  opacity: 0;
  animation: fadeInLogo 1s ease forwards;
}

.logo-img:hover {
  transform: scale(1.05);
}

/* Fade-in animasyonu */
@keyframes fadeInLogo {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Menü */
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Üst seviye item */
.nav-item {
  position: relative;
}

/* Üst link */
.nav-link:hover {
  color: #9b9b9b;
}

/* Alt menülü buton (Ev, Anahtarlık vs) */

/* Ok ikonu */
.nav-arrow {
  font-size: 10px;
  transition: transform 0.25s ease;
}

.nav-item.open .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown menü – sadece tıklayınca açılır */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #111;
  border: 1px solid #222;
  border-radius: 6px;
  min-width: 160px;
  display: none;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 40;
}

/* Sadece .open olduğunda göster */
.nav-item.open > .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  width: 100%;
}

.dropdown-link {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-link:hover {
  background: #1a1a1a;
  color: #f3f3f3;
}

/* Sağ: Arama + Hesap + Sepet */
.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* İkon butonlar */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

/* İkon görüntüsü + parlama efekti */
.icon-btn img {
  width: 18px;
  height: 18px;
  opacity: 0.85;
  filter: drop-shadow(0 0 0 transparent);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    filter 0.3s ease;
}

.icon-btn:hover img {
  opacity: 1;
  transform: scale(1.1);
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
}

/* Icon buton reset + beyaz kutu engeli */
.icon-btn,
.menu-toggle {
  background: transparent !important;
  border: 0 !important;
  padding: 0;
  min-width: 40px;
  min-height: 40px;
}

.cart-count-bubble,
.icon-bubble {
  display: none !important;
}

/* Mobil menü butonu */
.menu-toggle {
  display: none;
}

/* Mobil menü açılınca nav görünür */
.main-nav.is-open {
  display: flex;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .site-header {
    padding: 0 20px;
  }

  .header-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .main-nav {
    display: none;
  }

  .logo-img {
    height: 36px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  /* Mobilde nav dikey */
  .main-nav.is-open {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* Mobilde dropdown static ve sadece .open iken görünür */
  .dropdown-menu {
    position: static;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 4px 0 0;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: none;
  }

  .nav-item.open > .dropdown-menu {
    display: block;
  }

  .dropdown-link {
    padding: 4px 0 4px 14px;
    font-size: 13px;
  }
}

/* ========================= */
/*        ACCOUNT MODAL      */
/* ========================= */

.accm {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.accm.is-open {
  display: block;
}

.accm__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 75% 18%, rgba(255,255,255,0.06), transparent 55%),
    rgba(0,0,0,0.65);
  backdrop-filter: blur(1px);
}

.accm__dialog {
  position: relative;
  margin: 6vh auto 0;
  width: min(560px, 92vw);
  background: #0b0b0b;
  color: #ffffff;
  border: 1px solid #222;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  padding: 22px 22px 24px;
}

.accm__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

/* Header: gradient + watermark ikon */
.accm__header {
  position: relative;
  padding: 18px 18px 16px;
  margin: -6px -6px 10px;
  background: linear-gradient(180deg, #141414 0%, #0f0f0f 60%, #0b0b0b 100%);
  border-bottom: 1px solid #1c1c1c;
  border-radius: 12px 12px 0 0;
  min-height: 150px !important;
  padding-bottom: 10px !important;
  z-index: 1;
}

.accm__header::after {
  content: "";
  position: absolute !important;
  right: 18px !important;
  top: 5px !important;
  width: 115px !important;
  height: 115px !important;
  background: url({{ 'icon-bag-watermark.svg' | asset_url }}) no-repeat center / contain;
  opacity: 0.14 !important;
  pointer-events: none;
  filter: drop-shadow(0 2px 0 rgba(255,255,255,0.06));
  z-index: 0 !important;
}

/* Başlık & alt başlık */
.accm__header h2 {
  margin: 0 0 6px !important;
  font-size: 22px !important;
  line-height: 1.2 !important;
}

.accm__sub {
  margin: 0 !important;
  opacity: 0.85;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

/* Perks */
.accm__perks {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 16px !important;
  flex-wrap: nowrap !important;
  margin: 25px 0 6px !important;
  margin-left: 10px !important;
  opacity: 0.95;
  list-style: none;
  padding: 0;
}

.perk {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  display: grid;
  grid-template-rows: 40px auto;
  justify-items: center;
  align-items: center;
  row-gap: 4px !important;
  text-align: center !important;
}

.perk__icon {
  width: 34px !important;
  height: 34px !important;
  border-radius: 999px;
  background: linear-gradient(180deg, #191919 0%, #151515 100%);
  border: 1px solid #242424;
  display: grid;
  place-items: center;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.04);
}

.perk__icon img {
  width: 18px !important;
  height: 18px !important;
  opacity: 0.95;
}

.perk__text {
  font-size: 12px !important;
  color: #dcdcdc;
  opacity: 0.95;
  text-align: center;
  line-height: 1.1 !important;
  white-space: nowrap !important;
}

/* küçük ekranlarda perk taşmasını engelle */
@media (max-width: 420px) {
  .perk__text {
    white-space: normal !important;
    font-size: 11.5px;
  }
}

/* Sekmeler */
.accm__tabs {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  max-width: 300px !important;
  margin: 8px auto 12px !important;
}

.accm__tab {
  height: 40px !important;
  border-radius: 10px !important;
  border: 1px solid #2a2a2a !important;
  background: #1a1a1a !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  cursor: pointer;
}

.accm__tab.is-active {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
  box-shadow: 0 0 0 2px rgba(255,255,255,.08) !important;
}

/* Panel sarmalayıcı */
.accm__panels {
  position: relative;
}

/* Paneller: slide-fade */
.accm__panel {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.accm__panel[hidden] {
  display: block;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.accm__panel.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* Panel yön animasyonları */
@keyframes accmSlideLeft {
  from { opacity: 0; transform: translateY(8px) translateX(10px); }
  to   { opacity: 1; transform: translateY(0) translateX(0); }
}

@keyframes accmSlideRight {
  from { opacity: 0; transform: translateY(8px) translateX(-10px); }
  to   { opacity: 1; transform: translateY(0) translateX(0); }
}

.accm__panel.anim-left  { animation: accmSlideLeft 220ms ease; }
.accm__panel.anim-right { animation: accmSlideRight 220ms ease; }

/* Form alanları */
.accm__label {
  display: block;
  font-size: 13px;
  opacity: 0.9;
  margin: 12px 0 6px;
}

.accm__input {
  display: grid;
  align-items: center;
  grid-template-columns: 36px 1fr;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  background: #111111;
  padding: 0 10px 0 0;
}

.accm__icon {
  width: 18px;
  height: 18px;
  margin-left: 10px;
  opacity: 0.9;
}

.accm__input input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0;
  color: #ffffff;
  padding: 0 10px 0 0;
  outline: none;
}

.accm__input:focus-within {
  border-color: #3a3a3a;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.05);
}

/* Satır, link, buton */
.accm__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0 14px;
  font-size: 13px;
}

.accm__check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.accm__link {
  color: #d1d1d1;
  text-decoration: none;
}

.accm__link:hover {
  color: #ffffff;
}

.accm__submit {
  width: 100%;
  height: 46px;
  border-radius: 10px;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.06s ease;
}

.accm__submit:active {
  transform: translateY(1px);
}

/* Kayıt politikası */
.accm__policy {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 8px 0 12px !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  color: #dcdcdc;
}

.accm__policy input {
  margin: 0 !important;
}

.accm__policy a {
  color: #ffffff;
  text-decoration: underline;
}

/* Uyarılar */
.accm__alert {
  background: #2a1111;
  border: 1px solid #552222;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.accm__success {
  background: #113011;
  border: 1px solid #225522;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* Modal alt satır */
.accm__foot {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 13px;
  color: #cfcfcf;
}

.accm__inline {
  background: transparent;
  border: 1px solid #2a2a2a;
  padding: 6px 12px;
  border-radius: 999px;
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.06s ease;
}

.accm__inline::after {
  content: "→";
  margin-left: 6px;
  opacity: 0.9;
  transition: transform 0.18s ease;
}

.accm__inline:hover {
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.06);
}

.accm__inline:hover::after {
  transform: translateX(2px);
}

.accm__inline:active {
  transform: translateY(1px);
}

/* Küçük ekran modal */
@media (max-width: 480px) {
  .accm__dialog {
    width: 420px !important;
    max-width: 92vw;
  }

  .accm__header {
    padding-right: 100px !important;
  }

  .accm__header h2 {
    font-size: 20px !important;
  }

  .accm__sub {
    font-size: 12.5px !important;
  }

  .accm__perks {
    flex-wrap: wrap !important;
    gap: 20px !important;
    margin-top: 50px !important;
  }

  .accm__header::after {
    width: 90px !important;
    height: 90px !important;
    top: 10px !important;
  }
}

/* Sepet ikonundaki adet rozeti */
.header-cart-btn {
  position: relative;
}

.cart-count-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  font-size: 11px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
/* === TÜM ÜST MENÜ ÖGELERİNİ EŞİTLE === */
.main-nav .nav-item > .nav-link,
.main-nav .nav-item > .nav-toggle {
  font-size: 14px !important;        /* hepsi aynı */
  font-weight: 400 !important;        /* normal kalınlık */
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  line-height: 1 !important;
  padding: 0 !important;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

/* ok ikonları */
.nav-arrow {
  font-size: 9px !important;
  margin-top: 1px;
  transition: transform .25s ease;
}

/* hover */
.main-nav .nav-link:hover,
.main-nav .nav-toggle:hover {
  color: #cfcfcf;
}
/* === MOBİL SOL ÇEKMECE MENÜ === */

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100vh;
  background: #000;
  padding: 20px 18px;
  box-sizing: border-box;
  z-index: 9999;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-drawer-inner {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-drawer-link {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  padding-bottom: 8px;
  border-bottom: 1px solid #1a1a1a;
}

.mobile-drawer-link:last-child {
  border-bottom: none;
}

/* Arka plan karartma */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

/* Açık durum */
.mobile-drawer.is-open {
  left: 0;
}

.mobile-drawer-backdrop.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Sadece mobilde göster */
@media (min-width: 769px) {
  .mobile-drawer,
  .mobile-drawer-backdrop {
    display: none;
  }
}
/* === MOBİL ALT KATEGORİLER (TEMİZ) === */
.mobile-drawer-item {
  margin-bottom: 6px;
}

.mobile-drawer-parent {
  width: 100%;
  background: none;
  border: 0;
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
}

.mobile-drawer-arrow {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.mobile-drawer-item.is-open .mobile-drawer-arrow {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  padding-left: 10px;
}

.mobile-drawer-item.is-open .mobile-submenu {
  display: block;
}

.mobile-drawer-sublink {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: #dcdcdc;
  text-decoration: none;
}

/* tıklama alanını garantiye al */
.mobile-drawer-sublink {
  position: relative;
  z-index: 1;
}
