/* ============================================
   ATÖLYE AYDINLATMA - Design System
   Premium Dark Luxury Theme
   ============================================ */

/* Fontlar HTML içinde <link> ile yükleniyor (daha hızlı ilk açılış). */

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --color-bg-primary: #0a0a0a;
  --color-bg-secondary: #111111;
  --color-bg-tertiary: #1a1a1a;
  --color-bg-card: rgba(20, 20, 20, 0.7);

  --color-gold-primary: #c9a55c;
  --color-gold-light: #e8d5a3;
  --color-gold-dark: #8b7340;
  --color-gold-glow: rgba(201, 165, 92, 0.3);

  --color-amber: #d4a843;
  --color-amber-light: #f0d48a;
  --color-warm-white: #f5efe0;

  --color-text-primary: #f5f0e8;
  --color-text-secondary: rgba(245, 240, 232, 0.7);
  --color-text-muted: rgba(245, 240, 232, 0.4);
  --color-text-accent: var(--color-gold-primary);

  --color-border: rgba(201, 165, 92, 0.15);
  --color-border-hover: rgba(201, 165, 92, 0.4);

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #c9a55c 0%, #e8d5a3 50%, #c9a55c 100%);
  --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 1) 100%);
  --gradient-hero-bottom: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.3) 40%, rgba(10, 10, 10, 0.85) 70%, #0a0a0a 100%);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --section-padding: clamp(56px, 8vw, 104px);
  --nav-h: 72px;
  --container-width: 1280px;
  --container-padding: clamp(20px, 5vw, 80px);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Glassmorphism */
  --glass-bg: rgba(20, 20, 20, 0.6);
  --glass-border: rgba(201, 165, 92, 0.12);
  --glass-blur: blur(20px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

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

::selection {
  background: var(--color-gold-primary);
  color: var(--color-bg-primary);
}

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

a {
  color: var(--color-gold-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-gold-light);
}

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

.gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold-dark);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-primary);
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  animation: loadPulse 2s ease-in-out infinite;
}

.loading-bar {
  width: 200px;
  height: 2px;
  background: var(--color-bg-tertiary);
  border-radius: 1px;
  overflow: hidden;
}

.loading-bar-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 1px;
  animation: loadBar 1.1s ease-in-out forwards;
}

@keyframes loadBar {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes loadPulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all var(--transition-medium);
}

.navbar.scrolled {
  padding: 0.8rem 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
}

/* Panelden yüklenen logo görseli */
.brand-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.loading-logo .brand-logo {
  height: 72px;
  max-width: 260px;
}

.footer-brand-name .brand-logo {
  height: 56px;
  max-width: 240px;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
  padding: 0.3rem 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient-gold);
  transition: width var(--transition-medium);
}

.nav-links a:hover {
  color: var(--color-gold-primary);
}

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

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-gold-primary);
  transition: all var(--transition-fast);
}

/* ============================================
   HERO SECTION - Video Zoom
   ============================================ */
.hero-subtitle-top {
  font-family: var(--font-accent);
  font-size: clamp(0.9rem, 1.8vw, 1.3rem);
  font-style: italic;
  color: var(--color-gold-light);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero-title-top {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.9);
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-gold-light);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1.2s ease 0.5s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeIn 1.2s ease 0.8s forwards;
}

.hero-title .line {
  display: block;
}

.hero-description {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  font-weight: 300;
  color: var(--color-text-secondary);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1.2s ease 1.1s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-bg-primary);
  background: var(--gradient-gold);
  border: none;
  border-radius: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1.2s ease 1.4s forwards;
  transition: all var(--transition-medium);
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.hero-cta:hover::before {
  left: 100%;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px var(--color-gold-glow);
}

.hero-cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  animation: heroFadeIn 1s ease 2s forwards;
}

.hero-scroll-indicator span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--color-gold-primary), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-gold-light);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollDown {
  0% {
    top: -100%;
  }

  50% {
    top: 100%;
  }

  100% {
    top: 100%;
  }
}

/* Video Progress Bar */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.hero-progress-bar {
  height: 100%;
  width: 100%;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.1s linear;
  box-shadow: 0 0 10px var(--color-gold-glow);
}

/* Video Complete Indicator */
.hero-complete {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%, 30px);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.hero-complete span {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-gold-light);
  letter-spacing: 0.1em;
}

.hero-complete svg {
  color: var(--color-gold-primary);
  animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-content {
  position: relative;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-text:last-of-type {
  margin-bottom: 2.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

.about-visual {
  position: relative;
  height: 500px;
}

.about-image-main {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image-main:hover img {
  transform: scale(1.05);
}

.about-ambient-light {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--color-gold-glow) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: ambientPulse 4s ease-in-out infinite;
  z-index: -1;
}

@keyframes ambientPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* ============================================
   PHILOSOPHY / MARQUEE SECTION
   ============================================ */
.philosophy {
  position: relative;
  padding: clamp(36px, 5vw, 64px) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  padding: 0 3rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-gold-dark);
  white-space: nowrap;
}

.marquee-item .filled {
  -webkit-text-stroke: 0;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.marquee-dot {
  width: 12px;
  height: 12px;
  background: var(--color-gold-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   GALLERY / SHOWCASE SECTION
   ============================================ */
.gallery {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

.gallery-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
}

.gallery-subtitle {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-text-secondary);
  margin-top: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition-medium);
}

.gallery-item:hover {
  border-color: var(--color-border-hover);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--color-gold-glow);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  height: 600px;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
  height: 290px;
}

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

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

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.9));
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-medium);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.gallery-item-category {
  font-size: 0.8rem;
  color: var(--color-gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   QUOTE / CTA SECTION
   ============================================ */
.quote-section {
  position: relative;
  padding: clamp(40px, 6vw, 80px) 0;
  text-align: center;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-gold-glow) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.3;
}

.quote-icon {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-gold-dark);
  margin-bottom: 2rem;
  opacity: 0.5;
}

.quote-text {
  font-family: var(--font-accent);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--color-text-primary);
}

/* Açılış ve kapanış tırnakları metnin kendisine eklenir */
.quote-text::before,
.quote-text::after {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.6em;
  line-height: 0;
  color: var(--color-gold-dark);
  opacity: 0.7;
  vertical-align: -0.35em;
}

.quote-text::before {
  content: '“';
  margin-right: 0.12em;
}

.quote-text::after {
  content: '”';
  margin-left: 0.08em;
}

.quote-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 3rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-primary);
  background: transparent;
  border: 1px solid var(--color-gold-primary);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-medium);
}

.quote-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--gradient-gold);
  transition: width var(--transition-medium);
  z-index: -1;
}

.quote-cta:hover {
  color: var(--color-bg-primary);
  border-color: var(--color-gold-light);
}

.quote-cta:hover::before {
  width: 100%;
}

/* ============================================
   CONTACT / FOOTER
   ============================================ */
.footer {
  position: relative;
  padding: var(--section-padding) 0 3rem;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 320px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
  position: relative;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-gold-primary);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-gold-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-socials {
  display: flex;
  gap: 1.2rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: all var(--transition-medium);
}

