/* ============================================================
   NIZAM KARDEŞLER ORMAN ÜRÜNLERİ — PREMIUM DESIGN SYSTEM
   1972'den Beri Güven ve Kalite
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Colors — Natural Wood & Forest */
  --color-walnut: #3E2723;
  --color-walnut-light: #5D4037;
  --color-walnut-lighter: #6D4C41;
  --color-oak: #8D6E63;
  --color-oak-light: #A1887F;
  --color-forest: #2E7D32;
  --color-forest-dark: #1B5E20;
  --color-forest-light: #4CAF50;
  --color-cream: #FFF8E1;
  --color-cream-dark: #FFF3C4;
  --color-sand: #F5E6D3;
  --color-sand-dark: #E8D5C0;
  --color-charcoal: #212121;
  --color-charcoal-light: #424242;
  --color-white: #FFFFFF;
  --color-off-white: #FAFAFA;
  --color-warm-gray: #795548;
  --color-warm-gray-light: #8D6E63;
  --color-border: #E0D6CC;
  --color-border-light: #F0EBE5;
  --color-overlay: rgba(30, 20, 10, 0.7);
  --color-overlay-light: rgba(62, 39, 35, 0.85);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Segoe UI', Tahoma, sans-serif;

  /* Font Sizes — Fluid */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8rem);
  --text-sm: clamp(0.85rem, 0.8rem + 0.25vw, 0.9rem);
  --text-base: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  --text-lg: clamp(1.1rem, 1rem + 0.5vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  --text-3xl: clamp(1.8rem, 1.4rem + 2vw, 2.5rem);
  --text-4xl: clamp(2.2rem, 1.6rem + 3vw, 3.2rem);
  --text-5xl: clamp(2.5rem, 1.8rem + 3.5vw, 4rem);
  --text-6xl: clamp(3rem, 2rem + 5vw, 5rem);

  /* 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;
  --space-section: clamp(4rem, 3rem + 5vw, 8rem);

  /* Layout */
  --max-width: 1280px;
  --max-width-narrow: 900px;
  --container-padding: clamp(1rem, 0.5rem + 2.5vw, 2rem);
  --header-height: 80px;

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;

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

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-slower: 600ms ease;

  /* Z-Index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal-backdrop: 1900;
  --z-modal: 2000;
  --z-tooltip: 2100;
  --z-whatsapp: 900;
  --z-header: 1000;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-charcoal);
  background-color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a,
[data-page],
[data-product] {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-walnut);
}

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

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

.section {
  padding: var(--space-section) 0;
  overflow-x: hidden;
}

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

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

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

.section--walnut h2,
.section--walnut h3,
.section--walnut h4 {
  color: var(--color-cream);
}

.section--walnut .section__subtitle {
  color: var(--color-oak-light);
}

.section--why-us {
  position: relative;
  background-image: url('../images/why_us_bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--color-white);
}

.section--why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 20, 10, 0.78);
  z-index: 1;
}

.section--why-us .container {
  position: relative;
  z-index: 2;
}

.section--why-us .section__title,
.section--why-us .why-card__title {
  color: var(--color-white);
}

.section--why-us .section__subtitle,
.section--why-us .why-card__desc {
  color: rgba(255, 255, 255, 0.7);
}

.section--why-us .why-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

.section--why-us .why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-forest-light);
}

.section--why-us .section__overline {
  color: var(--color-forest-light);
}

.section--why-us .section__overline::before,
.section--why-us .section__overline::after {
  background: var(--color-forest-light);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section__overline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-forest);
  margin-bottom: var(--space-md);
}

.section__overline::before,
.section__overline::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--color-forest);
}

.section__title {
  font-size: var(--text-4xl);
  color: var(--color-walnut);
  margin-bottom: var(--space-md);
}

.section__subtitle {
  font-size: var(--text-lg);
  color: var(--color-warm-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
}

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

.btn--primary:hover {
  background: var(--color-forest-dark);
  border-color: var(--color-forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
}

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

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

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

.btn--outline:hover {
  background: var(--color-walnut);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: var(--text-lg);
}

.btn--sm {
  padding: 0.6rem 1.5rem;
  font-size: var(--text-sm);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  transition: all var(--transition-slow);
}

.header__top {
  background: var(--color-walnut);
  padding: 0.4rem 0;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-base);
}

.header__top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__top-contact {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.header__top-contact a {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 6px;
}

.header__top-contact a:hover {
  color: var(--color-white);
}

.header__top-social {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header__top-social a {
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.header__top-social a:hover {
  color: var(--color-white);
  transform: translateY(-1px);
}

.header__main {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  transition: all var(--transition-slow);
}

.header__main-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

.header__logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-forest), var(--color-forest-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  transition: transform var(--transition-base);
}

.header__logo:hover .header__logo-icon {
  transform: scale(1.05);
}

.header__logo-text {
  display: flex;
  flex-direction: column;
}

.header__logo-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-walnut);
  line-height: 1.2;
}

.header__logo-subtitle {
  font-size: 0.7rem;
  color: var(--color-warm-gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 0.9rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-charcoal);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-forest);
  background: rgba(46, 125, 50, 0.06);
}

.nav__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-base);
}

.nav__item:hover .nav__link svg {
  transform: rotate(180deg);
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border-light);
  padding: var(--space-sm);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  pointer-events: none;
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-charcoal);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.nav__dropdown-item:hover {
  background: var(--color-cream);
  color: var(--color-forest);
}

.nav__dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.nav__cta {
  margin-left: var(--space-md);
}

/* Mobile Menu Button */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: calc(var(--z-header) + 10);
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Header Scrolled State */
.header--scrolled .header__top {
  transform: translateY(-100%);
  height: 0;
  padding: 0;
  overflow: hidden;
}

.header--scrolled .header__main {
  box-shadow: var(--shadow-md);
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
  overflow: hidden;
  background: var(--color-walnut);
}

.hero__slider {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__slide--active {
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero__slide--active img {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 20, 10, 0.8) 0%,
    rgba(62, 39, 35, 0.6) 50%,
    rgba(30, 20, 10, 0.75) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: calc(var(--header-height) + 40px);
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  color: var(--color-cream);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-xl);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  color: var(--color-forest-light);
}

.hero__title {
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.hero__title span {
  display: inline;
  color: var(--color-forest-light);
}

.hero__description {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Hero Slider Indicators */
.hero__indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: var(--space-sm);
}

.hero__indicator {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition-base);
}

.hero__indicator--active {
  background: var(--color-white);
  width: 60px;
}

/* ---- Stats Section ---- */
.stats {
  background: var(--color-walnut);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-oak), transparent);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.stats__item {
  padding: var(--space-lg);
  position: relative;
}

.stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.stats__number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-cream);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stats__number span {
  color: var(--color-forest-light);
}

.stats__label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---- Products Grid ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.product-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slower);
}

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

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(62, 39, 35, 0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.product-card:hover .product-card__overlay {
  opacity: 1;
}

.product-card__badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--color-forest);
  color: var(--color-white);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: var(--text-xs);
  font-weight: 600;
}

.product-card__body {
  padding: var(--space-lg);
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-walnut);
  margin-bottom: var(--space-sm);
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--color-warm-gray);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-forest);
  transition: gap var(--transition-base);
}

.product-card:hover .product-card__link {
  gap: 10px;
}

.product-card__link svg {
  width: 16px;
  height: 16px;
}

/* ---- Why Choose Us ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.why-card {
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
  text-align: center;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-forest);
}

.why-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-cream), var(--color-sand));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--color-forest);
  transition: all var(--transition-base);
}

.why-card:hover .why-card__icon {
  background: linear-gradient(135deg, var(--color-forest), var(--color-forest-dark));
  color: var(--color-white);
  transform: scale(1.1);
}

.why-card__icon svg {
  width: 28px;
  height: 28px;
}

.why-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-walnut);
  margin-bottom: var(--space-sm);
}

.why-card__desc {
  font-size: var(--text-sm);
  color: var(--color-warm-gray);
  line-height: 1.6;
}

/* ---- Production Process ---- */
.process-timeline {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  position: relative;
}

.process-step {
  flex: 1;
  max-width: 200px;
  text-align: center;
  position: relative;
}

.process-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-cream);
  border: 3px solid var(--color-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-forest);
  margin: 0 auto var(--space-md);
  position: relative;
  z-index: 2;
  transition: all var(--transition-base);
}

.process-step:hover .process-step__number {
  background: var(--color-forest);
  color: var(--color-white);
  transform: scale(1.1);
}

.process-step__connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 3px;
  background: var(--color-border);
  z-index: 1;
}

.process-step:last-child .process-step__connector {
  display: none;
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-walnut);
  margin-bottom: var(--space-xs);
}

