/* ============================================
   KAMIT TEKSTIL — Premium B2B Textile Website
   CSS Stylesheet
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --color-burgundy: #4A1520;
  --color-burgundy-dark: #3A1018;
  --color-burgundy-light: #6B2030;
  --color-black: #0A0A0A;
  --color-black-soft: #1A1A1A;
  --color-cream: #FBF8F3;
  --color-cream-dark: #F2EDE4;
  --color-gold: #4A1520;
  --color-gold-light: #6B2030;
  --color-white: #F5F0EA;
  --color-gray-100: #EDE8E1;
  --color-gray-200: #E5E5E5;
  --color-gray-300: #D4D4D4;
  --color-gray-400: #A3A3A3;
  --color-gray-500: #737373;
  --color-gray-600: #525252;
  --color-gray-700: #404040;
  --color-gray-800: #262626;
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #1DA851;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 900px;
  --header-height: 60px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.4s ease;
  --transition-slower: 0.6s ease;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.18);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* ---------- CSS Reset / Normalize ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.loaded {
  opacity: 1;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* ---------- Base Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-black);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }

p {
  margin-bottom: var(--space-md);
  color: var(--color-gray-600);
}

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-white { color: var(--color-white); }
.text-cream { color: var(--color-cream); }
.text-burgundy { color: var(--color-burgundy); }
.text-gold { color: var(--color-gold); }

.bg-black { background-color: var(--color-black); }
.bg-cream { background-color: var(--color-cream); }
.bg-burgundy { background-color: var(--color-burgundy); }
.bg-white { background-color: var(--color-white); }
.bg-dark { background-color: var(--color-black-soft); }

.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-3xl); }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-3xl); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- Section Title Component ---------- */
.section-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: var(--color-gold);
}

.section-tag--center {
  justify-content: center;
}

.section-tag--light {
  color: var(--color-gold-light);
}

.section-tag--light::before {
  background-color: var(--color-gold-light);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-gray-500);
  max-width: 600px;
}

.section-subtitle--center {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-burgundy);
  color: var(--color-white);
  border: 2px solid var(--color-burgundy);
}

.btn--primary:hover {
  background-color: var(--color-burgundy-dark);
  border-color: var(--color-burgundy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background-color: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background-color: transparent;
  color: var(--color-black);
  border: 2px solid var(--color-black);
}

.btn--outline-dark:hover {
  background-color: var(--color-black);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-burgundy);
  border: 2px solid var(--color-white);
}

.btn--white:hover {
  background-color: transparent;
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background-color: var(--color-whatsapp);
  color: var(--color-white);
  border: 2px solid var(--color-whatsapp);
}

.btn--whatsapp:hover {
  background-color: var(--color-whatsapp-dark);
  border-color: var(--color-whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ---------- Header / Navbar ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 var(--space-xl);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
}

/* Homepage: start transparent, darken on scroll */
.header--transparent {
  background-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.header.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header__inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  position: relative;
  line-height: 1;
  color: var(--color-white);
}

.header__logo-img {
  height: 34px;
  width: auto;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.header__logo-main {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding-left: 64px;
  text-shadow: 0 0 0.5px currentColor;
}

.header__logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 2px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.header__nav-link {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-base);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: width var(--transition-base);
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--color-white);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

/* ---------- Ürünler Dropdown ---------- */
.header__nav-item--dropdown {
  position: relative;
}

.header__nav-link--btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.header__nav-arrow {
  font-size: 0.6rem;
  opacity: 0.6;
  transition: transform 0.25s ease;
  display: inline-block;
}

.header__nav-item--dropdown.open .header__nav-arrow {
  transform: rotate(180deg);
}

.header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  padding-top: 16px;
  transform: translateX(-50%) translateY(-8px);
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  min-width: 200px;
  padding: var(--space-sm) 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 200;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.header__nav-item--dropdown.open .header__dropdown,
.header__nav-item--dropdown:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.header__dropdown-link {
  display: block;
  padding: 10px var(--space-xl);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.18s, background 0.18s;
  white-space: nowrap;
}

.header__dropdown-link:hover {
  color: var(--color-gold);
  background: rgba(255, 255, 255, 0.04);
}

/* ---------- Header Lang ---------- */
.header__lang {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.header__lang a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-base);
}

