@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #FAF7F0;
  --bg-card: #FFFFFF;
  --text: #2C2C2C;
  --text-muted: #8A8478;
  --accent: #D4A843;
  --accent-hover: #C49B38;
  --accent-line: #D4A843;
  --border: rgba(212, 168, 67, 0.18);
  --shadow: 0 2px 16px rgba(44, 44, 44, 0.06);
  --shadow-lg: 0 8px 32px rgba(44, 44, 44, 0.10);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --navbar-bg: rgba(250, 247, 240, 0.92);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark {
  --bg: #1A1A1A;
  --bg-card: #242424;
  --text: #F5F0E8;
  --text-muted: #9A9488;
  --border: rgba(212, 168, 67, 0.22);
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.28);
  --navbar-bg: rgba(26, 26, 26, 0.94);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  transition: background var(--transition), color var(--transition)
}

a {
  color: inherit;
  text-decoration: none
}

button {
  cursor: pointer;
  font-family: var(--font-body)
}

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

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease
}

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

/* ACCENT LINES */
.accent-line {
  position: fixed;
  z-index: 9998;
  pointer-events: none;
  background: var(--accent-line);
  opacity: .15
}

.accent-line--top {
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-line), transparent)
}

.accent-line--left {
  top: 0;
  left: 20px;
  bottom: 0;
  width: 1px
}

.accent-line--right {
  top: 0;
  right: 20px;
  bottom: 0;
  width: 1px
}

/* ===== SITE HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  z-index: 1100;
  background: transparent;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}

/* 1. TICKER */
.header-ticker {
  background: var(--bg);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 0;
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid var(--border);
  max-height: 40px;
  opacity: 1;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
}

.site-header.scrolled .header-ticker {
  max-height: 0;
  opacity: 0;
  padding: 0;
  border-bottom: none;
}

.ticker-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: tickerScroll var(--ticker-duration, 28s) linear infinite;
}

.ticker-track__item {
  flex-shrink: 0;
  padding-right: 3rem;
}

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

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
    margin: 0 auto;
  }
}

/* 2. MAIN MIDDLE BAR */
.header-main-middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 48px;
  background: var(--navbar-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.header-logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 150px;
}

.nav-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 38px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1;
}

.logo-subtitle {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.header-nav-main {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header-actions-right {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 150px;
  justify-content: flex-end;
}

.header-search {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  width: 200px;
}

.header-search input {
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text);
  flex: 1;
  min-width: 0;
}

.header-search button {
  background: transparent;
  border: none;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 4px;
}

.header-search button svg {
  width: 16px;
  height: 16px;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.icon-btn:hover {
  background: var(--bg);
  color: var(--accent);
}

.icon-btn svg {
  width: 16px;
  height: 16px;
}

.nav-cart-btn .nav-cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: #c0392b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.nav-cart-btn .nav-cart-badge.show {
  opacity: 1;
  transform: scale(1);
}

.mobile-menu-btn {
  display: none;
}

/* 3. BOTTOM CATEGORY BAR */
.header-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 67, 0.30);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 48px;
  position: relative;
  border-top: 1px solid rgba(212, 168, 67, 0.20);
  transition: background 0.3s ease;
}

.site-header.scrolled .header-bottom-bar {
  background: var(--navbar-bg);
  border-top: 1px solid var(--border);
}

body.dark .header-bottom-bar {
  background: rgba(212, 168, 67, 0.14);
}

body.dark .site-header.scrolled .header-bottom-bar {
  background: var(--navbar-bg);
}

.header-categories-nav {
  overflow-x: auto;
  scrollbar-width: none;
}

.header-categories-nav::-webkit-scrollbar {
  display: none;
}

.header-categories-nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 30px;
}

.header-categories-nav a {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.header-categories-nav a:hover {
  color: var(--accent);
}

.category-nav-arrow {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  padding: 0 10px;
  display: none; /* hidden on desktop unless needed */
}

/* Mega Menu Dropdown */
.nav-has-dropdown {
  position: relative;
}

.dropdown-arrow {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-bottom: 2px;
  transition: transform 0.3s ease;
}

.nav-has-dropdown:hover .dropdown-arrow {
  transform: rotate(-135deg) translateY(-2px);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 16px 24px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1200;
  display: flex;
  flex-direction: column;
}

.nav-dropdown.mega-menu {
  display: flex;
  padding: 0;
  width: 700px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
}

.mega-menu-sidebar {
  width: 230px;
  background: #fdfdfd;
  border-right: 1px solid #eee;
  display: flex;
  flex-direction: column;
}

.mega-menu-sidebar a {
  padding: 14px 20px;
  color: #333;
  font-weight: 500;
  font-size: 13px;
  border-bottom: 1px solid #f8f8f8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mega-menu-sidebar a::before {
  content: none !important;
}

.mega-menu-sidebar a:hover, .mega-menu-sidebar a.active {
  background: #fff;
  color: var(--accent);
  border-left: 3px solid var(--accent);
}

.mega-menu-sidebar a::after {
  content: '›';
  font-size: 16px;
  color: #ccc;
}

.mega-menu-content {
  flex: 1;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: min-content;
  gap: 20px;
  background: #fff;
}

.mega-menu-content h4 {
  grid-column: 1 / -1;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.mega-product-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  text-decoration: none !important;
  color: var(--text);
}

.mega-product-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #eee;
}