.footer-socials a:hover {
  border-color: var(--color-gold-primary);
  color: var(--color-gold-primary);
  background: rgba(201, 165, 92, 0.08);
  transform: translateY(-3px);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) {
  transition-delay: 0s;
}

.stagger-children .reveal:nth-child(2) {
  transition-delay: 0.12s;
}

.stagger-children .reveal:nth-child(3) {
  transition-delay: 0.24s;
}

.stagger-children .reveal:nth-child(4) {
  transition-delay: 0.36s;
}

/* ============================================
   AMBIENT PARTICLES (decorative)
   ============================================ */
.ambient-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--color-gold-primary);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 12s ease-in-out infinite;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 15s;
}

.particle:nth-child(2) {
  left: 25%;
  animation-delay: 2s;
  animation-duration: 12s;
}

.particle:nth-child(3) {
  left: 40%;
  animation-delay: 4s;
  animation-duration: 18s;
}

.particle:nth-child(4) {
  left: 55%;
  animation-delay: 1s;
  animation-duration: 14s;
}

.particle:nth-child(5) {
  left: 70%;
  animation-delay: 3s;
  animation-duration: 16s;
}

.particle:nth-child(6) {
  left: 85%;
  animation-delay: 5s;
  animation-duration: 13s;
}

.particle:nth-child(7) {
  left: 15%;
  animation-delay: 6s;
  animation-duration: 17s;
}

.particle:nth-child(8) {
  left: 60%;
  animation-delay: 7s;
  animation-duration: 11s;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }

  10% {
    opacity: 0.6;
    transform: scale(1);
  }

  90% {
    opacity: 0.2;
  }

  100% {
    opacity: 0;
    transform: translateY(-20vh) scale(0);
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
/* ============================================
   RESPONSIVE DESIGN (Mobile & Tablet Optimization)
   ============================================ */

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    height: 380px;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) {
    height: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title-top {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .hero-subtitle-top {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
  }

  .hero-cta {
    padding: 0.85rem 1.8rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  /* Mobile Navigation Menu */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.25rem;
    letter-spacing: 0.18em;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

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

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

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

  /* About Section Mobile */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-visual {
    height: 300px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
  }

  .stat-number {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  .stat-label {
    font-size: 0.7rem;
  }

  /* Gallery Grid Mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) {
    height: 260px;
  }

  .gallery-item-overlay {
    opacity: 1;
    transform: translateY(0);
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title-top {
    font-size: clamp(1.8rem, 8.5vw, 2.8rem);
  }

  .hero-subtitle-top {
    font-size: 0.75rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    text-align: center;
  }

  .stat-item {
    text-align: center;
  }

  .marquee-item {
    font-size: 2rem;
    gap: 1.5rem;
    padding: 0 1.5rem;
  }
}
/* ============================================
   ÜRÜNLER / MAĞAZA (Worker ile eklenen bölümler)
   ============================================ */
.section-label--center {
  justify-content: center;
}

:focus-visible {
  outline: 2px solid var(--color-gold-primary);
  outline-offset: 3px;
}

/* --- Butonlar --- */
.btn-gold,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-medium), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.btn-gold {
  color: var(--color-bg-primary);
  background: var(--gradient-gold);
  border: 1px solid transparent;
}

.btn-gold:hover {
  color: var(--color-bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px var(--color-gold-glow);
}

.btn-outline {
  color: var(--color-gold-primary);
  background: transparent;
  border: 1px solid var(--color-border-hover);
}

.btn-outline:hover {
  color: var(--color-gold-light);
  border-color: var(--color-gold-primary);
  background: rgba(201, 165, 92, 0.06);
}

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

/* --- Ürünler bölümü --- */
.products {
  position: relative;
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 50%, var(--color-bg-primary) 100%);
}

.products-header {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.products-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
}

.products-subtitle {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-text-secondary);
  margin: 1rem auto 0;
  max-width: 600px;
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.product-filters:empty {
  display: none;
}

.product-filter {
  padding: 0.6rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  background: transparent;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.product-filter:hover {
  color: var(--color-gold-light);
  border-color: var(--color-border-hover);
}

.product-filter.is-active {
  color: var(--color-bg-primary);
  background: var(--gradient-gold);
  border-color: transparent;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-empty {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-text-muted);
  padding: 3rem 0;
}

.product-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-medium), border-color var(--transition-medium), box-shadow var(--transition-medium);
}

.product-card[hidden] {
  display: none;
}

.product-card:hover {
  color: inherit;
  border-color: var(--color-border-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--color-gold-glow);
}

.product-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-bg-tertiary);
}

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

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

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.8rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-bg-primary);
  background: var(--gradient-gold);
}

.product-badge--muted {
  color: var(--color-text-primary);
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--color-border-hover);
}

.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}

.product-card-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-primary);
  margin-bottom: 0.5rem;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.product-card-desc {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.product-card-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-gold-light);
}

.product-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-primary);
  white-space: nowrap;
}

.product-card-cta svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.product-card:hover .product-card-cta svg {
  transform: translateX(4px);
}

/* --- Ürün detay sayfası --- */
.inner-page .footer--compact {
  padding: 2rem 0;
}

.footer--compact .footer-bottom {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.product-page {
  padding: clamp(110px, 14vh, 140px) 0 var(--section-padding);
  min-height: 70vh;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--color-text-secondary);
}

.breadcrumb a:hover {
  color: var(--color-gold-primary);
}

.breadcrumb [aria-current] {
  color: var(--color-gold-light);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 100px;
}

.product-gallery-stage {
  position: relative;
}

/* Görseller yan yana; parmakla / trackpad ile kaydırılır, her kaydırmada bir görsele oturur */
.product-gallery-main {
  display: flex;
  aspect-ratio: 4 / 5;
  max-height: calc(100vh - 270px);
  min-height: 320px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  background: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
}

.product-gallery-main::-webkit-scrollbar {
  display: none;
}

.product-slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  cursor: zoom-in;
}

/* Görselin tamamı görünür (kırpılmaz) */
.product-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  cursor: pointer;
  transition: opacity var(--transition-fast), background var(--transition-fast);
}

.product-slider-btn:hover {
  background: rgba(201, 165, 92, 0.45);
}

.product-slider-btn:disabled {
  opacity: 0;
  pointer-events: none;
}

.product-slider-prev {
  left: 12px;
}

.product-slider-next {
  right: 12px;
}

.product-slider-count {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 0.2rem 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(10, 10, 10, 0.55);
  border-radius: 999px;
  pointer-events: none;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.product-thumb {
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  background: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  cursor: pointer;
  opacity: 0.55;
  transition: opacity var(--transition-fast), border-color var(--transition-fast);
}

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

.product-thumb:hover,
.product-thumb.is-active {
  opacity: 1;
  border-color: var(--color-gold-primary);
}

.product-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.product-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-price {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--color-gold-light);
}

