/* SanyWatch — Deri saat kordonu e-ticaret */
:root {
  --bg: #0f0f0f;
  --bg-elevated: #1a1a1a;
  --surface: #242424;
  --border: #333;
  --text: #f5f0e8;
  --text-muted: #9a958c;
  --accent: #c9a227;
  --accent-soft: rgba(201, 162, 39, 0.15);
  --leather: #6b4423;
  --success: #3d9a6b;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-slogan: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --hero-bg: #0a0a0a;
  --hero-gold: #c5a037;
  --mega-teal: #2a4f56;
  --mega-teal-mid: #234854;
  --mega-teal-dark: #1a383e;
  --shop-bg: #e8e8e8;
  --shop-bg-deep: #e0e0e0;
  --shop-surface: #fff;
  --shop-text: #1a1d28;
  --shop-muted: #5c616e;
  --shop-border: #d0d0d0;
  --shop-navy: #1e2a44;
  --shop-cta: #8f1d1d;
  --shop-cta-hover: #a52222;
  /* Vitrin boşluğu; gerçek değer JS ile güncellenir (responsive) */
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* Header — sabit, vitrin (home-top) padding ile aşağıda başlar */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  /* iOS çentik / ev göstergesi alanı */
  padding-top: env(safe-area-inset-top, 0px);
  box-sizing: border-box;
}

.header-mega {
  width: 100%;
  background: linear-gradient(180deg, #1e2a44 0%, #161d2e 55%, #121722 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-mega__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.55rem clamp(0.75rem, 2vw, 1.5rem);
  max-width: 1440px;
  margin: 0 auto;
}

.header-mega__logo {
  position: absolute;
  left: clamp(0.75rem, 2vw, 1.5rem);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  font-family: var(--font-display);
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  line-height: 1.05;
}

.header-mega__logo:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.92;
}

.header-mega__brand {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #f59e0b;
}

.header-mega__watch {
  color: #facc15;
  font-weight: 500;
}

.header-mega__tagline {
  font-family: var(--font-body);
  font-size: clamp(0.58rem, 1.1vw, 0.68rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.78);
}

.header-mega__nav {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  padding: 0 clamp(7.5rem, 15vw, 12rem) 0 clamp(6rem, 13vw, 10rem);
}

.header-mega__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(0.65rem, 1.5vw, 1.35rem);
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

.header-mega__list::-webkit-scrollbar {
  height: 4px;
}

.header-mega__list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
}

.header-mega__list li {
  flex-shrink: 0;
}

.header-mega__list a {
  display: block;
  padding: 0.45rem 0.15rem;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1.05vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.header-mega__list a:hover {
  color: #fff;
  text-decoration: none;
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

.header-mega__tools {
  position: absolute;
  right: clamp(0.75rem, 2vw, 1.5rem);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  z-index: 2;
}

.search-wrap {
  position: relative;
}

.search-wrap--mega input {
  width: min(200px, 28vw);
  padding: 0.45rem 0.65rem 0.45rem 2.15rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  transition: border-color 0.2s, background 0.2s;
}

.search-wrap--mega input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.search-wrap--mega input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.22);
}

.search-wrap--mega svg {
  position: absolute;
  left: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  opacity: 0.55;
  color: #fff;
  stroke: currentColor;
}

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.12);
  color: #fff;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.icon-btn:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
}

.icon-btn--mega:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.badge-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  background: #fff;
  color: #161d2e;
  border-radius: 999px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1100px) {
  .header-mega__nav {
    padding-left: clamp(4.5rem, 10vw, 7rem);
    padding-right: clamp(6rem, 16vw, 9rem);
  }
}

@media (max-width: 720px) {
  :root {
    /* JS yok / ilk boyama; JS yüklenince gerçek ölçü yazılır */
    --header-h: 128px;
  }

  .header-mega__inner {
    flex-wrap: wrap;
    min-height: 0;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    justify-content: space-between;
    align-items: center;
  }

  .header-mega__logo {
    position: static;
    transform: none;
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
  }

  .header-mega__tools {
    position: static;
    transform: none;
    order: 2;
    flex-shrink: 0;
  }

  .header-mega__nav {
    order: 3;
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0.5rem 0 0;
    margin-top: 0.45rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    justify-content: flex-start;
  }

  .header-mega__list {
    justify-content: flex-start;
    padding-bottom: 0.15rem;
  }

  .search-wrap--mega input {
    width: min(160px, 42vw);
  }
}

/* Üst vitrin — slider (~75%) + önerilen ürün (~25%) + güven şeridi */
.home-top {
  background: #ececec;
  padding-top: 0;
  margin-top: 0;
}

.home-top__grid {
  display: grid;
  grid-template-columns: 1fr min(100%, 320px);
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 380px;
  border-bottom: 1px solid #d0d0d0;
}

@media (max-width: 960px) {
  .home-top__grid {
    grid-template-columns: 1fr;
  }

  .hero-sidebar {
    border-left: none;
    border-top: 1px solid #d8d8d8;
  }
}

