/* =============================================
   MAHZEN DIZAYN — Soft Modern CSS Design System
   ============================================= */

/* ── 1. CSS CUSTOM PROPERTIES ── */
:root {
  /* Color Palette — Soft & Warm */
  --cream-50:  #fdfaf6;
  --cream-100: #f9f4ec;
  --cream-200: #f0e8d9;
  --cream-300: #e4d4bc;

  --rose-100:  #f7ede8;
  --rose-200:  #eecec3;
  --rose-300:  #d9a99a;
  --rose-400:  #c88070;
  --rose-500:  #b5604f;

  --sage-100:  #e8ede8;
  --sage-200:  #ccd8cc;
  --sage-300:  #a5bba5;
  --sage-400:  #7a9e7a;
  --sage-500:  #5a7f5a;

  --warm-100:  #f5f0ea;
  --warm-200:  #e8ddd0;
  --warm-300:  #c9b89f;
  --warm-400:  #a89070;
  --warm-500:  #8a6f50;

  --text-dark:    #2c2318;
  --text-medium:  #5c4a38;
  --text-light:   #8a7565;
  --text-muted:   #b8a898;

  --white:   #ffffff;
  --black:   #1a1208;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-lg:   1.125rem;
  --fs-xl:   1.25rem;
  --fs-2xl:  1.5rem;
  --fs-3xl:  2rem;
  --fs-4xl:  2.75rem;
  --fs-5xl:  3.5rem;
  --fs-6xl:  4.5rem;

  --fw-light:   300;
  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semi:    600;

  /* Spacing */
  --sp-1:   0.25rem;
  --sp-2:   0.5rem;
  --sp-3:   0.75rem;
  --sp-4:   1rem;
  --sp-5:   1.25rem;
  --sp-6:   1.5rem;
  --sp-8:   2rem;
  --sp-10:  2.5rem;
  --sp-12:  3rem;
  --sp-16:  4rem;
  --sp-20:  5rem;
  --sp-24:  6rem;

  /* Borders & Radii */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(60,30,10,.06);
  --shadow-sm: 0 2px 8px rgba(60,30,10,.08);
  --shadow-md: 0 4px 20px rgba(60,30,10,.10);
  --shadow-lg: 0 8px 40px rgba(60,30,10,.12);
  --shadow-xl: 0 20px 60px rgba(60,30,10,.15);

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   300ms ease;
  --transition-slow:   600ms ease;
  --transition-spring: 400ms cubic-bezier(.34,1.56,.64,1);
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  color: var(--text-dark);
  background-color: var(--cream-50);
  overflow-x: hidden;
  line-height: 1.6;
  max-width: 100vw;
  width: 100%;
}

img { display: block; width: 100%; object-fit: cover; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, textarea, select {
  font-family: inherit;
  outline: none;
}

/* ── 3. LAYOUT UTILITIES ── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.section {
  padding: var(--sp-20) 0;
}

/* ── 4. TYPOGRAPHY UTILITIES ── */
.section__eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-400);
  margin-bottom: var(--sp-3);
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-light);
  line-height: 1.15;
  color: var(--text-dark);
}

/* ── Informational Pages ── */
.info-page { padding: var(--sp-20) 0; }
.info-content { margin-top: 3rem; font-size: 1.05rem; line-height: 1.8; color: var(--text-medium); }
.info-content h3 { color: var(--text-dark); margin: 2rem 0 1rem; font-family: var(--font-display); font-size: var(--fs-2xl); }
.info-content ul { padding-left: 1.5rem; margin-bottom: 2rem; list-style-type: disc; }
.info-content li { margin-bottom: 0.5rem; }
.info-alert { padding: 1.5rem; border-radius: var(--radius-md); margin: 2rem 0; font-size: 0.95rem; }
.info-alert--warning { background: #fffcf0; border: 1px solid #f9731633; color: #9a3412; }

.section__title em {
  font-style: italic;
  color: var(--rose-400);
}

.section__header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

/* ── 5. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--rose-400);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(181,96,79,.3);
}
.btn--primary:hover {
  background: var(--rose-500);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181,96,79,.4);
}

.btn--ghost {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--cream-300);
}
.btn--ghost:hover {
  background: var(--cream-100);
  border-color: var(--warm-300);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--rose-400);
  border: 1.5px solid var(--rose-300);
}
.btn--outline:hover {
  background: var(--rose-100);
  transform: translateY(-2px);
}

.btn--full { width: 100%; }
.btn--light { background: var(--cream-100); color: var(--text-dark); border: 1.5px solid var(--cream-200); }
.btn--light:hover { background: var(--white); border-color: var(--rose-300); transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ── 6. ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--text-dark);
  color: var(--cream-200);
  text-align: center;
  padding: var(--sp-2) var(--sp-6);
  font-size: var(--fs-xs);
  letter-spacing: 0.03em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.announcement-bar p { flex: 1; text-align: center; }
.close-announcement {
  position: absolute;
  right: var(--sp-4);
  color: var(--cream-300);
  font-size: var(--fs-lg);
  line-height: 1;
  padding: 4px;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}
.close-announcement:hover { opacity: 1; }

/* ── 7. HEADER & NAV ── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253,250,246,.97);
  border-bottom: 1px solid var(--cream-200);
  transition: box-shadow 0.2s ease;
  will-change: box-shadow;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  max-width: 1400px;
  padding: 0 var(--sp-4) 0 var(--sp-2);
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
}

.nav__logo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav__logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition-fast);
}

.nav__logo-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  font-family: var(--font-display);
}

.nav__logo-text-main {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.08em;
}

.nav__logo-text-sub {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-medium);
  letter-spacing: 0.25em;
  padding-left: 1px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-size: var(--fs-sm);
  font-weight: 500;
  text-transform: capitalize;
  color: var(--text-medium);
  position: relative;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--rose-400);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
  color: var(--text-dark);
}
.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.nav__action-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--text-medium);
  transition: all var(--transition-fast);
  position: relative;
}

.nav__action-btn:hover {
  background: var(--cream-100);
  color: var(--text-dark);
}

.relative-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.nav-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--rose-400);
  color: var(--white);
  font-size: 10px;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 0 4px;
}

.user-status-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: var(--sage-500);
  border-radius: 50%;
  border: 2px solid var(--white);
}

.cart-count {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 18px;
  height: 18px;
  background: var(--text-dark);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: var(--fw-semi);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-spring);
}

.cart-count.bump {
  transform: scale(1.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  width: 40px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-dark);
  transition: all var(--transition-base);
  margin: 0 auto;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Search Bar */
.search-bar {
  padding: var(--sp-4) 0;
  border-top: 1px solid var(--cream-200);
  display: none;
  animation: slideDown 250ms ease;
}

.search-bar.open {
  display: block;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.search-bar .container {
  position: relative;
}

.search-input {
  width: 100%;
  padding: var(--sp-3) var(--sp-12) var(--sp-3) var(--sp-5);
  border: 1.5px solid var(--cream-200);
  border-radius: var(--radius-full);
  background: var(--cream-50);
  font-size: var(--fs-sm);
  color: var(--text-dark);
  transition: border-color var(--transition-fast);
}

.search-input:focus {
  border-color: var(--rose-300);
}

.search-close {
  position: absolute;
  right: var(--sp-4);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--fs-xl);
  color: var(--text-light);
  padding: var(--sp-2);
}

/* ── 8. HERO ── */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, var(--cream-50) 0%, var(--warm-100) 60%, var(--rose-100) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(238,206,195,.35) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(204,216,204,.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-16);
  padding-top: var(--sp-12);
  padding-bottom: var(--sp-12);
}

