/**
 * Homepage — storefront chrome, hero skeleton, editorial sections.
 */

.pc-site__main.pc-home{
  padding-top: 0;
  padding-bottom: 0;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}

/* -------------------------------------------------------------------------- */
/* Storefront header: ana sayfa + mağaza / kategori / ürün (mor promosuz)      */
/* -------------------------------------------------------------------------- */

.pc-has-storefront-header .pc-site__header{
  background: #fff;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.pc-has-storefront-header .pc-header-sticky{
  box-shadow: none;
}

/* Üst video hero + alt kategori vitrinleri: aynı şerit yüksekliği (tek kaynak) */
body.pc-is-storefront-home{
  --pc-shared-hero-h: min(94vh, 1080px);
  --pc-storefront-header-h: clamp(76px, 7.8vw, 84px);
  --pc-storefront-hero-h: clamp(560px, 86vh, 820px);
  /* Alt kategori şeritleri: orijinalden biraz yükseltilmiş; ×1.5 fazla kırpıyordu → ×1.3 */
  --pc-category-strip-h-featured: calc(1.3 * clamp(560px, 78vh, 760px));
  --pc-category-strip-h: calc(1.3 * clamp(460px, 64vh, 620px));
}

/*
 * Tam genişlik: .pc-container varsayılan max-width (1120px) header'ı ortaya sıkıştırıyordu.
 * Storefront ana sayfada kenar boşluğu sadece padding ile (içerik viewport kenarlarına yakın).
 */
.pc-has-storefront-header .pc-header--storefront-home.pc-container{
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
  padding-left: max(16px, env(safe-area-inset-left, 0px));
  padding-right: max(16px, env(safe-area-inset-right, 0px));
}

.pc-header--storefront-home{
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) minmax(0, auto);
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  min-height: var(--pc-storefront-header-h, 76px);
  padding: 14px 0;
}

.pc-header__brand--storefront{
  display: flex;
  align-items: center;
  gap: var(--pc-s-2);
  min-width: 0;
}

.pc-nav-toggle{
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: var(--pc-radius-sm);
  flex-shrink: 0;
}
.pc-nav-toggle:focus-visible{
  outline: none;
  box-shadow: var(--pc-focus-ring);
}
.pc-nav-toggle__bar{
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pc-fg);
  border-radius: 1px;
}

