:root {
  --paper: #f3f5f2;
  --ink: #121714;
  --muted: #5f6a63;
  --line: #d5ddd6;
  --surface: #e7ebe6;
  --accent: #1f5f8b;
  --mint: #c9d6cc;
  --peach: #d9e4ec;
  --quote: #dfe8e1;
  --font-display: "Syne", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-script: "Syne", "Avenir Next", sans-serif;
  --space: clamp(1rem, 3vw, 1.75rem);
  --max: 78rem;
  --header-h: 4.5rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(31, 95, 139, 0.08), transparent 55%),
    radial-gradient(900px 420px at 100% 0%, rgba(201, 214, 204, 0.55), transparent 50%),
    var(--paper);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100%;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: inherit;
  text-decoration: none;
}

a:hover { color: var(--ink); }

main {
  overflow-x: hidden;
  max-width: 100%;
}

.wrap {
  width: min(100% - 2 * var(--space), var(--max));
  margin-inline: auto;
  max-width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: var(--header-h);
  gap: 1.25rem;
  max-width: 100%;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  display: inline-flex;
  align-items: flex-start;
  line-height: 1;
  flex-shrink: 0;
}

.brand i {
  width: 0.45rem;
  height: 0.45rem;
  background: var(--accent);
  display: inline-block;
  margin-top: 0.18rem;
  margin-left: 0.12rem;
  border-radius: 50%;
}

.nav {
  display: flex;
  gap: 1.15rem;
  font-size: 0.9rem;
  font-weight: 500;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  min-width: 0;
  max-width: 100%;
}

.nav--cats a {
  position: relative;
  padding: 0.35rem 0;
  color: #333;
  white-space: nowrap;
}

.nav--cats a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #bbb;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.85rem;
  align-items: center;
  flex-shrink: 0;
}

/* Tüm kategoriler dropdown — kategori şeridinde */
.cat-menu {
  position: relative;
  z-index: 50;
}

.cat-menu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.35rem 0;
  cursor: pointer;
  white-space: nowrap;
}

.cat-menu__trigger:hover,
.cat-menu.is-open .cat-menu__trigger {
  color: var(--ink);
}

.cat-menu__chev {
  transition: transform .2s ease;
  opacity: 0.7;
}

.cat-menu.is-open .cat-menu__chev,
.cat-menu:hover .cat-menu__chev {
  transform: rotate(180deg);
}

.cat-menu__panel {
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  width: min(26rem, calc(100vw - 2 * var(--space)));
  max-width: calc(100vw - 2 * var(--space));
  max-height: calc(100vh - var(--header-h) - 3rem);
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fdfbf7 !important;
  background-image: none !important;
  border: 1px solid var(--line);
  box-shadow: 0 22px 55px rgba(27, 25, 22, .16);
  padding: 0.85rem;
  opacity: 0;
  visibility: hidden;
  transform: none;
  transition: opacity .16s ease, transform .16s ease, visibility 0s linear .16s;
  pointer-events: none;
  /* Kapalıyken scroll taşması yaratmasın */
  clip-path: inset(0 0 100% 0);
}

.cat-menu.is-open .cat-menu__panel {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  clip-path: none;
  transition-delay: 0s;
}

.cat-menu__all {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.55rem 0.65rem;
  margin-bottom: 0.35rem;
  border-bottom: 1px solid var(--line);
}

.cat-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.15rem;
}

.cat-menu__grid a {
  display: block;
  padding: 0.55rem 0.65rem;
  font-size: 0.9rem;
  line-height: 1.35;
  color: #333;
  border-radius: 2px;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

.cat-menu__all {
  white-space: normal !important;
  overflow-wrap: anywhere;
}

.cat-menu__grid a:hover {
  background: var(--surface);
  color: var(--ink);
}

.cat-menu__grid a:hover::after {
  display: none;
}

.icon-link {
  position: relative;
  color: var(--ink);
  display: inline-flex;
}

.bag-count {
  position: absolute;
  top: -0.35rem;
  right: -0.45rem;
  min-width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  padding: 0 0.2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.2rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover { filter: brightness(1.08); color: #fff; }

.btn--outline,
.btn--ghost {
  background: transparent;
  color: var(--ink);
}

.btn--outline:hover,
.btn--ghost:hover { background: var(--ink); color: #fff; }

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn--ghost-light:hover { background: #fff; color: var(--ink); }

.btn--sm { padding: 0.4rem 0.75rem; font-size: 0.8rem; }

/* Hero */
.hm-hero {
  background: var(--hero-bg, var(--mint));
  overflow: clip;
}

.hm-hero__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  min-height: min(72vh, 36rem);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.hm-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2a2a2a;
  margin: 0 0 1rem;
}

.hm-hero__eyebrow span {
  width: 1.5px;
  height: 2.5rem;
  background: currentColor;
  display: inline-block;
}

.hm-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.hm-hero__price {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1.75rem;
  color: #222;
}

.hm-hero__media {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hm-hero__media img {
  width: min(100%, 34rem);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.12));
  animation: floaty 5.5s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Category cards */
.section { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }

.hm-cats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.hm-cat {
  background: var(--surface);
  min-height: 16rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: stretch;
  overflow: hidden;
  transition: transform .25s ease;
}

.hm-cat:hover { transform: translateY(-3px); }

.hm-cat__text {
  padding: 1.5rem;
}

.hm-cat__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}

.hm-cat__text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hm-cat img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem 1rem 0 0;
}

/* Section heads */
.hm-section-head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2.5rem;
}

.hm-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.hm-section-head p {
  margin: 0;
  color: var(--muted);
}

.hm-see-all {
  text-align: center;
  margin-top: 2.25rem;
}

.hm-see-all a {
  position: relative;
  display: inline-block;
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 1;
}

.hm-see-all a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05rem;
  height: 0.55rem;
  background: var(--peach);
  z-index: -1;
}