.hero__eyebrow {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-500);
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1.5px;
  background: var(--sage-400);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-6xl);
  font-weight: var(--fw-light);
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: var(--sp-6);
}

.hero__title em {
  font-style: italic;
  color: var(--rose-400);
}

.hero__subtitle {
  font-size: var(--fs-lg);
  color: var(--text-medium);
  font-weight: var(--fw-light);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
  max-width: 440px;
}

.hero__actions {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-12);
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semi);
  color: var(--text-dark);
}

.stat span {
  font-size: var(--fs-xs);
  color: var(--text-light);
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--cream-300);
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
  will-change: transform;
  transform: translateZ(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateZ(0); }
  50%       { transform: translateY(-16px) translateZ(0); }
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero__img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero__badge {
  position: absolute;
  bottom: var(--sp-6);
  left: calc(-1 * var(--sp-8));
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  box-shadow: var(--shadow-lg);
}

.badge-icon {
  font-size: 1.4rem;
  color: var(--rose-400);
}

.hero__badge strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--text-dark);
}

.hero__badge small {
  font-size: var(--fs-xs);
  color: var(--text-light);
}

.hero__floating-card {
  position: absolute;
  top: var(--sp-8);
  right: calc(-1 * var(--sp-6));
}

.floating-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  box-shadow: var(--shadow-lg);
  font-size: var(--fs-lg);
}

.floating-card strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--text-dark);
}

.floating-card small {
  font-size: var(--fs-xs);
  color: var(--text-light);
}

/* Hero Scroll Hint */
.hero__scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  padding-bottom: var(--sp-8);
  color: var(--text-muted);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cream-300), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ── 9. MARQUEE ── */
.marquee-section {
  background: var(--text-dark);
  padding: var(--sp-4) 0;
  overflow: hidden;
}

.marquee-track {
  overflow: hidden;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-content span {
  color: var(--cream-200);
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-light);
  font-style: italic;
  white-space: nowrap;
}

.marquee-content .dot {
  color: var(--rose-300);
  font-style: normal;
  font-size: var(--fs-sm);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── 10. CATEGORIES ── */
.categories { background: var(--white); }

.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: var(--sp-4);
}

.category-card--large {
  grid-column: span 2;
  grid-row: span 2;
}

.category-card {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.category-card__img-wrapper {
  width: 100%;
  overflow: hidden;
}

.category-card--large .category-card__img-wrapper img { height: 480px; }
.category-card:not(.category-card--large) .category-card__img-wrapper img { height: 225px; }

.category-card__img-wrapper img {
  transition: transform var(--transition-slow);
}

.category-card:hover .category-card__img-wrapper img {
  transform: scale(1.06);
}

.category-card__info {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: var(--sp-6);
  background: linear-gradient(to top, rgba(30,18,8,.7) 0%, transparent 100%);
  color: var(--white);
}

.category-card__info h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-light);
  margin-bottom: var(--sp-1);
}

.category-card--large .category-card__info h3 {
  font-size: var(--fs-3xl);
}

.category-card__info span {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.08em;
  opacity: 0.85;
  transition: letter-spacing var(--transition-base);
}

.category-card:hover .category-card__info span {
  letter-spacing: 0.14em;
}

/* ── 11. PRODUCTS ── */
.products {
  background: var(--cream-50);
}

.products__filters {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-10);
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--cream-300);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-medium);
  background: var(--white);
  transition: all var(--transition-base);
}

.filter-btn:hover {
  border-color: var(--rose-300);
  color: var(--rose-400);
}

.filter-btn.active {
  background: var(--rose-400);
  border-color: var(--rose-400);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(181,96,79,.28);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-4);
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(60,30,10,.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  cursor: pointer;
  animation: fadeInUp 400ms ease both;
  border: 1px solid var(--cream-100);
  will-change: transform;
  transform: translateZ(0);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.product-card:hover {
  box-shadow: 0 20px 40px rgba(60,30,10,.08);
  transform: translateY(-8px) translateZ(0);
}

.product-card__img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 280 / 350;
}

.product-card__img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s ease;
  will-change: transform;
}

.product-card:hover .product-card__img-wrapper img {
  transform: scale(1.06);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 40%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.25rem;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

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

.product-card__quick-add {
  transform: translateY(12px);
  transition: all 0.3s cubic-bezier(.34,1.56,.64,1);
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  color: var(--text-dark);
  border-radius: var(--radius-full);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-card__quick-add:hover {
  background: var(--text-dark);
  color: var(--white);
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
  transform: translateY(-3px);
}

.product-card:hover .product-card__quick-add {
  transform: translateY(0);
}

/* Mobile-only "Sepete Ekle" button — hidden on desktop */
.product-card__mobile-add {
  display: none;
}

.product-card__badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  z-index: 2;
  pointer-events: none;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: var(--fw-semi);
  letter-spacing: 0.06em;
}

.badge--new  { background: var(--sage-100);  color: var(--sage-500); }
.badge--sale { background: var(--rose-100);  color: var(--rose-500); }
.badge--hot  { background: var(--warm-100);  color: var(--warm-500); }

.product-card__fav {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  width: 34px;
  height: 34px;
  background: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--transition-base);
  color: var(--text-light);
}

.product-card__fav:hover {
  color: var(--rose-400);
  transform: translateY(0) scale(1.1);
}

.product-card:hover .product-card__fav {
  opacity: 1;
  transform: translateY(0);
}

.product-card__fav.active {
  color: var(--rose-400);
  opacity: 1;
}

.product-card__body {
  padding: var(--sp-3) var(--sp-4);
  text-align: center;
}

.product-card__category {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-1);
}

.product-card__name {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--text-dark);
  margin-bottom: var(--sp-2);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card__row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
}

.product-card__price {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--rose-500);
  width: 100%;
  text-align: center;
}