.pc-storefront-wordmark{
  font-weight: var(--pc-font-weight-heavy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  white-space: nowrap;
}
.pc-storefront-wordmark:hover{
  opacity: 0.85;
}

.pc-storefront-logo{
  line-height: 0;
  max-width: min(200px, 42vw);
}
.pc-storefront-logo .custom-logo-link{
  display: inline-block;
}
.pc-storefront-logo img{
  max-height: 40px;
  width: auto;
  height: auto;
}

.pc-header__spacer{
  min-width: 0;
}

.pc-header__tools{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(6px, 1.2vw, 14px);
  min-width: 0;
  margin-left: auto;
  width: auto;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pc-header__tools::-webkit-scrollbar{
  display: none;
}

/* Arama solda kompakt; sağda Giriş / Favoriler / Sepet tek satır */
.pc-search--storefront{
  flex: 0 1 260px;
  max-width: min(280px, 52vw);
  min-width: min(120px, 28vw);
}

.pc-header__actions{
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(2px, 0.8vw, 8px);
  flex-shrink: 0;
}

.pc-header__tool{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  text-decoration: none;
  font-size: clamp(11px, 1.05vw, 14px);
  font-weight: var(--pc-font-weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 8px;
  border-radius: var(--pc-radius-pill);
}
.pc-header__tool:hover{
  background: rgba(17, 17, 17, 0.05);
}

/*
 * Mobilde / dar tablet: tek satırda arama + uzun metinli linkler taşıyordu (Favoriler sonrası kesiliyordu).
 * Logo satırı ayrı; bağlantılar tam genişlik 3 sütun ızgara; arama alt satırda %100 genişlik.
 */
@media (max-width: 900px){
  .pc-header--storefront-home{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    min-height: 0;
  }
  .pc-header__spacer{
    display: none !important;
  }
  .pc-header__brand--storefront{
    width: 100%;
    max-width: 100%;
  }
  .pc-header__tools{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    overflow-x: visible;
    overflow-y: visible;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  /* DOM: önce arama kutusu, sonra nav — görselde önce hesap satırı */
  .pc-header__actions{
    order: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 6px;
    width: 100%;
  }
  .pc-search--storefront{
    order: 2;
    flex: 0 0 auto;
    max-width: none;
    width: 100%;
    min-width: 0;
  }
  .pc-header__actions .pc-header__tool{
    white-space: normal;
    text-align: center;
    line-height: 1.2;
    justify-content: center;
    padding: 8px 4px;
    min-height: 44px;
    overflow-wrap: anywhere;
    letter-spacing: 0.04em;
    font-size: clamp(10px, 2.6vw, 12px);
  }
}

/* -------------------------------------------------------------------------- */
/* Category drawer                                                            */
/* -------------------------------------------------------------------------- */

/*
 * Must win over .pc-storefront-drawer { display: flex } — otherwise [hidden] is ignored
 * and the panel stays visible / cannot be dismissed.
 */
.pc-storefront-drawer-overlay[hidden],
.pc-storefront-drawer[hidden]{
  display: none !important;
  pointer-events: none !important;
}

.pc-storefront-drawer-overlay{
  position: fixed;
  inset: 0;
  z-index: 100010;
  background: rgba(17, 17, 17, 0.35);
  border: 0;
  padding: 0;
  cursor: pointer;
}

.pc-storefront-drawer{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100020;
  width: min(100%, 360px);
  max-width: 100%;
  height: 100%;
  height: 100dvh;
  margin: 0;
  padding: 0;
  background: #fff;
  box-shadow: 12px 0 48px rgba(17, 17, 17, 0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pc-storefront-drawer__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--pc-s-3);
  padding: var(--pc-s-4) var(--pc-s-5);
  border-bottom: 1px solid var(--pc-border);
  flex-shrink: 0;
}

.pc-storefront-drawer__title{
  font-size: var(--pc-text-xs);
  font-weight: var(--pc-font-weight-heavy);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pc-storefront-drawer__close{
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: var(--pc-radius-sm);
  color: var(--pc-fg);
}
.pc-storefront-drawer__close:focus-visible{
  outline: none;
  box-shadow: var(--pc-focus-ring);
}

.pc-storefront-drawer__body{
  flex: 1;
  overflow-y: auto;
  padding: var(--pc-s-4) var(--pc-s-5) var(--pc-s-8);
  -webkit-overflow-scrolling: touch;
}

.pc-storefront-cats{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--pc-s-1);
}

.pc-storefront-cats__link{
  display: block;
  padding: 12px 4px;
  text-decoration: none;
  font-weight: var(--pc-font-weight-semibold);
  font-size: var(--pc-text-md);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}
.pc-storefront-cats__link:hover{
  color: var(--pc-muted);
}

.pc-storefront-cats__sub{
  list-style: none;
  margin: 0 0 var(--pc-s-3);
  padding: 4px 0 0 12px;
  display: grid;
  gap: 2px;
}

.pc-storefront-cats__sublink{
  display: block;
  padding: 8px 4px;
  text-decoration: none;
  font-size: var(--pc-text-sm);
  color: var(--pc-text-secondary);
}
.pc-storefront-cats__sublink:hover{
  color: var(--pc-fg);
}

body.pc-storefront-drawer-open{
  overflow: hidden;
}

/* -------------------------------------------------------------------------- */
/* Storefront hero skeleton                                                   */
/* -------------------------------------------------------------------------- */

.pc-is-storefront-home .pc-storefront-hero{
  /* Stradivarius benzeri: hero headerın hemen altına flush otursun. */
  margin-top: 0;
}

.pc-storefront-hero .pc-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;
}

.pc-storefront-hero{
  --pc-hero-safe-pad: clamp(18px, 2.8vw, 28px);
  --pc-hero-h: var(--pc-storefront-hero-h, min(68vh, 760px));
  --pc-hero-h-set1: var(--pc-hero-h);
  --pc-hero-h-set2: var(--pc-hero-h);
  --pc-hero-h-set3: var(--pc-hero-h);
  --pc-hero-h-master: var(--pc-hero-h);
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.pc-storefront-hero__sr-title{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pc-storefront-hero__master{
  position: relative;
  width: 100%;
  max-width: 100%;
}

/* Slayt göstergesi + ok / oynat-durdur: hero görsel alanının içinde, sağ tarafta */
.pc-storefront-hero__chrome{
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(12px, 1.8vw, 22px);
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(8px, 1.2vw, 12px);
  padding: 0 clamp(12px, 2vw, 20px);
  pointer-events: none;
}
.pc-storefront-hero__chrome .pc-storefront-hero__dots,
.pc-storefront-hero__chrome .pc-storefront-hero__toolbar{
  pointer-events: auto;
}
.pc-storefront-hero__dots{
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: clamp(2px, 0.5vw, 6px);
}
.pc-hero-dot{
  display: block;
  width: clamp(22px, 3vw, 36px);
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}
.pc-hero-dot.is-active{
  background: rgba(255, 255, 255, 0.95);
  transform: scaleY(1.35);
}
.pc-storefront-hero__toolbar{
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 20px rgba(17, 17, 17, 0.14);
  border: 1px solid rgba(17, 17, 17, 0.06);
}
.pc-hero-ctrl{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  min-height: 2.25rem;
  margin: 0;
  padding: 0 6px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #111;
  font-size: 1.35rem;
  font-weight: var(--pc-font-weight-heavy);
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.pc-hero-ctrl:hover{
  background: rgba(17, 17, 17, 0.06);
}
.pc-hero-ctrl:focus-visible{
  outline: 2px solid #111;
  outline-offset: 2px;
}
.pc-hero-ctrl:disabled{
  opacity: 0.45;
  cursor: not-allowed;
}
.pc-hero-ctrl--toggle{
  min-width: 2.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.02em;
}
.pc-hero-ctrl--toggle .pc-hero-ctrl__pause,
.pc-hero-ctrl--toggle .pc-hero-ctrl__play{
  display: inline-block;
}
.pc-hero-ctrl--toggle[data-pc-autoplay="1"] .pc-hero-ctrl__play{
  display: none;
}
.pc-hero-ctrl--toggle[data-pc-autoplay="0"] .pc-hero-ctrl__pause{
  display: none;
}
.pc-hero-ctrl--toggle[data-pc-autoplay="0"] .pc-hero-ctrl__play{
  font-size: 0.75rem;
  padding-left: 2px;
}

/* Dönen hero: tek görünür set — yükseklik üst üç set ile uyumlu */
.pc-storefront-hero[data-pc-hero-rotate="1"] .pc-storefront-hero__master{
  min-height: var(--pc-hero-h-master);
}

.pc-storefront-hero__set[hidden]{
  display: none !important;
}

.pc-hero-set1{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  min-height: var(--pc-hero-h-set1);
  max-height: var(--pc-hero-h-set1);
}

.pc-hero-set1__panel{
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  max-height: var(--pc-hero-h-set1);
  overflow: hidden;
  background: #f4f2f0;
}

.pc-hero-set1__media{
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
}

.pc-hero-set1__link{
  position: absolute;
  inset: 0;
  z-index: 4;
}
.pc-hero-set1__link:focus-visible{
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: -2px;
}

.pc-hero-set1__media .pc-hero-set__img,
.pc-hero-set3__media .pc-hero-set__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pc-hero-slot__fill{
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: var(--pc-hero-h-set1);
  background:
    linear-gradient(135deg, rgba(245, 243, 241, 0.96) 0%, rgba(232, 228, 224, 0.98) 48%, rgba(220, 214, 208, 0.92) 100%);
}
.pc-hero-slot__fill::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 380px at 22% 28%, rgba(108, 43, 217, 0.06), transparent 58%),
    radial-gradient(480px 320px at 78% 72%, rgba(17, 17, 17, 0.04), transparent 55%);
  pointer-events: none;
}

.pc-hero-set1__safe{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 8px;
  align-content: end;
  min-height: 5.5rem;
  padding: var(--pc-hero-safe-pad);
  padding-bottom: clamp(20px, 3vw, 34px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.45) 100%);
}
.pc-hero-safe__title,
.pc-hero-safe__sub,
.pc-hero-safe__cta{
  display: block;
  min-height: 0.85rem;
  max-width: 14rem;
  border-radius: 2px;
  opacity: 0;
}

.pc-hero-set2{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  min-height: var(--pc-hero-h-set2);
  max-height: var(--pc-hero-h-set2);
}

.pc-hero-set2__slot{
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  max-height: var(--pc-hero-h-set2);
  overflow: hidden;
  background: #f0eeeb;
}

.pc-hero-set2__media{
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  background: #0a0a0a;
}
.pc-hero-set2__link{
  position: absolute;
  inset: 0;
  z-index: 4;
}
.pc-hero-set2__link:focus-visible{
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: -2px;
}

.pc-hero-set2__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.pc-hero-set2__season{
  position: absolute;
  left: clamp(14px, 2.4vw, 28px);
  bottom: clamp(14px, 2.4vw, 28px);
  z-index: 3;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(13px, 1.35vw, 18px);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.42);
  pointer-events: none;
  line-height: 1.15;
}

.pc-hero-slot__fill--video{
  min-height: var(--pc-hero-h-set2);
  background:
    linear-gradient(160deg, #ebe8e4 0%, #e0dbd6 50%, #d5cec8 100%);
}

.pc-hero-set2__safe{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: var(--pc-hero-safe-pad);
  padding-bottom: clamp(48px, 6vw, 72px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.38) 100%);
}

.pc-hero-set2__label{
  position: absolute;
  left: var(--pc-hero-safe-pad);
  bottom: clamp(14px, 2vw, 22px);
  z-index: 3;
  font-size: 10px;
  font-weight: var(--pc-font-weight-heavy);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  pointer-events: none;
}

.pc-hero-set3{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  min-height: var(--pc-hero-h-set3);
  max-height: var(--pc-hero-h-set3);
  background: #f3f1ef;
}

.pc-hero-set3__panel{
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  max-height: var(--pc-hero-h-set3);
  overflow: hidden;
  background: #f0eeeb;
}

.pc-hero-set3__media{
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
}
.pc-hero-set3__link{
  position: absolute;
  inset: 0;
  z-index: 4;
}
.pc-hero-set3__link:focus-visible{
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: -2px;
}
.pc-hero-set3 .pc-hero-slot__fill{
  min-height: var(--pc-hero-h-set3);
}

.pc-hero-set3__category-label{
  position: absolute;
  left: clamp(16px, 2.4vw, 30px);
  bottom: clamp(18px, 2.8vw, 32px);
  z-index: 5;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45), 0 2px 16px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  line-height: 1.1;
}

.pc-hero-set3__safe{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: var(--pc-hero-safe-pad);
  padding-bottom: clamp(22px, 3vw, 36px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.35) 100%);
}

