/* ============================================================
   FITT Türkiye — Shopify 2.0 Theme CSS
   Matching fitt.com corporate design exactly
   ============================================================ */

/* -- Font Faces -- */
@font-face {
  font-family: 'HelveticaLTStd';
  src: url('HelveticaLTStd-Roman.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HelveticaLTStd';
  src: url('HelveticaLTStd-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fittype';
  src: url('Fittype.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* -- CSS Custom Properties -- */
:root {
  --color-black: #1d1d1b;
  --color-white: #ffffff;
  --color-magenta: #db006b;
  --color-green: #82b71d;
  --color-blue: #187fce;
  --color-gray-light: #f5f5f5;
  --color-gray-bg: #f8f8f8;
  --color-gray-text: #545454;
  --color-gray-border: #dee2e6;
  --color-purple: #7344a0;
  --color-purple-light: #a02789;

  --font-body: 'HelveticaLTStd', 'Helvetica', sans-serif;
  --font-display: 'HelveticaLTStd', 'Helvetica', sans-serif;

  --gradient-brand: linear-gradient(225deg, #187fce -30%, #82b71d 20%, #187fce 45%, #db006b 95%);
  --gradient-brand-hover: linear-gradient(45deg, #187fce -30%, #82b71d 20%, #187fce 45%, #db006b 95%);

  --container-max: 1320px;
  --header-height: 80px;
  --transition: 0.3s ease;
}

/* -- Reset & Base -- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-black);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  /* Safe area for iPhone notch / dynamic island */
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* -- Container -- */
.container-fluid {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* -- Buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 32px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

.btn._gradient {
  color: var(--color-white);
  background: transparent;
  border: 2px solid;
  border-image-slice: 1;
  border-image-source: var(--gradient-brand);
}

.btn._gradient:hover {
  border-image-source: var(--gradient-brand-hover);
}

.btn._white {
  color: var(--color-white);
  border-color: var(--color-white);
  background: transparent;
}

.btn._white:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.btn._dark {
  color: var(--color-black);
  border-color: var(--color-black);
  background: transparent;
}

.btn._dark:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.btn._gradient-fill {
  color: var(--color-white);
  background: linear-gradient(90deg, #82b71d 0%, #187fce 35%, #db006b 70%, #82b71d 100%);
  background-size: 300% 100%;
  background-position: 0% 50%;
  border: none;
  border-radius: 50px;
  padding: 14px 44px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  transition: background-position 0.8s ease;
  position: relative;
  isolation: isolate;
}

/* Siyah iç dolgu — gradient sadece çerçevede kalır */
.btn._gradient-fill::before {
  content: '';
  position: absolute;
  inset: 2.5px;
  background: rgba(0, 0, 0, 0.92);
  border-radius: 50px;
  z-index: -1;
}

.btn._gradient-fill:hover {
  background-position: 100% 50%;
}

.btn .btn-arrow {
  display: inline-block;
  width: 20px;
  height: 10px;
  position: relative;
}

.btn .btn-arrow::after {
  content: '→';
  font-size: 1.2em;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header._dark {
  background: rgba(0, 0, 0, 0.2);
}

.site-header._solid {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header._scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Top Bar - removed */
.header-topbar {
  display: none !important;
}

.header-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.header-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-white);
  font-size: 0.8rem;
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition);
}

.header-lang:hover {
  opacity: 1;
}

.header-lang svg {
  width: 18px;
  height: 18px;
}

.header-lang .lang-arrow {
  width: 12px;
  height: 12px;
}

/* Main Header */
.header-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

@media (min-width: 992px) {
  .header-main {
    padding: 16px 24px 16px;
  }
}

.header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ── Primary logo (Arka) ── */
.header-logo {
  display: block;
  padding-bottom: 0;
  flex-shrink: 0;
}

.header-logo-img,
.header-logo svg,
.header-logo img {
  height: 36px;
  width: auto;
}

@media (min-width: 768px) {
  .header-logo-img,
  .header-logo svg,
  .header-logo img {
    height: 44px;
  }
}

@media (min-width: 1200px) {
  .header-logo-img,
  .header-logo svg,
  .header-logo img {
    height: 52px;
  }
}

/* ── Secondary brand group (FITT + Certified B Corporation) ── */
.header-brand-secondary {
  display: flex;
  align-items: center;
  border-left: 1.5px solid rgba(255,255,255,0.25);
  padding-left: 14px;
}

.header-brand-secondary img {
  height: 20px;
  width: auto;
  display: block;
}

@media (min-width: 768px) {
  .header-brand-secondary img {
    height: 24px;
  }
}

@media (min-width: 1200px) {
  .header-brand-secondary img {
    height: 28px;
  }
}

/* Navigation */
.header-nav {
  display: none;
  align-items: flex-end;
  gap: 0;
}

@media (min-width: 992px) {
  .header-nav {
    display: flex;
  }
}

.header-nav > a,
.nav-dropdown-wrap > a {
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 16px 16px;
  position: relative;
  white-space: nowrap;
  opacity: 0.85;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@media (min-width: 1200px) {
  .header-nav > a,
  .nav-dropdown-wrap > a {
    padding: 8px 24px 16px;
  }
}

.header-nav > a:hover,
.header-nav > a.active,
.nav-dropdown-wrap:hover > a {
  opacity: 1;
}

.header-nav > a::after,
.nav-dropdown-wrap > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gradient-brand);
  transition: width 0.3s ease;
}

.header-nav > a:hover::after,
.header-nav > a.active::after,
.nav-dropdown-wrap:hover > a::after {
  width: 100%;
}

/* Nav inline rainbow icons (gardening & agriculture) */
.nav-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-icon svg {
  width: 20px;
  height: 20px;
}

/* Hero section icons (gardening & agriculture) */
.hero-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-icons svg {
  width: 40px;
  height: 40px;
}
@media (min-width: 768px) {
  .hero-icons svg {
    width: 52px;
    height: 52px;
  }
}
@media (min-width: 1200px) {
  .hero-icons svg {
    width: 64px;
    height: 64px;
  }
}

/* Header cart icon */
.header-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-white);
  opacity: 0.85;
  transition: var(--transition);
  position: relative;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
.header-cart:hover {
  opacity: 1;
}
.header-cart svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.header-cart-count {
  position: absolute;
  top: 2px;
  right: 0;
  background: var(--gradient-brand);
  color: var(--color-white);
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.header-cart-count:empty,
.header-cart-count[data-count="0"] {
  display: none;
}

/* Nav dropdown arrow icon */
.nav-arrow {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.nav-dropdown-wrap:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown wrapper */
.nav-dropdown-wrap {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--color-black);
  border-top: 3px solid;
  border-image-slice: 1;
  border-image-source: var(--gradient-brand);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}

.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 10px 24px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-dropdown a:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.08);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Menu Toggle – USA style gradient bars */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 48px;
  height: 48px;
  min-width: 44px;
  min-height: 44px;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle span {
  display: block;
  height: 5px;
  border-radius: 5px;
  position: relative;
  transition: 0.3s ease-in-out;
}

.mobile-menu-toggle span:nth-child(1) {
  width: 36px;
  background: linear-gradient(120deg, #db006b 0%, #187fce 50%);
  top: -2px;
}

.mobile-menu-toggle span:nth-child(2) {
  width: 28px;
  background: linear-gradient(120deg, #db006b -20%, #187fce 50%, #82b71d 90%);
}

.mobile-menu-toggle span:nth-child(3) {
  width: 20px;
  background: linear-gradient(120deg, #187fce 50%, #82b71d 90%);
  top: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  width: 36px;
  top: 0;
  transform: translateY(11px) rotate(45deg);
  background: linear-gradient(120deg, #db006b 0%, #187fce 50%, #82b71d 90%);
}

.mobile-menu-toggle.active span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  width: 36px;
  top: 0;
  transform: translateY(-11px) rotate(-45deg);
  background: linear-gradient(120deg, #187fce 50%, #82b71d 90%);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--color-black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 100px 32px 48px;
  width: 100%;
}

/* Mobile menu main links */
.mobile-menu-link {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s ease;
  padding: 12px 0;
  border-left: 4px solid transparent;
  padding-left: 16px;
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* Rainbow colors for main links */
.mobile-menu-link:nth-of-type(1) { border-left-color: #187fce; }
.mobile-menu-link:nth-of-type(2) { border-left-color: #82b71d; }
.mobile-menu-link:nth-of-type(3) { border-left-color: #db006b; }
.mobile-menu-link:nth-of-type(4) { border-left-color: #187fce; }
.mobile-menu-link:nth-of-type(5) { border-left-color: #82b71d; }
.mobile-menu-link:nth-of-type(6) { border-left-color: #db006b; }

/* Mobile menu sub-links */
.mobile-menu-sublink {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s ease;
  padding: 8px 0 8px 36px;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-menu.active .mobile-menu-link,
.mobile-menu.active .mobile-menu-sublink {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for all mobile links */
.mobile-menu-inner > :nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-inner > :nth-child(2) { transition-delay: 0.13s; }
.mobile-menu-inner > :nth-child(3) { transition-delay: 0.16s; }
.mobile-menu-inner > :nth-child(4) { transition-delay: 0.19s; }
.mobile-menu-inner > :nth-child(5) { transition-delay: 0.22s; }
.mobile-menu-inner > :nth-child(6) { transition-delay: 0.25s; }
.mobile-menu-inner > :nth-child(7) { transition-delay: 0.28s; }
.mobile-menu-inner > :nth-child(8) { transition-delay: 0.31s; }
.mobile-menu-inner > :nth-child(9) { transition-delay: 0.34s; }
.mobile-menu-inner > :nth-child(10) { transition-delay: 0.37s; }
.mobile-menu-inner > :nth-child(11) { transition-delay: 0.40s; }
.mobile-menu-inner > :nth-child(12) { transition-delay: 0.43s; }

/* ============================================================
   HERO - FULL SCREEN
   ============================================================ */
.section-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  height: 80dvh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.section-hero._dark {
  color: var(--color-white);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #000;
}

@media (min-width: 768px) {
  .hero-bg video,
  .hero-bg img {
    object-position: center center;
  }
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px 100px;
  padding-bottom: calc(100px + env(safe-area-inset-bottom));
  width: 100%;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 0 24px 120px;
  }
}

@media (min-width: 992px) {
  .hero-content {
    padding: 0 calc(4% + 24px) 140px;
  }
}

@media (min-width: 1200px) {
  .hero-content {
    padding: 0 calc(5% + 24px) 160px;
  }
}

.hero-pretitle {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .hero-pretitle {
    font-size: 1.1rem;
    margin-bottom: 48px;
  }
}

@media (min-width: 1200px) {
  .hero-pretitle {
    margin-bottom: 64px;
  }
}

.hero-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.45;
  max-width: 680px;
  padding-bottom: 60px;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 1.4rem;
    padding-bottom: 72px;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 1.75rem;
    padding-bottom: 84px;
  }
}

.hero-link .btn._gradient-fill {
  font-size: 0.8rem;
  padding: 12px 36px;
}

@media (min-width: 768px) {
  .hero-link .btn._gradient-fill {
    font-size: 0.85rem;
    padding: 14px 44px;
  }
}

/* ============================================================
   PRODUCT CAROUSEL SECTION (USA-style)
   ============================================================ */
.section-products-carousel {
  padding: 32px 0 64px;
  background: var(--color-white);
  overflow: hidden;
}

@media (min-width: 992px) {
  .section-products-carousel {
    padding: 48px 0 100px;
  }
}

.products-carousel-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 10px;
}

@media (min-width: 768px) {
  .products-carousel-inner {
    padding: 0 16px;
  }
}

@media (min-width: 992px) {
  .products-carousel-inner {
    padding: 0 calc(2.5% + 16px);
  }
}

.products-carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .products-carousel-header {
    margin-bottom: 32px;
  }
}

.products-carousel-header .section-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .products-carousel-header .section-title {
    font-size: 1.75rem;
  }
  .section-title-icon {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 1200px) {
  .products-carousel-header .section-title {
    font-size: 2.25rem;
  }
  .section-title-icon {
    width: 48px;
    height: 48px;
  }
}

.products-carousel-header .section-link {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 4px;
  white-space: nowrap;
  position: relative;
  color: var(--color-black);
  border-bottom: 2px solid var(--color-black);
  transition: color 0.4s ease, border-color 0.4s ease;
  margin-top: 6px;
}

.products-carousel-header .section-link:hover {
  background: linear-gradient(90deg, #82b71d 0%, #187fce 40%, #db006b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-image: linear-gradient(90deg, #82b71d 0%, #187fce 40%, #db006b 100%) 1;
}

.products-carousel-track {
  overflow: hidden;
  position: relative;
}

/* Hover zones on left/right edges */
.products-carousel-track .carousel-hover-zone {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12%;
  z-index: 15;
  cursor: pointer;
  display: none;
}

@media (min-width: 768px) {
  .products-carousel-track .carousel-hover-zone {
    display: flex;
    align-items: center;
  }
}

.products-carousel-track .carousel-hover-zone._left {
  left: 0;
  justify-content: flex-start;
  background: linear-gradient(to right, rgba(255,255,255,0.85) 0%, transparent 100%);
}

.products-carousel-track .carousel-hover-zone._right {
  right: 0;
  justify-content: flex-end;
  background: linear-gradient(to left, rgba(255,255,255,0.85) 0%, transparent 100%);
}

.carousel-hover-zone .hover-arrow {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6) translateX(0);
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s ease,
              box-shadow 0.3s ease;
  margin: 0 12px;
  color: var(--color-black);
}

.carousel-hover-zone._left:hover .hover-arrow {
  opacity: 1;
  transform: scale(1) translateX(4px);
}

.carousel-hover-zone._right:hover .hover-arrow {
  opacity: 1;
  transform: scale(1) translateX(-4px);
}

.carousel-hover-zone .hover-arrow:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  transform: scale(1.08);
}

.carousel-hover-zone .hover-arrow:active {
  transform: scale(0.95);
  transition-duration: 0.1s;
}

.carousel-hover-zone .hover-arrow svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
  transition: transform 0.2s ease;
}

.carousel-hover-zone._left .hover-arrow:hover svg {
  transform: translateX(-2px);
}

.carousel-hover-zone._right .hover-arrow:hover svg {
  transform: translateX(2px);
}

/* Product Carousel Card */
.product-carousel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px;
  transition: var(--transition);
}

.product-carousel-card:hover {
  transform: translateY(-6px);
}

.product-carousel-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-gray-light);
  border-radius: 0;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-carousel-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
  mix-blend-mode: multiply;
}

.product-carousel-card:hover .product-carousel-img img {
  transform: scale(1.08);
}

.product-carousel-name {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-black);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .product-carousel-name {
    font-size: 0.95rem;
  }
}

/* Old nav hidden — replaced by hover zones */
.products-carousel-nav {
  display: none !important;
}

/* ============================================================
   TEXT TWO COLUMNS SECTION
   ============================================================ */
.section-text-two-cols {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section-text-two-cols {
    min-height: 80vh;
  }
}

.section-text-two-cols._dark {
  color: var(--color-white);
}

.section-text-two-cols .section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.section-text-two-cols .section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-text-two-cols .section-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.section-text-two-cols .section-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

@media (min-width: 992px) {
  .section-text-two-cols .section-content {
    padding: 120px calc(8.33% + 24px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
}

.section-text-two-cols .section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 36px;
}

@media (min-width: 768px) {
  .section-text-two-cols .section-title {
    font-size: 3rem;
    margin-bottom: 48px;
  }
}

@media (min-width: 1200px) {
  .section-text-two-cols .section-title {
    font-size: 4rem;
    margin-bottom: 72px;
  }
}

.section-text-two-cols .section-text {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 36px;
}

@media (min-width: 768px) {
  .section-text-two-cols .section-text {
    font-size: 1.1rem;
    margin-bottom: 48px;
  }
}

/* ============================================================
   CARD SLIDER SECTION
   ============================================================ */
.section-card-slider {
  padding: 64px 0;
  overflow: hidden;
}

@media (min-width: 992px) {
  .section-card-slider {
    padding: 128px 0;
  }
}

.section-card-slider._light {
  background: var(--color-gray-light);
  color: var(--color-black);
}

.section-card-slider._gray {
  background: var(--color-gray-bg);
  color: var(--color-black);
}

.section-card-slider .section-header {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .section-card-slider .section-header {
    margin-bottom: 32px;
    padding: 0 16px;
  }
}

@media (min-width: 992px) {
  .section-card-slider .section-header {
    padding: 0 calc(2.5% + 16px);
  }
}

.section-card-slider .section-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (min-width: 768px) {
  .section-card-slider .section-title {
    font-size: 1.75rem;
  }
}

@media (min-width: 1200px) {
  .section-card-slider .section-title {
    font-size: 2.25rem;
  }
}

.section-card-slider .section-link {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--color-black);
  padding-bottom: 4px;
  white-space: nowrap;
}

.section-card-slider .section-link:hover {
  border-color: var(--color-magenta);
  color: var(--color-magenta);
}

/* Swiper overrides */
.slider-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 10px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .slider-container {
    padding: 0 16px;
  }
}

@media (min-width: 992px) {
  .slider-container {
    padding: 0 calc(2.5% + 16px);
  }
}

.swiper {
  overflow: hidden !important;
}

.swiper-slide {
  height: auto;
}

/* Slider Navigation */
.slider-nav {
  display: none;
  gap: 12px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .slider-nav {
    display: none;
  }
}

.slider-nav button {
  width: 48px;
  height: 48px;
  border: 2px solid var(--color-gray-border);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-nav button:hover {
  border-color: var(--color-black);
}

.slider-nav button svg {
  width: 20px;
  height: 20px;
}

/* Card Component */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: transparent;
}

.card-image {
  position: relative;
  width: 100%;
  padding-top: 70%;
  overflow: hidden;
}

.card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray-text);
  margin-bottom: 12px;
}

.card-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .card-title {
    font-size: 1.125rem;
  }
}

.card-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-gray-text);
  flex: 1;
}

.card-link {
  margin-top: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.card-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.card:hover .card-link::after {
  transform: translateX(4px);
}

/* Application Card (portrait) */
.app-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.app-card .card-image {
  padding-top: 133%;
}

.app-card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.app-card .card-overlay-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================================
   RING LIST / BUSINESS SOLUTIONS SECTION
   ============================================================ */
.section-ring-list {
  padding: 80px 0;
  background: var(--color-gray-light);
}

@media (min-width: 992px) {
  .section-ring-list {
    padding: 128px 0;
  }
}

.section-ring-list .section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 992px) {
  .section-ring-list .section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 0 calc(8.33% + 24px);
  }
}