.product-card__price .old-price {
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: var(--sp-2);
}

/* Product Card Ratings */
.product-card__ratings {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.2rem 0 0.5rem;
  flex-wrap: nowrap;
  justify-content: center;
}

.product-card__rating-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
  color: #666;
}

.rating-platform-icon {
  height: 18px;
  width: 18px;
  border-radius: 4px;
  display: block;
}

.rating-star-icon {
  color: #fbbf24;
  font-size: 1rem;
  line-height: 1;
}

.product-card__rating-item strong {
  color: #333;
  font-weight: 600;
}

.rating-count {
  font-size: 0.8rem;
}

.products__pagination {
  text-align: center;
  margin-top: var(--sp-12);
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.pagi-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--cream-300);
  background: var(--white);
  color: var(--text-medium);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.pagi-btn:hover {
  border-color: var(--rose-300);
  color: var(--rose-400);
}

.pagi-btn.active {
  background: var(--rose-400);
  border-color: var(--rose-400);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(181,96,79,.25);
}

/* ── 12. FEATURE BANNER ── */
.feature-banner {
  background: var(--cream-100);
  padding: var(--sp-8) 0;
  border-top: 1px solid var(--cream-200);
  border-bottom: 1px solid var(--cream-200);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  max-width: 900px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  background: var(--white);
  padding: var(--sp-4) var(--sp-6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid var(--cream-200);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 54px;
  height: 54px;
  background: var(--sage-100);
  color: var(--sage-500);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.feature-icon--heart {
  background: var(--rose-100);
  color: var(--rose-500);
}

.feature-icon--star {
  background: var(--warm-200);
  color: var(--text-dark);
}

.feature-item:hover .feature-icon {
  transform: scale(1.08) rotate(-4deg);
}
.feature-item:hover .feature-icon--star {
  transform: scale(1.08) rotate(15deg);
}

.feature-text h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--text-medium);
}

/* ── 13. ABOUT ── */
.about { background: var(--white); }

/* Kurumsal page specific */
.kurumsal-about { background: var(--cream-50); }

.container--narrow {
  max-width: 1060px;
  width: 100%;
  padding: 0 var(--sp-6);
  margin: 0 auto;
  box-sizing: border-box;
}

.kurumsal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.kurumsal-img-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: block;
}

.kurumsal-text .section__title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.kurumsal-desc {
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .kurumsal-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .kurumsal-img-wrapper img { height: 260px; }
  .kurumsal-text .section__title { font-size: 2rem; }
  .contact__grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .kurumsal-grid { gap: 1.5rem; }
  .kurumsal-img-wrapper img { height: 220px; border-radius: var(--radius-md); }
  .kurumsal-text .section__title { font-size: 1.75rem; }
  .container--narrow { padding: 0 1rem; }
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__img-main img {
  height: 540px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about__img-accent {
  position: absolute;
  bottom: -var(--sp-8);
  right: calc(-1 * var(--sp-10));
  width: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about__img-accent img {
  height: 200px;
}

.about__experience-badge {
  position: absolute;
  top: var(--sp-6);
  left: calc(-1 * var(--sp-8));
  background: var(--rose-400);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-5);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about__experience-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-light);
  line-height: 1;
}

.about__experience-badge span {
  font-size: var(--fs-xs);
  line-height: 1.4;
  opacity: 0.9;
}

.about__title { margin-bottom: var(--sp-6); }

.about__desc {
  font-size: var(--fs-base);
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}

.about__values {
  margin: var(--sp-8) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.about__values li {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.value-icon {
  width: 44px;
  height: 44px;
  background: var(--rose-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  flex-shrink: 0;
}

.about__values li strong {
  display: block;
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--text-dark);
}

.about__values li small {
  font-size: var(--fs-sm);
  color: var(--text-light);
}

/* ── 14. TESTIMONIALS ── */
.testimonials { background: var(--cream-50); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  align-items: start;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card--featured {
  background: var(--text-dark);
  color: var(--cream-100);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: var(--warm-400);
  font-size: var(--fs-sm);
  letter-spacing: 2px;
  margin-bottom: var(--sp-4);
}

.testimonial-card--featured .testimonial-stars {
  color: var(--rose-300);
}

.testimonial-product {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: var(--fw-semi);
  margin-bottom: var(--sp-3);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: var(--sp-6);
  flex-grow: 1;
}

.testimonial-card--featured .testimonial-text {
  color: var(--cream-200);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--rose-200);
  color: var(--rose-500);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-semi);
  font-size: var(--fs-sm);
  flex-shrink: 0;
}

.testimonial-card--featured .author-avatar {
  background: rgba(255,255,255,.15);
  color: var(--white);
}

.testimonial-author strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
}

.testimonial-author small {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.testimonial-platform {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.testimonial-platform img {
  width: 16px;
  height: 16px;
  display: block;
}

.testimonial-card--featured .testimonial-author small {
  color: var(--cream-300);
}

/* ── 15. NEWSLETTER ── */
.newsletter {
  background: linear-gradient(135deg, var(--text-dark) 0%, #3a2415 100%);
  padding: var(--sp-20) 0;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(181,96,79,.15) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.newsletter__title {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-light);
  color: var(--cream-100);
  margin-bottom: var(--sp-3);
  line-height: 1.15;
}

.newsletter__title em {
  font-style: italic;
  color: var(--rose-300);
}

.newsletter__content p {
  color: var(--cream-300);
  font-size: var(--fs-base);
  line-height: 1.7;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.newsletter__input-group {
  display: flex;
  gap: var(--sp-3);
}

.newsletter__input {
  flex: 1;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: var(--cream-100);
  font-size: var(--fs-sm);
  transition: border-color var(--transition-fast);
}

.newsletter__input::placeholder {
  color: var(--cream-300);
  opacity: 0.6;
}

.newsletter__input:focus {
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.12);
}

.newsletter__privacy {
  font-size: var(--fs-xs);
  color: var(--warm-300);
  opacity: 0.7;
}

/* ── 16. CONTACT ── */
.contact { background: var(--white); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-16);
  align-items: start;
}

.contact__title { margin: var(--sp-4) 0 var(--sp-4); }

.contact__desc {
  font-size: var(--fs-base);
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.contact-icon {
  font-size: 1.25rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--text-dark);
  margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
  font-size: var(--fs-sm);
  color: var(--text-medium);
  line-height: 1.5;
}

.contact-item a:hover {
  color: var(--rose-400);
}

.social-links {
  display: flex;
  gap: var(--sp-3);
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--cream-200);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-medium);
  transition: all var(--transition-base);
}

.social-link:hover {
  border-color: var(--rose-300);
  color: var(--rose-400);
  background: var(--rose-100);
  transform: translateY(-2px);
}

/* Contact Form */
.contact__form {
  background: var(--cream-50);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-group label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-medium);
}

