/* =====================================================
   KADSU DESIGN — GLOBAL STYLE
   ===================================================== */

:root {
  --kds-font-heading: "Cormorant Garamond", Georgia, serif;
  --kds-font-body: "Manrope", Arial, sans-serif;

  --kds-color-text: #171717;
  --kds-color-muted: #737373;
  --kds-color-background: #ffffff;
  --kds-color-surface: #f6f4f1;
  /* SAYFA BÖLÜMLERİ ARASI STANDART GEÇİŞ */
  --kds-section-gap: 24px;
  --kds-section-gap-tablet: 18px;
  --kds-section-gap-mobile: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background-color: var(--kds-color-background);
  color: var(--kds-color-text);
  font-family: var(--kds-font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
  font: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

/* GENEL BAŞLIK SİSTEMİ */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-family: var(--kds-font-heading);
  font-weight: 500;
}

/* =====================================================
   HERO
   ===================================================== */

.kds-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: calc(
    100dvh - var(--kds-announcement-height, 30px) -
      var(--kds-header-height, 80px)
  );
  min-height: 560px;
  overflow: hidden;
  background-color: #e8e3dc;
}

.kds-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.kds-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.58) 0%,
    rgba(0, 0, 0, 0.3) 30%,
    rgba(0, 0, 0, 0.06) 62%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.kds-hero-content {
  position: absolute;
  top: 50%;
  left: clamp(32px, 6vw, 100px);
  z-index: 2;
  width: min(520px, 44vw);
  transform: translateY(-50%);
  color: #ffffff;
}

.kds-hero-eyebrow {
  margin: 0 0 14px;
  font-family: var(--kds-font-body);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.kds-hero-content h1 {
  margin: 0 0 16px;
  color: #ffffff;
  font-family: var(--kds-font-heading);
  font-size: clamp(44px, 4.5vw, 70px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.8px;
}

.kds-hero-subtitle {
  max-width: 420px;
  margin: 0 0 30px;
  font-family: var(--kds-font-body);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 300;
  line-height: 1.7;
}

.kds-hero-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background-color: rgba(0, 0, 0, 0.08);
  color: #ffffff;
  font-family: var(--kds-font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.3px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    gap 180ms ease;
}

.kds-hero-button:hover,
.kds-hero-button:focus-visible {
  gap: 24px;
  border-color: #ffffff;
  background-color: #ffffff;
  color: #111111;
}

.kds-hero-button span {
  font-size: 17px;
  line-height: 1;
}

/* =====================================================
   ORTAK LUXURY TYPOGRAPHY
   ===================================================== */

.kds-category-card h2,
.kds-campaign-banner-content h2,
.kds-new-collection-header h2,
.kds-best-seller-header h2 {
  font-family: var(--kds-font-heading);
  font-weight: 500;
}

.kds-new-collection-header h2,
.kds-best-seller-header h2 {
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1;
  letter-spacing: -0.4px;
}

.kds-category-card h2 {
  font-size: clamp(38px, 3.4vw, 54px);
  line-height: 0.96;
  letter-spacing: -0.4px;
}

.kds-campaign-banner-content h2 {
  font-size: clamp(42px, 4.6vw, 70px);
  line-height: 0.96;
  letter-spacing: -0.6px;
}

.kds-main-menu a,
.kds-announcement,
.kds-section-eyebrow,
.kds-section-link,
.kds-category-card-eyebrow,
.kds-category-card-link,
.kds-campaign-banner-eyebrow,
.kds-campaign-banner-button {
  font-family: var(--kds-font-body);
}

/* ÜRÜN KARTI */
.kds-product-info h3 {
  margin: 0 0 5px;
  font-family: var(--kds-font-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1px;
}

.kds-product-info p {
  margin: 0;
  color: var(--kds-color-muted);
  font-family: var(--kds-font-body);
  font-size: 8px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 1024px) {
  .kds-hero {
    min-height: 520px;
  }

  .kds-hero-image {
    object-position: 44% center;
  }

  .kds-hero-content {
    left: 36px;
    width: min(480px, 62vw);
  }

  .kds-hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.3) 52%,
      rgba(0, 0, 0, 0) 100%
    );
  }
}

/* =====================================================
   TELEFON
   ===================================================== */

@media (max-width: 600px) {
  .kds-hero {
    height: calc(
      100svh - var(--kds-announcement-height, 30px) -
        var(--kds-header-height, 68px)
    );
    min-height: 520px;
  }

  .kds-hero-image {
    object-position: 42% center;
  }

  .kds-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.16) 42%,
      rgba(0, 0, 0, 0.72) 100%
    );
  }

  .kds-hero-content {
    top: auto;
    right: 20px;
    bottom: 36px;
    left: 20px;
    width: auto;
    transform: none;
  }

  .kds-hero-eyebrow {
    margin-bottom: 10px;
    font-size: 9px;
  }

  .kds-hero-content h1 {
    margin-bottom: 12px;
    font-size: clamp(38px, 12vw, 54px);
  }

  .kds-hero-subtitle {
    margin-bottom: 22px;
    font-size: 13px;
    line-height: 1.6;
  }

  .kds-hero-button {
    min-height: 45px;
    padding: 0 17px;
    font-size: 8px;
  }

  .kds-new-collection-header h2,
  .kds-best-seller-header h2 {
    font-size: 32px;
  }

  .kds-category-card h2 {
    font-size: 38px;
  }

  .kds-campaign-banner-content h2 {
    font-size: 42px;
  }
}