.section-ring-list .section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 36px;
}

@media (min-width: 768px) {
  .section-ring-list .section-title {
    font-size: 3rem;
    margin-bottom: 48px;
  }
}

@media (min-width: 1200px) {
  .section-ring-list .section-title {
    font-size: 4rem;
    margin-bottom: 72px;
  }
}

.section-ring-list .section-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-gray-text);
  margin-bottom: 36px;
}

/* Ring list items */
.ring-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .ring-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.ring-item {
  text-align: center;
}

.ring-item-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--color-gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .ring-item-circle {
    width: 100px;
    height: 100px;
  }
}

.ring-item:hover .ring-item-circle {
  border-color: var(--color-magenta);
}

.ring-item-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.ring-item-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 64px 0 32px;
  padding-bottom: calc(32px + env(safe-area-inset-bottom));
}

@media (min-width: 992px) {
  .site-footer {
    padding: 80px 0 40px;
  }
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 992px) {
  .footer-inner {
    padding: 0 calc(8.33% + 24px);
  }
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
  }
}

.footer-logo-wrap {
  margin-bottom: 24px;
}

.footer-logo-wrap img,
.footer-logo-wrap svg {
  height: 32px;
  width: auto;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 300px;
}

.footer-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  color: var(--color-white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  padding: 6px 0;
  display: block;
  min-height: 44px;
  display: flex;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-social a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  padding: 10px;
  margin: -10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

.footer-social a:hover {
  color: var(--color-white);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-legal {
    gap: 24px;
    justify-content: flex-end;
  }
}

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
  padding: 8px 0;
  -webkit-tap-highlight-color: transparent;
}

.footer-legal a:hover {
  color: var(--color-white);
}

.footer-fitt-global {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: var(--gradient-brand);
  padding: 6px 16px;
  transition: var(--transition);
  display: inline-block;
  margin-top: 4px;
}

.footer-fitt-global:hover {
  background: rgba(255,255,255,0.15);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
._sr [data-sr] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

._sr [data-sr].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations */
[data-sr-delay="1"] { transition-delay: 0.1s !important; }
[data-sr-delay="2"] { transition-delay: 0.2s !important; }
[data-sr-delay="3"] { transition-delay: 0.3s !important; }
[data-sr-delay="4"] { transition-delay: 0.4s !important; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

@media (min-width: 768px) {
  .d-md-block { display: block; }
  .d-md-none { display: none; }
  .d-md-flex { display: flex; }
}

@media (min-width: 992px) {
  .d-lg-block { display: block; }
  .d-lg-none { display: none; }
  .d-lg-flex { display: flex; }
}

/* Marketplace specific styles for Türkiye distributor */
.marketplace-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.mp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--color-gray-border);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: var(--transition);
}

.mp-badge:hover {
  border-color: var(--color-black);
}