.form-control {
  padding: 0.8rem 1.2rem;
  border: 1.5px solid var(--cream-200);
  border-radius: var(--radius-md);
  background: var(--white);
  font-size: var(--fs-sm);
  color: var(--text-dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control::placeholder { color: var(--text-muted); }

.form-control:focus {
  border-color: var(--rose-300);
  box-shadow: 0 0 0 3px rgba(201,150,134,.12);
}

textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { 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='%238a7565' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }

/* ── 17. FOOTER ── */
.footer {
  background: var(--text-dark);
  color: var(--cream-200);
  padding-top: var(--sp-16);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__logo-bg {
  background: radial-gradient(circle at center, rgba(240, 235, 225, 0.85) 0%, rgba(240, 235, 225, 0.2) 45%, transparent 70%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  width: 200px;
  height: 200px;
  transition: all var(--transition-base);
  border-radius: 50%;
}
.footer__logo-bg:hover { transform: translateY(-4px) scale(1.03); }
.footer__logo img { height: 160px !important; width: auto; object-fit: contain; }

.footer__marketplaces {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.market-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--warm-300);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s;
}
.market-link:hover { color: var(--white); transform: translateX(4px); }
.market-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.market-icon img { width: 100%; height: 100%; object-fit: contain; }

.footer__tagline {
  font-size: var(--fs-sm);
  color: var(--warm-300);
  line-height: 1.7;
  margin-top: var(--sp-2);
  max-width: 260px;
}

.footer__links-col h5 {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-100);
  margin-bottom: var(--sp-5);
}

.footer__links-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__links-col ul a {
  font-size: var(--fs-sm);
  color: var(--warm-300);
  transition: color var(--transition-fast);
}

.footer__links-col ul a:hover {
  color: var(--cream-100);
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__social a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-sm);
  color: var(--warm-300);
  transition: all var(--transition-fast);
  padding: 0.5rem 0;
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  line-height: 1; /* Reset line height for precise alignment */
}

.footer__social a svg {
  width: 20px;
  height: 20px;
  stroke: var(--rose-300);
  transition: transform 0.3s;
  display: block; /* Avoid baseline spacing */
}

.footer__social a span {
  display: inline-block;
  transform: translateY(1px); /* Micro-adjustment for visual centering */
}

.footer__social a:hover { color: var(--white); background: transparent; transform: none; }
.footer__social a:hover svg { transform: scale(1.1); stroke: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6) 0;
}

.footer__bottom p {
  font-size: var(--fs-xs);
  color: var(--warm-300);
  opacity: 0.7;
}

.footer__legal {
  display: flex;
  gap: var(--sp-5);
}

.footer__legal a {
  font-size: var(--fs-xs);
  color: var(--warm-300);
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.footer__legal a:hover { opacity: 1; }

/* ── 18. CART SIDEBAR ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: 1101;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.34,1.2,.64,1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  will-change: transform;
}

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

.cart-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6);
  border-bottom: 1px solid var(--cream-200);
}

.cart-sidebar__header h3 {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.cart-close {
  font-size: var(--fs-2xl);
  color: var(--text-light);
  padding: var(--sp-1);
  transition: color var(--transition-fast);
  line-height: 1;
}
.cart-close:hover { color: var(--text-dark); }

.cart-sidebar__body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: var(--sp-6);
}

.cart-empty {
  text-align: center;
  padding: var(--sp-16) var(--sp-4);
  color: var(--text-muted);
}

.cart-empty-icon { font-size: 3rem; margin-bottom: var(--sp-4); }
.cart-empty p { font-size: var(--fs-lg); font-weight: var(--fw-medium); color: var(--text-medium); }
.cart-empty small { font-size: var(--fs-sm); }

.cart-item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--cream-100);
}

.cart-item__img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item__info { flex: 1; }
.cart-item__name { font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--text-dark); margin-bottom: 2px; }
.cart-item__cat  { font-size: var(--fs-xs); color: var(--text-muted); margin-bottom: var(--sp-3); }

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.qty-btn {
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--cream-200);
  border-radius: var(--radius-sm);
  color: var(--text-medium);
  font-size: var(--fs-lg);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.qty-btn:hover { border-color: var(--rose-300); color: var(--rose-400); }

.qty-val {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  min-width: 20px;
  text-align: center;
}

.cart-item__price { font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--text-dark); white-space: nowrap; }
.cart-item__remove { color: var(--text-muted); font-size: 1.2rem; padding: 4px; transition: color var(--transition-fast); line-height: 1; }
.cart-item__remove:hover { color: var(--rose-400); }

.cart-sidebar__footer {
  padding: var(--sp-6);
  padding-bottom: calc(var(--sp-6) + env(safe-area-inset-bottom));
  border-top: 1px solid var(--cream-200);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-medium);
  margin-bottom: var(--sp-4);
}

.cart-total strong {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

/* ── 19. TOAST ── */
.toast {
  position: fixed;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--text-dark);
  color: var(--cream-100);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  transition: transform var(--transition-spring), opacity var(--transition-base);
  opacity: 0;
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ── 20. BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: var(--sp-8);
  right: var(--sp-8);
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1.5px solid var(--cream-200);
  border-radius: var(--radius-full);
  color: var(--text-medium);
  font-size: var(--fs-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: all var(--transition-base);
  z-index: 900;
}

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

.back-to-top:hover {
  background: var(--rose-400);
  border-color: var(--rose-400);
  color: var(--white);
  transform: translateY(-4px);
}

/* ── 21. SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.reveal--left  { transform: translateX(-30px); }
.reveal--right { transform: translateX(30px); }
.reveal--left.revealed,
.reveal--right.revealed { transform: translateX(0); }

/* ── 22. RESPONSIVE ── */
@media (max-width: 1100px) {
  .products__grid { grid-template-columns: repeat(3, 1fr); }
  .categories__grid { grid-template-columns: repeat(2, 1fr); }
  .category-card--large { grid-column: span 1; grid-row: span 1; }
  .category-card--large .category-card__img-wrapper img,
  .category-card:not(.category-card--large) .category-card__img-wrapper img { height: 240px; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero__content { grid-template-columns: 1fr; padding-top: var(--sp-10); }
  .hero__visual { order: -1; justify-content: flex-start; }
  .hero__img { height: 380px; }
  .hero__floating-card { right: var(--sp-4); top: var(--sp-4); }
  .section__title { font-size: var(--fs-3xl); }
  .about__grid { grid-template-columns: 1fr; }
  .about__img-main img { height: 380px; }
  .about__img-accent { right: var(--sp-4); }
  .newsletter__inner { grid-template-columns: 1fr; gap: var(--sp-10); }
  .contact__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .hero__title { font-size: var(--fs-4xl); }
  .nav { padding: 0 var(--sp-4); height: 80px; width: 100%; box-sizing: border-box; }
  .nav__logo-img { height: 60px; }
  .nav__logo-text-main { font-size: 1.2rem; }
  .nav__logo-text-sub { font-size: 0.7rem; }
  .nav__actions { gap: 0.25rem; }
  .nav__action-btn { width: 36px; height: 36px; }
  
  /* Mobile nav: fixed positioning to avoid layout issues */
  .nav__links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    width: 100vw;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--cream-200);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    z-index: 999;
    box-sizing: border-box;
  }
  .nav__links.open { display: flex; }
  .nav__link {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
  }
  .nav__link:hover, .nav__link.active { background: var(--cream-100); }
  .nav__link::after { display: none; }
  .hamburger { display: flex; padding: var(--sp-1); width: 36px; }
  
  .products__grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .product-card__img-wrapper { height: auto; min-height: unset; aspect-ratio: 4 / 5; }
  .product-card__body { padding: 0.6rem 0.5rem; }
  .product-card__name { font-size: 0.85rem; }
  .product-card__price { font-size: 0.95rem; }
  .product-card__quick-add { padding: 0.55rem 1rem; font-size: 0.65rem; }
  .product-card__quick-add svg { width: 14px; height: 14px; margin-right: 4px !important; }
  .btn { padding: 0.6rem 1rem; font-size: 0.8rem; }
  
  .categories__grid { grid-template-columns: 1fr; }
  .newsletter__input-group { flex-direction: column; }
  .features__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .hero__badge { left: var(--sp-4); }
  .announcement-bar { font-size: 0.7rem; padding-right: 2.5rem; }
}