/* New design / featured */
.hm-new__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.hm-new__watermark {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0;
  letter-spacing: -0.03em;
  color: #1a1a1a;
}

.hm-new__tabs {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.hm-new__tabs a {
  color: var(--muted);
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
}

.hm-new__tabs a.is-active,
.hm-new__tabs a:hover {
  color: var(--ink);
  border-bottom-color: #cfcfcf;
}

.hm-new__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.hm-feature {
  background: var(--feature-bg, var(--surface));
  aspect-ratio: 1 / 1.05;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.hm-feature img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.hm-feature__cta {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: #fff;
  border: 1px solid var(--ink);
  padding: 0.45rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Promo */
.hm-promo {
  background: var(--promo-bg, var(--peach));
  margin-top: 1rem;
}

.hm-promo__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  min-height: 22rem;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.hm-promo__media img {
  width: 100%;
  max-height: 24rem;
  object-fit: cover;
}

.hm-promo__eyebrow {
  color: rgba(255,255,255,.9);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 0.75rem;
}

.hm-promo__title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 0.95;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}

.hm-promo__title em {
  position: absolute;
  left: 18%;
  top: 35%;
  font-family: var(--font-script);
  font-style: normal;
  font-size: 0.55em;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
  opacity: 0.95;
}

.hm-promo__copy p {
  color: rgba(255,255,255,.88);
  margin: 0 0 1.25rem;
}

/* Quote */
.hm-quote {
  background: var(--quote-bg, var(--quote));
  padding: clamp(2rem, 5vw, 3rem) 0;
  text-align: center;
}

.hm-quote blockquote {
  margin: 0;
  max-width: 48rem;
  margin-inline: auto;
}

.hm-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 700;
  margin: 0;
}

.hm-quote footer {
  margin-top: 0.65rem;
  color: #555;
  font-weight: 500;
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.product-card__media {
  background: var(--surface);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.product-card__media img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  transition: transform .35s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, #ececec, #f7f7f7 40%, #e5e5e5);
}

.product-card__body {
  text-align: center;
}

.product-card__title {
  font-weight: 600;
  font-size: 0.98rem;
  display: block;
  margin-bottom: 0.25rem;
}

.product-card__price {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  align-items: baseline;
  font-size: 0.92rem;
}

.product-card__price s {
  color: var(--muted);
  font-weight: 400;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 1.5rem;
  margin-top: 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.brand--footer { margin-bottom: 1rem; }

.site-footer h3 {
  font-size: 0.95rem;
  margin: 0 0 1rem;
}

.footer-contact {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 0.45rem;
  max-width: 18rem;
}

.footer-mail { text-decoration: underline; text-underline-offset: 0.2em; }

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--ink); }

.footer-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 1rem;
}

.newsletter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.35rem;
}

.newsletter input {
  flex: 1;
  border: 0;
  outline: 0;
  font: inherit;
  background: transparent;
  padding: 0.35rem 0;
}