.header__lang a:hover,
.header__lang a.active {
  color: var(--color-white);
}

.header__lang-divider {
  color: rgba(255, 255, 255, 0.3);
}

/* Mobile Menu Toggle */
.header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.header__menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  transition: all var(--transition-base);
  transform-origin: center;
}

.header__menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0f1a;
}

/* Video arka plan */
.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Rolo slideshow */
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero__slide--active {
  opacity: 1;
}

.hero__slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Mobil videolar masaüstünde gizli */
.hero__slide-video--mobile { display: none; }

/* Bordo masaüstü videosu yatay aynalama */
.hero__slide--bordo .hero__slide-video--desktop { transform: scaleX(-1); }

@media (max-width: 768px) {
  /* Masaüstü video mobilde gizli */
  .hero__slide-video--desktop { display: none; }
  /* Mobil videolar görünür ve tam ekran kaplar */
  .hero__slide-video--mobile {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  /* Desktop background-image'ları kaldır (video gösterilsin) */
  .hero__slide--bej,
  .hero__slide--bordo,
  .hero__slide--kahve,
  .hero__slide--yesil,
  .hero__slide--sari {
    background-image: none !important;
  }
}

/* Metin okunabilirliği için gradient karartma (canvas üstünde) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(8, 14, 30, 0.62) 0%,
      rgba(8, 14, 30, 0.35) 45%,
      rgba(8, 14, 30, 0.05) 75%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.18) 0%,
      transparent 30%,
      transparent 70%,
      rgba(0, 0, 0, 0.28) 100%
    );
  z-index: 2;
  pointer-events: none;
}

/* İnce film-grain doku */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.004) 1px,
      rgba(255, 255, 255, 0.004) 2px
    );
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 800px;
  padding: var(--space-xl);
}

.hero__em {
  font-style: normal;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: 1px;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-2xl);
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Wave SVG */
.hero__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 4;
  z-index: 3;
  line-height: 0;
}

.hero__wave svg {
  width: 100%;
  height: 80px;
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}

.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
}

/* Inner pages: offset for fixed header when no page-hero */
main > .section:first-child,
main > .about-section:first-child {
  padding-top: calc(var(--header-height) + var(--space-4xl));
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.015) 2px,
      rgba(255, 255, 255, 0.015) 4px
    ),
    linear-gradient(135deg, #12100a 0%, #1e1810 40%, #0a0a0a 100%);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 80%, rgba(196, 168, 130, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-white);
  position: relative;
  z-index: 2;
}

.page-hero__breadcrumb {
  position: relative;
  z-index: 2;
  margin-top: var(--space-lg);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-base);
}

.page-hero__breadcrumb a:hover {
  color: var(--color-gold);
}

.page-hero__breadcrumb span {
  margin: 0 var(--space-sm);
  color: rgba(255, 255, 255, 0.3);
}

/* ---------- Marquee / Ticker ---------- */
.marquee {
  background-color: var(--color-black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-md) 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  animation: marqueeScroll 30s linear infinite;
}

.marquee__text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  padding-right: var(--space-2xl);
  white-space: nowrap;
}

/* ---------- Value Proposition Section ---------- */
.section {
  padding: var(--space-5xl) 0;
}

.section--cream {
  background-color: var(--color-cream);
}

.section--dark {
  background-color: var(--color-black-soft);
}

.section--burgundy {
  background-color: #4A1520;
  position: relative;
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
}

.feature-card {
  text-align: center;
  padding: var(--space-2xl);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  color: var(--color-gold);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--color-black);
}

.feature-card__text {
  font-size: 0.9rem;
  color: var(--color-gray-500);
  line-height: 1.7;
}