.product-price--ask {
  font-size: 1.2rem;
  font-style: italic;
  font-family: var(--font-accent);
}

.product-stock {
  padding: 0.3rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid currentColor;
}

.product-stock--stokta { color: #8fc79a; }
.product-stock--siparis { color: var(--color-gold-primary); }
.product-stock--tukendi { color: var(--color-text-muted); }

.product-short {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.product-actions--center {
  justify-content: center;
}

.product-specs {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--color-border);
  margin-bottom: 2rem;
}

.product-specs > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--color-border);
}

.product-specs dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.product-specs dd {
  font-size: 0.95rem;
  color: var(--color-text-primary);
}

.product-description {
  white-space: pre-line;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.product-assurances {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  padding: 1.5rem;
  background: rgba(201, 165, 92, 0.04);
  border: 1px solid var(--color-border);
}

.product-assurances li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.88rem;
  color: var(--color-text-secondary);
}

.product-assurances li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold-primary);
  box-shadow: 0 0 10px var(--color-gold-glow);
}

.related-products {
  margin-top: clamp(4rem, 10vw, 7rem);
  padding-top: clamp(3rem, 6vw, 4rem);
  border-top: 1px solid var(--color-border);
}

.related-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
}

/* Detay sayfasında reveal animasyonu yok; kartlar hemen görünür */
.inner-page .reveal {
  opacity: 1;
  transform: none;
}

.not-found {
  text-align: center;
}

.not-found .product-short {
  margin-left: auto;
  margin-right: auto;
}

/* --- Mağaza responsive --- */
@media (max-width: 1100px) {
  .nav-links {
    gap: 1.6rem;
  }
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
  }

  .product-gallery-main {
    max-height: 75vh;
  }

  /* Dokunmatik ekranda kaydırma parmakla yapılır; oklar gizlenir */
  @media (hover: none) {
    .product-slider-btn {
      display: none;
    }
  }
}

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

  .product-actions > a {
    flex: 1 1 100%;
  }

  .product-specs > div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 165, 92, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

/* ============================================
   SHOPIER / GÜVENLİ ALIŞVERİŞ
   ============================================ */
.trust-panel {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(135deg, rgba(201, 165, 92, 0.08) 0%, rgba(201, 165, 92, 0.02) 100%);
  border: 1px solid var(--color-border-hover);
}

.trust-panel-head {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.trust-panel-head > svg {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  color: var(--color-gold-primary);
  filter: drop-shadow(0 0 12px var(--color-gold-glow));
}

.trust-panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.6rem;
}

.trust-panel-text {
  color: var(--color-text-secondary);
  max-width: 760px;
}

.trust-items {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.8rem 0 0;
}

.trust-items li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.2rem;
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid var(--color-border);
}

.trust-items strong {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.trust-items span {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
}

.trust-panel-link {
  margin-top: 1.8rem;
}

.shopier-trust {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.2rem;
  margin: -1rem 0 2.5rem;
  background: rgba(201, 165, 92, 0.06);
  border: 1px solid var(--color-border-hover);
}

.shopier-trust-icon svg {
  width: 30px;
  height: 30px;
  color: var(--color-gold-primary);
}

.shopier-trust strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-gold-light);
  margin-bottom: 0.3rem;
}

.shopier-trust p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.footer-note {
  display: inline-block;
  margin-top: 0.3rem;
  color: var(--color-gold-primary);
}

@media (max-width: 768px) {
  .trust-items {
    grid-template-columns: 1fr;
  }

  .trust-panel-head {
    flex-direction: column;
  }

  .trust-panel-link {
    width: 100%;
  }
}

/* ============================================
   NAVBAR (sabit yükseklik, videonun üstüne binmez)
   ============================================ */
.navbar,
.navbar.scrolled {
  height: var(--nav-h);
  padding: 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
  height: 100%;
}

