/* Droptan mağaza kromu — landing üstüne alışveriş iskeleti */

:root {
  --lv2-shop-announce-h: 2.25rem;
  --ms-announce-height: var(--lv2-shop-announce-h);
  --lv2-shop-nav-h: 3.5rem;
  --lv2-shop-catnav-h: 0px;
  --opcent-brand-bg: #faf2e6;
  --ms-surface: var(--opcent-brand-bg);
  --ms-card-surface: #fffefb;
  --ms-card-bg: var(--ms-card-surface);
  --ms-white: var(--ms-card-surface);
  --ms-drawer-surface: #faf7f2;
  --ms-nav-chrome: color-mix(in srgb, var(--ms-surface) 96%, transparent);
  --ms-category-bar: #faf7f2;
  --ms-input-bg: color-mix(in srgb, var(--ms-surface) 78%, #f3efea);
  --ms-border-chrome: color-mix(in srgb, #2c2426 8%, #ebe6e1);
  --ms-border-tone: var(--ms-border-chrome);
  --ms-button-bg: #faf2e6;
  --ms-button-text: #910000;
  --ms-font: 'Inter', system-ui, sans-serif;
  --ms-font-size-base: 16px;
}

body.lv2-shop-body,
body.font-sans {
  font-family: var(--ms-font, 'Inter', system-ui, sans-serif);
  font-size: var(--ms-font-size-base, 16px);
}

.lv2-shop-announce {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--lv2-shop-announce-h);
  padding: 0 1rem;
  overflow: hidden;
  background: #640200;
  color: #fff;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.lv2-shop-announce__msg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 1rem;
  opacity: 0;
  transform: translateY(0.35rem);
  pointer-events: none;
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.lv2-shop-announce__msg.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lv2-shop-announce__msg.is-leave {
  opacity: 0;
  transform: translateY(-0.35rem);
}

.lv2-shop-announce--store-link {
  padding: 0;
}

.lv2-shop-announce__store-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  color: inherit;
  text-decoration: none;
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: clamp(0.72rem, 1.7vw, 0.95rem);
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  line-height: 1.2;
}

.lv2-shop-announce__store-link:hover,
.lv2-shop-announce__store-link:focus-visible {
  background: #3b0303;
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .lv2-shop-announce__msg {
    transition: opacity 0.2s ease;
    transform: none !important;
  }
}

.lv2-shop-nav.glass-nav,
#navbar.lv2-shop-nav {
  top: var(--lv2-shop-announce-h);
  overflow: visible;
}

.lv2-shop-nav .lv2-shop-nav__row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  height: var(--lv2-shop-nav-h);
}

/* Satıcı paketi / kurumsal sayfalar — logo yatay ortada */
.lv2-shop-nav--logo-center .lv2-shop-nav__row {
  position: relative;
  justify-content: center;
}

.lv2-shop-nav--logo-center .lv2-nav-logo-link {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-right: 0 !important;
  z-index: 2;
  pointer-events: auto;
}

.lv2-shop-nav--logo-center .lv2-nav-logo {
  object-position: center center;
}

.lv2-shop-nav .lv2-nav-logo-link {
  flex-shrink: 0;
}

/* Desktop: logo sağı = container sol padding (px-6 / px-8), row gap düşülür */
@media (min-width: 768px) {
  .lv2-shop-nav .lv2-nav-logo-link {
    margin-right: calc(1.5rem - 0.45rem);
  }
}

@media (min-width: 1024px) {
  .lv2-shop-nav .lv2-nav-logo-link {
    margin-right: calc(2rem - 0.45rem);
  }
}

.lv2-shop-nav__links {
  align-items: center;
  gap: 0.15rem;
  flex-shrink: 0;
}

.lv2-shop-nav__links--start {
  margin-right: 0.15rem;
}

.lv2-shop-nav__links > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.7rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.lv2-shop-nav__links > a:hover {
  color: #640200;
  background: #fdf4f4;
}

/* Desktop kategori şeridi + mega menu (Shopcent mantığı) */
.lv2-catnav-wrap {
  display: none;
}