/* Ana hero altı — aynı yükseklik sistemiyle normalize edilmiş kategori blokları */
.pc-home-category-heroes{
  --pc-hero-h: var(--pc-category-strip-h-featured);
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
}
.pc-home-category-heroes__row{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
}
.pc-home-category-heroes__cell{
  display: block;
  margin: 0;
  padding: 0;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}
.pc-home-category-heroes__media{
  position: relative;
  width: 100%;
  height: var(--pc-hero-h);
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(165deg, #ebe7e3 0%, #d9d4d0 50%, #c9c5c1 100%);
}
.pc-home-category-heroes__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.pc-home-category-heroes__label{
  position: absolute;
  left: clamp(18px, 2.4vw, 30px);
  bottom: clamp(22px, 3vw, 36px);
  z-index: 2;
  /* Mango-benzeri vitrin: okunaklı caps, ~20–24px masaüstü */
  font-size: clamp(17px, 1.45vw, 24px);
  line-height: 1.1;
  font-weight: var(--pc-font-weight-heavy);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

/* 4.–5. kategori kutusu arası: tam viewport genişliği, yan boşluk yok */
.pc-home-category-heroes__promo{
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.pc-home-category-heroes__promo-link{
  display: block;
  text-decoration: none;
  color: inherit;
}
.pc-home-category-heroes__promo-link:focus-visible{
  outline: 2px solid rgba(17, 17, 17, 0.85);
  outline-offset: -2px;
}
/* Kategori şeridi arası promo: cover + üste hizalı kırpma (yüz kaybolmasın). */
.pc-home-category-heroes__promo-media{
  width: 100%;
  height: min(72vh, 880px);
  margin: 0;
  padding: 0;
  line-height: 0;
  background: #0e0e0e;
  overflow: hidden;
  position: relative;
}
.pc-home-category-heroes__promo-media img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Geniş kutu + cover: ortalamak yüzü kesiyordu — önce üst bölge görünsün */
  object-position: center top;
}

/* -------------------------------------------------------------------------- */
/* Collections                                                                 */
/* -------------------------------------------------------------------------- */

.pc-home-collections{
  /* Hero ile ilk bölüm arası: üst padding küçük, bağlı his */
  padding: clamp(28px, 4vw, 44px) 0 clamp(40px, 5.5vw, 64px);
  background: #faf9f7;
}
.pc-home-collections__head{
  max-width: 36rem;
}
.pc-home-collections__grid{
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-auto-rows: minmax(250px, 1fr);
  gap: clamp(12px, 1.6vw, 20px);
}

/* İki büyük koleksiyon: simetrik vitrin */
.pc-home-collections--duo .pc-home-collections__grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(360px, 42vh);
  align-items: stretch;
  gap: clamp(0px, 0.6vw, 8px);
}
.pc-home-collections--duo .pc-home-collection{
  min-height: clamp(320px, 42vh, 560px);
}
.pc-home-collections--duo .pc-home-collection--featured{
  grid-row: auto;
  min-height: clamp(320px, 42vh, 560px);
}

.pc-home-collection{
  position: relative;
  display: block;
  min-height: 280px;
  border-radius: 30px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: #ece9ee;
  box-shadow: var(--pc-shadow-2);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.pc-home-collection:hover{
  transform: translateY(-3px);
  box-shadow: var(--pc-shadow-3);
}
.pc-home-collection--featured{
  grid-row: span 2;
  min-height: 620px;
}
.pc-home-collection__media,
.pc-home-collection__fallback,
.pc-home-collection__shade{
  position: absolute;
  inset: 0;
}
.pc-home-collection__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pc-home-collection__fallback{
  background:
    radial-gradient(520px 260px at 18% 18%, rgba(108,43,217,0.14), transparent 55%),
    linear-gradient(160deg, #ece9ee 0%, #f7f4f2 100%);
}
.pc-home-collection__shade{
  background: linear-gradient(180deg, rgba(17,17,17,0.06) 0%, rgba(17,17,17,0.18) 45%, rgba(17,17,17,0.74) 100%);
}
.pc-home-collection__content{
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: clamp(18px, 2.6vw, 28px);
}
.pc-home-collection__name{
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.14;
  font-weight: var(--pc-font-weight-heavy);
  letter-spacing: -0.02em;
  max-width: 14ch;
}
.pc-home-collection--featured .pc-home-collection__name{
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  max-width: 12ch;
}
.pc-home-collection__desc{
  font-size: var(--pc-text-sm);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 26ch;
}
.pc-home-collection__cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  font-size: var(--pc-text-xs);
  font-weight: var(--pc-font-weight-heavy);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pc-home-collection__cta::after{
  content: "→";
  font-size: 0.95em;
}

/* -------------------------------------------------------------------------- */
/* Editorial block                                                             */
/* -------------------------------------------------------------------------- */

.pc-home-editorial{
  padding: clamp(40px, 5.5vw, 68px) 0;
  background: #f3f0ec;
}
.pc-home-editorial__card{
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(20px, 3.2vw, 44px);
  align-items: center;
  padding: clamp(22px, 3.8vw, 44px);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,0.88), rgba(250,248,246,0.98));
  border: 1px solid rgba(17,17,17,0.05);
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.05);
}
.pc-home-editorial__copy{
  max-width: 29rem;
}
.pc-home-editorial__copy .pc-section__eyebrow{
  margin-bottom: 2px;
}
.pc-home-editorial__title{
  margin: clamp(6px, 1vw, 10px) 0 0;
  font-size: clamp(1.55rem, 2.75vw, 2.25rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: var(--pc-font-weight-heavy);
}
.pc-home-editorial__text{
  margin: clamp(14px, 2vw, 22px) 0 clamp(18px, 2.5vw, 26px);
  font-size: var(--pc-text-md);
  line-height: 1.62;
  color: var(--pc-text-secondary);
}
.pc-home-editorial__gallery{
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(12px, 2vw, 20px);
  align-items: end;
}
.pc-home-editorial__shot,
.pc-home-editorial__frame{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 28px;
  background: #eae7ea;
  box-shadow: var(--pc-shadow-2);
  text-decoration: none;
  color: #fff;
}
.pc-home-editorial__shot--primary{
  aspect-ratio: 3 / 4;
  transform: translateY(16px);
}
.pc-home-editorial__shot--secondary,
.pc-home-editorial__frame{
  aspect-ratio: 4 / 5;
}
.pc-home-editorial__shot img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pc-home-editorial__shot-title{
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(17,17,17,0) 0%, rgba(17,17,17,0.72) 100%);
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: var(--pc-font-weight-semibold);
}
.pc-home-editorial__frame{
  background:
    radial-gradient(520px 220px at 15% 16%, rgba(108, 43, 217, 0.16), transparent 52%),
    linear-gradient(160deg, #ece9ee 0%, #faf8f7 100%);
}

/* -------------------------------------------------------------------------- */
/* Product rows                                                                */
/* -------------------------------------------------------------------------- */

.pc-home-products{
  padding: clamp(44px, 5.5vw, 72px) 0;
  background: #fff;
}
.pc-home-products--new{
  background: #fcfcfb;
}
.pc-home-products--new .pc-section__title{
  font-size: clamp(1.65rem, 2.85vw, 2.35rem);
  letter-spacing: -0.03em;
}
.pc-home-products--picks{
  background: #faf8f5;
  border-top: 1px solid rgba(17, 17, 17, 0.05);
}
.pc-home-products--loved{
  background: #f7f4f0;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}
.pc-home-products__bar{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--pc-s-5);
  margin-bottom: clamp(18px, 2.6vw, 32px);
}
.pc-home-products__head{
  margin-bottom: 0;
  max-width: 42rem;
}
.pc-home-products__link{
  flex-shrink: 0;
  text-decoration: none;
  font-size: var(--pc-text-xs);
  font-weight: var(--pc-font-weight-heavy);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pc-text-tertiary);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.pc-home-products__link:hover{
  color: var(--pc-fg);
  border-bottom-color: currentColor;
}
.pc-home-products ul.products,
.pc-home-products .pc-home-products__grid{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(16px, 2vw, 26px) !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.pc-home-products .pc-home-products__grid--cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2.4vw, 34px) !important;
}
.pc-home-products .pc-home-products__grid--cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2.3vw, 32px) !important;
}
.pc-home-products--new .pc-home-products__grid,
.pc-home-products--new ul.products{
  gap: clamp(18px, 2.4vw, 36px) !important;
}
.pc-home-products--picks .pc-card-product__media,
.pc-home-products--loved .pc-card-product__media{
  border-radius: 26px;
}
.pc-home-products--loved .pc-card-product__media{
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.04);
}
.pc-home-products ul.products::before,
.pc-home-products ul.products::after{
  content: none !important;
}
.pc-home-products ul.products li.product{
  width: auto !important;
  float: none !important;
  margin: 0 !important;
}
.pc-home-products .pc-card-product{
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.pc-home-products--new .pc-card-product__media{
  aspect-ratio: 3 / 4;
}
.pc-home-products .pc-card-product__media{
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(17,17,17,0.06);
  background: #f3f1f0;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.pc-home-products .pc-card-product__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pc-home-products .pc-card-product__body{
  padding: clamp(10px, 1.4vw, 14px) var(--pc-s-1) 0;
  display: grid;
  gap: 6px;
}
.pc-home-products .pc-card-product__title{
  font-size: 1.02rem;
  line-height: 1.4;
  font-weight: var(--pc-font-weight-semibold);
  letter-spacing: -0.01em;
}
.pc-home-products .pc-card-product__price{
  font-size: var(--pc-text-sm);
  color: var(--pc-fg);
}
.pc-home-products .pc-card-product:hover .pc-card-product__media{
  transform: translateY(-4px);
  box-shadow: var(--pc-shadow-3);
}

/* -------------------------------------------------------------------------- */
/* Story, CTA, closing strip                                                   */
/* -------------------------------------------------------------------------- */

.pc-home-story{
  padding: clamp(48px, 6.5vw, 84px) 0;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}
.pc-home-story__inner{
  max-width: 34rem;
  margin: 0 auto;
  text-align: center;
}
.pc-home-story .pc-section__eyebrow{
  letter-spacing: 0.18em;
  margin-bottom: 4px;
}
.pc-home-story .pc-section__title{
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: var(--pc-font-weight-heavy);
}
.pc-home-story .pc-text-lead{
  margin-top: clamp(14px, 2vw, 22px);
  line-height: 1.65;
  color: var(--pc-text-secondary);
}

.pc-home-cta{
  padding: clamp(48px, 6.5vw, 80px) 0 clamp(56px, 7vw, 88px);
  background: #ede9e4;
}

/* Kategori şeridinden hemen sonra: üst boşluğu azalt (son satır kalkınca dev boşluk hissi olmasın) */
.pc-home-category-heroes + .pc-home-cta{
  padding-top: clamp(20px, 3.5vw, 40px);
}
.pc-home-cta__inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 40px);
  padding: clamp(28px, 4.2vw, 44px);
  border-radius: 28px;
  background: #141414;
  color: #fff;
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.16);
}
.pc-home-cta__copy{
  max-width: 26rem;
}
.pc-home-cta__eyebrow{
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.18em;
}
.pc-home-cta__inner .pc-section__title,
.pc-home-cta__inner .pc-section__sub{
  color: #fff;
}
.pc-home-cta__inner .pc-section__sub{
  opacity: 0.72;
  margin-top: var(--pc-s-3);
  line-height: 1.65;
}
.pc-home-cta .pc-btn--primary{
  background: #fff;
  color: #111;
  border-color: #fff;
}
.pc-home-cta .pc-btn--primary:hover{
  background: #f5f5f5;
}