.process-step__desc {
  font-size: var(--text-xs);
  color: var(--color-warm-gray);
  line-height: 1.5;
}

/* ---- About Section ---- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image__badge {
  position: absolute;
  bottom: var(--space-xl);
  right: var(--space-xl);
  background: var(--color-forest);
  color: var(--color-white);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-image__badge-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: 1;
}

.about-image__badge-text {
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.about-content__text {
  font-size: var(--text-base);
  color: var(--color-charcoal-light);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.about-value {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
  color: var(--color-walnut);
}

.about-value svg {
  width: 20px;
  height: 20px;
  color: var(--color-forest);
  flex-shrink: 0;
}

/* ---- Service Regions ---- */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}

.region-card {
  padding: var(--space-xl);
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

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

.region-card svg {
  width: 32px;
  height: 32px;
  color: var(--color-forest);
  margin-bottom: var(--space-sm);
}

.region-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-walnut);
}

/* ---- Product Detail Page ---- */
.product-detail {
  padding-top: calc(var(--header-height) + 60px);
}

.product-detail__hero {
  position: relative;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-3xl);
}

.product-detail__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30, 20, 10, 0.8) 0%, transparent 70%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-2xl);
}

.product-detail__hero-content h1 {
  color: var(--color-white);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-sm);
}

.product-detail__hero-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-lg);
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-3xl);
}

.product-detail__main h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-border-light);
}

.product-detail__main h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  margin-top: var(--space-xl);
}

.product-detail__main p {
  color: var(--color-charcoal-light);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.product-detail__main ul {
  margin-bottom: var(--space-lg);
}

.product-detail__main ul li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-lg);
  position: relative;
  color: var(--color-charcoal-light);
}

.product-detail__main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-forest);
}

/* Tech specs table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-xl);
}

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

.specs-table td {
  padding: var(--space-md);
  font-size: var(--text-sm);
}

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

.specs-table td:last-child {
  color: var(--color-charcoal-light);
}

/* FAQ */
.faq-item {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--color-oak-light);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  font-weight: 600;
  color: var(--color-walnut);
  text-align: left;
  background: var(--color-white);
  cursor: pointer;
  transition: background var(--transition-base);
}

.faq-question:hover {
  background: var(--color-cream);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  color: var(--color-oak);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer__inner {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-charcoal-light);
  line-height: 1.7;
  font-size: var(--text-sm);
}

/* Sidebar */
.product-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.sidebar-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.sidebar-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-walnut);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-border);
}

.sidebar-products {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.sidebar-product {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
}

.sidebar-product:hover {
  background: var(--color-sand);
}

.sidebar-product__img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

.sidebar-product__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-product__name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-walnut);
}

/* ---- Gallery ---- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.gallery-filter {
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-warm-gray);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition-base);
}

.gallery-filter:hover,
.gallery-filter--active {
  background: var(--color-forest);
  color: var(--color-white);
  border-color: var(--color-forest);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slower);
}

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

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 20, 10, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__caption {
  color: var(--color-white);
  font-weight: 600;
  font-size: var(--text-sm);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-base);
}

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

.lightbox__close svg {
  width: 24px;
  height: 24px;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-info__item {
  display: flex;
  gap: var(--space-lg);
}

.contact-info__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-forest);
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 24px;
  height: 24px;
}

.contact-info__label {
  font-size: var(--text-sm);
  color: var(--color-warm-gray);
  margin-bottom: 2px;
}

.contact-info__value {
  font-weight: 600;
  color: var(--color-walnut);
}

.contact-info__value a {
  color: var(--color-walnut);
}

.contact-info__value a:hover {
  color: var(--color-forest);
}

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: var(--space-xl);
  height: 240px;
  border: 1px solid var(--color-border-light);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Form */
.form {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-light);
}

.form__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-walnut);
  margin-bottom: var(--space-xl);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

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

.form__label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-walnut);
  margin-bottom: var(--space-xs);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-charcoal);
  background: var(--color-white);
  transition: all var(--transition-base);
  outline: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--color-forest);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23795548' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form__radio-group {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xs);
}

.form__radio {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--color-charcoal-light);
}

.form__radio input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-forest);
  cursor: pointer;
}

.form__submit {
  width: 100%;
  margin-top: var(--space-md);
}

.form__success {
  display: none;
  text-align: center;
  padding: var(--space-2xl);
}