/* ---------- Value Split (Homepage Section 3) ---------- */
.value-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.value-split__left {
  position: sticky;
  top: 120px;
}

.value-split__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: var(--space-lg) 0 var(--space-xl);
}

.value-split__heading em {
  font-style: italic;
  color: var(--color-burgundy);
}

.value-split__lead {
  font-size: 1rem;
  color: var(--color-gray-500);
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: var(--space-xl);
}

.value-split__cta {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-burgundy);
  text-decoration: none;
  border-bottom: 1px solid var(--color-burgundy);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.value-split__cta:hover {
  opacity: 0.65;
}

.value-split__right {
  display: flex;
  flex-direction: column;
}

.value-item {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-2xl) 0;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  align-items: flex-start;
}

.value-item:last-child {
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.value-item__num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-burgundy);
  opacity: 0.7;
  padding-top: 4px;
  flex-shrink: 0;
  width: 28px;
}

.value-item__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.value-item__text {
  font-size: 0.9rem;
  color: var(--color-gray-500);
  line-height: 1.7;
  margin: 0;
}

/* ---------- Product Cards (Overlay style) ---------- */
.pcard {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1 / 1;
  text-decoration: none;
  background: #111;
}

.pcard__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.pcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}

.pcard:hover .pcard__img img {
  transform: scale(1.07);
}

.pcard__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.05) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  transition: background 0.4s ease;
}

.pcard:hover .pcard__overlay {
  background: linear-gradient(to top, rgba(74,21,32,0.92) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.1) 100%);
}

.pcard__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-sm);
  display: block;
  transform: translateY(4px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.pcard:hover .pcard__tag {
  transform: translateY(0);
  opacity: 1;
}

.pcard__name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-white);
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.01em;
}

.pcard__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0 0 var(--space-md);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease;
}

.pcard:hover .pcard__desc {
  max-height: 80px;
  opacity: 1;
}

.pcard__cta {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-white);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.pcard:hover .pcard__cta {
  opacity: 1;
}