.mp-badge._trendyol { color: #f27a1a; }
.mp-badge._amazon { color: #ff9900; }
.mp-badge._hepsiburada { color: #ff6000; }

/* Dark-context marketplace badges (product page) */
.product-hero .mp-badge,
.product-title-block .mp-badge {
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--color-black);
  border-radius: 50px;
}

.product-hero .mp-badge:hover,
.product-title-block .mp-badge:hover {
  background: rgba(0,0,0,0.1);
  border-color: rgba(0,0,0,0.3);
}

.product-hero .product-info__marketplace {
  border-color: rgba(0,0,0,0.1);
}

.product-hero .product-info__marketplace-label {
  color: var(--color-gray-text);
}

.mp-badge .mp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

/* ============================================================
   PRODUCT PAGE – Inspired by FITT USA product layout
   ============================================================ */

/* --- Hero / Header --- */
.product-hero {
  background: #FFFFFF;
  padding: 100px 0 0;
  color: var(--color-black);
  position: relative;
  overflow: hidden;
  /* Prevent any horizontal overflow from gallery */
  max-width: 100vw;
}

.product-hero__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  /* Ensure grid children can't overflow */
  min-width: 0;
}

@media (min-width: 768px) {
  .product-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 calc(2.5% + 16px);
  }
}

@media (min-width: 1200px) {
  .product-hero__inner {
    gap: 60px;
  }
}

/* --- Title Block (right side on desktop) --- */
.product-title-block {
  padding: 24px 0 32px;
  order: 1;
}

@media (min-width: 768px) {
  .product-title-block {
    padding: 40px 0 20px;
    order: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
  }
}

.product-title-block h1 {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 36px;
  padding: 0;
  letter-spacing: -0.02em;
  text-align: left;
  width: auto;
}

@media (min-width: 768px) {
  .product-title-block h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1200px) {
  .product-title-block h1 {
    font-size: 3.75rem;
  }
}

.product-title-block .subtitle {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-gray-text);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .product-title-block .subtitle {
    font-size: 1.15rem;
  }
}

.product-title-block .tagline {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gray-text);
  background: none;
  padding: 0;
  border-radius: 0;
  letter-spacing: 0.01em;
  text-transform: none;
  margin-bottom: 0;
}

.tagline-icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  order: -1;
  padding-top: 2px;
}
.tagline-icons svg,
.tagline-icons img {
  width: 36px;
  height: 36px;
}

/* Static variant value (single option, no dropdown) */
.product-variant-value {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-black);
  padding: 6px 10px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 6px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}

/* Color label for single-color products */
.product-variant-color-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-black);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* --- Gallery (left side on desktop) --- */
.product-gallery {
  order: 2;
  padding-bottom: 32px;
  /* Prevent grid blowout */
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 768px) {
  .product-gallery {
    order: 1;
    padding-bottom: 32px;
  }
}

.product-gallery__main {
  width: 100%;
  max-width: 90%;
  overflow: hidden;
  background: #ffffff;
  border-radius: 4px;
  position: relative;
  margin: 0 auto;
}

/* Desktop: square gallery */
@media (min-width: 768px) {
  .product-gallery__main {
    aspect-ratio: 1;
  }
}

.product-gallery__main img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

/* Desktop: fill the square container */
@media (min-width: 768px) {
  .product-gallery__main img {
    height: 100%;
  }
}

.product-gallery__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery__placeholder .placeholder-svg {
  width: 60%;
  height: auto;
  opacity: 0.3;
}

.product-gallery__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0;
  justify-content: center;
}

.product-gallery__thumbs::-webkit-scrollbar {
  display: none;
}

.product-gallery__thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(0,0,0,0.1);
  cursor: pointer;
  padding: 0;
  background: #fff;
  overflow: hidden;
  border-radius: 4px;
  transition: border-color 0.2s;
}

@media (min-width: 768px) {
  .product-gallery__thumb {
    flex: 0 0 76px;
    width: 76px;
    height: 76px;
  }
}

.product-gallery__thumb:hover {
  border-color: rgba(0,0,0,0.35);
}

.product-gallery__thumb.is-active {
  border-color: var(--color-magenta);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Thumbnail strip: nav arrows + edge fade — only when 8+ images (.has-nav) */
.product-gallery__thumbs-wrap.has-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  margin-top: 12px;
}
.product-gallery__thumbs-wrap.has-nav .product-gallery__thumbs {
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-start;
  margin-top: 0;
  scroll-behavior: smooth;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 22px, #000 calc(100% - 22px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 22px, #000 calc(100% - 22px), transparent 100%);
}
.product-gallery__thumb-arrow {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 50%;
  background: #fff;
  color: var(--color-black);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.product-gallery__thumb-arrow:hover {
  border-color: rgba(0,0,0,0.4);
  background: #f7f7f7;
}

/* --- Product Content Section --- */
.product-content-section {
  background: #FFFFFF;
  color: var(--color-black);
  padding: 60px 0 80px;
}

.product-content-section .wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .product-content-section .wrapper {
    padding: 0 calc(2.5% + 16px);
  }
}

/* Black-box title (like usa.fitt.com) — LEGACY */
.black-box-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-black);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.black-box-title svg,
.black-box-title img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* New section title — icon + text + rainbow underline */
.product-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-black);
  background: none;
  padding: 0 0 10px;
  margin: 0 0 24px;
  border: none;
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, #82b71d 0%, #187fce 35%, #db006b 70%, #82b71d 100%) 1;
}

.product-section-title__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .product-section-title {
    font-size: 1.1rem;
    gap: 12px;
    padding-bottom: 12px;
    margin-bottom: 28px;
  }
  .product-section-title__icon {
    width: 32px;
    height: 32px;
  }
}

/* --- Other Products Carousel (product page) --- */
.product-others-section {
  background: #FFFFFF;
  padding: 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.product-others-section .product-section-title {
  margin-bottom: 0;
}
.product-others-band {
  background: var(--color-gray-light);
  padding: 28px 0;
}
.product-desc-headband {
  background: var(--color-gray-light);
}
.product-desc-headband .product-section-title {
  margin-bottom: 0;
  padding-top: 28px;
}
.product-desc-section .product-description-block {
  margin-top: 28px;
}

.product-others-section .wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .product-others-section .wrapper {
    padding: 0 calc(2.5% + 16px);
  }
}

.product-others-carousel {
  position: relative;
}

.product-others-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.product-others-track::-webkit-scrollbar {
  display: none;
}

.product-others-track .product-carousel-card {
  flex: 0 0 calc((100% - 32px) / 3);
  scroll-snap-align: start;
}

/* Arrow buttons */
.product-others-arrow {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  transition: background 0.2s, box-shadow 0.2s;
}

.product-others-arrow:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.product-others-arrow._left {
  left: -6px;
}

.product-others-arrow._right {
  right: -6px;
}

@media (min-width: 768px) {
  .product-others-section {
    padding: 60px 0 0;
  }
  .product-others-track {
    gap: 24px;
  }
  .product-others-track .product-carousel-card {
    flex: 0 0 calc((100% - 96px) / 5);
  }
  .product-others-arrow {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 1200px) {
  .product-others-arrow {
    width: 44px;
    height: 44px;
  }
  .product-others-arrow._left {
    left: -18px;
  }
  .product-others-arrow._right {
    right: -18px;
  }
}

/* Variations / Available In */
.product-variations {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Each option row: icon + label + control */
.product-variant-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-variant-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1.5px solid var(--color-black);
  border-radius: 6px;
  color: var(--color-black);
  flex-shrink: 0;
}

.product-variant-icon svg {
  width: 16px;
  height: 16px;
}

.product-variant-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.02em;
  color: var(--color-gray-text);
  white-space: nowrap;
}

.product-variant-select {
  appearance: none;
  -webkit-appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%231d1d1b' stroke-width='1.3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 10px center;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 6px;
  padding: 6px 28px 6px 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-black);
  cursor: pointer;
  transition: border-color 0.2s;
  min-height: 32px;
}

.product-variant-select:focus {
  outline: none;
  border-color: var(--color-blue);
}

.product-variant-select:hover {
  border-color: rgba(0,0,0,0.3);
}

/* Color swatch circle */
.product-variant-swatch {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
  flex-shrink: 0;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.15s;
}

.product-variant-swatch:hover {
  box-shadow: 0 0 0 2px rgba(0,0,0,0.25);
  transform: scale(1.1);
}

.product-variant-swatch.is-active {
  box-shadow: 0 0 0 2.5px var(--color-black, #1d1d1b);
}

/* Legacy button variants (kept for backward compat) */
.product-variations h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray-text);
  margin-bottom: 16px;
}

.product-variations__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-variation-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--color-black);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.product-variation-btn:hover,
.product-variation-btn.is-active {
  background: rgba(0,0,0,0.08);
  border-color: var(--color-black);
}

.product-variation-btn .color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.2);
}

/* --- Downloads / PDF --- */
.product-downloads {
  margin-top: 40px;
}

.product-downloads ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-downloads a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-black);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid transparent;
  background: linear-gradient(#FFFFFF, #FFFFFF) padding-box,
              linear-gradient(90deg, #82b71d, #187fce, #db006b) border-box;
  transition: opacity 0.2s;
}

.product-downloads a:hover {
  opacity: 0.8;
}

.product-downloads a svg,
.product-downloads a img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.product-downloads--centered {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.product-downloads--centered ul {
  align-items: center;
}

/* --- FAQ Accordion --- */
.product-faq-section {
  background: #FFFFFF;
  color: var(--color-black);
  padding: 0 0 80px;
}

.product-faq-section .wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .product-faq-section .wrapper {
    padding: 0 calc(2.5% + 16px);
  }
}

.faq-accordion {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.faq-accordion li {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq-accordion li:first-child {
  border-top: 1px solid rgba(0,0,0,0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

@media (min-width: 768px) {
  .faq-question {
    font-size: 1.05rem;
    padding: 24px 0;
  }
}

.faq-question .angle {
  flex-shrink: 0;
  width: 24px;
  height: 14px;
  transition: transform 0.3s;
}

.faq-question .angle svg {
  width: 100%;
  height: 100%;
}

.faq-question .angle svg path {
  stroke: var(--color-black);
}

.faq-question[aria-expanded="true"] .angle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0;
}

.faq-answer.is-open {
  max-height: 600px;
  padding: 0 0 20px;
}

.faq-answer p {
  color: var(--color-gray-text);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* --- Description Section --- */
.product-desc-section {
  background: #FFFFFF;
  color: var(--color-black);
  padding: 0 0 80px;
}

.product-desc-section .wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .product-desc-section .wrapper {
    padding: 0 calc(2.5% + 16px);
  }
}

.product-description-block {
  margin-bottom: 48px;
}

.product-description-block:last-child {
  margin-bottom: 0;
}

.product-description-text {
  color: var(--color-gray-text);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 800px;
}

/* Ürün açıklaması: her satır (giriş + maddeler) aynı hizada ve EŞİT aralıkta,
   başında FITT rengarenk gradient'inin içi-boş yuvarlak (halka) hali, küçük harf boyutunda.
   (.product-desc-section öneki: .rte p/ul/li kurallarını ezmek için specificity.) */
.product-desc-section .product-description-text ul,
.product-desc-section .product-description-text ol {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.product-desc-section .product-description-text > p,
.product-desc-section .product-description-text li {
  position: relative;
  margin-bottom: 0.5em;         /* giriş satırı + maddeler eşit aralık (ilk satır boşluğu giderildi) */
  padding-left: 1.5em;          /* halka + boşluk için asılı girinti */
}
.product-description-text > p::before,
.product-description-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;                  /* ilk satırın orta hizası (line-height 1.8) */
  width: 0.6em;                 /* küçük harf boyutu */
  height: 0.6em;
  border-radius: 50%;
  background: linear-gradient(135deg, #82b71d 0%, #187fce 50%, #db006b 100%);
  -webkit-mask: radial-gradient(circle at center, transparent 60%, #000 62%);
          mask: radial-gradient(circle at center, transparent 60%, #000 62%);
}

.product-video-container {
  margin-top: 16px;
  position: relative;
  width: 100%;
  max-width: 900px;
  border-radius: 8px;
  overflow: hidden;
}

.product-video-container video {
  width: 100%;
  display: block;
}

/* --- Product Features Grid --- */
.product-features-section {
  background: #FFFFFF;
  color: var(--color-black);
  padding: 0 0 80px;
}

.product-features-section .wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .product-features-section .wrapper {
    padding: 0 calc(2.5% + 16px);
  }
}

.product-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .product-features-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }
}

@media (min-width: 1200px) {
  .product-features-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
  }
}

.product-features-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.035);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-black);
  transition: background 0.2s;
}