/* ── 22. CHECKOUT PAGE ── */
.checkout-section {
  padding: var(--sp-12) 0 var(--sp-24);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--sp-12);
  align-items: flex-start;
}

.checkout-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-200);
}

.checkout-title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-8);
  color: var(--text-dark);
  border-bottom: 2px solid var(--cream-100);
  padding-bottom: var(--sp-4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.checkout-form .form-group {
  margin-bottom: var(--sp-5);
}

.checkout-form label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-medium);
  margin-bottom: var(--sp-2);
}

.checkout-form .form-control {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--cream-200);
  background: var(--cream-50);
  font-size: var(--fs-sm);
  transition: all var(--transition-base);
}

.checkout-form .form-control:focus {
  border-color: var(--rose-300);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(200,128,112,.1);
}

/* Summary Card */
.summary-card {
  position: sticky;
  top: 100px;
}

.summary-items {
  margin-bottom: var(--sp-6);
  max-height: 400px;
  overflow-y: auto;
  padding-right: var(--sp-2);
}

.summary-item {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--cream-100);
}

.summary-item:last-child { border-bottom: none; }

.summary-item img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.summary-item__info { flex: 1; }
.summary-item__name { font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--text-dark); margin-bottom: 2px; }
.summary-item__qty { font-size: var(--fs-xs); color: var(--text-muted); }
.summary-item__price { font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--rose-400); }

.summary-totals {
  border-top: 2px solid var(--cream-100);
  padding-top: var(--sp-4);
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--text-medium);
}

.total-row.grand-total {
  margin-top: var(--sp-4);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semi);
  color: var(--text-dark);
}

.checkout-success {
  text-align: center;
  padding: var(--sp-16) 0;
}

.success-icon {
  font-size: 5rem;
  margin-bottom: var(--sp-6);
  display: block;
}

/* ── 23. MODERN SHOP UI REWORK ── */
.shop-hero {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  margin: 1.5rem auto;
  width: calc(100% - 2rem);
  max-width: 1560px;
  background: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?q=80&w=2664&auto=format&fit=crop') center/cover no-repeat;
  box-shadow: var(--shadow-lg);
  box-sizing: border-box;
}

.shop-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,22,15,0.75) 0%, rgba(30,22,15,0.2) 100%);
}

.shop-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.shop-hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--cream-50);
}

.shop-hero__badge {
  display: inline-block;
  padding: 0.5rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cream-100);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.05);
}

.shop-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--cream-50);
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.shop-hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose-200);
}

.shop-hero__subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 550px;
  color: var(--rose-100);
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* Shop Layout Utilities */
.shop-layout {
  width: 100%;
  box-sizing: border-box;
}

.shop-main__container {
  max-width: 1560px;
  width: 100%;
  box-sizing: border-box;
}

.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.shop-header p {
  font-size: 0.95rem;
  color: var(--text-medium);
}

.shop-content {
  width: 100%;
}

/* Shop Navbar / Filters */
.shop-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 3rem;
  padding: 0.5rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(60,30,10,0.04);
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.filter-list {
  display: flex;
  gap: 0.4rem;
  padding: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
}
.filter-list::-webkit-scrollbar { display: none; }

.filter-btn {
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-medium);
  background: transparent;
  border: 1px solid transparent;
  transition: all var(--transition-spring);
  white-space: nowrap;
}

.filter-btn:hover {
  background: var(--cream-100);
  color: var(--text-dark);
}

.filter-btn.active {
  background: var(--text-dark);
  color: var(--white);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.sort-box {
  padding-right: 0.25rem;
}

.sort-box .form-control {
  border: none;
  background: var(--cream-50);
  padding: 0.75rem 2.5rem 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-dark);
  cursor: pointer;
  min-width: 200px;
}

/* ── 24. AUTH PAGE REWORK ── */
.auth-section {
  padding: 6rem 0;
  background: var(--cream-50);
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.container--auth { max-width: 1100px; }

.auth-header {
  text-align: center;
  margin-bottom: 4rem;
}

.auth-header h1 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.auth-header p {
  font-size: 1.1rem;
  color: var(--text-medium);
  font-weight: 300;
}

.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--cream-100);
}

.auth-box {
  padding: 4.5rem;
  display: flex;
  flex-direction: column;
}

.auth-box--register {
  background: var(--text-dark);
  color: var(--white);
}

.auth-box__title-group {
  margin-bottom: 2.5rem;
}

.auth-box h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}

.auth-box--login h2 { color: var(--text-dark); }
.auth-box--register h2 { color: var(--white); }

.auth-box p {
  font-size: 0.95rem;
  opacity: 0.8;
  font-weight: 300;
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 2rem 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.auth-divider::before, 
.auth-divider::after {
  content: '';
  flex: 1;
  border-top: 1px solid var(--cream-200);
}
.auth-box--register .auth-divider::before,
.auth-box--register .auth-divider::after { border-top-color: rgba(255,255,255,0.1); }

.auth-divider span { padding: 0 15px; }

.auth-form .form-group { margin-bottom: 1.5rem; }
.auth-form .form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
}