.mega-product-item span {
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-has-dropdown:hover .nav-dropdown.mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  padding: 8px 0;
  font-size: 12px;
  color: var(--text);
  white-space: nowrap;
  transition: color 0.2s ease;
  border-bottom: none;
  font-weight: 500;
}

.nav-dropdown a::before {
  content: '•';
  color: var(--accent);
  margin-right: 8px;
  font-size: 14px;
}

.nav-dropdown a:hover {
  color: var(--accent);
  background: transparent;
}


/* DARK TOGGLE */
.dark-toggle {
  background: none;
  border: none;
  color: var(--text-muted);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
  position: relative
}

.dark-toggle:hover {
  color: var(--accent);
  background: rgba(212, 168, 67, .1)
}

.dark-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  position: absolute;
  transition: opacity .3s ease, transform .3s ease
}

.dark-toggle .icon-moon {
  opacity: 1;
  transform: rotate(0)
}

.dark-toggle .icon-sun {
  opacity: 0;
  transform: rotate(-90deg)
}

body.dark .dark-toggle .icon-moon {
  opacity: 0;
  transform: rotate(90deg)
}

body.dark .dark-toggle .icon-sun {
  opacity: 1;
  transform: rotate(0)
}

/* MOBILE NAV SIDEBAR */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 80vw;
  height: 100vh;
  z-index: 10001;
  background: var(--bg-card);
  padding: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 20px rgba(0,0,0,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: none;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-header h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s ease;
}
.mobile-nav-close:hover {
  color: #e74c3c;
}

.mobile-nav ul {
  padding: 16px 24px;
  overflow-y: auto;
  flex: 1;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 14px 0;
  display: block;
  border-bottom: 1px solid var(--border);
  transition: color .3s ease;
}

.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--accent);
}

/* ===== HERO SLIDER ===== */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  margin-bottom: 30px;
  margin-top: 160px;
  /* navbar offset - header büyütüldü */
}

.hero-slider-section:has(+ .discounted-section) {
  margin-bottom: 0;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 800px;
  color: #fff;
}

.hero-slide__label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-slide__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-slide__title .highlight {
  color: var(--accent);
  font-style: italic;
}

.hero-slide__sub {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-slide__badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
}

.hero-slide__badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}

.hero-slider-arrows {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 3;
  pointer-events: none;
}

.hero-arrow {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.hero-arrow:hover {
  background: var(--accent);
}

.hero-slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* ===== SHOWCASES ===== */
.showcases-container {
  padding: 0;
}

.showcase-section {
  padding: 48px 48px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.showcase-header__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.showcase-emoji {
  font-size: 28px;
}

.showcase-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--text);
}

.showcase-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  margin-top: 4px;
}

.section__header .showcase-subtitle {
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0;
}

.showcase-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.showcase-link:hover {
  opacity: 0.7;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  justify-content: center;
  margin-top: 20px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.showcase-grid:has(> .product-card:only-child) {
  grid-template-columns: minmax(0, calc((100% - 44px) / 3));
}

.showcase-grid:has(> .product-card:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, calc((100% - 44px) / 3)));
}

.showcase-section:last-child .showcase-grid {
  border-bottom: none;
}

/* ===== İNDİRİMLİ ÜRÜNLER (vurgulu bölüm) ===== */
.discounted-section {
  margin: 0 0 64px;
  padding: 0;
  max-width: none;
}

.hero-slider-section + .discounted-section {
  margin-top: 0;
}

.discounted-section__band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(212, 168, 67, 0.22) 0%,
    rgba(212, 168, 67, 0.08) 42%,
    rgba(212, 168, 67, 0.16) 100%
  );
  border-top: 2px solid rgba(212, 168, 67, 0.5);
  border-bottom: 2px solid rgba(212, 168, 67, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

body.dark .discounted-section__band {
  background: linear-gradient(
    135deg,
    rgba(212, 168, 67, 0.14) 0%,
    rgba(212, 168, 67, 0.05) 45%,
    rgba(212, 168, 67, 0.12) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.discounted-section__band::before,
.discounted-section__band::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.discounted-section__band::before {
  top: -120px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.28) 0%, transparent 68%);
}

.discounted-section__band::after {
  bottom: -100px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.18) 0%, transparent 70%);
}