.product-features-item:hover {
  background: rgba(0,0,0,0.06);
}

.product-features-item__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .product-features-section {
    padding: 0 0 48px;
  }
  .product-features-item {
    padding: 10px 12px;
    font-size: 0.78rem;
    gap: 8px;
  }
  .product-features-item__icon {
    width: 18px;
    height: 18px;
  }
}

/* --- Related Products --- */
.product-related-section {
  background: #FFFFFF;
  color: var(--color-black);
  padding: 60px 0 80px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.product-related-section .wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .product-related-section .wrapper {
    padding: 0 calc(2.5% + 16px);
  }
}

.related-title {
  position: relative;
  padding-left: 20px;
  margin-bottom: 36px;
}

.related-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, #82b71d 0%, #187fce 50%, #db006b 100%);
}

.related-title p {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

@media (min-width: 768px) {
  .related-title p {
    font-size: 2rem;
  }
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .related-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1200px) {
  .related-products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
}

.related-product-card {
  display: block;
  text-decoration: none;
  color: var(--color-black);
  transition: transform 0.2s;
}

.related-product-card:hover {
  transform: translateY(-4px);
}

.related-product-card__img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
  border-radius: 4px;
  margin-bottom: 12px;
}

.related-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.related-product-card__name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
}

@media (min-width: 768px) {
  .related-product-card__name {
    font-size: 0.95rem;
  }
}

/* ============================================================
   PRODUCT PAGE – Mobile Responsive Enhancements
   ============================================================ */

/* --- Inline trait icons (above price in hero) --- */
.product-hero-traits {
  display: flex;
  column-gap: 20px;
  row-gap: 8px;
  flex-wrap: wrap;
  margin-top: 36px;
  align-items: flex-start;
  justify-content: flex-start;
}

.product-hero-traits .product-trait-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 68px;
}
.product-hero-traits .product-trait-item__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 4px;
}
.product-hero-traits .product-trait-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-hero-traits .product-trait-item__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.product-hero-traits .product-trait-item__label {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.2;
}
/* Category icon (larger, first in row) */
.product-hero-traits .product-trait-item._category {
  width: 76px;
}
.product-hero-traits .product-trait-item._category .product-trait-item__icon {
  width: 52px;
  height: 52px;
}
@media (max-width: 767px) {
  .product-hero-traits { column-gap: 14px; row-gap: 6px; margin-top: 16px; }
  .product-hero-traits .product-trait-item { width: 56px; }
  .product-hero-traits .product-trait-item__icon { width: 36px; height: 36px; }
  .product-hero-traits .product-trait-item__label { font-size: 0.58rem; }
  .product-hero-traits .product-trait-item._category { width: 64px; }
  .product-hero-traits .product-trait-item._category .product-trait-item__icon { width: 42px; height: 42px; }
}

/* --- Price & ATC (new classes replacing inline styles) --- */
.product-price-wrap {
  margin-top: 36px;
}

.product-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-black);
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .product-price-wrap {
    margin-top: 48px;
  }
  .product-price {
    font-size: 1.75rem;
  }
}

.product-atc-wrap {
  margin-top: 24px;
}

@media (min-width: 768px) {
  .product-atc-wrap {
    margin-top: 24px;
  }
}

.product-atc-btn {
  width: 100%;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.9rem;
  color: var(--color-black) !important;
}

@media (min-width: 768px) {
  .product-atc-btn {
    width: auto;
    min-width: 280px;
  }
}

/* --- Product Hero Features (below ATC) --- */
.product-hero-features {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  column-gap: 24px;
  row-gap: 12px;
  margin-top: 28px;
  width: fit-content;
}

.product-hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.04);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-black);
  line-height: 1.2;
}

.product-hero-feature__icon {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .product-hero-features {
    margin-top: 36px;
    column-gap: 28px;
    row-gap: 14px;
  }
  .product-hero-feature {
    padding: 14px 20px;
    font-size: 0.9rem;
  }
}

/* --- Mobile: Gallery first, Title second --- */
@media (max-width: 767px) {
  .product-hero {
    padding-top: 88px;
  }

  .product-hero__inner {
    gap: 0;
  }

  /* Gallery above title on mobile — shrink image to make room for features */
  .product-gallery {
    order: 1;
    padding-bottom: 12px;
  }

  .product-gallery__main {
    /* no max-height on container — avoids thumb overlap */
  }

  .product-gallery__main img {
    max-height: 58vw;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
  }

  .product-hero-features {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-auto-flow: row;
    margin-top: 0;
    padding: 24px 20px;
    column-gap: 10px;
    row-gap: 10px;
  }
  .product-hero-feature {
    padding: 10px 14px;
    font-size: 0.8rem;
    gap: 7px;
  }
  .product-hero-feature__icon {
    width: 16px;
    height: 16px;
  }

  .product-title-block {
    order: 2;
    padding: 0 0 20px;
  }

  .product-title-block h1 {
    font-size: 1.5rem;
    margin-bottom: 6px;
  }

  .product-title-block .subtitle {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .product-title-block .tagline {
    font-size: 0.78rem;
    padding: 0;
  }

  /* Gallery thumbs: smaller on mobile */
  .product-gallery__thumb {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
  }

  .product-gallery__thumbs {
    gap: 6px;
    margin-top: 8px;
  }

  /* Variations */
  .product-variations {
    margin-top: 10px;
  }

  .product-variations__list {
    gap: 8px;
  }

  .product-variation-btn {
    padding: 6px 14px;
    font-size: 0.8rem;
  }

  .product-variant-row {
    gap: 6px;
  }

  .product-variant-icon {
    width: 28px;
    height: 28px;
    border-radius: 5px;
  }

  .product-variant-icon svg {
    width: 14px;
    height: 14px;
  }

  .product-variant-select {
    padding: 5px 24px 5px 8px;
    font-size: 0.75rem;
    min-height: 28px;
  }

  .product-variant-swatch {
    width: 18px;
    height: 18px;
  }

  /* Marketplace */
  .product-info__marketplace {
    margin-top: 24px;
    padding-top: 20px;
  }

  .mp-badges {
    gap: 8px;
  }

  .product-hero .mp-badge,
  .product-title-block .mp-badge {
    padding: 8px 14px;
    font-size: 0.7rem;
  }
}

/* --- Mobile: Description/Video Section --- */
@media (max-width: 767px) {
  .product-desc-section {
    padding: 0 0 48px;
  }

  .product-description-block {
    margin-bottom: 32px;
  }

  .product-description-text {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .black-box-title {
    font-size: 0.85rem;
    padding: 8px 16px;
    margin-bottom: 20px;
  }

  .product-section-title {
    font-size: 0.85rem;
    padding-bottom: 8px;
    margin-bottom: 18px;
    gap: 8px;
  }

  .product-section-title__icon {
    width: 22px;
    height: 22px;
  }

  .product-video-container {
    border-radius: 6px;
  }
}

/* --- Mobile: Downloads --- */
@media (max-width: 767px) {
  .product-content-section {
    padding: 40px 0 60px;
  }

  .product-downloads a {
    font-size: 0.82rem;
    padding: 8px 16px;
  }
}

/* --- Mobile: FAQ --- */
@media (max-width: 767px) {
  .product-faq-section {
    padding: 0 0 60px;
  }

  .faq-question {
    font-size: 0.88rem;
    padding: 16px 0;
  }

  .faq-answer p {
    font-size: 0.85rem;
  }
}

/* --- Mobile: Related Products --- */
@media (max-width: 767px) {
  .product-related-section {
    padding: 40px 0 60px;
  }

  .related-title p {
    font-size: 1.25rem;
  }

  .related-title {
    margin-bottom: 24px;
  }

  .related-products-grid {
    gap: 12px;
  }

  .related-product-card__img {
    margin-bottom: 8px;
  }

  .related-product-card__name {
    font-size: 0.78rem;
  }
}

/* --- Small phone (< 375px) tightening --- */
@media (max-width: 374px) {
  .product-hero {
    padding-top: 64px;
  }

  .product-hero__inner {
    padding: 0 12px;
  }

  .product-title-block h1 {
    font-size: 1.5rem;
  }

  .product-price {
    font-size: 1.25rem;
  }

  .product-atc-btn {
    padding: 12px 24px;
    font-size: 0.82rem;
  }

  .product-gallery__thumb {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }

  .product-variation-btn {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
}

/* --- Product page generic --- */
.product-page {
  padding: 100px 0 60px;
}

@media (min-width: 768px) {
  .product-page {
    padding: 120px 0 80px;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.product-info__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .product-info__title {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}

.product-info__subtitle {
  color: var(--color-gray-text);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.product-info__price {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .product-info__price {
    font-size: 1.5rem;
  }
}

.product-info__compare {
  color: var(--color-gray-text);
  font-size: 1rem;
  margin-right: 8px;
}

.product-info__desc {
  margin-bottom: 32px;
  color: var(--color-gray-text);
  line-height: 1.7;
  font-size: 0.95rem;
}

.product-info__actions {
  margin-bottom: 16px;
}

.product-info__actions .btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 768px) {
  .product-info__actions .btn {
    width: auto;
  }
}

.product-info__marketplace {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-gray-border);
}

.product-info__marketplace-label {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.mp-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Marketplace standalone section (above FAQ) */
.product-marketplace-section {
  background: #FFFFFF;
  padding: 60px 0 80px;
}

.product-marketplace-section .wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .product-marketplace-section .wrapper {
    padding: 0 calc(2.5% + 16px);
  }
}

.product-section-title--centered {
  justify-content: center;
}

.product-marketplace-section .product-info__marketplace {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  text-align: center;
}

.mp-badges--logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.mp-badge-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.mp-badge-logo:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-color: rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.mp-badge-logo svg {
  height: 32px;
  width: auto;
}

@media (max-width: 767px) {
  .product-marketplace-section {
    padding: 40px 0 60px;
  }
  .mp-badges--logos {
    gap: 16px;
  }
  .mp-badge-logo {
    padding: 12px 20px;
    border-radius: 10px;
  }
  .mp-badge-logo svg {
    height: 24px;
  }
}

/* ============================================================
   COLLECTION PAGE
   ============================================================ */
.collection-page {
  padding: 100px 0 60px;
}

@media (min-width: 768px) {
  .collection-page {
    padding: 120px 0 80px;
  }
}

.collection-page__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .collection-page__title {
    font-size: 3rem;
    margin-bottom: 48px;
  }
}

.collection-page__desc {
  max-width: 700px;
  color: var(--color-gray-text);
  line-height: 1.7;
  margin-bottom: 36px;
}

.product-grid-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 576px) {
  .product-grid-list {
    gap: 24px;
  }
}

@media (min-width: 768px) {
  .product-grid-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

@media (min-width: 1200px) {
  .product-grid-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  display: block;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card__img {
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--color-gray-light);
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card__img img {
  transform: scale(1.05);
}

.product-card__title {
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 4px;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .product-card__title {
    font-size: 1rem;
  }
}

.product-card__price {
  color: var(--color-gray-text);
  font-size: 0.85rem;
}

.collection-page__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 0;
  color: var(--color-gray-text);
}

.pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination a,
.pagination span {
  padding: 8px 14px;
  border: 1px solid var(--color-gray-border);
  font-size: 0.85rem;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pagination span.current {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

/* ============================================================
   PAGE CONTENT
   ============================================================ */
.page-content {
  padding: 100px 0 60px;
}

@media (min-width: 768px) {
  .page-content {
    padding: 120px 0 80px;
  }
}

.page-content__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .page-content__title {
    font-size: 3rem;
    margin-bottom: 36px;
  }
}

.page-content__body {
  max-width: 800px;
  color: var(--color-gray-text);
  line-height: 1.8;
  font-size: 1rem;
}

.page-content__body h2 {
  font-size: 1.5rem;
  color: var(--color-black);
  margin: 32px 0 16px;
}

.page-content__body h3 {
  font-size: 1.25rem;
  color: var(--color-black);
  margin: 24px 0 12px;
}

.page-content__body p {
  margin-bottom: 16px;
}

.page-content__body ul,
.page-content__body ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.page-content__body li {
  margin-bottom: 8px;
}

.page-content__body img {
  border-radius: 0;
  margin: 24px 0;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
  padding: 160px 0 100px;
  text-align: center;
}

@media (min-width: 768px) {
  .page-404 {
    padding: 200px 0 120px;
  }
}

.page-404__title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .page-404__title {
    font-size: 5rem;
  }
}

.page-404__text {
  color: var(--color-gray-text);
  margin-bottom: 36px;
  font-size: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   RICH TEXT EDITOR CONTENT
   ============================================================ */
.rte h1, .rte h2, .rte h3, .rte h4, .rte h5, .rte h6 {
  color: var(--color-black);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.3;
}

.rte p { margin-bottom: 1em; }
.rte ul, .rte ol { padding-left: 24px; margin-bottom: 1em; }
.rte li { margin-bottom: 0.5em; }
.rte img { margin: 1.5em 0; }
.rte a { color: var(--color-magenta); text-decoration: underline; }
.rte a:hover { color: var(--color-blue); }

/* Light context overrides for .rte */
.product-desc-section .rte h1,
.product-desc-section .rte h2,
.product-desc-section .rte h3,
.product-desc-section .rte h4,
.product-desc-section .rte h5,
.product-desc-section .rte h6 {
  color: var(--color-black);
}

.product-desc-section .rte p {
  color: var(--color-gray-text);
}

.product-desc-section .rte a {
  color: var(--color-blue);
}

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-page {
  padding: 100px 0 60px;
}

@media (min-width: 768px) {
  .cart-page {
    padding: 120px 0 80px;
  }
}

.cart-page__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .cart-page__title {
    font-size: 3rem;
    margin-bottom: 48px;
  }
}

.cart-items {
  border-top: 1px solid var(--color-gray-border);
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-gray-border);
}

@media (min-width: 768px) {
  .cart-item {
    grid-template-columns: 100px 1fr auto auto;
    gap: 24px;
  }
}

.cart-item__img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-gray-light);
}