.auth-box--login .form-control {
  background: var(--cream-50);
  border-color: var(--cream-200);
}

.auth-box--register .form-control {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}

.auth-box--register .form-control::placeholder { color: rgba(255,255,255,0.4); }

.form-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.auth-link {
  color: var(--rose-400);
  font-size: 0.8rem;
  font-weight: 500;
  transition: color 0.2s;
}
.auth-link:hover { color: var(--rose-500); text-decoration: underline; }

.form-checkbox-group {
  margin: 1.5rem 0 2rem;
}

.form-checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-medium);
  cursor: pointer;
}

.form-checkbox-group input {
  accent-color: var(--rose-400);
  width: 18px;
  height: 18px;
}

.auth-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  font-size: 0.9rem;
  display: none;
  animation: fadeIn 0.3s ease;
}

.auth-alert--error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.auth-alert--success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

/* ── MOBILE OVERRIDES & REFINEMENTS ── */
@media (max-width: 992px) {
  .auth-grid { grid-template-columns: 1fr; }
  .auth-box { padding: 3rem 2rem; }
  .auth-box--register { border-top: 1px solid rgba(255,255,255,0.1); }
  .auth-header h1 { font-size: 2.5rem; }
  
  .shop-topbar {
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--radius-lg);
    gap: 1rem;
    padding: 1rem;
  }
  
  .filter-list {
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  
  .filter-list::-webkit-scrollbar { display: none; }
  
  .filter-btn { padding: 0.6rem 1.2rem; font-size: 0.8rem; }
  .sort-box { width: 100%; }
  .sort-box .form-control { width: 100%; min-width: 0; }
  
  .shop-hero { padding: 4rem 1.5rem; border-radius: var(--radius-lg); margin: 1rem; width: calc(100% - 2rem); }
  .shop-hero__title { font-size: 2.5rem; }
  .shop-hero__subtitle { font-size: 0.95rem; }
}

@media (max-width: 640px) {
  .auth-header { margin-bottom: 2rem; }
  .auth-header h1 { font-size: 2rem; }
  .auth-box h2 { font-size: 1.6rem; }
  .auth-box { padding: 2.5rem 1.5rem; }
  
  .features__grid { grid-template-columns: 1fr; gap: 1rem; }
  .container--narrow { padding: 0 1rem; }
}