/* ---------- Product Cards ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.products-note {
  text-align: right;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: var(--space-lg);
  font-style: italic;
}

.product-card {
  background-color: var(--color-black);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-slow);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border-color: rgba(201, 169, 110, 0.2);
}

.product-card__image {
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

/* Different placeholder colors for each product */
.product-card__image--waffle {
  background: linear-gradient(135deg, #1e1810 0%, #15120e 100%);
}
.product-card__image--selanik {
  background: linear-gradient(135deg, #2B2D3D 0%, #1E1E2A 100%);
}
.product-card__image--dalgic {
  background: linear-gradient(135deg, #2B3D2F 0%, #1E2A20 100%);
}
.product-card__image--scuba {
  background: linear-gradient(135deg, #3D3B2B 0%, #2A281E 100%);
}
.product-card__image--kaskorse {
  background: linear-gradient(135deg, #28221a 0%, #15120e 100%);
}
.product-card__image--oysho {
  background: linear-gradient(135deg, #28221a 0%, #1E252A 100%);
}

.product-card__body {
  padding: var(--space-xl);
  transition: background 0.35s ease;
}

.product-card:hover .product-card__body {
  background: #fff;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  transition: color 0.35s ease;
}

.product-card:hover .product-card__name {
  color: var(--color-burgundy);
}

.product-card__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  transition: color 0.35s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card:hover .product-card__desc {
  color: #555;
}

.product-card__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  transition: gap var(--transition-base), color 0.35s ease;
}

.product-card:hover .product-card__link {
  color: var(--color-burgundy);
}

.product-card__link:hover {
  gap: var(--space-md);
}

/* Products overview page — larger cards */
.products-grid--large .product-card__image {
  height: 300px;
}

.products-grid--large .product-card__body {
  padding: var(--space-xl) var(--space-xl) var(--space-2xl);
}

/* ---------- Dikey Ürün Listesi (urunler.html) ---------- */
.product-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-3xl);
}

.product-list-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background var(--transition-base);
  position: relative;
  overflow: hidden;
}

.product-list-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.product-list-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.product-list-item:hover .product-list-item__arrow {
  transform: translateX(6px);
  color: var(--color-gold);
}

/* Çift numaralı ürünlerde görsel sağda */
.product-list-item:nth-child(even) {
  direction: rtl;
}
.product-list-item:nth-child(even) > * {
  direction: ltr;
}

.product-list-item__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.product-list-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-list-item__image--waffle  { background: linear-gradient(135deg, #1e1810 0%, #15120e 100%); }
.product-list-item__image--selanik { background: linear-gradient(135deg, #2B2D3D 0%, #1E1E2A 100%); }
.product-list-item__image--dalgic  { background: linear-gradient(135deg, #2B3D2F 0%, #1E2A20 100%); }
.product-list-item__image--scuba   { background: linear-gradient(135deg, #3D3B2B 0%, #2A281E 100%); }
.product-list-item__image--kaskorse{ background: linear-gradient(135deg, #28221a 0%, #15120e 100%); }
.product-list-item__image--oysho   { background: linear-gradient(135deg, #28221a 0%, #1E252A 100%); }

.product-list-item__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-3xl) var(--space-3xl);
  background-color: var(--color-black);
}

.product-list-item__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.04em;
}

.product-list-item__name {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.product-list-item__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  max-width: 420px;
}

.product-list-item__arrow {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  transition: transform var(--transition-base), color var(--transition-base);
  display: inline-block;
}

/* Mobil: tek sütun */
@media (max-width: 768px) {
  .product-list-item {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .product-list-item:nth-child(even) {
    direction: ltr;
  }
  .product-list-item__image {
    min-height: 220px;
  }
  .product-list-item__body {
    padding: var(--space-2xl) var(--space-xl);
  }
  .product-list-item__number {
    font-size: 2rem;
  }
}

/* ---------- Responsibility Cards ---------- */
.section--resp {
  background-image: url('../images/yumusak-katmanlar.png');
  background-size: cover;
  background-position: center;
  position: relative;
}

.section--resp::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(251, 248, 243, 0.55);
}

.section--resp .container {
  position: relative;
}

.section--compact {
  padding: var(--space-2xl) 0;
}

.resp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
}

.resp-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.resp-card__icon {
  width: 32px;
  height: 32px;
  color: var(--color-burgundy);
  flex-shrink: 0;
}

.resp-card__icon svg {
  width: 100%;
  height: 100%;
}

.resp-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-black);
  letter-spacing: -0.01em;
}

.resp-card__text {
  font-size: 0.85rem;
  color: var(--color-gray-500);
  line-height: 1.7;
  margin: 0;
}

/* ---------- Gallery Section ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-md);
  margin-top: var(--space-3xl);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform var(--transition-base);
  height: 260px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(196, 168, 130, 0);
  transition: background var(--transition-base);
}

.gallery-item:hover::after {
  background: rgba(196, 168, 130, 0.15);
}

/* Home page gallery mosaic — uniform grid */
.gallery-grid--mosaic .gallery-item:nth-child(1) {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item__placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
}

/* Gallery placeholder colors */
.gallery-item__placeholder--1 { background: linear-gradient(135deg, #1e1810 0%, #2e2820 100%); }
.gallery-item__placeholder--2 { background: linear-gradient(135deg, #2B2D3D 0%, #353748 100%); }
.gallery-item__placeholder--3 { background: linear-gradient(135deg, #3D3B2B 0%, #4A4835 100%); }
.gallery-item__placeholder--4 { background: linear-gradient(135deg, #2B3D2F 0%, #354A39 100%); }
.gallery-item__placeholder--5 { background: linear-gradient(135deg, #28221a 0%, #3a3228 100%); }
.gallery-item__placeholder--6 { background: linear-gradient(135deg, #28221a 0%, #354048 100%); }
.gallery-item__placeholder--7 { background: linear-gradient(135deg, #352B3D 0%, #403548 100%); }
.gallery-item__placeholder--8 { background: linear-gradient(135deg, #2B3D35 0%, #354A40 100%); }
.gallery-item__placeholder--9 { background: linear-gradient(135deg, #3D302B 0%, #4A3A35 100%); }
.gallery-item__placeholder--10 { background: linear-gradient(135deg, #2D2B3D 0%, #373548 100%); }
.gallery-item__placeholder--11 { background: linear-gradient(135deg, #3D2B30 0%, #4A353A 100%); }
.gallery-item__placeholder--12 { background: linear-gradient(135deg, #2B3A3D 0%, #354548 100%); }

/* Full gallery page — uniform grid */
.gallery-grid--full {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-grid--full .gallery-item {
  height: 260px;
}

.gallery-grid--full .gallery-item__placeholder {
  min-height: 250px;
}

/* Gallery sections (by fabric type) */
.gallery-section {
  margin-top: var(--space-3xl);
}

.gallery-section__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.04em;
}

.gallery-section .gallery-grid {
  margin-top: 0;
}

/* ---------- CTA Band ---------- */
.cta-band {
  padding: var(--space-5xl) 0;
  text-align: center;
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.cta-band__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cta-band__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(74, 21, 32, 0.72);
  z-index: 1;
}

.cta-band__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.cta-band__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-band__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-2xl);
}

.cta-band__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background-color: var(--color-black);
  padding: var(--space-4xl) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
}

.footer__logo {
  display: flex;
  align-items: center;
  position: relative;
  line-height: 1;
  margin-bottom: var(--space-lg);
}

.footer__logo-img {
  height: 28px;
  width: auto;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer__logo-main {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-white);
  padding-left: 56px;
}

.footer__logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 4px;
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-xl);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-base);
}

.footer__link:hover {
  color: var(--color-gold);
}

.footer__contact-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
}

.footer__whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding: 10px 20px;
  background-color: var(--color-whatsapp);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all var(--transition-base);
}

.footer__whatsapp-btn:hover {
  background-color: var(--color-whatsapp-dark);
  transform: translateY(-2px);
}

.footer__instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  padding: 10px 20px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all var(--transition-base);
}

.footer__instagram-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.footer__bottom {
  margin-top: var(--space-3xl);
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-base);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--color-white);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox__content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__image {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
}

.lightbox__placeholder {
  width: 70vw;
  max-width: 800px;
  height: 60vh;
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2001;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background var(--transition-base);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background var(--transition-base);
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__nav--prev {
  left: 20px;
}

.lightbox__nav--next {
  right: 20px;
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  margin-top: var(--space-3xl);
}

/* Harita masaüstünde iki kolonu kaplar */
.contact-layout__map {
  grid-column: 1 / -1;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.contact-form__group {
  margin-bottom: var(--space-lg);
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.contact-form__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--color-gray-600);
  margin-bottom: var(--space-sm);
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 14px 16px;
  background-color: var(--color-cream);
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--color-black);
  transition: border-color var(--transition-base);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--color-burgundy);
  background-color: var(--color-white);
}

.contact-form__textarea {
  height: 140px;
  resize: vertical;
}

.contact-info-section {
  padding-left: var(--space-2xl);
}


.contact-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-xl);
}

.contact-info-item__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-cream);
  border-radius: 50%;
}

.contact-info-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-burgundy);
  fill: none;
  stroke-width: 1.5;
}

.contact-info-item__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-gray-400);
  margin-bottom: 4px;
}

.contact-info-item__value {
  font-size: 0.95rem;
  color: var(--color-black);
  line-height: 1.5;
}

.contact-info-item__value a {
  color: var(--color-burgundy);
}

.contact-info-item__value a:hover {
  color: var(--color-burgundy-dark);
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background-color: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--color-gray-400);
  margin-top: var(--space-3xl);
  border: 1px dashed var(--color-gray-300);
}

/* ---------- Product Detail Page ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
  margin-top: var(--space-3xl);
}

.product-detail__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
  position: sticky;
  top: 120px;
  overflow: hidden;
}

/* ── Product Carousel ───────────────────────────────────────── */
.product-carousel {
  position: relative;
  overflow: hidden;
}

.product-carousel__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  opacity: 0;
  transition: opacity 0.9s ease;
}

.product-carousel__img--active {
  opacity: 1;
}

.product-carousel__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.product-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.product-carousel__dot--active {
  background: rgba(255, 255, 255, 0.95);
  transform: scale(1.25);
}

.product-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
  padding: 0;
}

.product-carousel__arrow:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.product-carousel__arrow--prev { left: 12px; }
.product-carousel__arrow--next { right: 12px; }

.product-carousel__arrow svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─────────────────────────────────────────────────────────── */

.product-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}

.product-detail__badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: var(--color-cream);
  color: var(--color-burgundy);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-lg);
}

.product-detail__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.product-detail__desc {
  font-size: 0.95rem;
  color: var(--color-gray-600);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

.product-detail__specs {
  margin-bottom: var(--space-2xl);
}

.product-detail__specs-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gray-400);
  margin-bottom: var(--space-md);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--color-gray-200);
}

.specs-table td {
  padding: 12px 0;
  font-size: 0.9rem;
}

.specs-table td:first-child {
  font-weight: 500;
  color: var(--color-black);
  width: 40%;
}

.specs-table td:last-child {
  color: var(--color-gray-600);
}

.product-detail__uses-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gray-400);
  margin-bottom: var(--space-md);
}

.product-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.product-detail__tag {
  padding: 8px 16px;
  background-color: var(--color-cream);
  color: var(--color-gray-600);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Product Info Block (Waffle Nedir? vb.) */
.product-info-block {
  margin-top: var(--space-4xl);
  padding-top: var(--space-3xl);
  border-top: 1px solid var(--color-gray-200);
  max-width: 780px;
}

.product-info-block__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: var(--space-lg);
}

.product-info-block__text {
  font-size: 0.975rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.product-info-block__text:last-child {
  margin-bottom: 0;
}

/* Related Products */
.related-products {
  margin-top: var(--space-4xl);
  padding-top: var(--space-3xl);
  border-top: 1px solid var(--color-gray-200);
}

/* ---------- About Page ---------- */
.about-section {
  padding: var(--space-4xl) 0;
}

.about-section--story {
  position: relative;
  padding: var(--space-5xl) 0;
  background-image: url('../images/yumusak-katmanlar.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-section--story::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(251, 248, 243, 0.87);
  z-index: 0;
}

.about-section--story .container {
  position: relative;
  z-index: 1;
}

.about-story__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--color-black);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-2xl);
  line-height: 1.1;
}

.about-story__body {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.about-story__body p {
  font-size: 1rem;
  color: var(--color-gray-600);
  line-height: 2;
  margin-bottom: var(--space-lg);
}

.about-story__body p:last-child {
  margin-bottom: 0;
}

.about-section--bordered {
  border-bottom: 1px solid var(--color-gray-200);
}

.about-section--compact {
  padding: var(--space-3xl) 0;
}

.about-text {
  font-size: 1.1rem;
  color: var(--color-gray-600);
  line-height: 1.9;
  max-width: 800px;
}

.about-text--center {
  margin: 0 auto;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.about-card {
  padding: var(--space-2xl);
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.about-card:hover {
  border-color: var(--color-burgundy);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.about-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-cream);
  border-radius: 50%;
  margin-bottom: var(--space-lg);
}

.about-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-burgundy);
  fill: none;
  stroke-width: 1.5;
}

.about-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-black);
}