.cart-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__title {
  font-weight: 700;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 4px;
}

.cart-item__variant {
  font-size: 0.8rem;
  color: var(--color-gray-text);
  margin-bottom: 4px;
}

.cart-item__price {
  font-weight: 700;
  font-size: 0.9rem;
}

.cart-item__qty-input {
  width: 60px;
  height: 44px;
  text-align: center;
  border: 1px solid var(--color-gray-border);
  font-family: var(--font-body);
  font-size: 0.9rem;
  appearance: textfield;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

.cart-item__remove {
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-text);
  -webkit-tap-highlight-color: transparent;
}

.cart-item__remove:hover {
  color: var(--color-magenta);
}

.cart-footer {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid var(--color-black);
  text-align: right;
}

.cart-footer__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.cart-footer__note {
  font-size: 0.8rem;
  color: var(--color-gray-text);
  margin-bottom: 24px;
}

.cart-footer__checkout {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .cart-footer__checkout {
    width: auto;
  }
}

.cart-footer__update {
  font-size: 0.75rem;
  padding: 8px 24px;
}

.cart-empty {
  text-align: center;
  padding: 60px 0;
}

.cart-empty__text {
  font-size: 1.1rem;
  color: var(--color-gray-text);
  margin-bottom: 24px;
}

/* ===================================================================
   PRODUCT ACCORDION (Expandable feature details)
   =================================================================== */
.product-accordion-section {
  background: #FFFFFF;
  color: var(--color-black);
  padding: 0 0 64px;
}
.product-accordion-section .wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .product-accordion-section .wrapper { padding: 0 calc(2.5% + 16px); }
}

.product-accordion-list {
  max-width: 800px;
}

.product-accordion-item {
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  margin-bottom: 10px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s;
}
.product-accordion-item:hover {
  border-color: rgba(0,0,0,0.15);
}

.product-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: none;
  background: none;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-black);
  cursor: pointer;
  text-align: left;
  gap: 12px;
}
.product-accordion-trigger svg {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: #999;
}
.product-accordion-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
  color: var(--color-black);
}

.product-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.product-accordion-panel.is-open {
  max-height: 500px;
}
.product-accordion-panel__inner {
  padding: 0 20px 16px;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--color-gray-text);
}

@media (max-width: 767px) {
  .product-accordion-section { padding: 0 0 40px; }
  .product-accordion-trigger { padding: 14px 16px; font-size: 0.82rem; }
  .product-accordion-panel__inner { padding: 0 16px 14px; font-size: 0.8rem; }
}

/* ===================================================================
   PRODUCT TRAIT ICONS (SVG feature icons with labels)
   =================================================================== */
.product-traits-section {
  background: #FFFFFF;
  color: var(--color-black);
  padding: 0 0 64px;
}
.product-traits-section .wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .product-traits-section .wrapper { padding: 0 calc(2.5% + 16px); }
}

.product-traits-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.product-trait-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100px;
}
.product-trait-item__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 8px;
}
.product-trait-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-trait-item__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.3;
}

@media (max-width: 767px) {
  .product-traits-section { padding: 0 0 40px; }
  .product-traits-grid { gap: 16px; }
  .product-trait-item { width: 80px; }
  .product-trait-item__icon { width: 44px; height: 44px; margin-bottom: 6px; }
  .product-trait-item__label { font-size: 0.68rem; }
}

/* ===================================================================
   COMPLIANCE BADGES (REACh, RoHS, PAH)
   =================================================================== */
.product-compliance-section {
  background: #FFFFFF;
  color: var(--color-black);
  padding: 0 0 64px;
}
.product-compliance-section .wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .product-compliance-section .wrapper { padding: 0 calc(2.5% + 16px); }
}

.product-compliance-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.product-compliance-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 72px;
}
.product-compliance-badge__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 6px;
}
.product-compliance-badge__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-compliance-badge__label {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--color-gray-text);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .product-compliance-section { padding: 0 0 40px; }
  .product-compliance-row { gap: 12px; }
  .product-compliance-badge { width: 64px; }
  .product-compliance-badge__icon { width: 48px; height: 48px; }
  .product-compliance-badge__label { font-size: 0.58rem; }
}

/* ===================================================================
   SUSTAINABILITY PASSPORT (PNG badges)
   =================================================================== */
.product-passport-section {
  background: #FFFFFF;
  color: var(--color-black);
  padding: 0 0 80px;
}
.product-passport-section .wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .product-passport-section .wrapper { padding: 0 calc(2.5% + 16px); }
}

.product-passport-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.product-passport-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 88px;
}
.product-passport-item__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}
.product-passport-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-passport-item__label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--color-gray-text);
  line-height: 1.3;
}

@media (max-width: 767px) {
  .product-passport-section { padding: 0 0 48px; }
  .product-passport-row { gap: 14px; }
  .product-passport-item { width: 76px; }
  .product-passport-item__icon { width: 52px; height: 52px; }
  .product-passport-item__label { font-size: 0.64rem; }
}

/* ============================================================
   KARIYER (CAREER) PAGE
   ============================================================ */
.kariyer-page {
  background: var(--color-white);
}

.kariyer-hero {
  position: relative;
  width: 100%;
  min-height: 340px;
  overflow: hidden;
}

.kariyer-hero__img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.kariyer-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.55) 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
}

.kariyer-hero__title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.kariyer-hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin: 0;
  max-width: 560px;
}

@media (min-width: 768px) {
  .kariyer-hero {
    min-height: 420px;
  }
  .kariyer-hero__img {
    min-height: 420px;
    max-height: 600px;
  }
  .kariyer-hero__title {
    font-size: 3.2rem;
  }
  .kariyer-hero__subtitle {
    font-size: 1.25rem;
  }
  .kariyer-hero__overlay {
    padding-bottom: 64px;
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  padding: 100px 0 80px;
  background: var(--color-white);
}
@media (min-width: 768px) {
  .contact-page {
    padding: 120px 0 100px;
  }
}

/* Hero */
.contact-hero {
  text-align: center;
  margin-bottom: 48px;
}
.contact-hero__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .contact-hero__title {
    font-size: 3.5rem;
  }
}
.contact-hero__subtitle {
  color: var(--color-gray-text);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.7;
}
.contact-hero__line {
  width: 80px;
  height: 4px;
  background: var(--gradient-brand);
  margin: 0 auto;
  border-radius: 2px;
}

/* ===== Üst Bölüm: Kartlar (sol) + Form (sağ) ===== */
.contact-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .contact-top-grid {
    grid-template-columns: 340px 1fr;
    gap: 32px;
    align-items: start;
  }
}
@media (min-width: 992px) {
  .contact-top-grid {
    grid-template-columns: 380px 1fr;
    gap: 40px;
  }
}