/* ── MOBILE ≤ 480px — COMPREHENSIVE FIX ── */
@media (max-width: 480px) {
  /* Global */
  html, body { overflow-x: hidden; max-width: 100%; }
  * { max-width: 100%; }
  
  .container {
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* Header / Nav */
  .nav {
    padding: 0 1rem;
    height: 70px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }
  .nav__logo-img { height: 52px; }
  .nav__logo-text-main { font-size: 1.1rem; }
  .nav__logo-text-sub { font-size: 0.65rem; letter-spacing: 0.15em; }
  .nav__actions { gap: 0.2rem; }
  .nav__action-btn { width: 34px; height: 34px; }
  
  /* Mobile nav dropdown */
  .nav__links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100vw;
    background: var(--white);
    padding: 1.5rem 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--cream-200);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    z-index: 999;
    box-sizing: border-box;
  }
  .nav__links.open { display: flex; }
  .nav__links li { width: 100%; }
  .nav__link {
    display: block;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    color: var(--text-dark);
    transition: background var(--transition-fast);
  }
  .nav__link:hover, .nav__link.active {
    background: var(--cream-100);
    color: var(--rose-500);
  }
  .nav__link::after { display: none; }
  .hamburger { display: flex; width: 34px; padding: 0.2rem; }
  
  /* Hero */
  .shop-hero {
    padding: 3.5rem 1.25rem;
    border-radius: var(--radius-lg);
    margin: 0.75rem;
    width: calc(100% - 1.5rem);
    box-sizing: border-box;
  }
  .shop-hero__title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 1rem;
  }
  .shop-hero__subtitle {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  .shop-hero__badge {
    font-size: 0.65rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1.25rem;
  }
  
  /* Shop main section */
  .shop-main { padding: 2rem 0; }
  .shop-main .container { padding: 0 0.75rem; }
  .shop-layout { width: 100%; }
  
  /* Filter topbar */
  .shop-topbar {
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--radius-lg);
    gap: 0.75rem;
    padding: 0.875rem;
    margin-bottom: 1.5rem;
    width: 100%;
    box-sizing: border-box;
  }
  .filter-list {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    display: flex;
    scroll-snap-type: x mandatory;
    gap: 0.35rem;
    padding-bottom: 0.25rem;
    flex-wrap: nowrap;
    width: 100%;
  }
  .filter-list::-webkit-scrollbar { display: none; }
  .filter-btn {
    padding: 0.55rem 1rem;
    font-size: 0.78rem;
    white-space: nowrap;
    flex-shrink: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .sort-box { width: 100%; }
  .sort-box .form-control {
    width: 100%;
    min-width: 0;
    font-size: 0.85rem;
    padding: 0.65rem 1rem;
  }
  
  /* Product grid */
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .product-card {
    border-radius: var(--radius-lg);
  }
  .product-card__img-wrapper {
    height: auto;
    min-height: unset;
    aspect-ratio: 4 / 5;
  }
  
  /* On mobile: hide hover overlay, but show a dedicated add-to-cart button below image */
  .product-card__overlay {
    display: none !important;
  }

  /* Mobile Sepete Ekle button — shown below product image */
  .product-card__mobile-add {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    padding: 0.45rem 0.5rem;
    background: var(--text-dark);
    color: #fff;
    border: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
  }
  .product-card__mobile-add:active { background: #000; }
  .product-card__mobile-add svg { width: 12px; height: 12px; flex-shrink: 0; }

  .product-card__body { padding: 0.45rem 0.5rem 0.5rem; }
  .product-card__category { font-size: 0.6rem; margin-bottom: 1px; letter-spacing: 0.06em; }
  .product-card__name { font-size: 0.78rem; margin-bottom: 2px; }
  .product-card__price { font-size: 0.85rem; }
  .product-card__price .old-price { font-size: 0.72rem; }
  
  /* Compact quick-add button on mobile (fallback / hover overlay) */
  .product-card__quick-add {
    padding: 0.5rem 0.85rem;
    font-size: 0.6rem;
    letter-spacing: 0.06em;
  }
  .product-card__quick-add svg { width: 12px; height: 12px; margin-right: 3px !important; }

  /* Always show heart button on mobile (no hover on touch) */
  .product-card__fav {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  
  /* Product card ratings - compact inline */
  .product-card__ratings {
    gap: 0.35rem;
    margin: 1px 0 3px;
    justify-content: center;
    flex-wrap: nowrap;
  }
  .product-card__rating-item {
    font-size: 0.7rem;
    gap: 2px;
  }
  .rating-platform-icon {
    height: 14px;
    width: 14px;
  }
  .rating-star-icon {
    font-size: 0.75rem;
  }
  .product-card__rating-item strong {
    font-size: 0.7rem;
  }
  .rating-count {
    font-size: 0.6rem;
  }
  
  /* Features grid */
  .features__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .feature-item {
    padding: 1rem 1.25rem;
    gap: 1rem;
  }
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  .feature-icon svg {
    width: 20px; height: 20px;
  }
  .feature-text h4 {
    font-size: 0.95rem; margin-bottom: 2px;
  }
  .feature-text p {
    font-size: 0.8rem;
  }
  
  /* Testimonials - horizontal scroll */
  .testimonials__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -1rem; /* Full bleed */
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .testimonials__grid::-webkit-scrollbar { display: none; }
  .testimonial-card { 
    min-width: 80vw; 
    scroll-snap-align: center;
    scroll-snap-stop: always;
    flex-shrink: 0;
    padding: 1.15rem; 
  }
  .testimonial-text { font-size: 0.82rem; line-height: 1.45; margin-bottom: 0.75rem; }
  .testimonial-product { font-size: 0.68rem; margin-bottom: 0.35rem; }
  .testimonial-stars { font-size: 0.75rem; margin-bottom: 0.25rem; }
  .testimonial-author strong { font-size: 0.78rem; }
  .testimonial-author small { font-size: 0.68rem; }
  .author-avatar { width: 34px; height: 34px; font-size: 0.75rem; }
  
  /* Footer */
  .footer__top { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer__brand { grid-column: span 2; text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 1rem; }
  .footer__logo-bg { width: 100px; height: 100px; margin: 0 auto; }
  .footer__tagline { margin: 1rem auto 0; font-size: 0.85rem; max-width: 80%; }
  .footer__links-col { text-align: left; }
  .footer__links-col h5 { font-size: 0.9rem; margin-bottom: 0.8rem; }
  .footer__links-col ul li a { font-size: 0.85rem; }
  .footer__social, .footer__marketplaces { justify-content: flex-start; align-items: flex-start; }
  .footer__marketplaces .market-link { justify-content: flex-start; font-size: 0.85rem; }
  .footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer__legal { justify-content: center; }
  
  /* Cart sidebar full width on mobile */
  .cart-sidebar { width: 100vw; }
  
  /* Section padding reduction */
  .section { padding: 2.5rem 0; }
  .section__title { font-size: 1.75rem; }
  .section__header { margin-bottom: 1.5rem; }
  
  /* Toast */
  .toast { font-size: 0.8rem; padding: 0.6rem 1.25rem; white-space: normal; text-align: center; max-width: 90vw; }
  
  /* Back to top */
  .back-to-top { bottom: 1.25rem; right: 1.25rem; width: 40px; height: 40px; }
  
  /* Announcement bar */
  .announcement-bar { font-size: 0.7rem; padding: 0.4rem 2rem 0.4rem 0.75rem; }

  /* Search dropdown mobile */
  .search-dropdown__inner { max-height: 70vh; }
  .search-result-item { gap: 0.6rem; }
  .search-result-img { width: 44px; height: 44px; }

  /* Mobile Scroll Hints */
  .mobile-scroll-hint {
    display: flex !important;
    align-items: center;
    color: var(--text-muted);
    opacity: 0.7;
    animation: slideArrow 2s infinite;
    pointer-events: none;
    z-index: 10;
  }
  .filter-hint {
    position: absolute;
    right: -10px; /* Slight overflow to edge */
    top: 0;
    height: 100%;
    background: linear-gradient(to right, transparent, #fff 40%);
    padding-left: 20px;
    padding-right: 10px;
  }
  .testimonial-hint {
    position: absolute;
    right: -10px;
    top: 0;
    height: 100%;
    background: linear-gradient(to right, transparent, var(--cream-50) 40%);
    padding-left: 20px;
    padding-right: 10px;
    z-index: 2;
  }
  
  @keyframes slideArrow {
    0%, 100% { transform: translateX(0); opacity: 0.4; }
    50% { transform: translateX(6px); opacity: 0.9; }
  }
}

.mobile-scroll-hint { display: none; }

/* ══════════════════════════════════════
   LIVE SEARCH DROPDOWN
══════════════════════════════════════ */
.search-bar {
  position: relative;
}

.search-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--white);
  border-top: 1px solid var(--cream-200);
  box-shadow: 0 12px 40px rgba(44,35,24,.13);
  z-index: 999;
  animation: slideDown 180ms ease;
}

.search-dropdown__inner {
  max-height: 480px;
  overflow-y: auto;
  padding: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition-fast);
  text-decoration: none;
  color: var(--text-dark);
  position: relative;
}

.search-result-item:hover {
  background: var(--cream-50);
}

.search-result-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  border: 1px solid var(--cream-200);
}

.search-result-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.search-result-cat {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rose-400);
}

.search-result-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.search-result-price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-medium);
}

.search-result-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.search-result-badge.badge--new  { background: #e8f5e9; color: #2e7d32; }
.search-result-badge.badge--sale { background: #fff3e0; color: #e65100; }
.search-result-badge.badge--hot  { background: #fce4ec; color: #c62828; }

.search-no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
}

.search-see-all {
  text-align: center;
  padding: 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rose-400);
  cursor: pointer;
  border-top: 1px solid var(--cream-100);
  margin-top: 4px;
  transition: background var(--transition-fast);
  letter-spacing: 0.03em;
}

.search-see-all:hover {
  background: var(--cream-50);
  color: var(--rose-500);
}

/* ══════════════════════════════════════
   CHECKOUT — IL / ILCE SELECT
══════════════════════════════════════ */
.checkout-form select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b8a898' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.checkout-form select.form-control:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: var(--cream-100);
}

.checkout-form select.form-control:focus {
  border-color: var(--rose-300);
  box-shadow: 0 0 0 3px rgba(200,128,112,.1);
}

.checkout-form select.form-control option {
  color: var(--text-dark);
  background: var(--white);
}

.checkout-form select.form-control.error {
  border-color: #e53e3e;
  background-color: #fff5f5;
}

/* ── TRUST BANNERS (Shared) ── */
.trust-banners-full {
  background: var(--cream-100);
  padding: var(--sp-8) 0;
  border-top: 1px solid var(--cream-200);
}