.discounted-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 48px 52px;
}

.discounted-section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.discounted-section__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(212, 168, 67, 0.4);
}

.discounted-section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 14px;
}

.discounted-section__sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.discounted-section__count {
  margin: 16px 0 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.discounted-section__grid {
  margin-top: 0;
  padding-bottom: 0;
  border-bottom: none;
}

#discountedGrid .discounted-card {
  border: 2px solid rgba(212, 168, 67, 0.4);
  background: var(--bg-card);
  box-shadow: 0 10px 32px rgba(212, 168, 67, 0.18);
}

#discountedGrid .discounted-card:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(212, 168, 67, 0.32);
  transform: translateY(-8px);
}

#discountedGrid .product-card__sale-ribbon {
  padding: 6px 12px;
  font-size: 11px;
  background: #c0392b;
  box-shadow: 0 3px 10px rgba(192, 57, 43, 0.35);
}

#discountedGrid .product-card__sale-badge {
  background: #c0392b;
}

.discounted-section__footer {
  text-align: center;
  margin-top: 40px;
}

.discounted-section__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(212, 168, 67, 0.4);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.discounted-section__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(212, 168, 67, 0.48);
}

.discounted-section__cta::after {
  content: '›';
  font-size: 18px;
  line-height: 1;
}

/* ===== CAMPAIGNS SECTION ===== */
.campaigns-section {
  padding: 60px 48px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.campaigns-subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  margin-top: -24px;
  margin-bottom: 36px;
}

.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-content: center;
}

.campaigns-grid:has(> .campaign-card:only-child) {
  grid-template-columns: minmax(0, calc((100% - 48px) / 3));
}

.campaigns-grid:has(> .campaign-card:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, calc((100% - 48px) / 3)));
}

.campaign-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.campaign-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.campaign-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s ease;
}

.campaign-card:hover .campaign-card__bg {
  transform: scale(1.05);
}

.campaign-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 2;
}

.campaign-card__content {
  position: relative;
  z-index: 3;
}

.campaign-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.campaign-card__sub {
  font-size: 14px;
  margin-bottom: 16px;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.campaign-card__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 72px 48px 80px;
  max-width: 1180px;
  margin: 0 auto;
}

.about-section__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) 1.08fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.about-section__media {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.about-section__frame {
  position: relative;
  padding-left: 18px;
}

.about-section__frame::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  pointer-events: none;
  z-index: 0;
}

.about-section__frame-accent {
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(212, 168, 67, 0.15) 100%);
  z-index: 2;
}

.about-section__img {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(212, 168, 67, 0.14), var(--bg-card));
  box-shadow: var(--shadow-lg);
}

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

.about-section__inner:hover .about-section__img img {
  transform: scale(1.03);
}

.about-section__img.is-empty img {
  display: none;
}

.about-section__img-placeholder {
  display: none;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--accent);
  background:
    radial-gradient(circle at 30% 25%, rgba(212, 168, 67, 0.22), transparent 55%),
    linear-gradient(160deg, var(--bg-card), rgba(212, 168, 67, 0.08));
}

.about-section__img.is-empty .about-section__img-placeholder {
  display: flex;
}

/* ===== SITE ICONS (monochrome) ===== */
.site-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid var(--border);
  color: var(--accent);
  flex-shrink: 0;
}

.site-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-icon--sm {
  width: 36px;
  height: 36px;
}

.site-icon--sm svg {
  width: 18px;
  height: 18px;
}

.site-icon--xs {
  width: 28px;
  height: 28px;
}

.site-icon--xs svg {
  width: 14px;
  height: 14px;
}

.about-section__placeholder-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto;
}

.about-section__placeholder-icon svg {
  width: 28px;
  height: 28px;
}

.about-section__placeholder-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.about-section__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  box-shadow: var(--shadow);
}

body.dark .about-section__badge {
  background: rgba(36, 36, 36, 0.9);
}

.about-section__content {
  max-width: 560px;
}

.about-section__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.about-section__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0;
  color: var(--text);
}

.about-section__content .accent-divider.about-section__divider {
  display: block;
  width: 52px;
  height: 2px;
  margin: 14px 0 24px;
  margin-left: 0;
  margin-right: auto;
  border: none;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(212, 168, 67, 0.2) 100%);
}

.about-section__text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  white-space: pre-line;
}