.contact-top-grid__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-top-grid__cards .contact-card--big {
  flex: 1;
  justify-content: center;
  padding: 20px 16px;
}
.contact-top-grid__cards .contact-card--big .contact-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}
.contact-top-grid__cards .contact-card--big .contact-card__icon svg {
  width: 18px;
  height: 18px;
}
.contact-top-grid__cards .contact-card--big .contact-card__value {
  font-size: 0.82rem;
}
.contact-top-grid__form {
  display: flex;
  flex-direction: column;
}

/* İletişim Kartları (büyük, alt alta) */
.contact-card--big {
  padding: 28px 20px;
}
.contact-card--big .contact-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}
.contact-card--big .contact-card__icon svg {
  width: 22px;
  height: 22px;
}
.contact-card--big .contact-card__value {
  font-size: 0.9rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  background: var(--color-gray-light);
  border-radius: 12px;
  border: 1.5px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--color-black);
}
.contact-card:hover {
  border-color: rgba(0,0,0,0.08);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.contact-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.contact-card:hover .contact-card__icon {
  background: var(--color-black);
  color: var(--color-white);
}
.contact-card__icon svg {
  width: 20px;
  height: 20px;
}
.contact-card__icon--whatsapp {
  background: #25D366;
  color: #fff;
}
.contact-card:hover .contact-card__icon--whatsapp {
  background: #128C7E;
  color: #fff;
}
.contact-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray-text);
  margin-bottom: 4px;
}
.contact-card__value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-black);
}

/* Section Titles */
.contact-section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .contact-section-title {
    font-size: 1.65rem;
  }
}
.contact-section-title--centered {
  text-align: center;
}

.contact-section-desc {
  color: var(--color-gray-text);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}

/* Form */
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 480px) {
  .contact-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
}
.contact-form__field--full {
  margin-bottom: 24px;
}

.contact-form__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-black);
  margin-bottom: 8px;
}

.contact-form__input {
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid var(--color-gray-border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-black);
  background: var(--color-white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  -webkit-appearance: none;
}
.contact-form__input::placeholder {
  color: #aaa;
}
.contact-form__input:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(24,127,206,0.12);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__submit {
  position: absolute;
  bottom: 14px;
  right: 14px;
  margin: 0;
  background: var(--color-black);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s ease, transform 0.2s ease;
}
.contact-form__submit:hover {
  background: #333;
  transform: translateY(-1px);
}
.contact-form__submit .submit-icon {
  font-weight: 900;
  font-size: 1.5em;
  line-height: 1;
}

/* Mesaj + Gönder sarmalayıcı */
.contact-form__msg-wrap {
  position: relative;
}
.contact-form__msg-wrap .contact-form__textarea {
  padding-bottom: 48px;
  min-height: 160px;
}

/* Harita Blokları */
.contact-map-block {
  margin-bottom: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-map-block:last-child {
  margin-bottom: 0;
}

.contact-map-block__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 8px;
  padding-left: 2px;
  font-family: var(--font-body);
}

.contact-map-block__frame {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-gray-light);
  border: 1.5px solid var(--color-gray-border);
  position: relative;
  flex: 1;
}
.contact-map-block__frame iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
  display: block;
}

/* Harita üzeri adres kartı */
.contact-map-block__info-card {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
  display: flex;
  align-items: stretch;
  max-width: 260px;
  overflow: hidden;
  z-index: 2;
}
.contact-map-block__info-text {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.contact-map-block__info-address {
  font-size: 0.7rem;
  color: #333;
  line-height: 1.45;
  font-family: var(--font-body);
}

/* Yol tarifi butonu (Google Maps ok ikonu) */
.contact-map-block__info-dir {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-left: 1px solid #e8e8e8;
  color: #4285F4;
  transition: background 0.2s ease;
  flex-shrink: 0;
  text-decoration: none;
}
.contact-map-block__info-dir:hover {
  background: #f0f5ff;
}
.contact-map-block__info-dir svg {
  flex-shrink: 0;
}

/* ===== Alt Bölüm: Haritalar Yan Yana ===== */
.contact-maps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .contact-maps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
.contact-maps-grid .contact-map-block {
  margin-bottom: 0;
}
.contact-maps-grid .contact-map-block__frame {
  height: 900px;
}
.contact-maps-grid .contact-map-block__frame iframe {
  height: 100%;
  min-height: 0;
}

.contact-map-block__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  color: #bbb;
  gap: 12px;
  font-size: 0.85rem;
}

/* WhatsApp Sabit Buton (FAB) */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
}
@media (min-width: 768px) {
  .whatsapp-fab {
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
  }
}

/* Visually hidden utility (accessibility) */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ============================================================
   SEARCH & ACCOUNT BUTTONS (Header – matches .header-cart style)
   ============================================================ */
.header-search-btn,
.header-account-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-white);
  opacity: 0.85;
  transition: var(--transition);
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  text-decoration: none;
}
.header-search-btn:hover,
.header-account-btn:hover {
  opacity: 1;
}
.header-search-btn svg,
.header-account-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.search-overlay__inner {
  width: 100%;
  max-width: 640px;
  padding: 0 24px;
}
.search-overlay__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}
.search-overlay__form {
  display: flex;
  align-items: center;
  border-bottom: 2px solid rgba(255,255,255,.3);
  padding-bottom: 12px;
  margin-bottom: 32px;
}
.search-overlay__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.5rem;
  font-family: inherit;
  padding: 8px 0;
}
.search-overlay__input::placeholder {
  color: rgba(255,255,255,.5);
}
.search-overlay__submit {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}
.search-overlay__label {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.search-overlay__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.search-tag {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 24px;
  color: #fff;
  text-decoration: none;
  font-size: .9rem;
  transition: background .2s, border-color .2s;
}
.search-tag:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.5);
}

/* ============================================================
   ACCOUNT MODAL
   ============================================================ */
.account-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.account-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.account-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}
.account-modal__panel {
  position: relative;
  background: var(--color-bg, #1a1a1a);
  border-radius: 16px;
  padding: 32px;
  width: 100%;
  max-width: 400px;
  margin: 0 16px;
  transform: translateY(20px);
  transition: transform .3s;
}
.account-modal.is-open .account-modal__panel {
  transform: translateY(0);
}
.account-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.account-modal__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.account-modal__close {
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  padding: 4px;
}
.account-form-group {
  margin-bottom: 16px;
}
.account-form-group label {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
}
.account-form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: .95rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}
.account-form-group input:focus {
  border-color: rgba(255,255,255,.5);
}
.account-modal__btn {
  width: 100%;
  margin-top: 8px;
  text-align: center;
  justify-content: center;
}
.account-modal__switch {
  text-align: center;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-top: 16px;
}
.account-modal__switch a {
  color: #fff;
  text-decoration: underline;
}
.account-modal__forgot {
  display: block;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-top: 8px;
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.cart-drawer.is-open {
  opacity: 1;
  visibility: visible;
}
.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}
.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--color-bg, #1a1a1a);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.cart-drawer.is-open .cart-drawer__panel {
  transform: translateX(0);
}
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.cart-drawer__title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.cart-drawer__close {
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  padding: 4px;
}
.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  color: rgba(255,255,255,.5);
  padding-top: 60px;
}
.cart-drawer__empty svg {
  opacity: .4;
}
.cart-drawer__empty p {
  font-size: 1rem;
  margin: 0;
}
.cart-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.cart-drawer__note {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.cart-drawer__checkout {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ============================================================
   CART DRAWER ITEMS
   ============================================================ */
.cart-drawer-item {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.cart-drawer-item__img {
  width: 72px;
  flex-shrink: 0;
}
.cart-drawer-item__img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.cart-drawer-item__info {
  flex: 1;
  min-width: 0;
}
.cart-drawer-item__title {
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}
.cart-drawer-item__variant {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin: 0 0 4px;
}
.cart-drawer-item__price {
  font-size: .9rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
}
.cart-drawer-item__qty {
  display: flex;
  align-items: center;
  gap: 0;
}
.qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: background .2s;
}
.qty-btn:first-child { border-radius: 6px 0 0 6px; }
.qty-btn:last-child { border-radius: 0 6px 6px 0; }
.qty-btn:hover { background: rgba(255,255,255,.15); }
.qty-value {
  width: 36px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
}
.cart-drawer-item__remove {
  position: absolute;
  top: 16px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,.4);
  cursor: pointer;
  padding: 4px;
}
.cart-drawer-item__remove:hover {
  color: #ff4444;
}

/* Logged-in account modal */
.account-modal__logged-in {
  text-align: center;
  padding: 16px 0;
}
.account-modal__greeting {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.account-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Search predictive results */
.search-overlay__results {
  margin-top: 24px;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
  color: #fff;
  transition: opacity .2s;
}
.search-result-item:hover {
  opacity: .8;
}
.search-result-item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
}
.search-result-item__info {
  flex: 1;
}
.search-result-item__title {
  font-size: .95rem;
  font-weight: 600;
}
.search-result-item__price {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}

/* ============================================================
   MOBILE RESPONSIVE – ALL COMPONENTS
   ============================================================ */

/* Header actions: hide labels on mobile, keep icons */
@media (max-width: 767px) {
  .header-actions {
    gap: 4px;
  }
  .header-search-btn,
  .header-account-btn {
    padding: 6px;
    min-width: 40px;
    min-height: 40px;
  }
  .header-search-btn svg,
  .header-account-btn svg {
    width: 20px;
    height: 20px;
  }
  .header-cart {
    padding: 6px;
    min-width: 40px;
    min-height: 40px;
  }
  .header-cart svg {
    width: 20px;
    height: 20px;
  }
  .header-cart-count {
    min-width: 14px;
    height: 14px;
    font-size: .55rem;
    top: 1px;
    right: -1px;
  }
}

/* Search Overlay – Mobile */
@media (max-width: 767px) {
  .search-overlay {
    padding-top: 80px;
    align-items: flex-start;
  }
  .search-overlay__inner {
    padding: 0 16px;
  }
  .search-overlay__input {
    font-size: 1.15rem;
  }
  .search-overlay__close {
    top: 16px;
    right: 16px;
  }
  .search-overlay__tags {
    gap: 6px;
  }
  .search-tag {
    padding: 6px 12px;
    font-size: .8rem;
  }
}

/* Account Modal – Mobile */
@media (max-width: 767px) {
  .account-modal__panel {
    max-width: 100%;
    margin: 0;
    border-radius: 16px 16px 0 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    padding: 24px 20px;
    max-height: 90vh;
    overflow-y: auto;
  }
  .account-modal.is-open .account-modal__panel {
    transform: translateY(0);
  }
}

/* Cart Drawer – Mobile full width */
@media (max-width: 767px) {
  .cart-drawer__panel {
    max-width: 100%;
    width: 100%;
  }
  .cart-drawer__header {
    padding: 16px 16px;
  }
  .cart-drawer__body {
    padding: 16px;
  }
  .cart-drawer__footer {
    padding: 16px;
  }
  .cart-drawer-item__img {
    width: 60px;
  }
}

/* Escape key & body scroll lock */
@media (max-width: 991px) {
  body.overlay-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
}

/* ============================================================
   CUSTOMER PAGES — Login, Register, Account, Addresses, Order
   ============================================================ */
.customer-page {
  padding: 100px 0 60px;
}

@media (min-width: 768px) {
  .customer-page {
    padding: 120px 0 80px;
  }
}

/* Centered form wrapper */
.customer-form-wrapper {
  max-width: 460px;
  margin: 0 auto;
}

.customer-form-block {
  margin-bottom: 32px;
}

.customer-form__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .customer-form__title {
    font-size: 2.5rem;
  }
}