.newsletter button {
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.site-footer__bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.pay-marks { letter-spacing: 0.02em; }

/* Float cart */
.float-cart {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 50;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  display: grid;
  place-items: center;
  color: var(--ink);
}

.float-cart span {
  position: absolute;
  top: 0.2rem;
  right: 0.15rem;
  min-width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

/* Forms / alerts / catalog */
.alert {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: #fafafa;
  margin-bottom: 1rem;
}

.alert--success { border-color: #b7d7c5; background: #eef8f2; }
.alert--error { border-color: #e2b4b4; background: #fff1f1; }

.form {
  display: grid;
  gap: 0.85rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.form input,
.form select,
.form textarea {
  font: inherit;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.tag-row { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1.25rem; }
.tag {
  border: 1px solid var(--line);
  padding: 0.25rem 0.55rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Catalog */
.catalog {
  padding: clamp(1.5rem, 4vw, 2.75rem) 0 4rem;
}

.catalog__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.catalog__head h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  letter-spacing: -0.03em;
  margin: 0.35rem 0 0.25rem;
}

.catalog__count {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.catalog__sort label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

.catalog__sort select {
  font: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.55rem 0.75rem;
  min-width: 9.5rem;
}

.catalog__layout {
  display: grid;
  grid-template-columns: 15.5rem minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
}

.filters {
  position: sticky;
  top: calc(var(--header-h) + 0.75rem);
}

.filters__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.1rem;
  gap: 0.75rem;
}

.filters__top h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0;
  letter-spacing: -0.01em;
}

.filters__top em {
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
  font-family: var(--font-body);
  font-size: 0.88rem;
}

.filters__clear {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.filters__form {
  display: grid;
  gap: 1.05rem;
}

.filter-block {
  display: grid;
  gap: 0.4rem;
}

.filter-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.filters input[type="search"],
.filters input[type="number"],
.filters input[type="text"],
.filters select {
  width: 100%;
  font: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.65rem 0.75rem;
  appearance: none;
  -webkit-appearance: none;
}

.filters select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a7a7a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

.filters input:focus,
.filters select:focus {
  outline: none;
  border-color: #bbb;
}

.filter-price {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.4rem;
  align-items: center;
}

.filter-price__sep {
  color: var(--muted);
  font-size: 0.85rem;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  cursor: pointer;
  margin: 0.15rem 0;
}

.filter-check input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--ink);
}

.filters__submit {
  width: 100%;
  margin-top: 0.35rem;
}

.filters-toggle {
  display: none;
  width: 100%;
  margin-bottom: 1.25rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--ink);
  background: #fff;
  cursor: pointer;
}

.product-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog__empty {
  text-align: center;
  padding: 4rem 1rem;
  background: var(--surface);
}

.catalog__empty p {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.pager {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.pager a {
  min-width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink);
}

.pager a.is-active,
.pager a:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th,
.cart-table td {
  text-align: left;
  padding: 0.85rem 0.4rem;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 1rem 0 2rem;
}

/* —— Product detail (AUROS / doob) —— */
.pd {
  padding: 1.25rem 0 4rem;
}

.pd .breadcrumb {
  margin-bottom: 1.5rem;
}

.pd__top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
  margin-bottom: 2.75rem;
}

.pd-gallery__stage {
  position: relative;
  background: var(--surface);
  min-height: 28rem;
  display: grid;
  place-items: center;
}

.pd-gallery__main {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.pd-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pd-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  color: #222;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0.55;
}

.pd-gallery__nav:hover { opacity: 1; }
.pd-gallery__nav--prev { left: 0.35rem; }
.pd-gallery__nav--next { right: 0.35rem; }

.pd-gallery__thumbs {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 0.85rem;
}

.pd-thumb {
  width: 4.5rem;
  height: 4.5rem;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  overflow: hidden;
  line-height: 0;
}

.pd-thumb.is-active {
  border-color: #4aa3ff;
  box-shadow: inset 0 0 0 1px #4aa3ff;
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.35rem;
}

.pd-stock {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.pd-stock__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2f7a4b;
  border: 1px solid #2f7a4b;
  background: #fff;
}

.pd-stock__badge--out {
  color: #a33;
  border-color: #a33;
}

.pd-stock__count {
  color: var(--muted);
  font-size: 0.9rem;
}

.pd-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.pd-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}

.pd-share {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.pd-share a {
  color: #555;
  display: inline-flex;
}

.pd-share a:hover { color: var(--accent); }

.pd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
}

.pd-tags a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.pd-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.pd-price strong {
  font-size: 1.55rem;
  font-weight: 700;
}

.pd-price s {
  color: var(--muted);
  font-size: 1rem;
}

.pd-price__note {
  width: 100%;
  font-size: 0.8rem;
  color: var(--muted);
}

.pd-lead {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 38ch;
  margin: 0 0 1.35rem;
}

.pd-attrs {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pd-attr {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.75rem;
  align-items: center;
}

.pd-attr__label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.pd-attr__values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pd-attr__values a {
  border: 1px solid var(--line);
  padding: 0.25rem 0.55rem;
  font-size: 0.85rem;
}

.pd-attr__values button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: .45rem .75rem;
  border-radius: 999px;
  font: inherit;
  font-size: .82rem;
  cursor: pointer;
}

.pd-attr__values a:hover,
.pd-attr__values a.is-active,
.pd-attr__values button:hover,
.pd-attr__values button.is-active {
  border-color: var(--ink);
}

.pd-attr__values a.is-active {
  background: var(--ink);
  color: #fff;
}

.pd-attr__values button.is-active {
  background: var(--ink);
  color: #fff;
}

.pd-attr__values button:disabled {
  opacity: .3;
  cursor: not-allowed;
  text-decoration: line-through;
}

.pd-variant-summary {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}

.pd-buy {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.pd-buy__variant {
  display: grid;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.pd-buy__variant select {
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  background: #fff;
}

.pd-buy__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: flex-end;
}

.pd-qty {
  display: grid;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #333;
}

.pd-qty input {
  width: 5.5rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  border: 1px solid var(--line);
  padding: 0.78rem 0.65rem;
  text-align: center;
}

.pd-buy__btn {
  flex: 1;
  min-width: 12rem;
  min-height: 3.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.88rem;
  gap: 0.55rem;
}

.pd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pd-actions a {
  color: #222;
}

.pd-actions a:hover {
  color: var(--accent);
}

/* Vertical tabs */
.pd-tabs {
  display: grid;
  grid-template-columns: 14rem 1fr;
  border: 1px solid var(--line);
  min-height: 14rem;
}

.pd-tabs__nav {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  background: #fafafa;
}

.pd-tabs__nav button {
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-left: 3px solid transparent;
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  padding: 1.05rem 1rem;
  cursor: pointer;
}

.pd-tabs__nav button:last-child {
  border-bottom: 0;
}

.pd-tabs__nav button.is-active {
  color: var(--accent);
  border-left-color: var(--accent);
  background: #fff;
}

.pd-tabs__panels {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.pd-tabs__panel[hidden] {
  display: none;
}

.pd-prose {
  margin: 0;
  color: #555;
  line-height: 1.75;
  max-width: 62ch;
  font-size: 0.98rem;
}

.pd-prose--muted {
  color: var(--muted);
}

.pd-specs {
  margin: 0;
  display: grid;
  gap: 0.85rem;
  max-width: 36rem;
}

.pd-specs > div {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.pd-specs dt {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.pd-specs dd {
  margin: 0;
  font-weight: 500;
}

.product-detail__gallery img {
  width: 100%;
}

.product-detail__main {
  background: var(--surface);
  overflow: hidden;
}

.thumb-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.thumb-btn {
  border: 1px solid var(--line);
  background: #fff;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  line-height: 0;
}

.thumb-btn.is-active,
.thumb-btn:hover { border-color: var(--ink); }

.thumb-btn img {
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.meta-line { color: var(--muted); font-size: 0.9rem; margin: 0.35rem 0 0; }
.lead { max-width: 40ch; }

.spec-list {
  margin: 1.25rem 0;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-list--muted {
  border: 0;
  padding-top: 0;
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.spec-row {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.75rem;
  padding: 0.35rem 0;
}

.spec-row dt { margin: 0; color: var(--muted); font-size: 0.9rem; }
.spec-row dd { margin: 0; }
.spec-row a { border-bottom: 1px solid var(--line); }
.spec-row a:hover { border-color: var(--ink); }

.buy-box { margin-top: 1.5rem; max-width: 22rem; }
.stock-note { margin: 0.5rem 0 0; font-size: 0.88rem; color: var(--muted); }

.catalog__head .breadcrumb {
  margin-bottom: 0;
}

.product-detail__desc {
  padding: 1.5rem 0 3rem;
  border-top: 1px solid var(--line);
}

/* Motion */
.hm-hero__copy,
.hm-section-head,
.hm-cat {
  animation: rise 0.7s ease both;
}

.hm-cat:nth-child(2) { animation-delay: 0.08s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 980px) {
  :root {
    --space: 1rem;
  }

  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.5rem;
  }

  .brand {
    font-size: 1.25rem;
  }

  .nav--cats > a { display: none; }

  .cat-menu__trigger {
    font-size: 0.82rem;
  }

  /* Panel viewport içinde kalsın */
  .cat-menu__panel {
    position: fixed;
    left: var(--space);
    right: var(--space);
    top: calc(var(--header-h) + 0.25rem);
    width: auto;
    max-width: none;
  }

  .hm-hero__inner,
  .hm-promo__inner,
  .hm-new__grid,
  .hm-cats__grid,
  .catalog__layout,
  .pd__top,
  .pd-tabs,
  .product-detail__grid,
  .site-footer__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-grid,
  .product-grid--4,
  .product-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hm-hero__title {
    font-size: clamp(2.4rem, 14vw, 3.5rem);
    overflow-wrap: anywhere;
  }

  .hm-hero__inner { min-height: auto; }
  .hm-promo__title {
    overflow-wrap: anywhere;
  }
  .hm-promo__title em { left: 8%; }
  .cat-menu__grid { grid-template-columns: 1fr; }
  .nav--cats { justify-content: flex-start; min-width: 0; }

  .filters-toggle { display: block; }
  .filters {
    position: static;
    display: none;
    margin-bottom: 1.5rem;
    padding: 1.15rem;
    border: 1px solid var(--line);
    background: #fff;
  }
  .filters.is-open { display: block; }
  .catalog__layout {
    display: block;
  }
  .pd-tabs__nav {
    flex-direction: row;
    flex-wrap: wrap;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .pd-tabs__nav button {
    border-left: 0;
    border-bottom: 2px solid transparent;
    flex: 1 1 auto;
    text-align: center;
    min-width: 0;
  }
  .pd-tabs__nav button.is-active {
    border-left-color: transparent;
    border-bottom-color: var(--accent);
  }
  .pd-gallery__stage { min-height: 18rem; }
  .pd-buy__btn { min-width: 0; width: 100%; }

  .hm-section-head h2,
  .hm-new__watermark {
    overflow-wrap: anywhere;
  }

  .float-cart {
    left: 0.75rem;
    bottom: 0.75rem;
  }
}

@media (max-width: 560px) {
  .product-grid,
  .product-grid--4,
  .product-grid--3,
  .product-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
  .hm-cat { grid-template-columns: minmax(0, 1fr); min-height: auto; }
  .hm-cat img { height: 12rem; padding: 0.5rem; }
  .catalog__head { align-items: flex-start; }
  .header-actions { gap: 0.55rem; }
  .cat-menu__trigger span {
    max-width: 7.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Premium storefront refinement */
::selection { background: #c86b45; color: #fff; }

.announcement {
  background: #1b1916;
  color: #f8f2e8;
  font-size: .68rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.announcement__inner {
  min-height: 2.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4.5rem);
}

.announcement__inner span { opacity: .68; }
.announcement__inner a { margin-left: auto; }
.announcement__inner a span { opacity: 1; margin-left: .35rem; }

.site-header {
  background: rgba(253, 251, 247, .9);
  border-color: rgba(27, 25, 22, .1);
}

.brand {
  font-size: 1.8rem;
  letter-spacing: -.035em;
  text-transform: none;
}

.brand i {
  width: .34rem;
  height: .34rem;
  border-radius: 50%;
  margin-top: .15rem;
  background: var(--accent);
}

.nav {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.cat-menu__trigger { font-size: .75rem; letter-spacing: .065em; text-transform: uppercase; }

.icon-link {
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s ease, transform .2s ease;
}

.icon-link:hover { background: var(--surface); transform: translateY(-1px); }

.hm-hero {
  position: relative;
  border-bottom: 0;
  min-height: min(88vh, 52rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #f4f7f5;
  background: #101613;
}

.hm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 16, 14, .88) 0%, rgba(10, 16, 14, .42) 42%, rgba(10, 16, 14, .18) 100%),
    linear-gradient(180deg, rgba(10, 16, 14, .2) 0%, rgba(10, 16, 14, .55) 100%);
}

.hm-hero__inner {
  grid-template-columns: 1fr;
  max-width: 90rem;
  min-height: min(88vh, 52rem);
  padding-block: clamp(5rem, 12vh, 9rem) clamp(3rem, 7vh, 5rem);
  position: relative;
  z-index: 2;
  align-items: end;
}

.hm-hero__copy { position: relative; z-index: 2; max-width: 34rem; padding: 0; }

.hm-hero__kicker,
.section-index {
  display: block;
  margin: 0 0 1rem;
  color: #9ec0d8;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hm-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .85rem;
  color: #d7e2db;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hm-hero__eyebrow span {
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--accent);
}

.hm-hero__title {
  max-width: 8ch;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 10vw, 7.5rem);
  line-height: .86;
  font-weight: 800;
  letter-spacing: -.06em;
  text-transform: lowercase;
  color: #fff;
}

.hm-hero__price {
  max-width: 28rem;
  margin: 0 0 1.6rem;
  font-size: 1.05rem;
  line-height: 1.55;
  letter-spacing: 0;
  color: rgba(244, 247, 245, .86);
}

.btn {
  min-height: 3rem;
  border-radius: 4px;
  padding-inline: 1.35rem;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.btn--hero {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn--hero:hover { filter: brightness(1.08); }

.btn--hero span { margin-left: .5rem; font-size: 1rem; }

.hm-hero__note {
  margin-top: 2rem;
  max-width: 22rem;
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  color: rgba(244, 247, 245, .72);
  font-size: .78rem;
  line-height: 1.55;
}

.hm-hero__note span {
  color: #9ec0d8;
  font-family: var(--font-display);
  font-size: 1rem;
}

.hm-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  align-self: stretch;
}

.hm-hero__media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  filter: saturate(.9) contrast(1.02);
  animation: none;
}

.trust-strip {
  background: #121714;
  color: #eef3f0;
  padding: 1.6rem 0;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip__grid > div {
  position: relative;
  display: grid;
  padding: .35rem clamp(1rem, 2.5vw, 2.2rem);
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.trust-strip__grid > div:last-child { border-right: 0; }
.trust-strip__grid span { color: #c97750; font-family: var(--font-display); font-size: .8rem; }
.trust-strip__grid strong { margin: .1rem 0; font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; }
.trust-strip__grid small { color: rgba(255,255,255,.55); font-size: .68rem; }

.section { padding-block: clamp(4.5rem, 9vw, 8rem); }

.hm-cats__grid { gap: 1.75rem; }

.hm-cat {
  min-height: 21rem;
  background: #ece5da;
  border-radius: .25rem;
}

.hm-cat:nth-child(2) { background: #ded5c8; }

.hm-cat__text { padding: clamp(1.75rem, 4vw, 3.5rem); align-self: end; }
.hm-cat__text h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 600; line-height: .95; }
.hm-cat img { transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.hm-cat:hover { transform: none; }
.hm-cat:hover img { transform: scale(1.05); }

.hm-section-head { max-width: 43rem; margin-bottom: 3.5rem; }
.hm-section-head h2 { font-size: clamp(3rem, 5vw, 4.6rem); font-weight: 600; line-height: .95; }
.hm-section-head p { max-width: 34rem; margin-inline: auto; }

.product-grid { gap: clamp(1rem, 2.5vw, 2rem); }
.product-card { gap: 1rem; }

.product-card__media {
  background: #f0ece5;
  border-radius: .2rem;
}

.product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(27,25,22,.04);
  pointer-events: none;
}

.product-card__media img { width: 84%; height: 84%; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-card__media img { transform: scale(1.065); }

.product-card__badge {
  position: absolute;
  z-index: 2;
  top: .85rem;
  left: .85rem;
  padding: .32rem .6rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.product-card__badge--new { background: #302e29; }

.product-card__quick {
  position: absolute;
  z-index: 2;
  left: .8rem;
  right: .8rem;
  bottom: .8rem;
  min-height: 2.65rem;
  padding-inline: 1rem;
  border-radius: 999px;
  background: rgba(27,25,22,.94);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transform: translateY(calc(100% + 1rem));
  transition: transform .35s ease;
}

.product-card:hover .product-card__quick,
.product-card:focus-within .product-card__quick { transform: none; }

.product-card__body { text-align: left; }
.product-card__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; line-height: 1.2; }
.product-card__price { justify-content: flex-start; font-size: .78rem; }
.product-card__price strong { color: var(--accent); }

.hm-see-all a { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.hm-see-all a::after { background: #d9b59f; }

.hm-new { border-top: 1px solid var(--line); }
.hm-new__watermark { font-size: clamp(3rem, 6vw, 5.2rem); font-weight: 600; line-height: .9; }
.hm-new__tabs { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.hm-feature { background: #e8dfd2; border-radius: 16rem 16rem .25rem .25rem; }
.hm-feature__cta { border: 0; border-radius: 999px; padding: .65rem 1rem; }

.hm-promo {
  margin: 0;
  background: #723a2b !important;
  position: relative;
  overflow: hidden;
}

.hm-promo__inner { min-height: 31rem; }
.hm-promo__media img { max-height: 31rem; border-radius: 16rem 16rem 0 0; filter: saturate(.72); }
.hm-promo__title { font-family: var(--font-display); font-size: clamp(4rem, 8vw, 7rem); font-weight: 600; letter-spacing: -.04em; text-transform: none; }
.hm-promo__title em { color: #efb28e; }

.hm-quote { background: #e8dfd2 !important; padding-block: clamp(4rem, 8vw, 7rem); }
.hm-quote p { font-size: clamp(2rem, 4.5vw, 4rem); font-weight: 500; line-height: 1.05; }

.site-footer {
  background: #1b1916;
  color: #f7f0e5;
  border: 0;
  padding-top: clamp(4rem, 8vw, 7rem);
}

.site-footer h3 { color: #c97750; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-manifesto { max-width: 20rem; color: rgba(255,255,255,.62); font-family: var(--font-display); font-size: 1.4rem; line-height: 1.25; }
.footer-contact,
.footer-note,
.footer-links a,
.site-footer__bar { color: rgba(255,255,255,.55); }
.footer-links a:hover { color: #fff; }
.newsletter { border-color: rgba(255,255,255,.5); }
.newsletter input { color: #fff; }
.newsletter button { color: #fff; }
.site-footer__bar { border-color: rgba(255,255,255,.12); }

@media (max-width: 980px) {
  .announcement__inner span:nth-child(2) { display: none; }
  .hm-hero__inner { grid-template-columns: minmax(0, 1fr); padding-bottom: clamp(2.5rem, 8vw, 4rem); }
  .hm-hero__copy { padding: 0; max-width: 100%; }
  .hm-hero__title { font-size: clamp(3.6rem, 16vw, 5.8rem); max-width: 8ch; }
  .hm-hero__media { position: absolute; inset: 0; min-height: 100%; margin: 0; border-radius: 0; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); row-gap: 1.4rem; }
  .trust-strip__grid > div:nth-child(2) { border-right: 0; }
  .hm-feature { border-radius: 10rem 10rem .25rem .25rem; }
}

@media (max-width: 560px) {
  .announcement { font-size: .6rem; }
  .announcement__inner { justify-content: space-between; gap: .5rem; }
  .announcement__inner a { margin-left: 0; }
  .site-header__inner { min-height: 4rem; }
  .icon-link--search { display: none; }
  .hm-hero__title { font-size: clamp(3.2rem, 18vw, 4.6rem); }
  .hm-hero__price { font-size: .95rem; }
  .hm-hero__note { margin-top: 1.5rem; }
  .hm-hero__media { min-height: 100%; margin: 0; border-radius: 0; }
  .trust-strip { padding-block: 1.2rem; }
  .trust-strip__grid > div { padding-inline: .8rem; }
  .trust-strip__grid strong { font-size: 1rem; }
  .trust-strip__grid small { font-size: .6rem; }
  .section { padding-block: 4rem; }
  .hm-section-head { margin-bottom: 2.2rem; }
  .hm-section-head h2 { font-size: 2.8rem; }
  .hm-cat { min-height: 18rem; }
  .product-card__quick { display: none; }
  .product-card__badge { top: .55rem; left: .55rem; }
  .product-card__title { font-size: 1.05rem; }
  .hm-new__tabs { width: 100%; overflow-x: auto; flex-wrap: nowrap; }
}

/* Premium cart */
.cart-page {
  padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(5rem, 9vw, 8rem);
  background: #fdfbf7;
}

.cart-page__breadcrumb { margin-bottom: clamp(2rem, 5vw, 4rem); }

.cart-page__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--ink);
}

.cart-page__head .section-index { margin-bottom: .45rem; }
.cart-page__head h1 { margin: 0; font-family: var(--font-display); font-size: clamp(3.7rem, 8vw, 7rem); font-weight: 600; line-height: .75; letter-spacing: -.055em; }
.cart-page__head > p { margin: 0; color: var(--muted); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }

.cart-shipping {
  margin: 1.5rem 0 2rem;
  display: grid;
  grid-template-columns: auto minmax(12rem, 28rem);
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  color: var(--muted);
  font-size: .78rem;
}

.cart-shipping strong { color: var(--ink); }
.cart-shipping__track { height: 3px; background: #dfd8ce; overflow: hidden; }
.cart-shipping__track span { display: block; height: 100%; background: var(--accent); }

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(19rem, .75fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: start;
}

.cart-products__labels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 9rem 7rem;
  gap: 1.5rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cart-products__labels span:nth-child(2),
.cart-products__labels span:nth-child(3) { text-align: center; }

.cart-line {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr) 9rem 7rem;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-line__media {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f0ece5;
}

.cart-line__media img { width: 88%; height: 88%; object-fit: contain; transition: transform .35s ease; }
.cart-line__media:hover img { transform: scale(1.05); }
.cart-line__info { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; }
.cart-line__eyebrow { margin-bottom: .35rem; color: var(--accent); font-size: .58rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.cart-line__title { font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 600; line-height: 1.05; }
.cart-line__variant { margin-top: .4rem; color: var(--muted); font-size: .72rem; }
.cart-line__unit { margin-top: .5rem; color: var(--accent); font-size: .78rem; }

.cart-line__remove { margin-top: .75rem; }
.cart-line__remove button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid #aaa29a;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: .67rem;
  cursor: pointer;
}

.cart-qty {
  display: grid;
  grid-template-columns: 2rem 2.5rem 2rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  min-height: 2.65rem;
}

.cart-qty > button:not(.cart-qty__update) { border: 0; background: transparent; color: var(--ink); font-size: 1rem; cursor: pointer; }
.cart-qty input { width: 100%; border: 0; outline: 0; background: transparent; text-align: center; font: inherit; appearance: textfield; }
.cart-qty input::-webkit-inner-spin-button { appearance: none; }
.cart-qty__update { grid-column: 1 / -1; margin-top: .4rem; border: 0; background: transparent; color: var(--muted); font: inherit; font-size: .62rem; text-decoration: underline; cursor: pointer; }
.cart-line__total { text-align: right; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }

.cart-continue { display: inline-flex; gap: .7rem; align-items: center; margin-top: 1.5rem; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.cart-aside { position: sticky; top: calc(var(--header-h) + 3.2rem); display: grid; gap: 1rem; }
.cart-summary { padding: clamp(1.5rem, 3vw, 2.25rem); background: #1b1916; color: #f8f2e8; }
.cart-summary .section-index { color: #c97750; }
.cart-summary h2 { margin: 0 0 2rem; font-family: var(--font-display); font-size: 2.7rem; font-weight: 600; }
.cart-summary__rows { display: grid; gap: .8rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.15); }
.cart-summary__rows > div,
.cart-summary__grand { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start; font-size: .75rem; }
.cart-summary__rows span { color: rgba(255,255,255,.58); }
.cart-summary__rows strong { font-weight: 500; }
.cart-summary__grand { padding: 1.5rem 0; }
.cart-summary__grand span { display: grid; gap: .15rem; font-family: var(--font-display); font-size: 1.2rem; }
.cart-summary__grand small { color: rgba(255,255,255,.45); font-family: var(--font-body); font-size: .58rem; font-weight: 400; letter-spacing: .06em; text-transform: uppercase; }
.cart-summary__grand strong { font-family: var(--font-display); font-size: 1.65rem; }
.cart-summary__checkout { width: 100%; background: #f8f2e8; border-color: #f8f2e8; color: var(--ink); }
.cart-summary__checkout:disabled { opacity: .58; cursor: not-allowed; }
.cart-summary__secure { margin: 1rem 0 0; color: rgba(255,255,255,.47); font-size: .62rem; line-height: 1.5; }

.cart-note { border: 1px solid var(--line); background: #fff; }
.cart-note summary { display: flex; justify-content: space-between; padding: 1rem 1.15rem; font-size: .76rem; font-weight: 600; cursor: pointer; list-style: none; }
.cart-note summary::-webkit-details-marker { display: none; }
.cart-note[open] summary span { transform: rotate(45deg); }
.cart-note form { display: grid; gap: .75rem; padding: 0 1.15rem 1.15rem; }
.cart-note textarea { width: 100%; resize: vertical; border: 1px solid var(--line); padding: .75rem; font: inherit; font-size: .78rem; }

.cart-assurance { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.cart-assurance > div { display: flex; gap: .65rem; align-items: flex-start; padding: .9rem; background: #f0ece5; }
.cart-assurance span { color: var(--accent); font-family: var(--font-display); font-size: .8rem; }
.cart-assurance p { margin: 0; color: var(--muted); font-size: .62rem; line-height: 1.45; }
.cart-assurance strong { display: block; color: var(--ink); font-size: .68rem; }

.cart-empty { max-width: 46rem; margin: clamp(3rem, 8vw, 7rem) auto 0; text-align: center; }
.cart-empty__icon { width: 6rem; height: 6rem; margin: 0 auto 1.75rem; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-size: 2.5rem; color: var(--muted); }
.cart-empty h2 { margin: 0 auto 1rem; max-width: 10ch; font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 600; line-height: .9; }
.cart-empty > p:not(.section-index) { max-width: 31rem; margin: 0 auto 1.75rem; color: var(--muted); }

@media (max-width: 980px) {
  .cart-layout { grid-template-columns: minmax(0, 1fr); }
  .cart-aside { position: static; }
}

@media (max-width: 680px) {
  .cart-shipping { grid-template-columns: 1fr; gap: .75rem; }
  .cart-products__labels { display: none; }
  .cart-line { grid-template-columns: 6.5rem minmax(0, 1fr); align-items: start; }
  .cart-line__media { grid-row: span 2; }
  .cart-qty { grid-column: 2; width: 7rem; }
  .cart-line__total { grid-column: 2; grid-row: 2; align-self: end; margin-left: auto; }
  .cart-assurance { grid-template-columns: 1fr; }
}

/* Atelier motion */
@keyframes atelier-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes atelier-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.theme-atelier .hm-hero__copy {
  animation: atelier-rise .9s cubic-bezier(.22,1,.36,1) both;
}
.theme-atelier .hm-hero__media img {
  animation: atelier-fade 1.2s ease both;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.theme-atelier .hm-hero:hover .hm-hero__media img {
  transform: scale(1);
}
.theme-atelier .product-card {
  transition: transform .35s ease, box-shadow .35s ease;
}
.theme-atelier .product-card:hover {
  transform: translateY(-4px);
}

/* Doob Pop Studio — neo-pop storefront */
:root {
  --ink: #18142b;
  --paper: #fff9e8;
  --surface: #f2edff;
  --line: #18142b;
  --muted: #665f78;
  --accent: #ff4f87;
  --font-display: "Paytone One", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

body.theme-pop-studio {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
}

.theme-pop-studio ::selection { background: #d9ff62; color: #18142b; }
.theme-pop-studio .announcement { background: #18142b; color: #fff; }
.theme-pop-studio .announcement__inner span:first-child { color: #d9ff62; }
.theme-pop-studio .site-header {
  background: rgba(255, 249, 232, .94);
  border-bottom: 2px solid var(--ink);
}
.theme-pop-studio .brand {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #6647ff;
  letter-spacing: -.06em;
}
.theme-pop-studio .brand i { background: #ff4f87; }
.theme-pop-studio .nav,
.theme-pop-studio .cat-menu__trigger { font-weight: 700; letter-spacing: .03em; }
.theme-pop-studio .icon-link { border: 1.5px solid var(--ink); background: #fff; }
.theme-pop-studio .icon-link:hover { background: #d9ff62; transform: rotate(-4deg); }

.theme-pop-studio .hm-hero {
  min-height: min(82vh, 48rem);
  margin: clamp(.7rem, 2vw, 1.5rem);
  border: 2px solid var(--ink);
  border-radius: clamp(1.5rem, 4vw, 3.5rem);
  box-shadow: 10px 10px 0 var(--ink);
  background: #6647ff;
}
.theme-pop-studio .hm-hero::before {
  background:
    radial-gradient(circle at 82% 18%, #d9ff62 0 5.5rem, transparent 5.6rem),
    linear-gradient(90deg, rgba(102, 71, 255, .97) 0%, rgba(102, 71, 255, .8) 43%, rgba(24, 20, 43, .16) 72%);
}
.theme-pop-studio .hm-hero::after {
  content: "YENİ • YENİ • YENİ";
  position: absolute;
  z-index: 3;
  right: -3rem;
  top: 7rem;
  padding: .7rem 3rem;
  background: #ff4f87;
  border-block: 2px solid var(--ink);
  color: #18142b;
  font-weight: 800;
  letter-spacing: .14em;
  transform: rotate(8deg);
}
.theme-pop-studio .hm-hero__inner { min-height: min(82vh, 48rem); }
.theme-pop-studio .hm-hero__eyebrow { color: #d9ff62; font-weight: 700; }
.theme-pop-studio .hm-hero__eyebrow span { background: #ff4f87; }
.theme-pop-studio .hm-hero__title {
  max-width: 8ch;
  color: #fff9e8;
  font-size: clamp(4.2rem, 10vw, 8.5rem);
  line-height: .82;
  text-shadow: 5px 5px 0 #18142b;
  text-transform: none;
}
.theme-pop-studio .hm-hero__price { color: #fff; font-size: 1.08rem; }
.theme-pop-studio .btn {
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 800;
}
.theme-pop-studio .btn--hero { background: #d9ff62; border-color: var(--ink); color: var(--ink); }
.theme-pop-studio .btn:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.theme-pop-studio .hm-hero__note { color: #fff; }
.theme-pop-studio .hm-hero__note span { color: #d9ff62; font-size: 1.5rem; }

.theme-pop-studio .trust-strip { margin-top: 2.2rem; background: #ff4f87; color: var(--ink); border-block: 2px solid var(--ink); }
.theme-pop-studio .trust-strip__grid > div { border-color: var(--ink); }
.theme-pop-studio .trust-strip__grid span { color: #fff; }
.theme-pop-studio .trust-strip__grid small { color: rgba(24,20,43,.7); }
.theme-pop-studio .section-index { color: #6647ff; }
.theme-pop-studio .hm-section-head h2,
.theme-pop-studio .hm-new h2 { color: var(--ink); text-shadow: 3px 3px 0 #d9ff62; }
.theme-pop-studio .hm-cat {
  border: 2px solid var(--ink);
  border-radius: 2rem;
  background: #d9ff62;
  box-shadow: 7px 7px 0 var(--ink);
  overflow: hidden;
}
.theme-pop-studio .hm-cat:nth-child(2) { background: #ff9ec1; transform: rotate(1.5deg); }
.theme-pop-studio .hm-cat h2 { font-family: var(--font-display); }
.theme-pop-studio .product-card__media {
  border: 2px solid var(--ink);
  border-radius: 1.5rem;
  background: #fff;
}
.theme-pop-studio .product-card:nth-child(4n+2) .product-card__media { background: #e9e2ff; }
.theme-pop-studio .product-card:nth-child(4n+3) .product-card__media { background: #eaffb5; }
.theme-pop-studio .product-card__badge { border: 1.5px solid var(--ink); background: #ff4f87; color: var(--ink); }
.theme-pop-studio .product-card__badge--new { background: #d9ff62; color: var(--ink); }
.theme-pop-studio .product-card__quick { background: #6647ff; border: 2px solid var(--ink); }
.theme-pop-studio .product-card__title { font-family: var(--font-body); font-weight: 800; }
.theme-pop-studio .product-card__price strong { color: #6647ff; }
.theme-pop-studio .hm-promo { border: 2px solid var(--ink); border-radius: 2.5rem; background: #6647ff !important; box-shadow: 9px 9px 0 var(--ink); }
.theme-pop-studio .hm-quote { background: #d9ff62 !important; border-block: 2px solid var(--ink); }
.theme-pop-studio .site-footer { background: #6647ff; color: #fff; border-top: 2px solid var(--ink); }
.theme-pop-studio .site-footer h3 { color: #d9ff62; }
.theme-pop-studio .footer-manifesto,
.theme-pop-studio .footer-contact,
.theme-pop-studio .footer-note,
.theme-pop-studio .footer-links a,
.theme-pop-studio .site-footer__bar { color: rgba(255,255,255,.8); }
.theme-pop-studio .catalog__head h1,
.theme-pop-studio .product-detail h1,
.theme-pop-studio .cart-page__head h1 { text-shadow: 3px 3px 0 #d9ff62; }
.theme-pop-studio .cart-summary { border: 2px solid var(--ink); border-radius: 1.5rem; background: #6647ff; box-shadow: 7px 7px 0 var(--ink); }

@media (max-width: 680px) {
  .theme-pop-studio .hm-hero { margin: .55rem; border-radius: 1.5rem; box-shadow: 5px 5px 0 var(--ink); }
  .theme-pop-studio .hm-hero::after { display: none; }
  .theme-pop-studio .hm-hero__title { font-size: clamp(3.5rem, 18vw, 5.2rem); }
}