/* ============================================
   HERO — "Önce sahne, sonra yazı"
   Navbar'ın altındaki sahnede video kırpılmadan oynar,
   kenarları sayfanın siyahına yumuşakça karışır.
   ============================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100svh;
  min-height: 520px;
  padding-top: var(--nav-h);
  background: var(--color-bg-primary);
  overflow: hidden;
}

.hero-stage {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  place-items: center;
  container-type: size;
}

/* Çerçeve, videonun kendi en-boy oranında: 16:9 (masaüstü) veya 1:1 (mobil) */
.hero-frame {
  position: relative;
  width: min(100cqw, 177.78cqh);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 5%, #000 86%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 5%, #000 86%, transparent 100%);
  mask-composite: intersect;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Mobil video: 1920×1080 karenin ortasındaki 1080×1080 alan (yanları beyaz bant).
   Yalnızca o kare görünsün diye video çerçeveden taşırılıp kırpılır. */
.hero.is-square .hero-frame {
  width: min(100cqw, 100cqh);
  aspect-ratio: 1;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 4%, #000 88%, transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 4%, #000 88%, transparent 100%);
}

.hero.is-square .hero-video {
  inset: auto;
  top: -0.5%;
  left: -38.4%;
  width: 179.2%;
  height: 101%;
  max-width: none;
  object-fit: fill;
}

/* Başlık alanı her zaman yerini korur; animasyon sırasında sadece görünmez olur */
.hero-caption {
  flex: 0 0 auto;
  padding: clamp(0.5rem, 2vh, 1.25rem) 1rem clamp(1.25rem, 4.5vh, 2.75rem);
  text-align: center;
  transition: opacity 1.1s ease, transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero.is-animating:not(.is-revealed) .hero-caption {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

.hero-caption .hero-subtitle-top {
  font-size: clamp(0.8rem, 1.4vw, 1.1rem);
  margin-bottom: 0.25rem;
}

.hero-caption .hero-title-top {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: clamp(0.9rem, 2.2vh, 1.4rem);
}

.hero-caption .hero-cta {
  opacity: 1;
  transform: none;
  animation: none;
}

.hero-caption .hero-cta:hover {
  transform: translateY(-2px);
}

/* Alçak ekranlar (yatay telefon, küçük laptop) */
@media (max-height: 640px) {
  .hero-caption .hero-subtitle-top {
    display: none;
  }

  .hero-caption .hero-title-top {
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    margin-bottom: 0.7rem;
  }

  .hero-caption .hero-cta {
    padding: 0.7rem 1.6rem;
  }
}

/* ============================================
   MOBİL İNCE AYARLAR
   ============================================ */
@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
    --section-padding: clamp(44px, 11vw, 64px);
  }

  .nav-logo {
    font-size: 1.35rem;
  }

  .nav-logo .brand-logo {
    height: 32px;
    max-width: 150px;
  }

  .hero-caption .hero-title-top {
    font-size: clamp(1.8rem, 8.4vw, 2.6rem);
  }

  .hero-caption .hero-subtitle-top {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }

  .hero-caption .hero-cta {
    padding: 0.85rem 1.8rem;
    font-size: 0.76rem;
  }

  /* Mobilde animasyonlar daha kısa mesafeden gelsin */
  .reveal {
    transform: translateY(24px);
  }

  .reveal-right,
  .reveal-left {
    transform: translateY(24px);
  }

  .about-grid {
    gap: 2rem;
  }

  .about-visual {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .about-title,
  .products-title,
  .gallery-title {
    font-size: clamp(1.8rem, 7.5vw, 2.4rem);
  }

  .products-subtitle,
  .gallery-subtitle {
    font-size: 1.02rem;
    margin-top: 0.6rem;
  }

  /* Filtreler tek satırda yana kaydırılır */
  .product-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    margin: 0 calc(-1 * var(--container-padding)) 1.5rem;
    padding: 0 var(--container-padding) 0.25rem;
    scroll-snap-type: x proximity;
    scroll-padding-inline: var(--container-padding);
  }

  .product-filters::-webkit-scrollbar {
    display: none;
  }

  .product-filter {
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .trust-panel {
    margin-top: 2.5rem;
  }
}

/* Telefonlarda ürünler iki sütun: daha çok ürün tek bakışta görünür */
@media (max-width: 560px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .product-card-body {
    padding: 0.8rem 0.85rem 0.9rem;
  }

  .product-card-cat {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.3rem;
  }

  .product-card-title {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .product-card-desc,
  .product-card-cta {
    display: none;
  }

  .product-card-foot {
    padding-top: 0.6rem;
    margin-top: 0.6rem;
  }

  .product-card-price {
    font-size: 0.98rem;
  }

  .product-badge {
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.55rem;
  }
}

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

/* Dikey telefonda heykel + yazı bir grup olarak ekranda ortalanır */
.hero.is-square {
  justify-content: center;
}

.hero.is-square .hero-stage {
  flex: 0 1 auto;
  height: min(100vw, calc(100svh - var(--nav-h) - 190px));
}

/* ============================================
   İÇ SAYFALAR: Blog, SSS, İletişim, Yasal, Arama, 404
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page {
  padding: calc(var(--nav-h) + clamp(1.5rem, 4vw, 3rem)) 0 var(--section-padding);
  min-height: 70vh;
}

.container--narrow {
  max-width: 820px;
}

.page-header {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
}

.page-lead {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin-top: 0.8rem;
  max-width: 680px;
}

/* Navbar arama ve aktif sayfa */
.nav-links a[aria-current='page'] {
  color: var(--color-gold-primary);
}

.nav-search {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
}

.nav-search svg {
  width: 17px;
  height: 17px;
}

@media (min-width: 769px) {
  .nav-search span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .nav-search::after {
    display: none;
  }
}

/* Footer bağlantıları */
.footer-contact-item a {
  color: var(--color-text-secondary);
}

.footer-contact-item a:hover {
  color: var(--color-gold-primary);
}

/* --- Arama --- */
.search-form {
  display: flex;
  gap: 0.6rem;
  max-width: 620px;
  margin-bottom: 2rem;
}

.search-form input {
  flex: 1;
  min-width: 0;
  padding: 0.9rem 1.1rem;
  font: inherit;
  color: var(--color-text-primary);
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border-hover);
}

.search-form input:focus {
  outline: none;
  border-color: var(--color-gold-primary);
}

.search-form .btn-gold {
  padding: 0.9rem 1.4rem;
}

.search-count,
.search-hint {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

.search-section {
  margin-bottom: 3rem;
}

.search-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.search-section h2 span {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.search-empty p:first-child {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.quick-links a {
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
}

.quick-links a:hover {
  color: var(--color-gold-light);
  border-color: var(--color-border-hover);
}

/* --- 404 --- */
.not-found {
  text-align: center;
}

.not-found .page-lead {
  margin-left: auto;
  margin-right: auto;
}

.not-found .search-form {
  margin: 2rem auto 1rem;
}

.not-found .quick-links {
  justify-content: center;
}

.not-found-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 9rem);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-gold-dark);
  margin-bottom: 0.5rem;
}

/* --- Blog --- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.post-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition-medium), transform var(--transition-medium);
}

.post-card:hover {
  color: inherit;
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
}

.post-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-bg-tertiary);
}

.post-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.post-card:hover .post-card-media img {
  transform: scale(1.05);
}

.post-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
  padding: 1.3rem 1.4rem 1.5rem;
}

.post-date {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-primary);
}

.post-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.3;
}

.post-card-excerpt {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card-more {
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-primary);
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  color: var(--color-text-muted);
}

.article-header {
  margin-bottom: 1.8rem;
}

.article-header .page-title {
  margin-top: 0.6rem;
}

.article-cover {
  margin: 0 0 2rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

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

.article-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

/* Blog, SSS ve yasal metinler için okunaklı tipografi */
.prose {
  font-size: 1.04rem;
  line-height: 1.85;
  color: var(--color-text-secondary);
}

.prose > * + * {
  margin-top: 1.1em;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  line-height: 1.3;
  color: var(--color-text-primary);
  margin-top: 2em;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-text-primary);
  margin-top: 1.6em;
}

.prose strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.prose a {
  color: var(--color-gold-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose ul,
.prose ol {
  padding-left: 1.3em;
}

.prose li + li {
  margin-top: 0.4em;
}

.prose li::marker {
  color: var(--color-gold-primary);
}

.prose blockquote {
  padding: 1rem 1.3rem;
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-gold-light);
  border-left: 2px solid var(--color-gold-primary);
  background: rgba(201, 165, 92, 0.05);
}

.prose img {
  width: 100%;
  border: 1px solid var(--color-border);
}

.prose figure {
  margin-left: 0;
  margin-right: 0;
}

/* --- SSS --- */
.faq-group + .faq-group {
  margin-top: 2.5rem;
}

.faq-group-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-primary);
  margin-bottom: 0.8rem;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-of-type {
  border-top: 1px solid var(--color-border);
}

.faq-item summary {
  position: relative;
  padding: 1.15rem 2.5rem 1.15rem 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0.3rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-gold-primary);
  transition: transform var(--transition-fast);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item summary:hover {
  color: var(--color-gold-light);
}

.faq-answer {
  padding: 0 0 1.3rem;
  font-size: 0.98rem;
}

.page-cta {
  margin-top: 3.5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  border: 1px solid var(--color-border-hover);
  background: rgba(201, 165, 92, 0.05);
}

.page-cta h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.page-cta p {
  color: var(--color-text-secondary);
  margin-bottom: 1.4rem;
}

.page-cta .product-actions {
  margin-bottom: 0;
}

/* --- İletişim --- */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 0.8rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.2rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
}

.contact-card > svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 0.15rem;
  color: var(--color-gold-primary);
}

.contact-card h3 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}

.contact-card a,
.contact-card p {
  font-size: 1rem;
  color: var(--color-text-primary);
}

.contact-card p + a,
.contact-card a + p {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.contact-card a:hover {
  color: var(--color-gold-light);
}

.map-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 220px;
  padding: 1.5rem;
  text-align: center;
  border: 1px dashed var(--color-border-hover);
  background: rgba(255, 255, 255, 0.015);
}