.form__success.show {
  display: block;
}

.form__success svg {
  width: 64px;
  height: 64px;
  color: var(--color-forest);
  margin-bottom: var(--space-md);
}

.form__success h3 {
  font-size: var(--text-xl);
  color: var(--color-walnut);
  margin-bottom: var(--space-sm);
}

.form__success p {
  color: var(--color-warm-gray);
}

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--color-walnut) 0%, var(--color-walnut-light) 100%);
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(46, 125, 50, 0.15) 0%, transparent 50%);
}

.cta-section__title {
  font-size: var(--text-3xl);
  color: var(--color-white);
  margin-bottom: var(--space-md);
  position: relative;
}

.cta-section__desc {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-2xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-section__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  position: relative;
}

/* ---- Footer ---- */
.footer {
  background: var(--color-charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding-top: var(--space-4xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand-desc {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  color: rgba(255, 255, 255, 0.5);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-base);
}

.footer__social a:hover {
  background: var(--color-forest);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer__title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

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

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer__links a:hover {
  color: var(--color-white);
  padding-left: 4px;
}

.footer__contact-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-forest-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-whatsapp);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-base);
  cursor: pointer;
}

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

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ---- Scroll Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }
.delay-5 { transition-delay: 500ms; }
.delay-6 { transition-delay: 600ms; }

/* ---- Page Sections (SPA) ---- */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* ---- Mobile Menu ---- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-header) + 5);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-walnut);
  transition: color var(--transition-base);
  padding: var(--space-sm) var(--space-md);
}

.mobile-menu__link:hover {
  color: var(--color-forest);
}

.mobile-menu__cta {
  margin-top: var(--space-xl);
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
  .fade-in,
  .fade-in-left,
  .fade-in-right,
  .scale-in {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   RESPONSIVE DESIGN — Mobile First
   ============================================================ */

/* Small phones */
@media (max-width: 480px) {
  .hero__title {
    font-size: var(--text-3xl);
  }
  
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  
  .stats__item:nth-child(2)::after {
    display: none;
  }
  
  .form__row {
    grid-template-columns: 1fr;
  }

  /* Compact header logo for small screens */
  .header__logo-subtitle {
    display: none;
  }
  .header__logo-title {
    font-size: 1rem;
  }
  .header__logo-img {
    height: 34px;
  }
  .header__logo {
    gap: var(--space-sm);
  }

  /* why-grid çok küçük ekranda tek kolon */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* ürünler çok küçük ekranda tek kolon */
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Tablets and smaller */
@media (max-width: 768px) {
  .header__top {
    display: none;
  }
  
  .nav__list,
  .nav__cta {
    display: none;
  }
  
  .nav__toggle {
    display: flex;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .hero__content {
    text-align: center;
    align-items: center;
  }
  
  .hero__description {
    text-align: center;
  }
  
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats__item::after {
    display: none;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  
  .why-card {
    padding: var(--space-lg);
  }
  
  /* About image badge — mobilde küçük ve görünür */
  .about-image__badge {
    bottom: var(--space-sm);
    right: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
  }
  
  .about-image__badge-number {
    font-size: var(--text-xl);
  }
  
  .about-image__badge-text {
    font-size: 0.65rem;
  }
  
  /* About image — mobilde sabit yükseklik */
  .about-image {
    aspect-ratio: 3/2;
    max-height: 280px;
  }
  
  .about-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .process-timeline {
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
  }
  
  .process-step__connector {
    display: none;
  }
  
  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-detail__grid {
    grid-template-columns: 1fr;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large tablets */
@media (max-width: 1024px) {
  .nav__link {
    font-size: var(--text-xs);
    padding: 0.4rem 0.6rem;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 1440px) {
  .container {
    max-width: 1360px;
  }
}

/* ---- Print Styles ---- */
@media print {
  .header,
  .whatsapp-float,
  .hero__indicators,
  .mobile-menu {
    display: none !important;
  }
  
  .page {
    display: block !important;
  }
  
  body {
    color: #000;
    background: #fff;
  }
}

/* ---- Back to top button ---- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 90px;
  z-index: var(--z-whatsapp);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-walnut);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-forest);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ---- Image Crop Style ---- */
.product-card__image img,
.hero__slide img,
.about-image img,
.gallery-item img,
.product-detail__hero img,
.sidebar-product__img img {
  width: 100% !important;
  height: 100% !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  object-fit: cover;
  object-position: center center;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