#aboutSection,
#contactSection {
  scroll-margin-top: 108px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 64px 48px 80px;
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.contact-section__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-section__intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.contact-section__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.contact-section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 600;
  margin-bottom: 0;
}

.contact-section__divider {
  width: 56px;
  margin: 16px auto 18px;
}

.contact-section__sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

.contact-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1.05fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.contact-section__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

a.contact-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.contact-card--static {
  cursor: default;
}

.contact-card__icon {
  margin-bottom: 2px;
}

.contact-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-card__value {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}

.contact-section__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-section__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 11;
  background: var(--bg-card);
}

.contact-section__map iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
  display: block;
}

.contact-section__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

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

.contact-btn--wa,
.contact-btn--ig {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
}

.contact-btn--wa:hover,
.contact-btn--ig:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.contact-btn--wa svg,
.contact-btn--ig svg {
  stroke: currentColor;
  fill: none;
}


/* ===== SEARCH RESULTS HEADER ===== */
.search-results-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px 16px;
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px
}

.search-results-header.active {
  display: flex
}

.search-results-header h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600
}

/* ===== CONTENT LAYOUT ===== */
.content-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px 60px;
  display: flex;
  gap: 32px
}

/* FILTER SIDEBAR */
.filter-sidebar {
  width: 260px;
  flex-shrink: 0;
  display: block;
}

.filter-sidebar.active {
  display: block
}

.filter-sidebar__inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 80px
}

.filter-sidebar__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border)
}

.filter-group {
  margin-bottom: 24px
}

.filter-group h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 12px
}

/* Price Range */
.price-range input[type=range] {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--accent) 100%, var(--border) 100%);
  border-radius: 4px;
  outline: none;
  margin-bottom: 8px
}

.price-range input[type=range]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 2px solid var(--bg);
  box-shadow: 0 0 8px rgba(212, 168, 67, .3)
}

.price-range__labels {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted)
}

/* Color Swatches */
.color-swatches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .3s ease;
  position: relative
}

.swatch:hover,
.swatch.active {
  border-color: var(--accent);
  transform: scale(1.15)
}

.swatch.active::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .4)
}

/* Category Checkboxes */
.filter-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.filter-checkboxes label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer
}

.filter-checkboxes input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer
}

/* Sort Select */
.filter-select {
  width: 100%;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .3s ease
}

.filter-select:focus {
  border-color: var(--accent)
}

/* ===== PRODUCTS AREA ===== */
.products-area {
  flex: 1;
  min-width: 0
}

.section__header {
  text-align: center;
  margin-bottom: 36px
}

.section__header h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 600;
  margin-bottom: 10px
}

.accent-divider {
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto;
  border-radius: 2px
}

/* Mobile filter button */
.mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  transition: all .3s ease
}

.mobile-filter-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5
}

.mobile-filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent)
}

/* PRODUCT GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-content: center
}

.products-grid:has(> .product-card:only-child) {
  grid-template-columns: minmax(0, calc((100% - 48px) / 3))
}

.products-grid:has(> .product-card:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, calc((100% - 48px) / 3)))
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all .4s cubic-bezier(.34, 1.56, .64, 1)
}

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

.product-card__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease
}

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

.product-card__info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25
}

.product-card__desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.product-card__price {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
}

.product-card__price-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin: 4px 0 2px;
}

.product-card__price-old {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-card__sale-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
}

.product-card__sale-ribbon {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-add-cart {
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
  margin-top: 6px;
  padding: 9px 16px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 3px 14px rgba(212, 168, 67, 0.32);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-add-cart:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(212, 168, 67, 0.4);
}

.btn-add-cart:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(212, 168, 67, 0.28);
}

.btn-add-cart:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-add-cart svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: all .3s ease;
  text-decoration: none;
  cursor: pointer
}

.btn--primary {
  background: var(--accent);
  color: #fff
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px)
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--accent)
}

.btn--outline:hover {
  background: var(--accent);
  color: #fff
}

.btn--sm {
  padding: 8px 18px;
  font-size: 12px
}

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

.btn--block {
  width: 100%;
  justify-content: center
}

/* ===== FEATURES ===== */
.features-section {
  padding: 70px 48px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition)
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 16px;
  border-radius: var(--radius);
  transition: transform .3s ease
}

.feature-card:hover {
  transform: translateY(-4px)
}

.feature-icon {
  margin: 0 auto 12px;
}

.feature-card .feature-icon {
  display: flex;
  justify-content: center;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600
}

.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 200px;
  line-height: 1.5
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--accent);
  padding: 48px 48px 0;
  background: var(--bg);
  transition: background var(--transition)
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 36px
}

.footer__logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 600
}

.footer__tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px
}

.footer__contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 10px;
}