.map-box.is-loaded {
  padding: 0;
  border-style: solid;
  min-height: 0;
}

.map-box iframe {
  width: 100%;
  height: 320px;
  border: 0;
  filter: grayscale(0.4) contrast(1.05);
}

.map-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  max-width: 320px;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-hover);
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

.contact-form h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  font: inherit;
  font-size: 0.98rem;
  color: var(--color-text-primary);
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-gold-primary);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field-hint {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: -0.4rem;
}

.contact-form .check-label {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.5;
}

.check-label input {
  width: 18px !important;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: var(--color-gold-primary);
}

.check-label a {
  text-decoration: underline;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .btn-gold {
  justify-self: start;
}

.form-notice {
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  border: 1px solid;
}

.form-notice--ok {
  color: #9fd4a9;
  border-color: rgba(143, 199, 154, 0.5);
  background: rgba(143, 199, 154, 0.08);
}

.form-notice--error {
  color: #e8a297;
  border-color: rgba(224, 120, 106, 0.5);
  background: rgba(224, 120, 106, 0.08);
}

/* --- Yasal sayfalar --- */
.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  display: grid;
  border-left: 1px solid var(--color-border);
}

.legal-nav a {
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  border-left: 2px solid transparent;
  margin-left: -1px;
}

.legal-nav a:hover {
  color: var(--color-gold-light);
}

.legal-nav a[aria-current='page'] {
  color: var(--color-gold-primary);
  border-left-color: var(--color-gold-primary);
}

.legal-body {
  max-width: 760px;
}