.lv2-shop-search {
  flex: 1;
  min-width: 0;
  max-width: 36rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  height: 2.45rem;
  padding: 0 0.3rem 0 0.9rem;
  border: 1px solid rgba(26, 18, 16, 0.14);
  border-radius: 0.4rem;
  background: var(--ms-input-bg, var(--ms-card-surface, #fffefb));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.lv2-shop-search--desktop {
  display: flex;
}

.lv2-shop-search--suggest {
  position: relative;
}

.lv2-shop-search-suggest {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  z-index: 80;
  max-height: min(24rem, 70vh);
  overflow: auto;
  border: 1px solid rgba(26, 18, 16, 0.12);
  border-radius: 0.45rem;
  background: var(--ms-input-bg, var(--ms-card-surface, #fffefb));
  box-shadow: 0 18px 40px -24px rgba(20, 12, 10, 0.45);
}

.lv2-shop-search-suggest[hidden] {
  display: none !important;
}

.lv2-shop-search-suggest__empty {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.8125rem;
  color: #8a807a;
}

.lv2-shop-search-suggest__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.85rem;
  color: #1a1210;
  text-decoration: none;
}

.lv2-shop-search-suggest__item:hover,
.lv2-shop-search-suggest__item.is-active {
  background: #faf6f4;
}

.lv2-shop-search-suggest__thumb {
  width: 3rem; /* w-12 */
  height: 4.5rem; /* h-18 */
  flex-shrink: 0;
  border-radius: 0.25rem;
  object-fit: cover;
  object-position: center;
  background: #f3eeeb;
}

.lv2-shop-search-suggest__thumb--empty {
  display: block;
}

.lv2-shop-search-suggest__body {
  flex: 1;
  min-width: 0;
}

.lv2-shop-search-suggest__name {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
}

.lv2-shop-search-suggest__meta {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.75rem;
  color: #8a807a;
}

.lv2-shop-search-suggest__price {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #640200;
}

.lv2-shop-nav.is-search-open.is-suggest-open .lv2-shop-search-panel {
  overflow: visible;
  max-height: min(70vh, 28rem);
}

.lv2-shop-nav.is-search-open.is-suggest-open .lv2-shop-search-panel > .lv2-shop-search {
  overflow: visible;
}

.lv2-shop-search-toggle {
  display: none;
}

.lv2-shop-search-panel {
  display: grid;
  grid-template-rows: 0fr;
  max-height: 0;
  padding: 0 1rem;
  background: var(--ms-input-bg, var(--ms-card-surface, #fffefb));
  border-top: 0 solid transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  transition:
    grid-template-rows 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease,
    border-width 0.28s ease,
    border-color 0.28s ease,
    visibility 0.38s;
}

.lv2-shop-search-panel > .lv2-shop-search {
  max-width: none;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  transform: translateY(-0.45rem) scale(0.92);
  transform-origin: 2.5rem center;
  opacity: 0;
  filter: blur(2px);
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.32s ease,
    filter 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.lv2-shop-nav.is-search-open .lv2-shop-search-panel {
  grid-template-rows: 1fr;
  max-height: 4rem;
  padding: 0.55rem 1rem 0.65rem;
  border-top-width: 1px;
  border-top-color: #eef2f6;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lv2-shop-nav.is-search-open .lv2-shop-search-panel > .lv2-shop-search {
  transform: translateY(0) scale(1);
  opacity: 1;
  filter: blur(0);
}

.lv2-shop-nav.is-search-open .lv2-shop-search-toggle {
  background: #fdf4f4;
  color: #550100;
}

.lv2-shop-nav.is-search-open .lv2-shop-search-toggle svg {
  animation: lv2-search-icon-pop 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes lv2-search-icon-pop {
  0% { transform: scale(1); }
  40% { transform: scale(0.86) rotate(-8deg); }
  100% { transform: scale(1) rotate(0); }
}

#mobile-menu .lv2-shop-search {
  max-width: none;
  width: 100%;
}

@media (max-width: 767px) {
  .lv2-shop-search--desktop {
    display: none !important;
  }

  .lv2-shop-search-toggle {
    display: inline-flex !important;
    flex-shrink: 0;
    margin-right: 0.05rem;
  }

  .lv2-shop-search-panel .lv2-shop-search {
    height: 2.4rem;
    padding: 0 0.3rem 0 0.85rem;
    border: 1px solid rgba(26, 18, 16, 0.14);
    border-radius: 0.4rem;
    background: var(--ms-input-bg, var(--ms-card-surface, #fffefb));
    box-shadow: none;
  }

  .lv2-shop-nav.is-search-open .lv2-shop-search-panel .lv2-shop-search {
    box-shadow: 0 8px 22px -16px rgba(20, 12, 10, 0.28);
  }

  .lv2-shop-search-panel .lv2-shop-search:focus-within {
    border-color: #640200;
    background: var(--ms-input-bg, var(--ms-card-surface, #fffefb));
    box-shadow: 0 0 0 2px rgba(100, 2, 0, 0.1);
  }

  .lv2-shop-search-panel .lv2-shop-search input {
    font-size: 0.8125rem;
    font-weight: 500;
  }

  .lv2-shop-search-panel .lv2-shop-search button {
    width: 1.95rem;
    height: 1.95rem;
    border-radius: 0.3rem;
  }

  .lv2-shop-nav .lv2-nav-logo-link {
    margin-right: 0;
    min-width: 0;
  }

  .lv2-shop-nav .lv2-nav-logo {
    max-width: min(42vw, 9.5rem);
    height: auto;
  }
}

@media (min-width: 768px) {
  :root {
    --lv2-shop-nav-h: 3.75rem;
    --lv2-shop-catnav-h: 2.55rem;
  }

  .lv2-shop-search-toggle,
  .lv2-shop-search-panel,
  .lv2-shop-nav.is-search-open .lv2-shop-search-panel {
    display: none !important;
  }

  .lv2-catnav-wrap {
    display: block;
    position: relative;
    border-top: 1px solid #eef2f6;
    background: var(--ms-category-bar, #faf7f2);
  }

  .lv2-catnav-wrap[hidden] {
    display: none !important;
  }

  .lv2-catnav-wrap--mega-open {
    z-index: 40;
  }

  .lv2-catnav {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    height: var(--lv2-shop-catnav-h);
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .lv2-catnav::-webkit-scrollbar {
    display: none;
  }

  .lv2-catnav__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    padding: 0;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #640200;
    cursor: pointer;
    box-shadow: 0 4px 12px -6px rgba(15, 23, 42, 0.25);
  }

  .lv2-catnav__arrow:hover {
    border-color: #640200;
    background: #fdf4f4;
  }

  .lv2-catnav__arrow--left {
    left: 0.45rem;
  }

  .lv2-catnav__arrow--right {
    right: 0.45rem;
  }

  .lv2-catnav__arrow[hidden] {
    display: none !important;
  }

  .lv2-catnav__item {
    position: relative;
    flex-shrink: 0;
  }

  .lv2-catnav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.7rem;
    border: none;
    background: none;
    color: #334155;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.15s ease;
  }

  .lv2-catnav__link:hover,
  .lv2-catnav__link--active,
  .lv2-catnav__item--active .lv2-catnav__link {
    color: #640200;
  }

  .lv2-catnav__gender {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 0.85rem;
    padding-right: 0.85rem;
    border-right: 1px solid rgba(26, 18, 16, 0.1);
  }

  .lv2-catnav__gender-opt {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0;
    color: #9a908a;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s ease;
  }

  .lv2-catnav__gender-opt + .lv2-catnav__gender-opt::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 0.7rem;
    margin: 0 0.7rem;
    background: rgba(26, 18, 16, 0.14);
  }

  .lv2-catnav__gender-opt.is-active {
    color: #640200;
    box-shadow: inset 0 -1px 0 #640200;
  }

  .lv2-catnav__gender-opt:not(.is-active):hover {
    color: #5c524e;
  }

  .lv2-catnav__gender-opt.is-disabled,
  .lv2-catnav__gender-opt.is-disabled:hover {
    color: #d2cac5;
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
  }

  .lv2-catnav__num {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #94a3b8;
  }

  .lv2-catnav__item--active .lv2-catnav__num,
  .lv2-catnav__link:hover .lv2-catnav__num {
    color: #640200;
  }

  .lv2-megamenu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 50;
    background: var(--ms-category-bar, #faf7f2);
    border: 1px solid color-mix(in srgb, var(--ms-primary, #640200) 8%, #e2e8f0);
    border-top: 2px solid #640200;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    animation: lv2-megamenu-in 0.16s ease-out;
  }

  .lv2-megamenu[hidden] {
    display: none !important;
  }

  @keyframes lv2-megamenu-in {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .lv2-megamenu__inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1.1rem 1.5rem 1.35rem;
  }

  .lv2-megamenu__head {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid #eef2f6;
  }

  .lv2-megamenu__title {
    font-size: 0.9375rem;
    font-weight: 750;
    color: #640200;
    text-decoration: none;
  }

  .lv2-megamenu__title:hover {
    color: #550100;
  }

  .lv2-megamenu__hint {
    font-size: 0.6875rem;
    font-weight: 650;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
  }

  .lv2-megamenu__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
    gap: 0.5rem 1.25rem;
  }

  .lv2-megamenu__col {
    min-width: 0;
  }

  .lv2-megamenu__link {
    display: block;
    padding: 0.15rem 0;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    line-height: 1.35;
  }

  .lv2-megamenu__link:hover {
    color: #640200;
  }

  .lv2-megamenu__link--parent {
    font-weight: 650;
    color: #0f172a;
  }

  .lv2-megamenu__empty {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #94a3b8;
  }

  .lv2-megamenu__loading {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #94a3b8;
  }

  .lv2-megamenu__expand {
    display: block;
    margin: 0.1rem 0 0.15rem;
    padding: 0;
    border: none;
    background: none;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
  }

  .lv2-megamenu__expand:hover {
    color: #640200;
  }

  .lv2-megamenu__col--focus > .lv2-megamenu__link--parent {
    color: #640200;
  }

  .lv2-megamenu__hint-soft {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.65rem;
    font-weight: 550;
    color: #b0a8a2;
    letter-spacing: 0.01em;
  }

  .lv2-megamenu__col--expandable:hover .lv2-megamenu__hint-soft {
    color: #640200;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lv2-shop-search-panel,
  .lv2-shop-search-panel > .lv2-shop-search,
  .lv2-shop-nav.is-search-open .lv2-shop-search-toggle svg,
  .lv2-megamenu {
    transition: none !important;
    animation: none !important;
    filter: none !important;
  }
}

.lv2-shop-search:focus-within {
  border-color: #640200;
  background: var(--ms-input-bg, var(--ms-card-surface, #fffefb));
  box-shadow: 0 0 0 2px rgba(100, 2, 0, 0.1);
}

.lv2-shop-search input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #1a1210;
  outline: none;
}

.lv2-shop-search input::placeholder {
  color: #8a807a;
  font-weight: 450;
}

.lv2-shop-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border: none;
  border-radius: 0.3rem;
  background: #640200;
  color: #fff;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.12s ease;
}

.lv2-shop-search button:hover {
  background: #550100;
}

.lv2-shop-search button:active {
  transform: scale(0.96);
}

.lv2-shop-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
  flex-shrink: 0;
}

.lv2-shop-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.55rem;
  color: #640200;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.lv2-shop-icon-link:hover {
  background: #fdf4f4;
  color: #550100;
}

/* Mobil menü — logonun solu + soldan drawer */
.lv2-shop-nav #mobile-menu-btn,
.lv2-shop-nav .lv2-shop-menu-btn {
  display: none !important;
}

@media (max-width: 767px) {
  .lv2-shop-nav #mobile-menu-btn,
  .lv2-shop-nav .lv2-shop-menu-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    margin-right: 0.1rem;
    border-radius: 0.65rem;
    color: #640200;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
  }

  .lv2-shop-nav #mobile-menu-btn:hover,
  .lv2-shop-nav .lv2-shop-menu-btn:hover,
  .lv2-shop-nav.is-drawer-open #mobile-menu-btn {
    background: #fdf4f4;
    color: #550100;
  }

  .lv2-shop-menu-btn__icon {
    display: block;
  }
}

.lv2-shop-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 160;
  background: rgba(15, 23, 42, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  pointer-events: none;
  backdrop-filter: blur(2px);
}

.lv2-shop-drawer {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 170;
  width: min(100vw, 28rem);
  height: 100%;
  max-height: 100dvh;
  background: var(--ms-drawer-surface, #faf7f2);
  box-shadow: 16px 0 48px -20px rgba(15, 23, 42, 0.38);
  transform: translateX(-105%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  visibility: hidden;
  pointer-events: none;
}

.lv2-shop-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-shrink: 0;
  padding: 0.85rem 0.85rem 0.85rem 1.15rem;
  border-bottom: 1px solid #f1f5f9;
}

.lv2-shop-drawer__brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.lv2-shop-drawer__brand img {
  display: block;
  height: 1.15rem;
  width: auto;
}

.lv2-shop-drawer__title {
  display: none;
}

.lv2-shop-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ms-drawer-surface, #faf7f2) 82%, #ebe6e1);
  color: #64748b;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.lv2-shop-drawer__close:hover {
  background: #fdf4f4;
  color: #640200;
}

.lv2-shop-drawer__body {
  flex: 1;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.65rem 0.65rem 1rem;
}

.lv2-shop-drawer__foot {
  flex-shrink: 0;
  padding: 0.75rem 1rem calc(0.9rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid #f1f5f9;
  background: var(--ms-drawer-surface, #faf7f2);
}

.lv2-shop-drawer__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid color-mix(in srgb, var(--ms-drawer-surface, #faf7f2) 70%, #ebe6e1);
  border-radius: 0.85rem;
  background: color-mix(in srgb, var(--ms-drawer-surface, #faf7f2) 88%, var(--ms-card-surface, #fffefb));
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: #0f172a;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.lv2-shop-drawer__action:hover {
  background: #fdf4f4;
  border-color: #f5d3d3;
  color: #640200;
}

.lv2-shop-drawer__action svg {
  flex-shrink: 0;
  color: #640200;
  opacity: 0.85;
}

/* Mobil menü — akordeon kategoriler */
.lv2-mobile-cats {
  margin: 0;
  padding: 0;
}

.lv2-mobile-cats__label {
  display: none;
}

.lv2-mobile-cats__item {
  margin: 0;
}

.lv2-mobile-cats__hit,
.lv2-mobile-cats__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  min-height: 3rem;
  padding: 0.8rem 0.9rem;
  margin: 0;
  border: none;
  border-radius: 0.75rem;
  background: transparent;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #0f172a;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.lv2-mobile-cats__hit:hover,
.lv2-mobile-cats__link:hover {
  background: color-mix(in srgb, var(--ms-drawer-surface, #faf7f2) 78%, #ebe6e1);
  color: #640200;
}

.lv2-mobile-cats__name {
  min-width: 0;
  flex: 1;
}

.lv2-mobile-cats__chev {
  flex-shrink: 0;
  color: #94a3b8;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), color 0.15s ease;
}

.lv2-mobile-cats__item.is-open > .lv2-mobile-cats__hit {
  color: #640200;
  background: #fdf4f4;
}

.lv2-mobile-cats__item.is-open > .lv2-mobile-cats__hit .lv2-mobile-cats__chev {
  color: #640200;
  transform: rotate(180deg);
}

.lv2-mobile-cats__panel {
  padding: 0.15rem 0 0.45rem 0.35rem;
  margin: 0 0.35rem 0.2rem 0.9rem;
  border-left: 1px solid #f1f5f9;
}

.lv2-mobile-cats__panel[hidden] {
  display: none !important;
}

.lv2-mobile-cats__panel-inner {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-left: 0.35rem;
}

.lv2-mobile-cats__all {
  display: block;
  margin: 0.15rem 0 0.25rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #640200;
  text-decoration: none;
  border-radius: 0.55rem;
}

.lv2-mobile-cats__all:hover {
  background: #fdf4f4;
}

.lv2-mobile-cats__panel .lv2-mobile-cats__hit,
.lv2-mobile-cats__panel .lv2-mobile-cats__link {
  min-height: 2.65rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
}

.lv2-mobile-cats__panel .lv2-mobile-cats__item.is-open > .lv2-mobile-cats__hit {
  background: color-mix(in srgb, var(--ms-drawer-surface, #faf7f2) 78%, #ebe6e1);
}

.lv2-mobile-cats__empty {
  margin: 0;
  padding: 0.55rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #94a3b8;
}

.lv2-mobile-cats__item[data-depth='1'] .lv2-mobile-cats__panel {
  margin-left: 0.55rem;
}

body.lv2-drawer-open {
  overflow: hidden;
}

body.lv2-drawer-open .lv2-shop-drawer-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.lv2-drawer-open .lv2-shop-drawer {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

@media (min-width: 768px) {
  #mobile-menu.lv2-shop-drawer,
  .lv2-shop-drawer,
  .lv2-shop-drawer-backdrop {
    display: none !important;
  }
}

.lv2-shop-icon-link span.lv2-shop-icon-label {
  display: none !important;
}

.lv2-shop-cart {
  position: relative;
}

.lv2-shop-cart__badge {
  position: absolute;
  top: 0.2rem;
  right: 0.15rem;
  min-width: 1.05rem;
  height: 1.05rem;
  padding: 0 0.28rem;
  border-radius: 999px;
  background: #640200;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.05rem;
  text-align: center;
}

.lv2-shop-cart__badge[hidden] {
  display: none;
}

.lv2-shop-fav {
  position: relative;
}

.lv2-shop-fav__badge {
  position: absolute;
  top: 0.2rem;
  right: 0.15rem;
  min-width: 1.05rem;
  height: 1.05rem;
  padding: 0 0.28rem;
  border-radius: 999px;
  background: #640200;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.05rem;
  text-align: center;
}

.lv2-shop-fav__badge[hidden] {
  display: none;
}

/* Favoriler drawer — sağdan (sepet ile aynı katman) */
.lv2-fav-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(15, 23, 42, 0.48);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
  pointer-events: none;
}

.lv2-fav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 150;
  display: flex;
  flex-direction: column;
  width: min(100vw, 28rem);
  height: 100%;
  max-height: 100dvh;
  background: var(--ms-drawer-surface, #faf7f2);
  box-shadow: -24px 0 64px -28px rgba(20, 12, 10, 0.55);
  transform: translateX(104%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  visibility: hidden;
  pointer-events: none;
}

body.lv2-fav-open {
  overflow: hidden;
}

body.lv2-fav-open .lv2-fav-drawer-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.lv2-fav-open .lv2-fav-drawer {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.lv2-fav-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.15rem 1rem;
  border-bottom: 1px solid #eef2f6;
}

.lv2-fav-drawer__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.lv2-fav-drawer__count {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
}

.lv2-fav-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: none;
  border-radius: 0.65rem;
  background: transparent;
  color: #64748b;
  cursor: pointer;
}

.lv2-fav-drawer__close:hover {
  background: #f1f5f9;
  color: #640200;
}

.lv2-fav-drawer__body {
  flex: 1;
  overflow: auto;
  padding: 0.85rem 1.05rem 1rem;
  -webkit-overflow-scrolling: touch;
}

.lv2-fav-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3.5rem 1rem 2rem;
}

.lv2-fav-drawer__empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: #fdf4f4;
  color: #640200;
}

.lv2-fav-drawer__empty-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 750;
  color: #0f172a;
}

.lv2-fav-drawer__empty-text {
  margin: 0.35rem 0 1.25rem;
  font-size: 0.875rem;
  color: #64748b;
}

.lv2-fav-drawer__empty-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0 1.25rem;
  border-radius: 0.65rem;
  background: #640200;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 650;
  text-decoration: none;
}

.lv2-fav-drawer__empty-cta:hover {
  background: #550100;
}

.lv2-fav-drawer__row {
  display: grid;
  grid-template-columns: 4.75rem minmax(0, 1fr);
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #eef2f6;
}

.lv2-fav-drawer__row:first-child {
  padding-top: 0.15rem;
}

.lv2-fav-drawer__media {
  display: block;
  overflow: hidden;
  border-radius: 0.65rem;
  background: color-mix(in srgb, var(--ms-drawer-surface, #faf7f2) 82%, #ebe6e1);
  aspect-ratio: 3 / 4;
}

.lv2-fav-drawer__media img,
.lv2-fav-drawer__ph {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lv2-fav-drawer__ph {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--ms-drawer-surface, #faf7f2) 70%, #ebe6e1),
    color-mix(in srgb, var(--ms-drawer-surface, #faf7f2) 55%, #e2e8f0)
  );
}

.lv2-fav-drawer__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 0.65rem;
}

.lv2-fav-drawer__row-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.lv2-fav-drawer__name {
  font-size: 0.875rem;
  font-weight: 650;
  color: #0f172a;
  text-decoration: none;
  line-height: 1.35;
}

.lv2-fav-drawer__name:hover {
  color: #640200;
}

.lv2-fav-drawer__remove {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border: none;
  border-radius: 0.5rem;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
}

.lv2-fav-drawer__remove:hover {
  background: #fef2f2;
  color: #640200;
}

.lv2-fav-drawer__row-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.lv2-fav-drawer__price {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 750;
  color: #640200;
}

.lv2-fav-drawer__to-cart {
  border: 1px solid #e2e8f0;
  border-radius: 0.55rem;
  background: var(--ms-input-bg, var(--ms-card-surface, #fffefb));
  color: #0f172a;
  font-size: 0.75rem;
  font-weight: 650;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  font-family: inherit;
}

.lv2-fav-drawer__to-cart:hover {
  border-color: #640200;
  color: #640200;
  background: #fdf4f4;
}

/* Sepet drawer — premium sağ panel */
.lv2-cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(20, 12, 10, 0.42);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  pointer-events: none;
}

.lv2-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 150;
  display: flex;
  flex-direction: column;
  width: min(100vw, 28rem);
  height: 100%;
  max-height: 100dvh;
  background: var(--ms-drawer-surface, #faf7f2);
  color: #1a1210;
  box-shadow: -24px 0 64px -28px rgba(20, 12, 10, 0.55);
  transform: translateX(104%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  visibility: hidden;
  pointer-events: none;
}

body.lv2-cart-open {
  overflow: hidden;
}

body.lv2-cart-open .lv2-cart-drawer-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.lv2-cart-open .lv2-cart-drawer {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.lv2-cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-shrink: 0;
  padding: 1.25rem 1.25rem 1.1rem;
  border-bottom: 1px solid rgba(100, 2, 0, 0.08);
}

.lv2-cart-drawer__titles {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  min-width: 0;
}

.lv2-cart-drawer__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 750;
  letter-spacing: -0.035em;
  color: #1a1210;
  line-height: 1.15;
}

.lv2-cart-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #f7f4f2;
  color: #5c524e;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.lv2-cart-drawer__close:hover {
  background: #fdf4f4;
  border-color: rgba(100, 2, 0, 0.12);
  color: #640200;
}

.lv2-cart-drawer__body {
  flex: 1;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.35rem 0 0.5rem;
  background:
    linear-gradient(
      180deg,
      var(--ms-drawer-surface, #faf7f2) 0%,
      color-mix(in srgb, var(--ms-drawer-surface, #faf7f2) 92%, var(--ms-card-surface, #fffefb)) 48%,
      var(--ms-drawer-surface, #faf7f2) 100%
    );
}

.lv2-cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: min(22rem, 62%);
  padding: 2.5rem 1.5rem;
}

.lv2-cart-drawer__empty-icon {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1.15rem;
  border-radius: 999px;
  background: linear-gradient(160deg, #fdf4f4 0%, #f8ecec 100%);
  color: #640200;
  box-shadow: inset 0 0 0 1px rgba(100, 2, 0, 0.06);
}

.lv2-cart-drawer__empty-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: #1a1210;
}

.lv2-cart-drawer__empty-text {
  margin: 0.4rem 0 1.35rem;
  max-width: 16rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #6b615c;
}

.lv2-cart-drawer__empty-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  background: #640200;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.lv2-cart-drawer__empty-cta:hover {
  background: #550100;
}

.lv2-cart-drawer__row {
  display: grid;
  grid-template-columns: 4.85rem minmax(0, 1fr);
  gap: 0.95rem;
  margin: 0 1rem;
  padding: 1rem 0.15rem;
  border-bottom: 1px solid rgba(26, 18, 16, 0.07);
  animation: lv2-cart-row-in 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lv2-cart-drawer__row:last-child {
  border-bottom: none;
}

@keyframes lv2-cart-row-in {
  from {
    opacity: 0;
    transform: translateY(0.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lv2-cart-drawer__row {
    animation: none;
  }
}

.lv2-cart-drawer__media {
  display: block;
  overflow: hidden;
  border-radius: 0.55rem;
  background: #f0ebe8;
  aspect-ratio: 12 / 18;
  box-shadow: inset 0 0 0 1px rgba(26, 18, 16, 0.05);
}

.lv2-cart-drawer__media img,
.lv2-cart-drawer__ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.lv2-cart-drawer__media:hover img {
  transform: scale(1.04);
}

.lv2-cart-drawer__info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.lv2-cart-drawer__row-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
}

.lv2-cart-drawer__name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #1a1210;
  text-decoration: none;
  line-height: 1.35;
}

.lv2-cart-drawer__name:hover {
  color: #640200;
}

.lv2-cart-drawer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.4rem 0 0;
}

.lv2-cart-drawer__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.45rem;
  border-radius: 0.3rem;
  background: rgba(26, 18, 16, 0.05);
  color: #5c524e;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.lv2-cart-drawer__unit {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  font-weight: 550;
  color: #7a706a;
}

.lv2-cart-drawer__remove {
  flex-shrink: 0;
  margin: 0;
  padding: 0.15rem 0;
  border: none;
  background: transparent;
  color: #9a8f89;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-color: transparent;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.lv2-cart-drawer__remove:hover {
  color: #640200;
  text-decoration-color: currentColor;
}

.lv2-cart-drawer__row-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.lv2-cart-drawer__qty {
  display: inline-flex;
  align-items: center;
  height: 2.15rem;
  border: 1px solid rgba(26, 18, 16, 0.12);
  border-radius: 0.45rem;
  overflow: hidden;
  background: var(--ms-input-bg, var(--ms-card-surface, #fffefb));
}

.lv2-cart-drawer__qty button {
  width: 2.05rem;
  height: 100%;
  border: none;
  background: transparent;
  color: #1a1210;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  line-height: 1;
  transition: background 0.12s ease, color 0.12s ease;
}

.lv2-cart-drawer__qty button:hover {
  background: #fdf4f4;
  color: #640200;
}

.lv2-cart-drawer__qty span {
  min-width: 1.65rem;
  padding: 0 0.1rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1a1210;
  border-left: 1px solid rgba(26, 18, 16, 0.08);
  border-right: 1px solid rgba(26, 18, 16, 0.08);
  line-height: 2.15rem;
}

.lv2-cart-drawer__price {
  margin: 0;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #1a1210;
  font-variant-numeric: tabular-nums;
}

.lv2-cart-drawer__foot {
  flex-shrink: 0;
  padding: 1.05rem 1.25rem calc(1.15rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(100, 2, 0, 0.08);
  background: color-mix(in srgb, var(--ms-drawer-surface, #faf7f2) 86%, var(--ms-card-surface, #fffefb));
  box-shadow: 0 -12px 28px -18px rgba(20, 12, 10, 0.18);
}

.lv2-cart-drawer__ship {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.95rem;
  padding: 0.55rem 0.7rem;
  border-radius: 0.5rem;
  background: #fdf4f4;
  color: #640200;
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1.3;
}

.lv2-cart-drawer__ship svg {
  flex-shrink: 0;
}

.lv2-cart-drawer__totals {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.lv2-cart-drawer__line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  font-size: 0.8125rem;
  color: #6b615c;
}

.lv2-cart-drawer__line span:last-child {
  font-weight: 300;
  color: #3d342f;
  font-variant-numeric: tabular-nums;
}

.lv2-cart-drawer__line--total {
  padding-top: 0.55rem;
  margin-top: 0.15rem;
  border-top: 1px solid rgba(26, 18, 16, 0.08);
  font-size: 0.95rem;
  font-weight: 400;
  color: #1a1210;
}

.lv2-cart-drawer__line--total strong {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: -0.035em;
  color: #1a1210;
  font-variant-numeric: tabular-nums;
}

.lv2-cart-drawer__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  margin: 0;
  border: none;
  border-radius: 0.65rem;
  background: #640200;
  color: #fff;
  font-family: inherit;
  font-size: 0.925rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.lv2-cart-drawer__checkout:hover:not(:disabled) {
  background: #550100;
}

.lv2-cart-drawer__checkout:active:not(:disabled) {
  transform: scale(0.985);
}

.lv2-cart-drawer__checkout:disabled {
  opacity: 0.72;
  cursor: default;
}

.lv2-cart-drawer__note {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  color: #7a706a;
  line-height: 1.45;
}

.lv2-dealer-lazy-sentinel {
  height: 1px;
  width: 100%;
  pointer-events: none;
  visibility: hidden;
}

.lv2-hero__cta-ops {
  background: var(--ms-input-bg, var(--ms-card-surface, #fffefb));
  color: #640200;
  border: 1.5px solid #640200;
  box-shadow: none;
}

.lv2-hero__cta-ops:hover {
  background: #fdf4f4;
}

.lv2-retail-hero {
  padding: 0.75rem 0 1.25rem;
  background: var(--ms-input-bg, var(--ms-card-surface, #fffefb));
}

.lv2-retail-hero__shell {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.85rem 1rem 0;
}

@media (min-width: 768px) {
  .lv2-retail-hero__shell {
    padding: 1rem 1.5rem 0;
  }
}

.lv2-retail-hero__grid {
  display: block;
  padding: 0.85rem 1rem 1.15rem;
}

@media (min-width: 768px) {
  .lv2-retail-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
    align-items: start;
    padding: 1rem 1.5rem 1.35rem;
  }
}

@media (min-width: 1100px) {
  .lv2-retail-hero__grid {
    gap: 1.75rem 2.75rem;
    padding: 1.15rem 2rem 1.5rem;
  }
}

.lv2-retail-hero__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
  min-width: 0;
}

.lv2-retail-hero__panel--bestsellers {
  display: none;
}

@media (min-width: 768px) {
  .lv2-retail-hero__panel--bestsellers {
    display: flex;
  }
}

.lv2-retail-hero__panel.is-empty,
.lv2-retail-hero__panel[hidden] {
  display: none !important;
}

.lv2-retail-hero__grid.is-single .lv2-retail-hero__panel--bestsellers {
  display: flex;
}

.lv2-retail-hero__grid.is-single {
  display: flex;
  justify-content: center;
}

.lv2-retail-hero__grid.is-single .lv2-retail-hero__panel {
  width: 100%;
  max-width: 36rem;
  margin-inline: auto;
  justify-self: center;
}

@media (min-width: 768px) {
  .lv2-retail-hero__grid.is-single {
    display: grid;
    grid-template-columns: minmax(0, 36rem);
    justify-content: center;
    justify-items: center;
  }
}

.lv2-retail-hero__title {
  margin: 0;
  max-width: 22rem;
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.15;
  color: #000;
  text-transform: uppercase;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .lv2-retail-hero__title {
    max-width: none;
    font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  }
}

.lv2-retail-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-shrink: 0;
  min-height: auto;
  padding: 0.15rem 0;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
  opacity: 1;
}

.lv2-retail-hero__cta--primary {
  background: transparent;
  color: #640200;
  box-shadow: none;
}

.lv2-retail-hero__cta--primary:hover {
  transform: none;
  background: transparent;
  color: #550100;
  box-shadow: none;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.lv2-retail-hero__cta svg {
  transition: transform 0.18s ease;
}

.lv2-retail-hero__cta:hover svg {
  transform: translateX(2px);
}

.lv2-retail-hero__cards {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 100%;
  min-width: 0;
  height: 9.5rem;
  padding: 0 0.5rem;
}

@media (min-width: 768px) {
  .lv2-retail-hero__cards {
    height: 10.5rem;
    padding: 0 0.35rem;
  }
}

@media (min-width: 1100px) {
  .lv2-retail-hero__cards {
    height: 11.5rem;
    padding: 0 0.5rem;
  }
}

.lv2-retail-hero__card {
  flex: 0 0 auto;
  width: 5rem;
  height: 7.5rem;
  margin-left: -1.25rem;
  border-radius: 0.7rem;
  overflow: hidden;
  background: #f8fafc;
  border: 2px solid #fff;
  box-shadow:
    0 14px 28px -12px rgba(15, 23, 42, 0.35),
    0 0 0 1px rgba(15, 23, 42, 0.06);
  transform-origin: center center;
  opacity: 1;
  transition: box-shadow 0.25s ease;
}

.lv2-retail-hero__card:nth-child(1) {
  margin-left: 0;
  z-index: 1;
  transform: rotate(-7deg);
}

.lv2-retail-hero__card:nth-child(2) {
  z-index: 2;
  transform: rotate(-3deg) translateY(-0.2rem);
}

.lv2-retail-hero__card:nth-child(3) {
  z-index: 3;
  transform: rotate(1deg) translateY(-0.35rem);
}

.lv2-retail-hero__card:nth-child(4) {
  z-index: 4;
  transform: rotate(4deg) translateY(-0.15rem);
}

.lv2-retail-hero__card:nth-child(5) {
  z-index: 5;
  transform: rotate(7deg);
}

.lv2-retail-hero__card:hover {
  z-index: 12;
  box-shadow:
    0 22px 40px -14px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.4);
  animation: none;
  opacity: 1;
  transform: rotate(0deg) translateY(-0.35rem) scale(1.05);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}

@media (min-width: 768px) {
  .lv2-retail-hero__card {
    width: 5.35rem;
    height: 8rem;
    margin-left: -1.35rem;
    border-radius: 0.75rem;
  }
}

@media (min-width: 1100px) {
  .lv2-retail-hero__card {
    width: 5.85rem;
    height: 8.75rem;
    margin-left: -1.45rem;
  }
}

.lv2-retail-hero__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes lv2-retail-hero-title-in {
  from {
    opacity: 0;
    transform: translateY(0.55rem);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes lv2-retail-hero-cta-in {
  from {
    opacity: 0;
    transform: translateY(0.45rem) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes lv2-retail-hero-card-1 {
  from {
    opacity: 0;
    transform: translateY(1.1rem) scale(0.88) rotate(-12deg);
  }
  to {
    opacity: 1;
    transform: rotate(-7deg);
  }
}

@keyframes lv2-retail-hero-card-2 {
  from {
    opacity: 0;
    transform: translateY(1.1rem) scale(0.88) rotate(-8deg);
  }
  to {
    opacity: 1;
    transform: rotate(-3deg) translateY(-0.2rem);
  }
}

@keyframes lv2-retail-hero-card-3 {
  from {
    opacity: 0;
    transform: translateY(1.1rem) scale(0.88) rotate(0deg);
  }
  to {
    opacity: 1;
    transform: rotate(1deg) translateY(-0.35rem);
  }
}

@keyframes lv2-retail-hero-card-4 {
  from {
    opacity: 0;
    transform: translateY(1.1rem) scale(0.88) rotate(6deg);
  }
  to {
    opacity: 1;
    transform: rotate(4deg) translateY(-0.15rem);
  }
}

@keyframes lv2-retail-hero-card-5 {
  from {
    opacity: 0;
    transform: translateY(1.1rem) scale(0.88) rotate(12deg);
  }
  to {
    opacity: 1;
    transform: rotate(7deg);
  }
}

@media (max-width: 520px) {
  .lv2-retail-hero__shell {
    padding: 0.65rem 0.75rem 0;
  }

  .lv2-retail-hero__grid {
    padding: 0.65rem 0.5rem 1rem;
  }

  .lv2-retail-hero__panel {
    gap: 0.55rem;
  }

  .lv2-retail-hero__title {
    max-width: 16rem;
    font-size: 1.05rem;
  }

  .lv2-retail-hero__cards {
    height: 7.75rem;
    padding: 0 0.15rem;
  }

  .lv2-retail-hero__card {
    width: 3.55rem;
    height: 5.35rem;
    margin-left: -0.85rem;
    border-radius: 0.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lv2-retail-hero__title,
  .lv2-retail-hero__cta,
  .lv2-retail-hero__card {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .lv2-retail-hero__card:nth-child(1) { transform: rotate(-7deg) !important; }
  .lv2-retail-hero__card:nth-child(2) { transform: rotate(-3deg) translateY(-0.2rem) !important; }
  .lv2-retail-hero__card:nth-child(3) { transform: rotate(1deg) translateY(-0.35rem) !important; }
  .lv2-retail-hero__card:nth-child(4) { transform: rotate(4deg) translateY(-0.15rem) !important; }
  .lv2-retail-hero__card:nth-child(5) { transform: rotate(7deg) !important; }
}

.lv2-dealer-band {
  border-top: 1px solid #e2e8f0;
  background: var(--ms-section-bg, var(--ms-surface, var(--opcent-brand-bg)));
}

.lv2-dealer-band--standalone {
  border-top: none;
  padding-top: calc(var(--lv2-shop-nav-h) + var(--lv2-shop-catnav-h) + var(--lv2-shop-announce-h));
}

.lv2-hero.lv2-hero--dealer {
  padding-top: 2.25rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .lv2-hero.lv2-hero--dealer {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .lv2-hero.lv2-hero--dealer {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }
}

.lv2-shop-featured {
  padding: calc(var(--lv2-shop-nav-h) + var(--lv2-shop-catnav-h) + var(--lv2-shop-announce-h) + 0.85rem) 0 0.35rem;
  background: var(--ms-section-bg, var(--ms-surface, var(--opcent-brand-bg)));
}

.lv2-shop-promos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 0 0 0.85rem;
}

.lv2-shop-promos--single {
  grid-template-columns: 1fr;
}

.lv2-shop-promo {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 8.75rem;
  margin: 0;
  border-radius: 2rem;
  background: #3b0303;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 36px -24px rgba(59, 3, 3, 0.7);
}

.lv2-shop-promo--desktop {
  display: none;
}

@media (min-width: 768px) {
  .lv2-shop-promos {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .lv2-shop-promos--single {
    grid-template-columns: 1fr;
  }

  .lv2-shop-promos--single .lv2-shop-promo {
    min-height: 14rem;
  }

  .lv2-shop-promo {
    min-height: 11rem;
    border-radius: 2rem;
  }

  .lv2-shop-promo--desktop {
    display: block;
  }
}

.lv2-shop-promo__media {
  position: absolute;
  inset: 0;
}

.lv2-shop-promo__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
  transform-origin: center center;
  pointer-events: none;
  -webkit-touch-callout: none;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.lv2-shop-promo__video::-webkit-media-controls,
.lv2-shop-promo__video::-webkit-media-controls-start-playback-button,
.lv2-shop-promo__video::-webkit-media-controls-overlay-play-button,
.lv2-shop-promo__video::-webkit-media-controls-enclosure {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
  pointer-events: none;
}

.lv2-shop-promo:hover .lv2-shop-promo__video {
  transform: scale(1.05);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.lv2-shop-promo__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20, 2, 2, 0.72) 0%, rgba(20, 2, 2, 0.28) 34%, rgba(20, 2, 2, 0.08) 58%, transparent 100%),
    linear-gradient(180deg, rgba(20, 2, 2, 0.12) 0%, transparent 42%, rgba(20, 2, 2, 0.22) 100%);
}

.lv2-shop-promo__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.28rem;
  min-height: 8.75rem;
  padding: 1rem 1.15rem;
  max-width: 18rem;
}

@media (min-width: 768px) {
  .lv2-shop-promo__copy {
    min-height: 11rem;
    padding: 1.35rem 1.75rem;
    max-width: 24rem;
    gap: 0.4rem;
  }
}

.lv2-shop-promo__kicker {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.lv2-shop-promo__title {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: clamp(1.65rem, 3.4vw, 2.45rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.03em;
  line-height: 1.12;
  color: #fff;
}

.lv2-shop-promo__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.42rem;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.58);
}

.lv2-shop-promo__cta svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.5;
  opacity: 0.7;
  transition: transform 0.18s ease;
}

.lv2-shop-promo:hover .lv2-shop-promo__cta svg {
  transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
  .lv2-shop-promo__video,
  .lv2-shop-promo__cta svg {
    transition: none;
    transform: none !important;
  }
}

.lv2-shop-featured [data-shop-featured] {
  min-height: 18rem;
}

.lv2-shop-featured [data-shop-featured][hidden] {
  display: none;
  min-height: 0;
}

.lv2-shop-featured [data-shop-featured].is-pending {
  opacity: 1;
}

.lv2-shop-featured [data-shop-featured].is-loading,
.lv2-shop-featured [data-shop-featured].is-ready {
  opacity: 1;
  transition: none;
}

.lv2-shop-rails {
  padding: 1.25rem 0 2.75rem;
  background: var(--ms-section-bg, var(--ms-surface, var(--opcent-brand-bg)));
  border-bottom: 1px solid #e2e8f0;
}

.lv2-shop-rails [data-shop-rails] {
  min-height: 36rem;
}

.lv2-shop-rails [data-shop-rails].is-pending {
  opacity: 1;
}

.lv2-shop-rails [data-shop-rails].is-loading,
.lv2-shop-rails [data-shop-rails].is-ready {
  opacity: 1;
  transition: none;
}

.lv2-shop-rails__skeleton {
  margin: 0 0 1.75rem;
}

.lv2-shop-rails__skel-head {
  width: 8.5rem;
  height: 1rem;
  margin-bottom: 0.85rem;
  border-radius: 0.25rem;
  background: linear-gradient(110deg, #f3efec 25%, #faf7f5 40%, #f3efec 55%);
  background-size: 200% 100%;
  animation: lv2-skel-shimmer 1.15s ease-in-out infinite;
}

.lv2-shop-rails__skel-track {
  display: flex;
  gap: 0.55rem;
  overflow: hidden;
}

.lv2-shop-rails__skel-card {
  flex: 0 0 calc((100% - 0.55rem - 1.35rem) / 2);
  border: 1px solid #eef2f6;
  border-radius: 0.4rem;
  overflow: hidden;
  background: var(--ms-card-surface, #fffefb);
}

@media (min-width: 768px) {
  .lv2-shop-rails__skel-track {
    gap: 0.85rem;
  }

  .lv2-shop-rails__skel-card {
    flex-basis: calc((100% - 3.4rem) / 5);
    border-radius: 0.45rem;
  }
}

.lv2-shop-rails__skel-media {
  aspect-ratio: 12 / 18;
  background: linear-gradient(110deg, #f3efec 25%, #faf7f5 40%, #f3efec 55%);
  background-size: 200% 100%;
  animation: lv2-skel-shimmer 1.15s ease-in-out infinite;
}

.lv2-shop-rails__skel-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 2.45rem;
  background: var(--ms-card-surface, #fffefb);
}

.lv2-shop-rails__skel-price,
.lv2-shop-rails__skel-cart {
  display: block;
  height: 100%;
  background: linear-gradient(110deg, #f7f2f0 25%, #fdfafa 40%, #f7f2f0 55%);
  background-size: 200% 100%;
  animation: lv2-skel-shimmer 1.15s ease-in-out infinite;
}

.lv2-shop-rails__skel-cart {
  border-left: 1px solid #eef2f6;
  animation-delay: 0.08s;
}

@keyframes lv2-skel-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lv2-shop-rails [data-shop-rails].is-loading,
  .lv2-shop-rails [data-shop-rails].is-ready {
    transition: none;
  }

  .lv2-shop-rails__skel-media,
  .lv2-shop-rails__skel-bar,
  .lv2-shop-rails__skel-price,
  .lv2-shop-rails__skel-cart,
  .lv2-shop-rails__skel-head {
    animation: none;
  }
}

.lv2-retail-hero.is-loading {
  opacity: 0.55;
}

.lv2-retail-hero.is-ready {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.lv2-shop-rails__empty {
  margin: 0;
  padding: 2rem 0.5rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b615c;
}

.lv2-shop-rails__gender {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  margin: 0 0 0.75rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.lv2-shop-rails__gender-opt {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0.15rem 0;
  border-radius: 0;
  color: #9a908a;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.15s ease;
}

.lv2-shop-rails__gender-opt + .lv2-shop-rails__gender-opt::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 0.7rem;
  margin: 0 0.7rem;
  background: rgba(26, 18, 16, 0.14);
  vertical-align: middle;
}

.lv2-shop-rails__gender-opt.is-active {
  background: transparent;
  color: #640200;
  box-shadow: inset 0 -1px 0 #640200;
}

.lv2-shop-rails__gender-opt:not(.is-active):hover {
  color: #5c524e;
}

.lv2-shop-rails__gender-opt.is-disabled,
.lv2-shop-rails__gender-opt.is-disabled:hover {
  color: #d2cac5;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}

@media (min-width: 768px) {
  .lv2-shop-rails__gender {
    display: none;
  }
}

.lv2-shop-rail + .lv2-shop-rail {
  margin-top: 1.75rem;
}

.lv2-shop-rail__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.lv2-shop-rail__head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #000;
}

.lv2-shop-rail__more {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #640200;
  text-decoration: none;
  white-space: nowrap;
}

.lv2-shop-rail__more:hover {
  text-decoration: underline;
}

.lv2-shop-rail__viewport {
  position: relative;
}

.lv2-shop-rail__viewport::before,
.lv2-shop-rail__viewport::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0.15rem;
  width: 1.75rem;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.lv2-shop-rail__viewport::before {
  left: 0;
  background: linear-gradient(90deg, #fff 8%, rgba(255, 255, 255, 0));
}

.lv2-shop-rail__viewport::after {
  right: 0;
  background: linear-gradient(270deg, #fff 12%, rgba(255, 255, 255, 0));
}

@media (max-width: 767.98px) {
  .lv2-shop-rail__viewport.is-scrollable:not(.is-at-start)::before,
  .lv2-shop-rail__viewport.is-scrollable:not(.is-at-end)::after {
    opacity: 1;
  }

  .lv2-shop-rail__viewport.is-scrollable:not(.is-at-end)::after {
    width: 2.1rem;
  }
}

.lv2-shop-rail__track {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.15rem;
  overscroll-behavior-x: contain;
}

.lv2-shop-rail__track::-webkit-scrollbar {
  display: none;
}

.lv2-shop-rail__card {
  position: relative;
  /* 2 kart + sağda sonraki kartın peeki — kaydırılabilirlik belli olsun */
  flex: 0 0 calc((100% - 0.55rem - 1.35rem) / 2);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--ms-card-surface, #fffefb);
  border: 1px solid #e2e8f0;
  border-radius: 2rem;
  overflow: hidden;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.lv2-shop-rail__fav {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  left: auto;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #640200;
  cursor: pointer;
  box-shadow: 0 4px 12px -6px rgba(15, 23, 42, 0.35);
}

.lv2-shop-rail__fav:hover {
  background: var(--ms-input-bg, var(--ms-card-surface, #fffefb));
  color: #550100;
}

.lv2-shop-rail__fav.is-active {
  background: #640200;
  color: #fff;
}

.lv2-shop-rail__fav.is-active svg {
  fill: currentColor;
}

@media (min-width: 768px) {
  .lv2-shop-rail__track {
    gap: 0.85rem;
  }

  .lv2-shop-rail__card {
    flex-basis: calc((100% - 3.4rem) / 5);
    border-radius: 2rem;
  }
}

.lv2-shop-rail__card:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 28px -14px rgba(15, 23, 42, 0.25);
}

.lv2-shop-rail__media-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.lv2-shop-rail__media {
  aspect-ratio: 12 / 18;
  background: #f1f5f9;
  overflow: hidden;
}

.lv2-shop-rail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lv2-shop-rail__size {
  display: none !important;
  margin: 0;
  min-width: 0;
  max-width: calc(100% - 1rem);
  height: 1.85rem;
  border-radius: 0.45rem;
  background: #640200;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 22px -12px rgba(100, 2, 0, 0.55);
  overflow: hidden;
  line-height: 0;
  transition: background 0.15s ease;
}

.lv2-shop-rail__size:hover {
  background: #550100;
}

.lv2-shop-rail__size select {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-width: 3.1rem;
  max-width: 5.25rem;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0 1.35rem 0 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.85rem;
  color: #fff;
  font-family: inherit;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.17l3.71-3.94a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.4rem center;
  background-size: 0.7rem;
}

.lv2-shop-rail__size select::-ms-expand {
  display: none;
}

.lv2-shop-rail__size select:focus {
  outline: none;
}

.lv2-shop-rail__size:focus-within {
  box-shadow:
    0 10px 22px -12px rgba(100, 2, 0, 0.55),
    0 0 0 2px rgba(255, 255, 255, 0.35);
}

.lv2-shop-rail__size select option {
  color: #0f172a;
  background: var(--ms-input-bg, var(--ms-card-surface, #fffefb));
}

.lv2-shop-rail__size .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;
}

.lv2-shop-rail__bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 2.45rem;
  border-top: 1px solid #e2e8f0;
  background: var(--ms-price-bg, #faf2e6);
  overflow: hidden;
}

.lv2-shop-rail__price {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0.4rem 0.45rem;
  background: var(--ms-price-bg, #faf2e6);
  color: var(--ms-price-text, #910000);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lv2-shop-rail__price span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.lv2-shop-rail__cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  height: 100%;
  min-height: 2.45rem;
  margin: 0;
  padding: 0.4rem 0.35rem;
  border: none;
  border-left: 1px solid color-mix(in srgb, var(--ms-button-text, #910000) 22%, transparent);
  border-radius: 0;
  background: var(--ms-button-bg, #faf2e6);
  color: var(--ms-button-text, #910000);
  cursor: pointer;
  box-shadow: none;
  font-family: var(--ms-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, filter 0.15s ease;
}

.lv2-shop-rail__cart svg {
  flex-shrink: 0;
}

.lv2-shop-rail__cart:hover {
  background: var(--ms-button-bg, #faf2e6);
  color: var(--ms-button-text, #910000);
  filter: brightness(0.96);
  transform: none;
}

.lv2-shop-rail__cart.is-added {
  background: #ecfdf5;
  color: #0f766e;
  filter: none;
}

.lv2-shop-rail__cart.is-sold-out,
.lv2-shop-rail__cart:disabled {
  background: var(--ms-button-bg, #faf2e6);
  color: var(--ms-button-text, #910000);
  cursor: not-allowed;
  opacity: 1;
  font-weight: 600;
  letter-spacing: 0.04em;
  filter: none;
}

.lv2-shop-rail__cart.is-sold-out:hover,
.lv2-shop-rail__cart:disabled:hover {
  background: var(--ms-button-bg, #faf2e6);
  color: var(--ms-button-text, #910000);
  filter: none;
}

.lv2-shop-rail__card.is-sold-out .lv2-shop-rail__media {
  opacity: 0.72;
}

@media (max-width: 767px) {
  .lv2-shop-rail__price {
    font-size: 0.8rem;
    padding: 0.35rem 0.3rem;
  }

  .lv2-shop-rail__cart {
    font-size: 0.625rem;
    gap: 0.25rem;
    padding: 0.35rem 0.25rem;
  }

  .lv2-shop-rail__cart svg {
    width: 13px;
    height: 13px;
  }
}

.lv2-shop-rail__nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  box-shadow: 0 10px 24px -12px rgba(15, 23, 42, 0.35);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, color 0.15s ease, border-color 0.15s ease;
}

.lv2-shop-rail__nav--prev {
  left: 0.35rem;
}

.lv2-shop-rail__nav--next {
  right: 0.35rem;
}

.lv2-shop-rail__nav:hover {
  color: #640200;
  border-color: #cbd5e1;
}

.lv2-shop-rail__nav[hidden],
.lv2-shop-rail__nav:disabled {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (min-width: 768px) {
  .lv2-shop-rail__nav:not([hidden]):not(:disabled) {
    display: inline-flex;
  }

  .lv2-shop-rail__viewport:hover .lv2-shop-rail__nav:not([hidden]):not(:disabled),
  .lv2-shop-rail__nav:not([hidden]):not(:disabled):focus-visible {
    opacity: 1;
    pointer-events: auto;
  }
}

.lv2-shop-page {
  padding: calc(var(--lv2-shop-nav-h) + var(--lv2-shop-catnav-h) + var(--lv2-shop-announce-h) + 1.25rem) 0 3rem;
  min-height: 70vh;
}

.lv2-shop-page--auth {
  --lv2-shop-auth-chrome: calc(
    var(--lv2-shop-nav-h) + var(--lv2-shop-catnav-h) + var(--lv2-shop-announce-h)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 100svh;
  padding: var(--lv2-shop-auth-chrome) 1rem 1.25rem;
  background: var(--ms-section-bg, var(--ms-surface, var(--opcent-brand-bg, #faf2e6)));
}

.lv2-shop-auth {
  width: 100%;
  max-width: 21.5rem;
  margin: 0;
  padding: 0;
}

.lv2-shop-auth__card {
  position: relative;
  padding: 1.15rem 1.1rem 1.05rem;
  border: 1px solid var(--ms-border-tone, color-mix(in srgb, var(--ms-primary, #910000) 8%, #ebe6e1));
  border-radius: 0.7rem;
  background: var(--ms-card-surface, #fffefb);
  box-shadow:
    0 1px 0 color-mix(in srgb, var(--ms-card-surface, #fffefb) 88%, #fff) inset,
    0 10px 24px -18px color-mix(in srgb, var(--ms-button-text, #910000) 28%, transparent);
}

.lv2-shop-auth__card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  border-radius: 0.7rem 0.7rem 0 0;
  background: linear-gradient(
    90deg,
    var(--ms-primary-dark, #640200) 0%,
    var(--ms-button-text, var(--ms-primary, #910000)) 100%
  );
}

.lv2-shop-page--auth .lv2-shop-auth__title {
  margin: 0 0 0.2rem;
  font-size: 1.2rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ms-heading, var(--ms-text, #1a1210));
  text-align: center;
}

.lv2-shop-auth__lead {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: var(--ms-subheading, #6b615c);
  text-align: center;
}

.lv2-shop-auth__form {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lv2-shop-auth__label {
  font-size: 0.75rem;
  font-weight: 650;
  color: var(--ms-text, #3b2f2c);
}

.lv2-shop-auth__input {
  width: 100%;
  min-height: 2.6rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--ms-border-tone, #e2d8d2);
  border-radius: 0.5rem;
  background: var(--ms-input-bg, color-mix(in srgb, var(--ms-surface, #faf2e6) 78%, #f3efea));
  font-family: var(--ms-font, Inter, sans-serif);
  font-size: 0.9375rem;
  color: var(--ms-text, #1a1210);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.lv2-shop-auth__input:focus,
.lv2-shop-auth__input:focus-visible {
  border-color: var(--ms-button-text, var(--ms-primary, #640200));
  background: var(--ms-card-surface, #fffefb);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ms-button-text, var(--ms-primary, #640200)) 14%, transparent);
}

.lv2-shop-auth__error {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  color: #b91c1c;
}

.lv2-shop-auth__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.6rem;
  margin-top: 0.2rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid color-mix(in srgb, var(--ms-button-text, #910000) 18%, transparent);
  border-radius: 0.5rem;
  background: var(--ms-button-bg, #faf2e6);
  color: var(--ms-button-text, #910000);
  font-family: var(--ms-font, Inter, sans-serif);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, filter 0.15s ease;
}

.lv2-shop-auth__submit:hover {
  background: var(--ms-button-bg, #faf2e6);
  color: var(--ms-button-text, #910000);
  filter: brightness(0.96);
}

.lv2-shop-auth__submit:focus-visible,
.lv2-shop-auth__ghost:focus-visible {
  outline: 2px solid var(--ms-button-text, var(--ms-primary, #640200));
  outline-offset: 2px;
}

.lv2-shop-auth__hint {
  margin: 0.65rem 0 0;
  font-size: 0.6875rem;
  line-height: 1.35;
  color: var(--ms-subheading, #8a7e78);
  text-align: center;
}

.lv2-shop-auth__email {
  margin: 0 0 0.8rem;
  font-size: 0.875rem;
  font-weight: 650;
  color: var(--ms-button-text, var(--ms-primary, #640200));
  text-align: center;
  word-break: break-all;
}

.lv2-shop-auth__actions {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.lv2-shop-auth__ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.4rem;
  border: 1px solid var(--ms-border-tone, #e2d8d2);
  border-radius: 0.5rem;
  background: var(--ms-input-bg, var(--ms-card-surface, #fffefb));
  color: var(--ms-subheading, #5c524e);
  font-family: var(--ms-font, Inter, sans-serif);
  font-size: 0.8125rem;
  font-weight: 650;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.lv2-shop-auth__ghost:hover {
  border-color: color-mix(in srgb, var(--ms-button-text, #910000) 28%, var(--ms-border-tone, #e2d8d2));
  color: var(--ms-button-text, var(--ms-primary, #640200));
  background: color-mix(in srgb, var(--ms-card-surface, #fffefb) 78%, var(--ms-surface, #faf2e6));
}

.lv2-shop-icon-link--login.is-logged-in {
  color: var(--ms-button-text, var(--ms-primary, #640200));
}

.lv2-shop-page h1 {
  margin: 0 0 0.35rem;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.lv2-shop-page__lead {
  margin: 0 0 1.75rem;
  color: #64748b;
  font-size: 0.9375rem;
}

.lv2-cart-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lv2-cart-row {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.9rem;
  background: var(--ms-input-bg, var(--ms-card-surface, #fffefb));
}

.lv2-cart-row img,
.lv2-cart-row__ph {
  width: 4.5rem;
  height: 6.75rem;
  object-fit: cover;
  border-radius: 0.5rem;
  background: #f1f5f9;
}

.lv2-cart-row__ph {
  display: block;
}

.lv2-cart-row strong {
  display: block;
  font-size: 0.9rem;
}

.lv2-cart-row__meta {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.2rem;
}

.lv2-cart-qty {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.lv2-cart-qty button {
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.4rem;
  background: var(--ms-input-bg, var(--ms-card-surface, #fffefb));
  cursor: pointer;
  font-weight: 700;
}

.lv2-cart-empty {
  padding: 2.5rem 1rem;
  text-align: center;
  color: #64748b;
}

.lv2-cart-checkout {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 0.9rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 0.875rem;
  color: #475569;
}

.lv2-add-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: 0.75rem;
  background: #0f172a;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.lv2-add-cart:hover {
  background: #1e293b;
}

.lv2-add-cart.is-added {
  background: #640200;
}

.lv2-footer-dealer {
  display: block;
  margin: 0;
  padding: 0.9rem 1.25rem;
  background: #640200;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: clamp(0.95rem, 2.1vw, 1.28rem);
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  line-height: 1.2;
}

.lv2-footer-dealer:hover,
.lv2-footer-dealer:focus-visible {
  background: #3b0303;
  color: #fff;
}

/* Satıcı paketi: SATICI GİRİŞİ şeridi üstte (navbar announce slot) */
body:has(.lv2-footer-dealer--top) {
  --lv2-shop-announce-h: 3.05rem;
}

.lv2-footer-dealer--top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
}

.lv2-size-picker {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.lv2-size-picker[hidden] {
  display: none !important;
}

.lv2-size-picker__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 8, 8, 0.45);
}

.lv2-size-picker__sheet {
  position: relative;
  z-index: 1;
  width: min(28rem, 100%);
  padding: 1.25rem 1.15rem 1.35rem;
  border-radius: 1.1rem 1.1rem 0 0;
  background: var(--ms-input-bg, var(--ms-card-surface, #fffefb));
  box-shadow: 0 -12px 40px rgba(20, 8, 8, 0.18);
}

@media (min-width: 640px) {
  .lv2-size-picker {
    align-items: center;
  }

  .lv2-size-picker__sheet {
    border-radius: 1.1rem;
    box-shadow: 0 18px 50px rgba(20, 8, 8, 0.22);
  }
}

.lv2-size-picker__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: #f4efe8;
  color: #3b0303;
  cursor: pointer;
}

.lv2-size-picker__product {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-right: 2rem;
  margin-bottom: 1rem;
}

.lv2-size-picker__product img {
  width: 4.25rem;
  height: 5.25rem;
  object-fit: cover;
  border-radius: 0.55rem;
  background: #f4efe8;
}

.lv2-size-picker__title {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1210;
}

.lv2-size-picker__price {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 650;
  color: #640200;
}

.lv2-size-picker__label {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a716c;
}

.lv2-size-picker__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.lv2-size-picker__chip {
  min-width: 2.6rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid #e4dcd4;
  border-radius: 0.45rem;
  background: var(--ms-input-bg, var(--ms-card-surface, #fffefb));
  color: #1a1210;
  font-size: 0.8125rem;
  font-weight: 650;
  cursor: pointer;
}

.lv2-size-picker__chip.is-active {
  border-color: #640200;
  background: #640200;
  color: #fff;
}

.lv2-size-picker__add {
  width: 100%;
  min-height: 2.75rem;
  border: 0;
  border-radius: 0.65rem;
  background: #640200;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
}

.lv2-size-picker__add:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

body.lv2-size-picker-open {
  overflow: hidden;
}

/* Tema editörü — statik kabuk (?editor=1&shell=static) bölüm seçimi */
.ms-store-editor-mode .ms-editor-section {
  cursor: pointer;
  outline: 2px solid transparent;
  outline-offset: -2px;
  transition: outline-color 0.15s ease, box-shadow 0.15s ease;
}

.ms-store-editor-mode .ms-editor-section:hover {
  outline-color: rgba(145, 0, 0, 0.55);
  box-shadow: inset 0 0 0 9999px rgba(145, 0, 0, 0.06);
}

.ms-store-editor-mode .ms-editor-section--selected {
  outline-color: #910000;
  box-shadow: inset 0 0 0 9999px rgba(145, 0, 0, 0.1);
}

.ms-store-editor-mode .ms-editor-block {
  cursor: pointer;
  border-radius: 4px;
  outline: 2px solid transparent;
  outline-offset: 4px;
  transition: outline-color 0.15s ease, box-shadow 0.15s ease;
}

.ms-store-editor-mode .ms-editor-block:hover {
  outline-color: rgba(145, 0, 0, 0.75);
  box-shadow: 0 0 0 4px rgba(145, 0, 0, 0.12);
}

.ms-store-editor-mode .ms-editor-block--selected {
  outline-color: #910000;
  box-shadow: 0 0 0 6px rgba(145, 0, 0, 0.18);
}