.customer-form__subtitle {
  color: var(--color-gray-text);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Form fields */
.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  color: var(--color-black);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-gray-border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-black);
  background: var(--color-white);
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-black);
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231d1d1b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-black);
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.85rem;
  cursor: pointer;
}

/* Form status messages */
.form-status {
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-status--error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
}

.form-status--success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #15803d;
}

/* Submit button full-width */
.customer-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* Links row */
.customer-form__links {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--color-gray-text);
}

.customer-form__links a {
  color: var(--color-black);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.customer-form__links a:hover {
  color: var(--color-magenta);
}

.customer-form__sep {
  margin: 0 8px;
}

.customer-form__link {
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.customer-back-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-gray-text);
}

.customer-back-link:hover {
  color: var(--color-black);
}

/* ============================================================
   ACCOUNT DASHBOARD
   ============================================================ */
.account-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.account-header__actions {
  display: flex;
  gap: 12px;
}

.account-section__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.account-orders {
  margin-bottom: 48px;
}

.account-orders__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.account-orders__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.account-orders__table th {
  text-align: left;
  font-weight: 700;
  padding: 12px 16px;
  border-bottom: 2px solid var(--color-black);
  white-space: nowrap;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.account-orders__table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-gray-border);
  vertical-align: middle;
}

.account-orders__table td a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.account-orders__table td a:hover {
  color: var(--color-magenta);
}

/* Responsive table: stack on mobile */
@media (max-width: 767px) {
  .account-orders__table thead {
    display: none;
  }
  .account-orders__table tr {
    display: block;
    margin-bottom: 16px;
    padding: 16px;
    border: 1px solid var(--color-gray-border);
  }
  .account-orders__table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
    padding: 6px 0;
    font-size: 0.85rem;
  }
  .account-orders__table td::before {
    content: attr(data-label);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gray-text);
  }
}

/* Status badges */
.status-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 20px;
  white-space: nowrap;
}

.status-badge--paid,
.status-badge--fulfilled {
  background: #dcfce7;
  color: #15803d;
}

.status-badge--pending,
.status-badge--unfulfilled {
  background: #fef9c3;
  color: #a16207;
}

.status-badge--refunded,
.status-badge--voided {
  background: #f3f4f6;
  color: #6b7280;
}

.status-badge--partially_paid,
.status-badge--partially_fulfilled {
  background: #dbeafe;
  color: #1d4ed8;
}

/* Empty state */
.account-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--color-gray-text);
}

.account-empty svg {
  margin: 0 auto 16px;
  opacity: 0.4;
}

.account-empty p {
  margin-bottom: 20px;
}

.account-address-preview {
  margin-bottom: 48px;
}

.address-card {
  padding: 20px 24px;
  border: 1px solid var(--color-gray-border);
  margin-bottom: 16px;
  position: relative;
}

.address-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 20px;
}

.address-card__body p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.address-card__actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.address-card__btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--color-black);
  padding: 0;
}

.address-card__btn:hover {
  color: var(--color-magenta);
}

.address-card__btn--delete {
  color: #b91c1c;
}

.address-card__btn--delete:hover {
  color: #991b1b;
}

.addresses-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .addresses-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.address-add-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.address-form-card {
  grid-column: 1 / -1;
  padding: 24px;
  border: 1px solid var(--color-gray-border);
  margin-bottom: 24px;
}

.address-form__heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.address-form__actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.address-edit-form {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-gray-border);
}

/* ============================================================
   ORDER DETAIL
   ============================================================ */
.order-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.order-header__date {
  color: var(--color-gray-text);
  font-size: 0.9rem;
}

.order-items {
  margin-bottom: 36px;
}

.order-item-product {
  display: flex;
  align-items: center;
  gap: 12px;
}

.order-item__img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  flex-shrink: 0;
}

.order-item__variant {
  display: block;
  font-size: 0.8rem;
  color: var(--color-gray-text);
}

.order-summary-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 36px;
}

@media (min-width: 768px) {
  .order-summary-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.order-summary-card {
  padding: 24px;
  background: var(--color-gray-light);
}

.order-summary-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.order-summary__list {
  display: grid;
  gap: 8px;
}

.order-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.order-summary__row--discount dd {
  color: #15803d;
}

.order-summary__row--total {
  padding-top: 12px;
  border-top: 2px solid var(--color-black);
  margin-top: 8px;
  font-weight: 700;
  font-size: 1rem;
}

.order-addresses-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .order-addresses-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.order-address-card {
  padding: 24px;
  background: var(--color-gray-light);
}

.order-address-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.order-address-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.order-status-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.order-status-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.order-status-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray-text);
}

/* ============================================================
   SEARCH RESULTS PAGE
   ============================================================ */
.search-page {
  padding: 100px 0 60px;
}

@media (min-width: 768px) {
  .search-page {
    padding: 120px 0 80px;
  }
}

.search-page__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .search-page__title {
    font-size: 3rem;
    margin-bottom: 36px;
  }
}

.search-page__form {
  margin-bottom: 32px;
}

.search-page__input-wrap {
  display: flex;
  align-items: center;
  border: 2px solid var(--color-black);
  max-width: 600px;
}

.search-page__input {
  flex: 1;
  border: none;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: transparent;
}

.search-page__input:focus {
  outline: none;
}

.search-page__submit {
  background: var(--color-black);
  color: var(--color-white);
  border: none;
  padding: 14px 18px;
  cursor: pointer;
  transition: var(--transition);
}

.search-page__submit:hover {
  background: var(--color-magenta);
}

.search-page__count {
  color: var(--color-gray-text);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.search-page__count strong {
  color: var(--color-black);
}

.search-page__empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--color-gray-text);
}

.search-page__empty svg {
  margin: 0 auto 16px;
  opacity: 0.4;
}

.search-page__empty p {
  margin-bottom: 8px;
}

.search-page__empty-hint {
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.search-page__initial {
  text-align: center;
  padding: 48px 24px;
  color: var(--color-gray-text);
}

.product-card__type {
  color: var(--color-gray-text);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   COLLECTION TOOLBAR + FILTERS
   ============================================================ */
.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.collection-toolbar__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.collection-toolbar__count {
  font-size: 0.85rem;
  color: var(--color-gray-text);
}

.collection-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--color-gray-border);
  padding: 10px 18px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}

.collection-filter-toggle:hover {
  border-color: var(--color-black);
}

.collection-sort {
  padding: 10px 36px 10px 16px;
  border: 1px solid var(--color-gray-border);
  font-family: var(--font-body);
  font-size: 0.85rem;
  background: var(--color-white);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231d1d1b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.collection-sort:focus {
  outline: none;
  border-color: var(--color-black);
}

/* Active filters */
.collection-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  align-items: center;
}

.active-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--color-gray-light);
  border: 1px solid var(--color-gray-border);
  border-radius: 20px;
  transition: var(--transition);
}

.active-filter-tag:hover {
  border-color: var(--color-black);
}

.active-filter-clear {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-gray-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.active-filter-clear:hover {
  color: var(--color-black);
}

/* Collection layout with sidebar */
.collection-layout {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .collection-layout {
    grid-template-columns: 240px 1fr;
  }
}

.collection-products {
  min-width: 0;
}

/* Filter sidebar */
.collection-filters {
  display: none;
}

.collection-filters.is-open {
  display: block;
}

@media (min-width: 768px) {
  .collection-filters {
    display: block;
  }
}

.filter-group {
  border-bottom: 1px solid var(--color-gray-border);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.filter-group__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  margin-bottom: 12px;
}

.filter-list {
  display: grid;
  gap: 6px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.85rem;
}

.filter-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-black);
  cursor: pointer;
}

.filter-checkbox__count {
  color: var(--color-gray-text);
  font-size: 0.8rem;
}

/* Price filter */
.filter-price__inputs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-price__field {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-gray-border);
  flex: 1;
}

.filter-price__currency {
  padding: 8px 0 8px 10px;
  font-size: 0.85rem;
  color: var(--color-gray-text);
}

.filter-price__field input {
  border: none;
  padding: 8px;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.filter-price__field input:focus {
  outline: none;
}

.filter-price__sep {
  font-size: 0.9rem;
  color: var(--color-gray-text);
}

.filter-apply-btn {
  width: 100%;
  margin-top: 8px;
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* Mobile filter sidebar slide-in */
@media (max-width: 767px) {
  .collection-layout {
    grid-template-columns: 1fr;
  }

  .collection-filters {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 340px;
    height: 100%;
    background: var(--color-white);
    z-index: 1000;
    padding: 24px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
  }

  .collection-filters.is-open {
    display: block;
    transform: translateX(0);
  }
}

/* ============================================================
   ADD-TO-CART TOAST NOTIFICATION
   ============================================================ */
#atc-toast {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-black, #1d1d1b);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10001;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  transition: bottom 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
  pointer-events: none;
}

#atc-toast.is-visible {
  bottom: 32px;
}

#atc-toast.is-error {
  background: #d32f2f;
}

#atc-toast svg {
  flex-shrink: 0;
}

@media (max-width: 767px) {
  #atc-toast {
    left: 16px;
    right: 16px;
    transform: none;
    width: auto;
    text-align: center;
    justify-content: center;
    font-size: 0.85rem;
    padding: 12px 20px;
    border-radius: 8px;
  }

  #atc-toast.is-visible {
    bottom: 16px;
  }
}

/* ============================================================
   ADD-TO-CART BUTTON LOADING STATE
   ============================================================ */
.product-atc-btn {
  position: relative;
  overflow: hidden;
}

.product-atc-btn.is-loading [data-atc-text] {
  visibility: hidden;
}

.product-atc-btn.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: atcSpin 0.6s linear infinite;
}

@keyframes atcSpin {
  to { transform: rotate(360deg); }
}

.product-atc-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============================================================
   HEADER ACCOUNT — LOGGED-IN STATE
   ============================================================ */
.header-account-btn.is-logged-in {
  position: relative;
}

.header-account-btn.is-logged-in::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green, #82b71d);
}

/* ============================================================
   CART DRAWER — REBUILT ITEMS
   ============================================================ */
.cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  gap: 16px;
  color: var(--color-gray-text, #666);
}

.cart-drawer__empty svg {
  opacity: 0.4;
}