.footer__contact-line > span:last-child {
  flex: 1;
  min-width: 0;
}

.footer__admin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  opacity: 0.35;
  margin-top: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer__admin-link:hover {
  opacity: 0.65;
  color: var(--accent);
}

.footer__admin-link svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.footer__social {
  display: flex;
  gap: 10px
}

.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all .3s ease
}

.footer__social a:hover {
  border-color: var(--accent);
  color: var(--accent)
}

.footer__social svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 14px
}

.footer__links {
  list-style: none
}

.footer__links li {
  margin-bottom: 8px
}

.footer__links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color .3s ease
}

.footer__links a:hover {
  color: var(--accent)
}

.footer__contact-info {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
  line-height: 1.5
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 16px 0;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted)
}

/* ===== CART DRAWER ===== */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 10100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease
}

.cart-backdrop.open {
  opacity: 1;
  pointer-events: all
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: var(--bg-card);
  z-index: 10101;
  box-shadow: -8px 0 40px rgba(0, 0, 0, .15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1), background var(--transition)
}

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

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border)
}

.cart-drawer__header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600
}

.cart-drawer__close {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all .3s ease
}

.cart-drawer__close:hover {
  background: rgba(212, 168, 67, .1);
  color: var(--accent)
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  color: var(--text-muted)
}

.cart-empty svg {
  width: 48px;
  height: 48px;
  stroke: var(--border);
  fill: none;
  stroke-width: 1
}

.cart-empty p {
  font-size: 15px
}

/* Cart Item */
.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start
}

.cart-item__img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0
}

.cart-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.cart-item__details {
  flex: 1;
  min-width: 0
}

.cart-item__name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.cart-item__price {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s ease
}

.qty-btn:hover {
  border-color: var(--accent);
  color: var(--accent)
}

.cart-item__qty span {
  font-size: 14px;
  font-weight: 600;
  min-width: 20px;
  text-align: center
}

.cart-item__remove {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  padding: 4px;
  transition: color .3s ease;
  flex-shrink: 0;
  margin-top: 4px
}

.cart-item__remove:hover {
  color: #e74c3c
}

/* Cart Footer */
.cart-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border)
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px
}

.cart-subtotal span:last-child {
  color: var(--accent)
}

.cart-shipping {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-align: center
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(212, 168, 67, .25);
  z-index: 10001;
  opacity: 0;
  transition: all .4s cubic-bezier(.34, 1.56, .64, 1)
}

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

.toast svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2
}

/* ===== WA CHECKOUT BUTTON ===== */
.btn-wa-checkout {
  width: 100%;
  padding: 14px 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 4px 20px rgba(212, 168, 67, .28);
  letter-spacing: .02em;
}

.btn-wa-checkout:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 168, 67, .38);
}

.btn-wa-checkout svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}

/* ===== WHATSAPP MODAL ===== */
.wa-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 10200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  backdrop-filter: blur(4px);
}

.wa-backdrop.open {
  opacity: 1;
  pointer-events: all
}

.wa-modal {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--bg-card);
  border-radius: 24px 24px 0 0;
  z-index: 10201;
  box-shadow: 0 -8px 48px rgba(0, 0, 0, .22);
  transition: transform .45s cubic-bezier(.34, 1.1, .64, 1);
  display: flex;
  flex-direction: column;
}

.wa-modal.open {
  transform: translateX(-50%) translateY(0)
}

/* Header */
.wa-modal__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.wa-modal__icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid var(--border);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-modal__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
}

.wa-modal__title-wrap {
  flex: 1
}

.wa-modal__title-wrap h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2
}

.wa-modal__title-wrap p {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px
}

.wa-modal__close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-muted);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s ease;
  flex-shrink: 0;
}

.wa-modal__close:hover {
  background: rgba(231, 76, 60, .1);
  color: #e74c3c
}

/* Order Summary */
.wa-order-summary {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  max-height: 180px;
  overflow-y: auto;
  flex-shrink: 0;
}

.wa-summary-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.wa-summary-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

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

.wa-summary-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.wa-summary-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.wa-summary-name {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-summary-qty {
  font-size: 11px;
  color: var(--text-muted);
}

.wa-summary-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

/* WA Form */
.wa-form {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wa-form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wa-form-row label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
}

.wa-form-row input,
.wa-form-row textarea {
  padding: 12px 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  resize: vertical;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.wa-form-row input:focus,
.wa-form-row textarea:focus {
  border-color: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, .12);
}

.wa-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-size: 15px;
}

.wa-total-row strong {
  color: var(--accent);
  font-size: 20px;
  font-weight: 700
}