.about-card__text {
  font-size: 0.85rem;
  color: var(--color-gray-500);
  line-height: 1.7;
}

/* ---------- Reveal / Scroll Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Animation Keyframes ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fabricWave {
  0% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(-5px) translateY(2px); }
  50% { transform: translateX(0) translateY(-2px); }
  75% { transform: translateX(5px) translateY(2px); }
  100% { transform: translateX(0) translateY(0); }
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes imageReveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.55), 0 0 0 12px rgba(37, 211, 102, 0.08); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
}

@keyframes waveAnimate {
  0% { d: path("M0,40 C150,80 350,0 500,40 C650,80 850,0 1000,40 C1150,80 1350,0 1500,40 L1500,100 L0,100 Z"); }
  50% { d: path("M0,50 C150,10 350,70 500,30 C650,0 850,60 1000,30 C1150,10 1350,60 1500,40 L1500,100 L0,100 Z"); }
  100% { d: path("M0,40 C150,80 350,0 500,40 C650,80 850,0 1000,40 C1150,80 1350,0 1500,40 L1500,100 L0,100 Z"); }
}

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

/* Tablet: 768px */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .header__menu-toggle {
    display: flex;
    margin-right: -8px;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--color-black);
    flex-direction: column;
    padding: 100px var(--space-2xl) var(--space-2xl);
    transition: right var(--transition-slow);
    gap: var(--space-2xl);
  }

  .header__nav.open {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .header__nav-link {
    font-size: 1rem;
  }

  /* Mobil dropdown — nav içinde alt alta sıralanır */
  .header__dropdown,
  .header__nav-item--dropdown:hover .header__dropdown {
    display: none;
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: var(--space-sm) 0 0;
    transition: none;
  }

  .header__nav-item--dropdown.open .header__dropdown {
    display: block;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .header__dropdown-link {
    display: block;
    padding: 10px var(--space-lg);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    border-left: 2px solid rgba(255, 255, 255, 0.12);
    margin-left: var(--space-md);
    white-space: normal;
  }

  .header__dropdown-link:hover {
    color: var(--color-white);
    background: transparent;
  }

  /* Ürün/iç sayfalarda header altındaki fazla boşluğu azalt */
  main > .section:first-child,
  main > .about-section:first-child {
    padding-top: calc(var(--header-height) + var(--space-xl));
  }

  .hero {
    min-height: 100svh;
    min-height: 100vh;
    background: #0c1726;
  }

  .hero__content {
    padding: var(--space-2xl) var(--space-lg);
    padding-top: calc(var(--header-height) + var(--space-2xl));
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero__buttons .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .value-split {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .value-split__left {
    position: static;
  }

  .value-split__heading {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pcard {
    aspect-ratio: 2 / 3;
  }

  .resp-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid--mosaic .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-grid--full .gallery-item:nth-child(1),
  .gallery-grid--full .gallery-item:nth-child(5),
  .gallery-grid--full .gallery-item:nth-child(8) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  /* Mobil iletişim: bilgiler üstte, harita ortada, form altta */
  .contact-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
  }

  .contact-layout__info  { order: 1; }
  .contact-layout__map   { order: 2; }
  .contact-layout__form  { order: 3; }

  .contact-info-section {
    padding-left: 0;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-detail__image {
    position: static;
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: var(--space-3xl) 0;
  }
}

/* Mobile: small screens */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero__scroll {
    bottom: 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item {
    height: 180px;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
  }

  .gallery-grid--mosaic .gallery-item:nth-child(1) {
    grid-column: span 1;
  }

  .gallery-grid--full .gallery-item:nth-child(1),
  .gallery-grid--full .gallery-item:nth-child(5),
  .gallery-grid--full .gallery-item:nth-child(8) {
    grid-column: span 1;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .products-grid {
    gap: var(--space-md);
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

/* Desktop: 1200px+ */
@media (min-width: 1200px) {
  .features-grid {
    gap: var(--space-3xl);
  }

  .products-grid {
    gap: var(--space-2xl);
  }
}

/* Overlay for mobile menu */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ---------- Print Styles ---------- */
@media print {
  .header,
  .whatsapp-float,
  .hero__wave,
  .hero__scroll,
  .marquee {
    display: none;
  }

  body {
    opacity: 1;
  }

  .hero {
    min-height: auto;
    padding: var(--space-2xl) 0;
  }
}