.legal-updated {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

/* --- İç sayfalar responsive --- */
@media (max-width: 1024px) {
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .contact-form {
    order: -1;
  }

  .legal-nav {
    position: static;
    display: flex;
    overflow-x: auto;
    border-left: 0;
    border-bottom: 1px solid var(--color-border);
    scrollbar-width: none;
  }

  .legal-nav a {
    flex-shrink: 0;
    border-left: 0;
    border-bottom: 2px solid transparent;
    margin: 0 0 -1px;
  }

  .legal-nav a[aria-current='page'] {
    border-bottom-color: var(--color-gold-primary);
  }
}

@media (max-width: 600px) {
  .post-grid {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .search-form .btn-gold span {
    display: none;
  }

  .contact-form .btn-gold {
    justify-self: stretch;
  }
}

/* ============================================
   AÇIK TEMA
   Tüm renkler değişkenlerden geldiği için çoğu alan otomatik uyum sağlar.
   Hero (video sahnesi) iki temada da koyu kalır; video koyu zeminde çekildi.
   ============================================ */
html[data-theme='light'] {
  --color-bg-primary: #f7f3ec;
  --color-bg-secondary: #efe8dc;
  --color-bg-tertiary: #e5dccd;
  --color-bg-card: rgba(255, 255, 255, 0.78);
  --color-gold-primary: #9a7632;
  --color-gold-light: #7a5c22;
  --color-gold-dark: #b8914a;
  --color-gold-glow: rgba(154, 118, 50, 0.22);
  --color-text-primary: #1f1a14;
  --color-text-secondary: rgba(31, 26, 20, 0.74);
  --color-text-muted: rgba(31, 26, 20, 0.52);
  --color-border: rgba(122, 92, 34, 0.18);
  --color-border-hover: rgba(122, 92, 34, 0.45);
  --gradient-gold: linear-gradient(135deg, #8a6828 0%, #b8914a 50%, #8a6828 100%);
  --glass-bg: rgba(247, 243, 236, 0.8);
  --glass-border: rgba(122, 92, 34, 0.16);
  color-scheme: light;
}

html[data-theme='light'] .navbar,
html[data-theme='light'] .navbar.scrolled {
  background: rgba(247, 243, 236, 0.92);
}

html[data-theme='light'] .nav-links a {
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  html[data-theme='light'] .nav-links {
    background: rgba(247, 243, 236, 0.98);
  }
}

html[data-theme='light'] .loading-screen {
  background: #0a0a0a;
}

/* Hero sahnesi koyu kalır: içindeki değişkenler koyu tema değerlerine döner */
html[data-theme='light'] .hero {
  --color-bg-primary: #0a0a0a;
  --color-text-primary: #f5f0e8;
  --color-gold-light: #e8d5a3;
  --gradient-gold: linear-gradient(135deg, #c9a55c 0%, #e8d5a3 50%, #c9a55c 100%);
  background: #0a0a0a;
  color: #f5f0e8;
}

html[data-theme='light'] .btn-gold,
html[data-theme='light'] .hero-cta,
html[data-theme='light'] .product-filter.is-active,
html[data-theme='light'] .product-badge {
  color: #fff;
}

html[data-theme='light'] .product-card,
html[data-theme='light'] .post-card,
html[data-theme='light'] .contact-card,
html[data-theme='light'] .contact-form {
  box-shadow: 0 1px 2px rgba(60, 40, 10, 0.04), 0 8px 24px rgba(60, 40, 10, 0.05);
}

html[data-theme='light'] .product-card:hover {
  box-shadow: 0 16px 40px rgba(60, 40, 10, 0.12), 0 0 30px var(--color-gold-glow);
}

html[data-theme='light'] .marquee-item {
  -webkit-text-stroke: 1px var(--color-gold-primary);
}

html[data-theme='light'] .trust-items li {
  background: rgba(255, 255, 255, 0.6);
}

html[data-theme='light'] .form-notice--ok {
  color: #2f6b3b;
}

html[data-theme='light'] .form-notice--error {
  color: #9b3223;
}

html[data-theme='light'] .product-stock--stokta {
  color: #2f7a41;
}

html[data-theme='light'] .cursor-glow {
  display: none;
}

html[data-theme='light'] ::-webkit-scrollbar-track {
  background: var(--color-bg-secondary);
}

/* ============================================
   NAVBAR ARAÇLARI: arama, tema, dil
   ============================================ */
.nav-links .nav-tools {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.5rem;
  padding-left: 1rem;
  border-left: 1px solid var(--color-border);
}

.nav-links .nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 36px;
  height: 36px;
  padding: 0 0.45rem;
  color: var(--color-text-secondary);
  border-radius: 999px;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-links .nav-icon-btn::after {
  display: none;
}

.nav-links .nav-icon-btn:hover {
  color: var(--color-gold-primary);
  background: rgba(201, 165, 92, 0.1);
}

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

.nav-tool-label {
  display: none;
}

.theme-toggle .icon-moon,
html[data-theme='light'] .theme-toggle .icon-sun {
  display: none;
}

html[data-theme='light'] .theme-toggle .icon-moon {
  display: inline-flex;
}

.theme-toggle .icon-sun {
  display: inline-flex;
}

.lang-switch {
  display: inline-flex;
  padding: 2px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
}

.nav-links .lang-switch a {
  padding: 0.2rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  border-radius: 999px;
}

.nav-links .lang-switch a::after {
  display: none;
}

.nav-links .lang-switch a[aria-current='true'] {
  color: var(--color-bg-primary);
  background: var(--gradient-gold);
}

html[data-theme='light'] .nav-links .lang-switch a[aria-current='true'] {
  color: #fff;
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 1.3rem;
  }
}

@media (max-width: 768px) {
  .nav-links .nav-tools {
    margin: 0.5rem 0 0;
    padding: 1.2rem 0 0;
    border-left: 0;
    border-top: 1px solid var(--color-border);
    gap: 0.8rem;
  }

  .nav-links .nav-icon-btn {
    height: 44px;
    min-width: 44px;
    padding: 0 0.9rem;
    border: 1px solid var(--color-border);
  }

  .nav-tool-label {
    display: inline;
    font-size: 0.8rem;
  }

  .nav-links .lang-switch a {
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
  }
}

/* ============================================
   YERİNDE ARAMA
   ============================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: calc(var(--nav-h) + 1rem) 1rem 1rem;
  background: rgba(5, 5, 5, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.search-overlay.is-open {
  opacity: 1;
}

.search-panel {
  width: min(680px, 100%);
  max-height: calc(100svh - var(--nav-h) - 2rem);
  display: flex;
  flex-direction: column;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border-hover);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform: translateY(-8px);
  transition: transform 0.2s ease;
}

.search-overlay.is-open .search-panel {
  transform: none;
}

.search-overlay-form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--color-border);
}

.search-overlay-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  color: var(--color-gold-primary);
}

.search-overlay-form input {
  flex: 1;
  min-width: 0;
  font: inherit;
  font-size: 1.1rem;
  color: var(--color-text-primary);
  background: transparent;
  border: 0;
  outline: none;
}

.search-overlay-form input::-webkit-search-cancel-button {
  display: none;
}

.search-overlay-close {
  padding: 0.3rem 0.55rem;
  font: inherit;
  font-size: 0.7rem;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid var(--color-border);
  cursor: pointer;
}

.search-overlay-results {
  overflow-y: auto;
  padding: 0.5rem;
}

.search-overlay-hint {
  padding: 1.2rem 0.8rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.search-group h3 {
  padding: 0.7rem 0.6rem 0.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-primary);
}

.search-hit {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0.6rem;
  color: var(--color-text-primary);
}

.search-hit:hover,
.search-hit.is-active {
  color: var(--color-text-primary);
  background: rgba(201, 165, 92, 0.1);
}

.search-hit img,
.search-hit-noimg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: cover;
  background: var(--color-bg-tertiary);
}

.search-hit-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.search-hit-title {
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-hit-sub {
  font-size: 0.82rem;
  color: var(--color-gold-primary);
}

.search-all {
  display: block;
  margin: 0.4rem 0.2rem 0.2rem;
  padding: 0.8rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-top: 1px solid var(--color-border);
}

/* ============================================
   LIGHTBOX (büyütme, kaydırma, yakınlaştırma)
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: rgba(5, 5, 5, 0.94);
  color: #f5f0e8;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
}

.lightbox-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
}

.lightbox-counter {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 232, 0.7);
}

.lightbox .spacer {
  flex: 1;
}

.lightbox-btn,
.lightbox-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  color: #f5f0e8;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-btn {
  width: 42px;
  height: 42px;
  font-size: 1.4rem;
  line-height: 1;
}

.lightbox-btn:hover,
.lightbox-nav:hover {
  background: rgba(201, 165, 92, 0.35);
}

.lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: none;
  user-select: none;
  cursor: default;
}

/* Yakınlaştırma imleci yalnızca görselin üzerinde */
.lightbox-img {
  cursor: zoom-in;
}

.lightbox.is-zoomed .lightbox-img {
  cursor: grab;
}

.lightbox-img {
  max-width: min(92vw, 1600px);
  max-height: 100%;
  object-fit: contain;
  transform-origin: center center;
  will-change: transform;
  transition: opacity 0.2s ease;
}

.lightbox-img.is-loading {
  opacity: 0.3;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  margin-top: -26px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox.is-single .lightbox-nav {
  display: none;
}

.lightbox.is-zoomed .lightbox-nav,
.lightbox.is-zoomed .lightbox-caption {
  opacity: 0;
  pointer-events: none;
}

.lightbox-caption {
  padding: 0.9rem 1rem 1.2rem;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.85);
  transition: opacity 0.2s ease;
}

@media (max-width: 640px) {
  .lightbox-nav {
    top: auto;
    bottom: 0.8rem;
    margin: 0;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.12);
  }

  .lightbox-img {
    max-width: 100vw;
  }

  .lightbox-caption {
    padding-bottom: 4.5rem;
  }
}

/* ============================================
   GALERİ: büyüt simgesi, tüm galeri düğmesi, galeri sayfası
   ============================================ */
.gallery-item {
  display: block;
  color: inherit;
}

.gallery-item[hidden],
.masonry-item[hidden] {
  display: none !important;
}

.gallery-zoom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: #f5f0e8;
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.gallery-zoom svg {
  width: 18px;
  height: 18px;
}

.gallery-item:hover .gallery-zoom,
.masonry-item:hover .gallery-zoom,
.product-slide:hover .gallery-zoom,
.gallery-item:focus-visible .gallery-zoom {
  opacity: 1;
  transform: none;
}

@media (hover: none) {
  .gallery-zoom {
    opacity: 1;
    transform: none;
  }
}

.gallery-more {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.gallery-more:empty {
  display: none;
}

.masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.masonry-item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--color-border);
  color: inherit;
}

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

.masonry-item:hover img {
  transform: scale(1.04);
}

.masonry-item .gallery-item-overlay {
  opacity: 1;
  transform: none;
}

.inner-page .reveal-scale {
  opacity: 1;
  transform: none;
}

/* Ürün sayfası ana görseli tıklanabilir */

.article-cover a {
  display: block;
  cursor: zoom-in;
}

/* ============================================
   ANA SAYFA SSS (footer'ın hemen üstü)
   ============================================ */
.faq-home {
  padding: var(--section-padding) 0;
  border-top: 1px solid var(--color-border);
}

.faq-home-header {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.faq-more {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.faq-list .faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.legal-note {
  font-size: 0.85rem;
}

/* Görsel üstü yazılar her temada açık renk (koyu degrade üzerinde) */
.gallery-item-overlay {
  color: #f5f0e8;
}

.gallery-item-overlay .gallery-item-title {
  color: #f5f0e8;
}

.gallery-item-overlay .gallery-item-category {
  color: #e8d5a3;
}

/* ============================================
   KOMPAKT ÜRÜN KARTLARI
   Kare görsel + genişliğe göre 4 / 3 / 2 sütun: bir sıra kart ekrana tam sığar.
   ============================================ */
.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.product-card-media {
  aspect-ratio: 1 / 1;
}

.product-card-body {
  padding: 1rem 1.1rem 1.1rem;
}

.product-card-title {
  font-size: 1.12rem;
  margin-bottom: 0.35rem;
}

.product-card-desc {
  font-size: 0.84rem;
  margin-bottom: 0.8rem;
}

.product-card-foot {
  padding-top: 0.75rem;
}

.product-card-price {
  font-size: 1.02rem;
}

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

/* Bölüm başlığı daha az yer kaplasın */
.products-header {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.products-title {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
}

.products-subtitle {
  margin-top: 0.5rem;
  font-size: 1.05rem;
}

.product-filters {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.product-filter {
  padding: 0.5rem 1rem;
}

/* Menüden gelindiğinde (JS olmadan da) başlık navbar'ın altına hizalansın */
section[id] {
  scroll-margin-top: var(--nav-h);
}

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .product-grid {
    gap: 0.75rem;
  }
}

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

/* Kısa ekranlarda (ör. 13" laptop) kart açıklaması gizlenir, bir sıra ekrana sığar */
@media (max-height: 760px) and (min-width: 561px) {
  .product-card-desc {
    display: none;
  }

  .product-card-title {
    margin-bottom: 0;
  }

  .product-card-foot {
    margin-top: 0.7rem;
  }
}

/* ============================================
   TÜM ÜRÜNLER DÜĞMESİ VE KATALOG SAYFASI
   ============================================ */
.products-more {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.products-more:empty {
  display: none;
}

a.product-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

a.product-filter:hover {
  color: var(--color-gold-light);
}

a.product-filter.is-active,
a.product-filter.is-active:hover {
  color: var(--color-bg-primary);
}

html[data-theme='light'] a.product-filter.is-active {
  color: #fff;
}

.filter-count {
  min-width: 1.4em;
  padding: 0.05rem 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0;
  text-align: center;
  border-radius: 999px;
  background: rgba(201, 165, 92, 0.14);
}

.product-filter.is-active .filter-count {
  background: rgba(0, 0, 0, 0.18);
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.catalog-filters {
  justify-content: flex-start;
  margin-bottom: 0;
}

.catalog-sort label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.catalog-sort select {
  padding: 0.55rem 2rem 0.55rem 0.8rem;
  font: inherit;
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-text-primary);
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border-hover);
  cursor: pointer;
}

.catalog-count {
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.pagination--numbers {
  gap: 1rem;
}

.pagination-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
}

.pagination-pages a,
.pagination-pages span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 0.5rem;
  font-size: 0.88rem;
  border: 1px solid var(--color-border);
}

.pagination-pages a {
  color: var(--color-text-secondary);
}

.pagination-pages a:hover {
  color: var(--color-gold-light);
  border-color: var(--color-border-hover);
}

.pagination-pages [aria-current='page'] {
  color: var(--color-bg-primary);
  background: var(--gradient-gold);
  border-color: transparent;
}

@media (max-width: 768px) {
  .catalog-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-filters {
    margin: 0 calc(-1 * var(--container-padding));
  }

  .catalog-sort label {
    justify-content: space-between;
  }
}

/* Uzun filtre satırı araç çubuğunu ekrandan taşırmasın (kendi içinde yana kayar) */
.catalog-toolbar > * {
  min-width: 0;
}

@media (max-width: 768px) {
  .catalog-toolbar {
    width: 100%;
  }

  .catalog-filters {
    max-width: calc(100% + 2 * var(--container-padding));
  }

  .catalog-sort,
  .catalog-sort label {
    width: 100%;
  }
}

/* Kapalı katmanlar sayfayı kapatmasın: display kuralı [hidden] niteliğini ezmesin */
.lightbox[hidden],
.search-overlay[hidden] {
  display: none !important;
}

.lightbox:not(.is-open),
.search-overlay:not(.is-open) {
  pointer-events: none;
}

/* ============================================
   Ana sayfa galerisi ekrana sığar: menüden "Galeri"ye gelindiğinde başlık ve
   fotoğraflar kaydırmadan birlikte görünür (yükseklik ekran boyuna göre).
   ============================================ */
.gallery {
  --gallery-avail: calc(100svh - var(--nav-h) - 340px);
}

.gallery-item:nth-child(1) {
  height: clamp(300px, var(--gallery-avail), 600px);
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
  height: calc((clamp(300px, var(--gallery-avail), 600px) - 1.5rem) / 2);
}

/* Tablet ve telefon: üstte büyük fotoğraf, altında yan yana iki küçük */
@media (max-width: 1024px) {
  .gallery {
    --gallery-avail: calc(100svh - var(--nav-h) - 300px);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
    height: clamp(200px, calc(var(--gallery-avail) * 0.62), 440px);
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) {
    height: clamp(130px, calc(var(--gallery-avail) * 0.38 - 0.75rem), 280px);
  }
}

@media (max-width: 480px) {
  .gallery .gallery-item-overlay {
    padding: 0.75rem;
  }

  .gallery .gallery-item:nth-child(2) .gallery-item-title,
  .gallery .gallery-item:nth-child(3) .gallery-item-title {
    font-size: 0.95rem;
  }
}

/* ============================================
   Kampanya / duyuru penceresi
   ============================================ */
.promo {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.promo[hidden] {
  display: none;
}

.promo.is-open {
  opacity: 1;
}

.promo-card {
  position: relative;
  width: min(460px, 100%);
  max-height: calc(100svh - 32px);
  overflow: auto;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border-hover);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.35s ease;
}

.promo.is-open .promo-card {
  transform: none;
}

.promo-img {
  display: block;
  width: 100%;
  max-height: 46svh;
  object-fit: cover;
}

.promo-body {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.4rem, 4vw, 2rem);
  text-align: center;
}

.promo-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4.5vw, 2rem);
  line-height: 1.2;
  color: var(--color-text-primary);
}