.hero-slider {
  position: relative;
  min-height: min(52vw, 460px);
  height: 100%;
  overflow: hidden;
  background: #1a1a1a;
}

@media (max-width: 960px) {
  .hero-slider {
    min-height: 340px;
    height: auto;
  }
}

.hero-slider__slides {
  position: absolute;
  inset: 0;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
}

.hero-slider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slider__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 42%, transparent 78%);
  z-index: 1;
  pointer-events: none;
}

.hero-slider__content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(0.6rem, 1.5vh, 1.1rem) clamp(1.25rem, 3vw, 3rem) clamp(1.5rem, 4vw, 2.75rem);
  max-width: min(520px, 90%);
  box-sizing: border-box;
}

.hero-slider__lower {
  margin-top: auto;
  width: 100%;
  padding-top: clamp(0.5rem, 1.5vh, 1rem);
}

.hero-slider__slogan {
  position: relative;
  z-index: 3;
  margin: 20px 0 0.25rem 0;
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
  font-family: var(--font-slogan);
  font-size: clamp(1.28rem, 2.9vw, 1.88rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0.025em;
  color: #faf8f4;
  text-shadow:
    0 2px 32px rgba(0, 0, 0, 0.55),
    0 1px 0 rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  padding: 0.5rem 0.8rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(2px);
}

.hero-slider__slogan-line {
  display: block;
}

.hero-slider__slogan-line + .hero-slider__slogan-line {
  margin-top: 0.3em;
  opacity: 0.95;
  font-weight: 500;
  font-style: italic;
}

@media (max-width: 600px) {
  .hero-slider__slogan {
    font-size: clamp(1.1rem, 4.1vw, 1.55rem);
    max-width: 95%;
  }
}

.hero-slider__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 1.15rem;
  color: #fff;
}

.hero-slider__brandrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-slider__mark {
  flex-shrink: 0;
  opacity: 0.95;
}

.hero-slider__brand-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: max-content;
  max-width: calc(100% - 3rem);
  min-width: 0;
}

.hero-slider__logotype {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: none;
  line-height: 1.1;
  width: max-content;
  max-width: 100%;
}

.hero-slider__logotype-sany {
  color: #f59e0b;
}

.hero-slider__logotype-watch {
  color: #facc15;
}

.hero-slider__tagline {
  display: block;
  width: 100%;
  text-align: right;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.95vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  word-spacing: 0.1em;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 0.45rem;
}

.hero-slider__lead {
  margin: 0 0 1.25rem;
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  max-width: 38ch;
}

.hero-slider__cta {
  display: inline-block;
  align-self: flex-start;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: capitalize;
  text-decoration: none;
  color: #fff;
  background: #9b1c1c;
  border-radius: 8px;
  border: none;
  transition: background 0.2s, transform 0.15s;
}

.hero-slider__cta:hover {
  background: #b52222;
  color: #fff;
  text-decoration: none;
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.hero-slider__arrow:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hero-slider__arrow--prev {
  left: 12px;
}

.hero-slider__arrow--next {
  right: 12px;
}

.hero-sidebar {
  background: #fff;
  border-left: 1px solid #d8d8d8;
  padding: 1rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
}

.hero-sidebar__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
}

.rec-card__visual {
  position: relative;
  border: 1px solid #e2e2e2;
  background: #fafafa;
  margin-bottom: 0.75rem;
}

.rec-card__ribbon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0.35rem 0.6rem 0.35rem 0.45rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
}

.rec-card__fav {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #666;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.rec-card__fav:hover {
  color: #c41e3a;
}

.rec-card__fav.is-fav {
  color: #e11d48;
}

.rec-card__slides {
  position: relative;
  aspect-ratio: 280 / 220;
  overflow: hidden;
}

.rec-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rec-card__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

.rec-card__nav--prev {
  left: 8px;
}

.rec-card__nav--next {
  right: 8px;
}

.rec-card__name {
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  color: #333;
}

.rec-card__price {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 800;
  color: #111;
}

.rec-card__btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.rec-card__btn {
  padding: 0.55rem 0.35rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background: #2563eb;
  color: #fff;
  transition: background 0.2s;
}

.rec-card__btn:hover {
  background: #1d4ed8;
}

.trust-bar {
  background: #f4f4f4;
  border-bottom: 1px solid #ddd;
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.15rem 0;
  align-items: start;
}

@media (max-width: 900px) {
  .trust-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .trust-bar__inner {
    grid-template-columns: 1fr;
  }
}

.trust-bar__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.trust-bar__icon {
  flex-shrink: 0;
  color: #555;
}

.trust-bar__item strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.15rem;
}

.trust-bar__item span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #666;
  line-height: 1.35;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn.btn-lg {
  padding: 1rem 1.65rem;
  font-size: 0.95rem;
}