.cart-drawer__empty p {
  font-size: 1rem;
  margin: 0;
}

.cart-drawer__empty .btn {
  margin-top: 8px;
}

/* ============================================================
   MOBILE FIXES — Safe-area, ultra-small screens, flex-wrap
   ============================================================ */

/* Product variations: full-width rows on small mobile */
@media (max-width: 575px) {
  .product-variations {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .product-variant-row {
    width: 100%;
    flex-wrap: wrap;
  }
}

/* Cart drawer: ultra-small screens */
@media (max-width: 320px) {
  .cart-drawer-item__img {
    width: 48px;
  }
  .cart-drawer-item__title {
    font-size: 0.8rem;
  }
  .cart-drawer-item__qty .qty-btn {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }
}

/* Account modal: safe-area for notch/dynamic island */
@media (max-width: 767px) {
  .account-modal__panel {
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }
}

/* Cart drawer: safe-area bottom */
@media (max-width: 767px) {
  .cart-drawer__footer {
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }
}

/* Search overlay close: safe-area right */
@media (max-width: 767px) {
  .search-overlay__close {
    right: calc(16px + env(safe-area-inset-right));
    top: calc(16px + env(safe-area-inset-top));
  }
}

/* Product gallery: full width on tiny screens */
@media (max-width: 480px) {
  .product-gallery__main {
    max-width: 100%;
  }
  .product-gallery__main img {
    width: 100%;
    height: auto;
  }
}

/* Product hero features: single column on tiny screens */
@media (max-width: 374px) {
  .product-hero-features {
    grid-template-columns: 1fr;
  }
  .related-products-grid {
    grid-template-columns: 1fr;
  }
}

/* Toast: handle ultra-narrow screens */
@media (max-width: 340px) {
  #atc-toast {
    font-size: 0.78rem;
    padding: 10px 14px;
  }
}

/* Body scroll lock: safe-area aware */
body.overlay-open {
  touch-action: none;
  -webkit-overflow-scrolling: none;
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-page {
  padding: 100px 0 60px;
}

@media (min-width: 768px) {
  .blog-page {
    padding: 120px 0 80px;
  }
}

.blog-header {
  margin-bottom: 40px;
}

.blog-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

/* Blog tags */
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.blog-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: var(--color-bg-subtle, #f5f5f5);
  color: var(--color-black);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.blog-tag:hover,
.blog-tag.is-active {
  background: var(--color-black);
  color: #fff;
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-grid._compact {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 575px) {
  .blog-grid,
  .blog-grid._compact {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Blog card */
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.blog-card__img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.blog-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img-wrap img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 20px;
}

.blog-card._sm .blog-card__body {
  padding: 16px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.78rem;
  color: var(--color-gray-text, #888);
}

.blog-card__tag {
  background: rgba(130,183,29,0.12);
  color: var(--color-green, #82b71d);
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 600;
}

.blog-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}

.blog-card._sm .blog-card__title {
  font-size: 0.95rem;
}

.blog-card__title a {
  color: var(--color-black);
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--color-green);
}

.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--color-gray-text, #666);
  line-height: 1.6;
  margin-bottom: 12px;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-green);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.blog-card__link:hover {
  gap: 10px;
}

/* Blog empty */
.blog-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--color-gray-text, #888);
  font-size: 1rem;
}

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article-page {
  padding: 100px 0 60px;
}

@media (min-width: 768px) {
  .article-page {
    padding: 120px 0 80px;
  }
}

.article-header {
  max-width: 800px;
  margin: 0 auto 32px;
}

.article-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--color-gray-text, #888);
}

.article-meta__author {
  font-weight: 600;
  color: var(--color-black);
}

.article-meta__tags {
  display: flex;
  gap: 6px;
}

.article-tag {
  background: var(--color-bg-subtle, #f5f5f5);
  color: var(--color-black);
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.article-tag:hover {
  background: var(--color-black);
  color: #fff;
}

/* Article hero image */
.article-hero-img {
  max-width: 900px;
  margin: 0 auto 40px;
  border-radius: 12px;
  overflow: hidden;
}

.article-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Article body (Shopify RTE) */
.article-body {
  max-width: 800px;
  margin: 0 auto 48px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-black);
}

.article-body h2,
.article-body h3,
.article-body h4 {
  margin-top: 2em;
  margin-bottom: 0.6em;
  font-weight: 700;
}

.article-body h2 { font-size: 1.4rem; }
.article-body h3 { font-size: 1.2rem; }

.article-body p {
  margin-bottom: 1.2em;
}

.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5em 0;
}

.article-body blockquote {
  border-left: 4px solid var(--color-green);
  padding: 12px 20px;
  margin: 1.5em 0;
  background: rgba(130,183,29,0.05);
  font-style: italic;
  color: var(--color-gray-text);
}

.article-body ul,
.article-body ol {
  padding-left: 24px;
  margin-bottom: 1.2em;
}

.article-body li {
  margin-bottom: 0.5em;
}

.article-body a {
  color: var(--color-green);
  text-decoration: underline;
}

/* Article share */
.article-share {
  max-width: 800px;
  margin: 0 auto 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.article-share__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-black);
}

.article-share__buttons {
  display: flex;
  gap: 10px;
}

.article-share__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-subtle, #f5f5f5);
  color: var(--color-black);
  transition: var(--transition);
}

.article-share__btn:hover {
  background: var(--color-black);
  color: #fff;
}

/* Comments */
.article-comments {
  max-width: 800px;
  margin: 0 auto 48px;
}

.article-comments h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.comment-item {
  display: flex;
  gap: 14px;
}

.comment-item__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.comment-item__body {
  flex: 1;
}

.comment-item__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 0.82rem;
}

.comment-item__meta strong {
  color: var(--color-black);
}

.comment-item__meta time {
  color: var(--color-gray-text, #888);
}

.comment-item__text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-black);
}

/* Comment form */
.comment-form-wrap {
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.comment-form-wrap h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.form-row._two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 575px) {
  .form-row._two-cols {
    grid-template-columns: 1fr;
  }
}

/* Related articles */
.article-related {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.article-related h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
  grid-column: 1 / -1;
}

.pagination__num,
.pagination__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-black);
  text-decoration: none;
  transition: var(--transition);
}

.pagination__num:hover,
.pagination__btn:hover {
  background: var(--color-bg-subtle, #f5f5f5);
}

.pagination__num.is-current {
  background: var(--color-black);
  color: #fff;
}

@media (max-width: 575px) {
  .pagination__num,
  .pagination__btn {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }
}

/* ============================================================
   PASSWORD PAGE
   ============================================================ */
.password-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #1d1d1b 0%, #2a2a28 100%);
}

.password-page__inner {
  max-width: 460px;
  width: 100%;
  text-align: center;
  color: #fff;
}

.password-page__logo {
  width: 140px;
  margin: 0 auto 32px;
}

.password-page__logo img {
  width: 100%;
  height: auto;
}

.password-page__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.password-page__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 36px;
}

.password-page__form {
  display: flex;
  gap: 12px;
  max-width: 380px;
  margin: 0 auto 32px;
}

.password-page__form .form-field {
  flex: 1;
}

.password-page__form input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.9rem;
}

.password-page__form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.password-page__form input:focus {
  outline: none;
  border-color: var(--color-green);
}

.password-page__form .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.password-page__powered {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.password-page__powered a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
}

@media (max-width: 480px) {
  .password-page__form {
    flex-direction: column;
  }
  .password-page__form .btn {
    width: 100%;
  }
}

/* ============================================================
   LIST COLLECTIONS PAGE
   ============================================================ */
.collections-page {
  padding: 100px 0 60px;
}

@media (min-width: 768px) {
  .collections-page {
    padding: 120px 0 80px;
  }
}

.collections-page__header {
  margin-bottom: 40px;
}

.collections-page__header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 991px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .collections-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.collection-card {
  display: block;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}

.collection-card__img-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.collection-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-card:hover .collection-card__img-wrap img {
  transform: scale(1.05);
}

.collection-card__body {
  padding: 20px;
}

.collection-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 4px;
}

.collection-card__count {
  font-size: 0.82rem;
  color: var(--color-gray-text, #888);
}

/* ============================================================
   DEMO MODE — Shopify aktif olana kadar header e-ticaret butonlari gizli.
   Shopify entegrasyonu bittiginde bu blok silinecek.
   ============================================================ */
.header-search-btn,
.header-account-btn,
.header-cart {
  display: none !important;
}

/* ============================================================
   Yeni Arka logosu (Arkalogo.svg) renk: #1c2c5a (koyu lacivert).
   Tum header class'larinda (_dark / _solid / _light) beyaza cevir — patron istegi.
   ============================================================ */
.site-header .header-logo-img,
.site-header .header-logo svg,
.site-header .header-logo img {
  filter: brightness(0) invert(1);
}

/* ============================================================
   Breadcrumb (haber + urun detay sayfalari) header altinda goze batiyor — gizle.
   Geri acmak icin bu blogu silin.
   ============================================================ */
.news-breadcrumb,
.pd-breadcrumb {
  visibility: hidden !important;
}

/* ============================================================
   Mobil footer: brand alani (logo + tagline + sosyal medya) center hizali.
   Desktop'ta sola hizali kalir.
   ============================================================ */
@media (max-width: 767px) {
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social {
    justify-content: center;
    width: 100%;
  }
}

/* ============================================================
   Placeholder linkler (Gizlilik / Kullanim Kosullari / Cerez / Sosyal placeholderlar):
   icerik sayfalari yapilana kadar yumusak gizleme — tiklanmaz, soluk gorunur.
   Sayfalar eklenince bu blok silinir + linklerin href'i guncellenir.
   ============================================================ */
.footer-legal a[href="#"],
.footer-links a[href="#"],
.footer-social a[href="#"] {
  pointer-events: none;
  opacity: 0.45;
  cursor: default;
}

/* === Mağaza nav butonu — gradient çerçeve, şeffaf iç (v2 hiza 2026-06-12) === */
.header-nav a.nav-magaza-btn,.mobile-menu a.nav-magaza-btn{position:relative;display:inline-flex;align-items:center;justify-content:center;align-self:flex-end;padding:8px 20px 16px;line-height:20.48px;font-weight:700;letter-spacing:.02em;background:linear-gradient(90deg,#e6007e,#9b2fae,#187fce);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:transparent;text-decoration:none;}
.nav-magaza-btn::before{content:"";position:absolute;top:4px;bottom:12px;left:0;right:0;border-radius:22px;padding:2px;background:linear-gradient(90deg,#e6007e,#9b2fae,#187fce);-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);-webkit-mask-composite:xor;mask-composite:exclude;pointer-events:none;z-index:-1;}
.nav-magaza-btn:hover{opacity:.85;}
.mobile-menu a.nav-magaza-btn{align-self:flex-start;padding:10px 18px;line-height:1;}
.mobile-menu a.nav-magaza-btn::before{top:0;bottom:0;}

@media (min-width:768px){.footer-top--3col{grid-template-columns:2fr 1fr 1fr}}