.promo-text {
  color: var(--color-text-secondary);
  line-height: 1.6;
  white-space: pre-line;
}

.promo-cta {
  justify-self: center;
  margin-top: 0.3rem;
}

.promo-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  cursor: pointer;
}

.promo-close:hover {
  background: rgba(201, 165, 92, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  .promo,
  .promo-card {
    transition: none;
  }
}

/* Ana sayfa galerisi ile alıntı arasındaki boşluk azaltıldı */
.gallery {
  padding-bottom: clamp(32px, 5vw, 64px);
}

/* Panelden yüklenen açılış videosu: kırpma ayarı olmadan sahneyi kaplar */
.hero.hero-custom.is-square .hero-video,
.hero.hero-custom .hero-video {
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Odanda Gör (3D / artırılmış gerçeklik) */
/* Sipariş butonlarının hemen altında; güven kutusu (negatif üst boşluklu) ile çakışmasın */
.product-ar {
  margin: -1.4rem 0 2.5rem;
}

.product-ar:not([hidden]) + .shopier-trust {
  margin-top: 0;
}

.product-ar[hidden] {
  display: none;
}

.product-ar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
}

.product-ar-btn img {
  width: 20px;
  height: 20px;
}

.product-ar-hint {
  margin-top: 0.45rem;
  font-size: 0.82rem;
  text-align: center;
  color: var(--color-text-muted);
}

.product-ar-safari {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.7rem;
  padding: 0.9rem;
  font-size: 0.88rem;
  text-align: center;
  color: var(--color-text-secondary);
  border: 1px dashed var(--color-border-hover);
}

.product-ar-safari[hidden] {
  display: none;
}

.product-ar-safari .btn-outline {
  justify-self: center;
  padding: 0.6rem 1.2rem;
}

/* Çerez onay penceresi (yalnızca Meta Pixel açıkken) */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.4rem;
  max-width: 880px;
  margin: 0 auto;
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-text-secondary);
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border-hover);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  flex: 1 1 320px;
}