/* Sections */
.section {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.section-head p {
  color: var(--text-muted);
  margin: 0;
}

/* Shop toolbar */
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-chip {
  padding: 0.45rem 0.9rem;
  font-family: inherit;
  font-size: 0.8rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-chip:hover,
.filter-chip.is-active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.sort-select {
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 0.875rem;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  border-color: rgba(201, 162, 39, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card-media {
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, #2a2420, #1a1816);
  position: relative;
  overflow: hidden;
}

.product-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: block;
  transition: transform 0.45s ease;
}

.product-card:hover .product-card-img {
  transform: scale(1.04);
}

.product-media-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: none;
  pointer-events: none;
  background-size: cover;
  background-position: center;
}

.product-media-fallback.is-visible {
  display: block;
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.6rem;
  border-radius: 4px;
  background: var(--accent);
  color: var(--bg);
}

.product-fav {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, color 0.2s;
}

.product-fav:hover {
  background: var(--surface);
}

.product-fav.is-fav {
  color: #e85d5d;
}

.product-card-body {
  padding: 1.1rem 1.15rem 1.25rem;
}

.product-card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  line-height: 1.35;
}

.product-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent);
}

.price small {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
}

.btn-add {
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--text);
  color: var(--bg);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-add:hover {
  background: var(--accent);
}

/* Mağaza — üst vitrin / güven şeridi ile uyum (açık gri + lacivert + bordo vurgu) */
.section--shop {
  background: linear-gradient(180deg, var(--shop-bg) 0%, var(--shop-bg-deep) 100%);
  color: var(--shop-text);
  border-top: 1px solid #d8d8d8;
}

.section--shop .section-head h2 {
  color: var(--shop-navy);
}

.section--shop .section-head p {
  color: var(--shop-muted);
}

.section--shop .filter-chip {
  background: var(--shop-surface);
  border: 1px solid var(--shop-border);
  color: var(--shop-muted);
}

.section--shop .filter-chip:hover,
.section--shop .filter-chip.is-active {
  border-color: var(--shop-navy);
  color: var(--shop-navy);
  background: rgba(30, 42, 68, 0.07);
}

.section--shop .sort-select {
  background: var(--shop-surface);
  border: 1px solid var(--shop-border);
  color: var(--shop-text);
}

.section--shop .product-card {
  background: var(--shop-surface);
  border: 1px solid var(--shop-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.section--shop .product-card:hover {
  border-color: rgba(30, 42, 68, 0.25);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.section--shop .product-card-body h3 {
  color: var(--shop-text);
}

.section--shop .product-meta {
  color: var(--shop-muted);
}

.section--shop .price {
  color: var(--shop-navy);
}

.section--shop .price small {
  color: var(--shop-muted);
}

.section--shop .product-badge {
  background: var(--shop-cta);
  color: #fff;
  letter-spacing: 0.06em;
}

.section--shop .product-fav {
  background: rgba(255, 255, 255, 0.92);
  color: #555;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.section--shop .product-fav:hover {
  background: #fff;
  color: var(--shop-cta);
}

.section--shop .btn-add {
  background: var(--shop-navy);
  color: #fff;
}

.section--shop .btn-add:hover {
  background: var(--shop-cta);
  color: #fff;
}

/* Trust / about */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 800px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.two-col h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 1rem;
}

.two-col p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.list-check li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.newsletter-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.newsletter-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand-block {
  margin-bottom: 0.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.2rem;
  letter-spacing: 0.06em;
  color: #f59e0b;
}

.footer-brand__watch {
  color: #facc15;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--text-muted);
}

.footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* Cart drawer */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 200;
}

.cart-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100%;
  background: var(--bg-elevated);
  border-left: 1px solid var(--border);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid var(--border);
}

.cart-drawer-header h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0;
}

.cart-close {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem 1rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.cart-line-thumb {
  position: relative;
  width: 72px;
  height: 54px;
  border-radius: 6px;
  background: var(--surface);
  overflow: hidden;
}

.cart-line-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.cart-line-info h4 {
  font-size: 0.9rem;
  margin: 0 0 0.2rem;
  font-weight: 600;
}

.cart-line-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

.cart-line-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.cart-line-price {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
}

.cart-line-remove {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
  margin-top: 0.25rem;
}

.cart-line-remove:hover {
  color: #e85d5d;
}

.cart-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.cart-subtotal strong {
  font-size: 1.15rem;
  color: var(--accent);
}

.cart-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0.75rem 0 1rem;
}

.cart-footer .btn-primary {
  width: 100%;
}

/* Modal checkout */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: min(480px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.75rem;
  padding-top: 2.5rem;
  box-shadow: var(--shadow);
}

.modal > .cart-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.modal h2 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
}

.modal > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 1.25rem;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.modal-actions .btn {
  flex: 1;
  min-width: 120px;
}

.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  display: none;
  background: var(--surface);
  border: 1px solid var(--accent);
  color: var(--text);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  z-index: 400;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--shadow);
}

.toast.is-visible {
  display: block;
  transform: translateX(-50%) translateY(0);
}

.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;
}