.pc-home-final{
  padding: var(--pc-s-8) 0 var(--pc-s-16);
  background: #fff;
}
.pc-home-final .pc-slot{
  padding-left: 0;
  padding-right: 0;
  border: none;
  background: transparent;
}
.pc-home-final .pc-slot__item{
  padding-left: 0;
  padding-right: 0;
}

/* -------------------------------------------------------------------------- */
/* Responsive                                                                  */
/* -------------------------------------------------------------------------- */

@media (max-width: 1080px){
  body.pc-is-storefront-home{
    --pc-storefront-header-h: 84px;
    --pc-storefront-hero-h: clamp(520px, 80vh, 720px);
    --pc-category-strip-h-featured: calc(1.3 * clamp(460px, 68vh, 620px));
    --pc-category-strip-h: calc(1.3 * clamp(380px, 54vh, 500px));
  }
  .pc-storefront-hero{
    --pc-hero-h: var(--pc-storefront-hero-h);
  }
  .pc-home-category-heroes{
    --pc-hero-h: var(--pc-category-strip-h-featured);
  }
  .pc-home-editorial__card{
    grid-template-columns: 1fr;
  }
  .pc-home-editorial__gallery{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pc-home-editorial__shot--primary{
    transform: none;
  }
}

/*
 * Mobil hero (≤900px): her slayt tek görsel birimi — masaüstü mozaik/split korunur.
 * - Set2: zaten tek video (yan sütunlar gizli).
 * - Set1 / Set3: tek sütun + tek satır; ikinci panel gizli (üst üste iki yarım blok yok).
 */
@media (max-width: 900px){
  body.pc-is-storefront-home{
    --pc-storefront-header-h: 72px;
    --pc-storefront-hero-h: clamp(420px, 68vh, 600px);
    --pc-category-strip-h-featured: calc(1.3 * clamp(360px, 56vh, 500px));
    --pc-category-strip-h: calc(1.3 * clamp(300px, 42vh, 420px));
  }
  .pc-storefront-hero{
    --pc-hero-h: var(--pc-storefront-hero-h);
    --pc-hero-h-set1: var(--pc-storefront-hero-h);
    --pc-hero-h-set2: var(--pc-storefront-hero-h);
    --pc-hero-h-set3: var(--pc-storefront-hero-h);
    --pc-hero-h-master: var(--pc-storefront-hero-h);
  }
  .pc-home-category-heroes{
    --pc-hero-h: var(--pc-category-strip-h-featured);
  }
  .pc-hero-set2{
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    min-height: var(--pc-hero-h-set2);
    max-height: var(--pc-hero-h-set2);
  }
  .pc-hero-set2__slot:not(:first-child){
    display: none !important;
  }
  .pc-hero-set2__slot:first-child{
    min-height: var(--pc-hero-h-set2);
    max-height: var(--pc-hero-h-set2);
  }
  .pc-hero-set1{
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    min-height: var(--pc-hero-h-set1);
    max-height: var(--pc-hero-h-set1);
  }
  .pc-hero-set1__panel:not(:first-child){
    display: none !important;
  }
  .pc-hero-set1__panel:first-child{
    min-height: var(--pc-hero-h-set1);
    max-height: var(--pc-hero-h-set1);
  }
  .pc-hero-set3{
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    min-height: var(--pc-hero-h-set3);
    max-height: var(--pc-hero-h-set3);
  }
  .pc-hero-set3__panel:not(:first-child){
    display: none !important;
  }
  .pc-hero-set3__panel:first-child{
    min-height: var(--pc-hero-h-set3);
    max-height: var(--pc-hero-h-set3);
  }
}

@media (max-width: 820px){
  .pc-home-collections__grid{
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .pc-home-collection--featured{
    grid-row: span 1;
    min-height: 520px;
  }
  .pc-home-products__bar{
    flex-direction: column;
    align-items: flex-start;
  }
  .pc-home-products ul.products,
  .pc-home-products .pc-home-products__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 600px){
  body.pc-is-storefront-home{
    --pc-storefront-header-h: 64px;
    /* Dar telefon: portre-dostu hero yüksekliği; slaytlar ≤900px kurallarıyla tek blok. */
    --pc-storefront-hero-h: clamp(320px, 62vh, 500px);
    --pc-category-strip-h-featured: calc(1.3 * clamp(280px, 42vh, 360px));
    --pc-category-strip-h: calc(1.3 * clamp(220px, 30vh, 300px));
  }
  .pc-storefront-hero,
  .pc-home-category-heroes{
    --pc-hero-h: var(--pc-storefront-hero-h);
  }
  .pc-home-category-heroes{
    --pc-hero-h: var(--pc-category-strip-h-featured);
  }
  .pc-header--storefront-home{
    min-height: var(--pc-storefront-header-h);
    padding: 10px 0 12px;
  }
  .pc-storefront-hero__chrome{
    bottom: 10px;
    padding: 0 10px;
  }
  .pc-home-category-heroes__row{
    grid-template-columns: 1fr;
  }
  .pc-header__tools{
    justify-content: flex-start;
    gap: 8px;
  }
  .pc-search--storefront{
    /* 900px+ üstte tam genişlik; burada yalnızca iç padding sıkılırsa */
    flex: 0 0 auto;
    max-width: none;
    min-width: 0;
  }
  .pc-header__actions .pc-header__tool{
    font-size: clamp(9px, 2.6vw, 11px);
    padding: 6px 3px;
  }
  .pc-home-collections__head,
  .pc-home-products__head{
    max-width: none;
  }
  .pc-home-collection,
  .pc-home-collection--featured{
    min-height: 380px;
  }
  .pc-home-products ul.products,
  .pc-home-products .pc-home-products__grid{
    grid-template-columns: 1fr !important;
  }
  .pc-home-cta__inner{
    flex-direction: column;
    align-items: flex-start;
  }
}