.wa-submit-btn {
  width: 100%;
  padding: 16px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 4px 20px rgba(212, 168, 67, .28);
  letter-spacing: .02em;
  margin-top: 4px;
}

.wa-submit-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 168, 67, .38);
}

.wa-submit-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}

/* ===== RESPONSIVE — TABLET (≤1024px) ===== */
@media (max-width: 1024px) {

  .header-main-middle {
    padding: 12px 28px;
    gap: 12px;
  }

  .header-bottom-bar {
    padding: 0 28px;
  }

  .header-categories-nav ul {
    gap: 22px;
  }

  .header-categories-nav a {
    font-size: 11px;
    padding: 10px 0;
  }

  .nav-logo {
    font-size: 32px;
  }

  .logo-subtitle {
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 11px;
  }

  .header-actions-right {
    gap: 12px;
    min-width: 0;
  }

  .header-search {
    width: min(180px, 22vw);
  }

  .hero-slider-section {
    margin-top: 132px;
    height: 68vh;
    min-height: 440px;
  }

  .hero-slider-arrows {
    z-index: 1;
    padding: 0 16px;
  }

  .hero-slider {
    position: relative;
    z-index: 2;
  }

  .hero-slide__content {
    z-index: 3;
    padding: 0 32px;
    max-width: 90%;
  }

  .hero-slide__title {
    font-size: clamp(32px, 5vw, 52px);
  }

  .hero-slide__sub {
    font-size: 16px;
  }

  .hero-arrow {
    width: 46px;
    height: 46px;
  }

  .page-hero {
    margin-top: 132px;
    padding: 48px 28px 32px;
  }

  .showcase-section,
  .campaigns-section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .discounted-section {
    margin: 0 0 48px;
  }

  .discounted-section__inner {
    padding: 44px 28px 40px;
  }

  .discounted-section__header {
    margin-bottom: 28px;
  }

  .showcase-grid,
  .products-grid,
  #discountedGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .showcase-grid:has(> .product-card:only-child),
  .products-grid:has(> .product-card:only-child) {
    grid-template-columns: minmax(0, calc((100% - 18px) / 2));
  }

  .showcase-grid:has(> .product-card:nth-child(2):last-child),
  .products-grid:has(> .product-card:nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .campaigns-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: center;
  }

  .campaigns-grid:has(> .campaign-card:only-child) {
    grid-template-columns: minmax(0, calc((100% - 20px) / 2));
  }

  .campaigns-grid:has(> .campaign-card:nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .features-section {
    padding: 52px 28px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .about-section {
    padding: 56px 28px 64px;
  }

  .about-section__inner {
    gap: 36px;
    grid-template-columns: minmax(220px, 0.9fr) 1.1fr;
  }

  .about-section__media {
    max-width: 360px;
  }

  .contact-section {
    padding: 56px 28px 64px;
  }

  .contact-section__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-section__side {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    align-items: stretch;
  }

  .contact-section__actions {
    justify-content: center;
  }

  .content-layout {
    padding: 0 28px 48px;
    gap: 24px;
  }

  .filter-sidebar {
    width: 240px;
  }

  .filter-sidebar__inner {
    top: 120px;
  }

  .search-results-header {
    padding: 0 28px 14px;
  }

  .footer {
    padding: 40px 28px 0;
  }

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

  .footer__grid > div:last-child {
    grid-column: 1 / -1;
  }

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

  .product-modal__gallery {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 20px;
  }

  .product-modal__info {
    padding: 28px 24px;
  }

  .product-modal {
    max-width: 640px;
  }

  .pm-gallery-main {
    aspect-ratio: 16/10;
    max-height: 360px;
  }

  .wa-modal {
    max-width: min(520px, 92vw);
  }
}

/* Tablet dar ekran — iletişim yan yana yerine alt alta */
@media (min-width: 769px) and (max-width: 900px) {
  .contact-section__side {
    grid-template-columns: 1fr;
  }

  .header-search {
    width: 150px;
  }

  .nav-links {
    gap: 14px;
  }
}

@media(max-width:768px) {  /* 768 */

  .accent-line--left,
  .accent-line--right {
    display: none
  }

  .header-social {
    display: flex;
    gap: 10px;
  }

  .social-pill {
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    gap: 0;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
  }

  .social-pill svg {
    margin: 0;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  /* ===== MOBILE HEADER: flex-wrap layout, no grid overflow ===== */
  .header-main-middle {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 10px;
    row-gap: 0;
    padding: 12px 16px 0;
    width: 100%;
    box-sizing: border-box;
  }

  /* search + icons become direct flex children */
  .header-actions-right {
    display: contents;
  }

  /* ── Row 1: [menu] [logo] [icons] ── */
  .mobile-menu-btn {
    order: 1;
    flex: 0 0 auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    padding: 0;
    cursor: pointer;
  }
  .mobile-menu-btn svg {
    width: 20px;
    height: 20px;
  }

  .header-logo-container {
    order: 2;
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    align-items: flex-start;
  }

  .header-icons {
    order: 3;
    flex: 0 0 auto;
    display: flex;
    gap: 6px;
    align-items: center;
  }

  .icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    flex-shrink: 0;
  }

  /* ── Row 2: nav links (horizontal scroll) ── */
  .header-nav-main {
    order: 4;
    flex: 0 0 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0 8px;
    margin-top: 4px;
    box-sizing: border-box;
  }
  .header-nav-main::-webkit-scrollbar { display: none; }

  .nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: max-content;
  }
  .nav-links a {
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
  }

  /* ── Row 3: search bar (full width) ── */
  .header-search {
    order: 5;
    flex: 0 0 100%;
    width: 100%;
    margin-bottom: 12px;
    margin-top: 2px;
    border-radius: 25px;
    background: var(--bg);
    box-sizing: border-box;
    display: flex;
    align-items: center;
  }
  .header-search input {
    flex: 1;
    min-width: 0;
    font-size: 14px;
  }
  .header-search button {
    background: #7c5c43;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    min-width: 32px;
    color: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-search button svg {
    stroke: #fff;
  }

  /* ── hide desktop-only elements ── */
  .header-bottom-bar { display: none !important; }
  .header-categories-nav, .category-nav-arrow { display: none !important; }
  .nav-dropdown.mega-menu { display: none !important; }

  .hero-slider-section {
    margin-top: 185px;
    height: auto;
    min-height: min(72vh, 560px);
  }

  .hero-slider-arrows {
    z-index: 1;
    align-items: flex-end;
    padding: 0 10px 78px;
  }

  .hero-slider {
    position: relative;
    z-index: 2;
  }

  .hero-slide__content {
    z-index: 3;
    padding: 0 12px 56px;
    max-width: 100%;
  }

  .hero-slide__title {
    font-size: clamp(28px, 8vw, 40px);
    margin-bottom: 14px;
  }

  .hero-slide__sub {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .hero-slide__badges {
    gap: 8px;
    font-size: 12px;
  }

  .hero-slide__badges span {
    padding: 6px 12px;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .hero-slider-dots {
    z-index: 4;
    bottom: 20px;
  }

  .page-hero {
    margin-top: 185px;
  }

  .hero {
    flex-direction: column;
    padding: 80px 20px 24px;
    min-height: auto;
    text-align: center;
    gap: 24px
  }

  .hero__content {
    flex: none
  }

  .hero__sub {
    margin: 0 auto 24px
  }

  .hero__badges {
    justify-content: center
  }

  .hero__image {
    flex: none
  }

  .hero__image img {
    max-height: 40vh
  }

  .categories-section {
    padding: 0 16px
  }

  .content-layout {
    padding: 0 16px 40px;
    flex-direction: column
  }

  .filter-sidebar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1500;
    background: rgba(0, 0, 0, .4);
    display: none;
    align-items: flex-end
  }

  .filter-sidebar.active {
    display: flex
  }

  .filter-sidebar__inner {
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: var(--radius) var(--radius) 0 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0
  }

  .mobile-filter-btn {
    display: flex
  }

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

  .search-results-header {
    padding: 0 16px 12px
  }

  .features-section {
    padding: 50px 20px
  }

  .features-grid {
    gap: 20px
  }

  .footer {
    padding: 36px 20px 0
  }

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

  .wa-modal {
    max-width: 100%;
    border-radius: 20px 20px 0 0
  }

  .about-section {
    padding: 48px 20px 56px;
  }

  .about-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .about-section__media {
    max-width: min(100%, 340px);
  }

  .about-section__frame {
    padding-left: 14px;
  }

  .about-section__badge {
    left: 14px;
    bottom: 14px;
  }

  .about-section__content {
    max-width: none;
    margin: 0 auto;
  }

  .about-section__content .accent-divider.about-section__divider {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-section {
    padding: 48px 20px 56px;
  }

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

  .contact-section__map {
    aspect-ratio: 16 / 10;
  }

  .campaigns-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    justify-content: center;
  }

  .campaigns-grid:has(> .campaign-card:only-child) {
    grid-template-columns: minmax(0, calc((100% - 16px) / 2));
  }
}

@media(max-width:600px) {
  .campaigns-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media(max-width:480px) {
  .products-grid {
    grid-template-columns: 1fr
  }

  .features-grid {
    grid-template-columns: 1fr
  }

  .hero__title {
    font-size: 32px
  }

  .wa-form {
    padding: 16px
  }

  .wa-modal__header {
    padding: 16px
  }

  .wa-order-summary {
    padding: 12px 16px
  }
}

/* ===== PRODUCT DETAIL MODAL ===== */
/* z-index: mobil header (9999) üzerinde olmalı */
.product-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(4px);
  z-index: 10200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px
}

.product-modal-backdrop.open {
  opacity: 1;
  pointer-events: all
}

.product-modal {
  background: var(--bg-card);
  border-radius: 24px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
  box-shadow: var(--shadow-lg)
}

.product-modal-backdrop.open .product-modal {
  transform: translateY(0) scale(1)
}

.product-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: all .3s ease
}

.product-modal__close:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent)
}