.trust-banners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; background: var(--cream-100); padding: 0.5rem 1rem; text-align: center; }
.trust-item { display: flex; flex-direction: column; align-items: center; }
.trust-icon-wrapper { width: 56px; height: 56px; background: var(--white); border-radius: 50%; box-shadow: 0 4px 12px rgba(0,0,0,0.05); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; color: var(--rose-500); }
.trust-item h4 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.5rem; letter-spacing: 0.02em; }
.trust-item p { font-size: 0.85rem; color: #666; line-height: 1.5; padding: 0 1rem; }

@media (max-width: 600px) {
  .trust-banners { grid-template-columns: repeat(3, 1fr); padding: 0.5rem !important; gap: 0.5rem !important; margin-top: 1rem !important; }
  .trust-icon-wrapper { width: 36px !important; height: 36px !important; margin: 0 auto 0.4rem !important; }
  .trust-icon-wrapper svg { width: 18px; height: 18px; }
  .trust-item h4 { font-size: 0.75rem !important; margin-bottom: 0.2rem !important; }
  .trust-item p { font-size: 0.65rem !important; padding: 0; line-height: 1.2; }
}


/* ===== KURUMSAL — ABOUT V2 ===== */
.kurumsal-about-section {
  background: linear-gradient(160deg, var(--cream-50) 0%, #fff 60%, var(--cream-100) 100%);
  padding: 5rem 0 4rem;
}
.kurumsal-header-row { text-align: center; margin-bottom: 3.5rem; }
.kurumsal-grid-v2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.kurumsal-visual { position: relative; }
.kurumsal-img-frame { position: relative; border-radius: 24px; overflow: visible; }
.kurumsal-img-frame img { width: 100%; height: 480px; object-fit: cover; border-radius: 24px; box-shadow: 0 20px 60px rgba(44,35,24,.15); display: block; }

.kurumsal-badge { position: absolute; top: -18px; right: -18px; background: var(--white); border-radius: 16px; padding: 0.8rem 1.1rem; display: flex; align-items: center; gap: 0.6rem; box-shadow: 0 8px 24px rgba(44,35,24,.12); font-size: 0.78rem; color: var(--text-dark); line-height: 1.3; border: 1px solid var(--cream-200); z-index: 2; }
.kurumsal-badge__icon { font-size: 1.4rem; }
.kurumsal-badge strong { display: block; font-size: 0.85rem; }

.kurumsal-mini-card { position: absolute; bottom: -20px; left: -20px; background: var(--text-dark); color: var(--white); border-radius: 16px; padding: 1rem 1.4rem; box-shadow: 0 12px 30px rgba(44,35,24,.25); z-index: 2; text-align: center; }
.kurumsal-mini-card__stat { font-size: 1.6rem; font-weight: 800; font-family: var(--font-display); line-height: 1; color: var(--rose-300); }
.kurumsal-mini-card__label { font-size: 0.72rem; opacity: 0.75; margin-top: 3px; letter-spacing: 0.04em; }

.kurumsal-text-v2 { display: flex; flex-direction: column; gap: 1.5rem; }
.kurumsal-desc-v2 { font-size: 1.05rem; color: var(--text-medium); line-height: 1.8; font-weight: 300; }
.kurumsal-desc-v2 strong { color: var(--text-dark); font-weight: 600; }

.kurumsal-stats { display: flex; gap: 2rem; padding: 1.5rem 0; border-top: 1px solid var(--cream-200); border-bottom: 1px solid var(--cream-200); }
.kurumsal-stat { display: flex; flex-direction: column; gap: 2px; }
.kurumsal-stat__val { font-size: 1.75rem; font-weight: 800; font-family: var(--font-display); color: var(--rose-500); line-height: 1; }
.kurumsal-stat__lbl { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }

.kurumsal-features { display: flex; flex-direction: column; gap: 1rem; }
.kurumsal-feature { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: var(--white); border: 1px solid var(--cream-200); border-radius: var(--radius-md); box-shadow: 0 2px 8px rgba(44,35,24,.04); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.kurumsal-feature:hover { transform: translateX(4px); box-shadow: 0 6px 20px rgba(44,35,24,.08); }
.kurumsal-feature__icon { font-size: 1.5rem; width: 44px; height: 44px; background: var(--cream-100); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.kurumsal-feature strong { display: block; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 2px; }
.kurumsal-feature span { font-size: 0.78rem; color: var(--text-muted); }

@media (max-width: 900px) {
  .kurumsal-grid-v2 { grid-template-columns: 1fr; gap: 3rem; }
  .kurumsal-img-frame img { height: 320px; }
  .kurumsal-badge { top: -14px; right: -10px; }
  .kurumsal-mini-card { bottom: -14px; left: -10px; }
}
@media (max-width: 480px) {
  .kurumsal-about-section { padding: 3rem 0 2rem; }
  .kurumsal-img-frame img { height: 240px; }
  .kurumsal-stats { gap: 1.2rem; }
  .kurumsal-stat__val { font-size: 1.4rem; }
  .kurumsal-badge { display: none; }
  .kurumsal-mini-card { bottom: -12px; left: 10px; }
}


/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 998;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media screen and (max-width: 768px) {
  .floating-whatsapp {
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}

/* ===== MOBILE BOTTOM NAV ===== */
.mobile-bottom-nav { display: none; }
/* Hide desktop header items on mobile */
@media(max-width: 992px) {
  .header-account-wrapper,
  .nav-action-with-text[aria-label="Favorilerim"],
  #cartBtn,
  .hamburger { display: none !important; }

  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background: #fff;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.08);
    z-index: 1001;
    justify-content: space-around;
    padding: 10px 5px;
    border-top: 1px solid var(--cream-200);
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }
  .mobile-nav-item {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--text-dark); text-decoration: none; font-size: 0.7rem; font-weight: 500;
    gap: 3px; flex: 1; position: relative;
  }
  .mobile-nav-item svg { width: 22px; height: 22px; opacity: 0.8; transition: 0.2s; }
  .mobile-nav-item.active { color: var(--rose-500); }
  .mobile-nav-item.active svg { stroke: var(--rose-500); opacity: 1; }

  /* Mobile nav badge (for favorites / cart) */
  .mobile-nav-badge {
    position: absolute;
    top: -2px;
    right: calc(50% - 20px);
    background: var(--rose-400);
    color: #fff;
    font-size: 0.58rem;
    min-width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    padding: 0 3px;
    line-height: 1;
  }

  body { padding-bottom: 70px; }
  .floating-whatsapp { bottom: 85px !important; }
  .back-to-top { bottom: 85px !important; }

  /* Product detail purchase bar: sit above mobile bottom nav */
  .product-purchase {
    bottom: 65px !important;
    z-index: 999 !important;
  }
}