.cookie-banner a {
  color: var(--color-gold-primary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex: 0 0 auto;
}

.cookie-actions button {
  min-width: 118px;
  padding: 0.7rem 1.1rem;
  cursor: pointer;
}

@media (max-width: 480px) {
  .cookie-actions {
    width: 100%;
  }

  .cookie-actions button {
    flex: 1;
  }
}

.footer-cookie-link {
  color: inherit;
  text-decoration: underline;
  opacity: 0.8;
}

/* Chrome'dan Safari'ye geçildiğinde "Odanda Gör" butonu vurgulanır */
.product-ar-btn.is-highlight {
  animation: arPulse 1.2s ease-in-out 3;
}

@keyframes arPulse {
  50% {
    box-shadow: 0 0 0 6px rgba(201, 165, 92, 0.35);
  }
}

/* Galeri videoları */
.gallery-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  color: #fff;
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(2px);
  transition: transform var(--transition-fast), background var(--transition-fast);
  pointer-events: none;
}

.gallery-play svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
}

.is-video:hover .gallery-play {
  transform: scale(1.08);
  background: rgba(201, 165, 92, 0.6);
}

.gallery-item.is-video:nth-child(n + 2) .gallery-play {
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
}

.lightbox-video {
  max-width: min(92vw, 1600px);
  max-height: 100%;
  background: #000;
}

.lightbox-video[hidden],
.lightbox-img[hidden] {
  display: none;
}

.lightbox.is-video .lightbox-btn:not(.lightbox-close) {
  display: none;
}

/* ============================================
   Ürün sayfası güvenceleri (Kolay iade, garanti, kargo, ödeme)
   ============================================ */
.product-badges {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin: -1.2rem 0 2rem;
  padding: 0;
}

.product-badges li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0.8rem;
  background: rgba(201, 165, 92, 0.05);
  border: 1px solid var(--color-border);
}

.product-badge-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--color-gold-primary);
  border: 1px solid var(--color-border-hover);
  border-radius: 999px;
}

.product-badge-icon svg {
  width: 18px;
  height: 18px;
}

.product-badges strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.product-badges small {
  display: block;
  font-size: 0.74rem;
  color: var(--color-text-muted);
  line-height: 1.35;
}

/* Güvence kutucukları varken "Odanda Gör" üst boşluğu normale döner */
.product-badges + .product-ar {
  margin-top: -1rem;
}

@media (max-width: 380px) {
  .product-badges li {
    padding: 0.6rem;
    gap: 0.5rem;
  }

  .product-badge-icon {
    width: 30px;
    height: 30px;
  }
}

/* ============================================
   Ana sayfa: telefonda 4 ürün (2×2), fazlası "Tüm ürünleri gör" ile
   ============================================ */
@media (max-width: 560px) {
}

/* Akan yazı: daha ince ve zarif */
.marquee-item {
  gap: 1.6rem;
  padding: 0 1.6rem;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  letter-spacing: 0.02em;
}

.marquee-dot {
  width: 7px;
  height: 7px;
}

.philosophy {
  padding: clamp(18px, 3vw, 34px) 0;
}

/* Telefonda ana sayfadaki 4 ürün tek ekrana sığsın: kartlar daha kompakt */
@media (max-width: 560px) {
  #product-grid .product-card-media {
    aspect-ratio: 1 / 1;
  }

  #product-grid .product-card-cat {
    display: none;
  }

  #product-grid .product-card-body {
    padding: 0.55rem 0.7rem 0.65rem;
  }

  #product-grid .product-card-title {
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #product-grid .product-card-foot {
    margin-top: 0.3rem;
    padding-top: 0.35rem;
  }

  #product-grid .product-badge {
    font-size: 0.55rem;
    padding: 0.2rem 0.45rem;
  }

  .products-subtitle {
    display: none;
  }

  #urunler .product-filters {
    margin-bottom: 0.9rem;
  }

  #products-more {
    margin-top: 1rem;
  }
}

/* ============================================
   "Satışlarımız Shopier üzerinden" kutusu: sade ve kompakt, tek ekrana sığar
   ============================================ */
.trust-panel {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  padding: clamp(1rem, 2.4vw, 1.5rem) clamp(1rem, 2.6vw, 1.75rem);
}

.trust-panel-head {
  flex-direction: row;
  gap: 0.85rem;
  align-items: flex-start;
}

.trust-panel-head > svg {
  width: 30px;
  height: 30px;
  margin-top: 0.1rem;
}

.trust-panel-title {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  margin-bottom: 0.3rem;
}

.trust-panel-text {
  font-size: 0.86rem;
  line-height: 1.55;
}

.trust-items {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 1rem;
}

.trust-items li {
  padding: 0.65rem 0.8rem;
  gap: 0.15rem;
}

.trust-items strong {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.trust-items span {
  font-size: 0.8rem;
  line-height: 1.4;
}

.trust-panel-link {
  margin-top: 1rem;
  padding: 0.7rem 1.4rem;
}

@media (max-width: 768px) {
  .trust-panel {
    margin-top: 1.25rem;
  }

  .trust-panel-head {
    flex-direction: row;
  }

  .trust-panel-text {
    font-size: 0.8rem;
  }

  /* Telefonda üç madde alt alta: başlık üstte, açıklaması altında */
  .trust-items {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    margin-top: 0.8rem;
  }

  .trust-items li {
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.55rem 0.8rem;
  }

  .trust-items strong {
    font-size: 0.64rem;
  }

  .trust-items span {
    font-size: 0.76rem;
  }

  .trust-panel-link {
    margin-top: 0.8rem;
  }
}

/* Ürün sayfasındaki benzer kutu da daha kompakt */
.shopier-trust {
  padding: 0.85rem 1rem;
  gap: 0.75rem;
}

.shopier-trust-icon svg {
  width: 24px;
  height: 24px;
}

.shopier-trust strong {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.shopier-trust p {
  font-size: 0.8rem;
  line-height: 1.5;
}

/* Üç güvence: yan yana, simge üstte, ortalı */
.product-badges--row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-badges--row li {
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  gap: 0.45rem;
  padding: 0.8rem 0.5rem;
}

@media (max-width: 380px) {
  .product-badges--row li {
    padding: 0.65rem 0.35rem;
  }

  .product-badges--row strong {
    font-size: 0.8rem;
  }
}

/* Ana sayfa: 4 ürün dengeli dizilir (geniş ekranda tek sıra 4'lü, dar ekranda 2×2) */
#product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
  #product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