.product-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0
}

.product-modal__gallery {
  padding: 24px;
  background: var(--bg);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px
}

.pm-gallery-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center
}

.pm-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .3s ease
}

.pm-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(4px);
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
  color: #333;
  font-size: 16px
}

.pm-arrow:hover {
  background: var(--accent);
  color: #fff
}

.pm-arrow.prev {
  left: 12px
}

.pm-arrow.next {
  right: 12px
}

.pm-gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px
}

.pm-gallery-thumbs img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s ease, transform .2s ease
}

.pm-gallery-thumbs img.active {
  border-color: var(--accent);
  transform: translateY(-2px)
}

.product-modal__info {
  padding: 40px 32px;
  display: flex;
  flex-direction: column
}

.pm-category {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px
}

.pm-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px
}

.pm-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px
}

.pm-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1
}

.pm-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.pm-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

@media(max-width:768px) {
  .product-modal__grid {
    grid-template-columns: 1fr
  }

  .product-modal__gallery {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 16px
  }

  .product-modal__info {
    padding: 24px
  }
}

/* BEST SELLERS MOBILE 2-COLUMN GRID */
@media (max-width: 768px) {
  .discounted-section {
    margin: 0 0 40px;
  }

  .discounted-section__inner {
    padding: 32px 16px 28px;
  }

  .discounted-section__header {
    margin-bottom: 22px;
  }

  .discounted-section__eyebrow {
    font-size: 10px;
    padding: 7px 14px;
    margin-bottom: 12px;
  }

  .discounted-section__footer {
    margin-top: 28px;
  }

  .discounted-section__cta {
    width: 100%;
    max-width: 320px;
    padding: 14px 22px;
    font-size: 14px;
  }

  #discountedGrid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  
  #discountedGrid .product-card__info {
    padding: 10px;
    gap: 4px;
  }
  
  #discountedGrid .product-card__name {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #discountedGrid .product-card__desc {
    display: none;
  }

  #discountedGrid .product-card__price {
    font-size: 15px;
    margin: 2px 0;
  }

  #discountedGrid .btn-add-cart {
    padding: 8px 12px;
    font-size: 11px;
    gap: 5px;
    margin-top: 4px;
  }

  #discountedGrid .btn-add-cart svg {
    width: 15px;
    height: 15px;
  }

  /* 1. HEADER OVERLAP FIX */
  .site-header {
    z-index: 9999 !important;
  }
  .nav-logo {
    font-size: 26px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .header-logo-container {
    flex: 1 1 0% !important;
    min-width: 0 !important;
  }
  .header-icons {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  /* 2. TWO-COLUMN GRID FIX FOR ALL GRIDS */
  .products-grid,
  .showcase-grid,
  .campaigns-grid,
  #discountedGrid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    justify-content: center !important;
  }

  .products-grid:has(> .product-card:only-child),
  .showcase-grid:has(> .product-card:only-child),
  #discountedGrid:has(> .product-card:only-child),
  .campaigns-grid:has(> .campaign-card:only-child) {
    grid-template-columns: minmax(0, calc((100% - 12px) / 2)) !important;
  }

  .campaigns-grid:has(> .campaign-card:nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  /* Ürün modalı — header altında kalmaması için */
  .product-modal-backdrop {
    align-items: flex-start;
    padding: 12px;
    padding-top: max(12px, env(safe-area-inset-top, 12px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .product-modal {
    max-height: calc(100dvh - 24px);
    margin-top: 0;
    border-radius: 20px;
  }

  .product-modal-backdrop.open .product-modal__close {
    position: fixed;
    top: max(12px, env(safe-area-inset-top, 12px));
    right: 12px;
    z-index: 10210;
    width: 44px;
    height: 44px;
    font-size: 20px;
    background: var(--bg-card);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
  }

  /* 3. LAYOUT & SPACING (CONSISTENT PADDING) */
  section,
  .showcase-section,
  .campaigns-section,
  .about-section,
  .contact-section,
  .features-section,
  .content-layout {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }
}