/* ══════════════════════════════════════════════
   ŞÜKRÜ BABA ŞEKERLEME — Premium CSS
   Palette: Deep Brown #1C0A00 | Gold #C8913A | Cream #F9F3E8
   ══════════════════════════════════════════════ */

:root {
  --gold:       #C8913A;
  --gold-light: #F0C060;
  --gold-dark:  #9B6E24;
  --dark:       #1C0A00;
  --dark-2:     #2A1200;
  --dark-3:     #3D1C05;
  --cream:      #F9F3E8;
  --cream-2:    #EDE5D5;
  --cream-70:   rgba(249,243,232,0.7);
  --white:      #FFFFFF;
  --text-muted: #B8A88A;
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 8px 32px rgba(200, 145, 58, 0.25);
  --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

body.rtl { direction: rtl; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.03em;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200, 145, 58, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-gold-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-gold-sm:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }

/* ── Section Shared ── */
.section-tag {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-desc { margin: 0 auto; }

/* ══════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(28, 10, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(200, 145, 58, 0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-img { height: 50px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream-2);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 16px; }

/* Lang switcher */
.lang-switcher { position: relative; }

.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(200, 145, 58, 0.12);
  border: 1px solid rgba(200, 145, 58, 0.3);
  color: var(--cream);
  padding: 7px 12px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.lang-current:hover { background: rgba(200, 145, 58, 0.22); }

.chevron { width: 12px; height: 12px; stroke: var(--gold); stroke-width: 2.5; fill: none; transition: transform var(--transition); }
.lang-switcher.open .chevron { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--dark-2);
  border: 1px solid rgba(200, 145, 58, 0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: none;
  min-width: 150px;
  box-shadow: var(--shadow-dark);
}
.lang-switcher.open .lang-dropdown { display: block; }

.lang-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 16px;
  background: none;
  border: none;
  color: var(--cream-2);
  font-size: 0.88rem;
  cursor: pointer;
  transition: background var(--transition);
}
.lang-option:hover { background: rgba(200, 145, 58, 0.12); color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 50%, #3D1C05 0%, #1C0A00 50%, #0D0500 100%);
  padding: 120px 24px 80px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(200,145,58,0.08) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='%23C8913A' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  flex: 1;
  z-index: 2;
  max-width: 560px;
}

.hero-subtitle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.subtitle-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  max-width: 60px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 440px;
  line-height: 1.8;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Floating jar */
.hero-product {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: min(400px, 40vw);
}

.hero-product-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, rgba(200,145,58,0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.1); }
}

.hero-jar {
  width: 100%;
  border-radius: 50%;
  animation: floatJar 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

@keyframes floatJar {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50%       { transform: translateY(-20px) rotate(2deg); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 6px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  border-radius: 3px;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ══════════════════════════════════════════════
   STATS
   ══════════════════════════════════════════════ */
.stats {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border-top: 1px solid rgba(200,145,58,0.2);
  border-bottom: 1px solid rgba(200,145,58,0.2);
  padding: 60px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 24px;
}

.stat-number {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-plus {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold-light);
  vertical-align: super;
  font-size: 1.2rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(200,145,58,0.25);
}

/* ══════════════════════════════════════════════
   PRODUCTS
   ══════════════════════════════════════════════ */
.products {
  padding: 100px 0;
  background: var(--dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}

.product-card {
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(200,145,58,0.1);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,145,58,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(200,145,58,0.15);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

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

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

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,10,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.product-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.products-cta { text-align: center; }

.icon-wa {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ══════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════ */
.about {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-side { position: relative; }

.about-img-stack { position: relative; }

.about-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 4px solid var(--dark-2);
}

.about-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.badge-year {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.badge-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.about-text-side { padding-top: 20px; }

.about-text-side p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(200,145,58,0.06);
  border: 1px solid rgba(200,145,58,0.12);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.feature-icon { font-size: 1.5rem; flex-shrink: 0; }

.feature-item strong {
  display: block;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 2px;
}

.feature-item span { font-size: 0.85rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════
   WORLD MAP / GLOBAL
   ══════════════════════════════════════════════ */
.global {
  padding: 100px 0;
  background: var(--dark-3);
  position: relative;
  overflow: hidden;
}

.global::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,145,58,0.05) 0%, transparent 70%);
}

.world-map-container {
  position: relative;
  margin-bottom: 40px;
}

.world-map-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.world-map-base {
  width: 100%;
  opacity: 0.55;
  filter: sepia(1) saturate(0.3) brightness(0.8);
}

.map-dot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.map-dot:hover .map-tooltip-inner { display: block; }

.pulse-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(200,145,58,0.2);
  animation: mapPulse 2.5s ease-out infinite;
}

.pulse-ring--gold { background: rgba(240,192,96,0.3); }

.pulse-core {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  position: relative; z-index: 1;
}

.pulse-core--gold {
  background: var(--gold-light);
  box-shadow: 0 0 16px var(--gold-light), 0 0 32px rgba(240,192,96,0.5);
}

@keyframes mapPulse {
  0%   { width: 12px; height: 12px; opacity: 0.8; }
  100% { width: 50px; height: 50px; opacity: 0; }
}

.map-tooltip {
  position: absolute;
  background: var(--dark-2);
  border: 1px solid var(--gold);
  color: var(--cream);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  display: none;
  z-index: 10;
}

.export-regions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.region-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,145,58,0.1);
  border: 1px solid rgba(200,145,58,0.25);
  color: var(--cream-2);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.region-badge:hover {
  background: rgba(200,145,58,0.2);
  border-color: var(--gold);
  color: var(--gold);
}

/* ══════════════════════════════════════════════
   PRODUCTION
   ══════════════════════════════════════════════ */
.production {
  padding: 100px 0;
  background: var(--dark);
}

.production-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.production-text p {
  color: var(--text-muted);
  margin: 16px 0 28px;
  line-height: 1.8;
}

.cert-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cert-badge {
  background: rgba(200,145,58,0.12);
  border: 1px solid rgba(200,145,58,0.35);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.production-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(200,145,58,0.15);
}

/* ══════════════════════════════════════════════
   GALLERY STRIP (auto-scrolling)
   ══════════════════════════════════════════════ */
.gallery-strip {
  padding: 60px 0;
  background: var(--dark-2);
  overflow: hidden;
  border-top: 1px solid rgba(200,145,58,0.12);
  border-bottom: 1px solid rgba(200,145,58,0.12);
}

.gallery-track {
  display: flex;
  gap: 20px;
  animation: galleryScroll 30s linear infinite;
  width: max-content;
}

.gallery-strip:hover .gallery-track { animation-play-state: paused; }

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

.gallery-slide {
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(200,145,58,0.15);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-slide:hover img { transform: scale(1.1); }

/* ══════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════ */
.contact {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text p {
  color: var(--text-muted);
  margin: 16px 0 32px;
  line-height: 1.8;
}

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

.contact-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid transparent;
}

.contact-btn strong { display: block; font-weight: 600; color: var(--cream); }
.contact-btn small  { font-size: 0.8rem; color: var(--text-muted); }

.contact-btn--wa {
  background: rgba(37,211,102,0.1);
  border-color: rgba(37,211,102,0.25);
}
.contact-btn--wa:hover {
  background: rgba(37,211,102,0.18);
  border-color: rgba(37,211,102,0.5);
}

.contact-btn--mail {
  background: rgba(200,145,58,0.08);
  border-color: rgba(200,145,58,0.2);
}
.contact-btn--mail:hover {
  background: rgba(200,145,58,0.15);
  border-color: rgba(200,145,58,0.4);
}

.icon-wa-lg, .icon-mail {
  width: 28px;
  height: 28px;
  fill: currentColor;
  flex-shrink: 0;
}
.contact-btn--wa .icon-wa-lg { color: #25D366; }
.contact-btn--mail .icon-mail { color: var(--gold); }

/* Contact Form */
.contact-form {
  background: var(--dark-2);
  border: 1px solid rgba(200,145,58,0.15);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group { position: relative; }

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,145,58,0.2);
  border-radius: var(--radius-sm);
  padding: 18px 16px 8px;
  color: var(--cream);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition);
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(200,145,58,0.05);
}

.form-group label {
  position: absolute;
  top: 14px; left: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
  pointer-events: none;
  transition: var(--transition);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: 6px;
  font-size: 0.72rem;
  color: var(--gold);
}

.form-success {
  display: none;
  text-align: center;
  color: var(--gold-light);
  padding: 12px;
  border: 1px solid rgba(200,145,58,0.3);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.form-success.visible { display: block; }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer {
  background: #0D0500;
  border-top: 1px solid rgba(200,145,58,0.15);
}

.footer-top { padding: 70px 0 50px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
}

.footer-logo { height: 48px; width: auto; margin-bottom: 16px; }

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.social-links { display: flex; gap: 12px; }

.social-link {
  width: 38px; height: 38px;
  background: rgba(200,145,58,0.1);
  border: 1px solid rgba(200,145,58,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  color: var(--text-muted);
}
.social-link svg { width: 16px; height: 16px; fill: currentColor; }
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

.footer-links h4,
.footer-contact h4 {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  margin-bottom: 20px;
  font-size: 1rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(200,145,58,0.1);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ══════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}

.wa-float svg { width: 28px; height: 28px; fill: white; }

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
  animation: none;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* RTL (Arabic) adjustments */
body.rtl .wa-float { right: auto; left: 28px; }
body.rtl .lang-dropdown { right: auto; left: 0; }
body.rtl .about-img-accent { right: auto; left: -30px; }
body.rtl .about-badge { left: auto; right: -20px; }

/* ══════════════════════════════════════════════
   PRODUCT TAG
   ══════════════════════════════════════════════ */
.product-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,145,58,0.1);
  border: 1px solid rgba(200,145,58,0.25);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}

/* ══════════════════════════════════════════════
   INGREDIENTS
   ══════════════════════════════════════════════ */
.ingredients {
  padding: 100px 0;
  background: var(--dark-2);
}

.ing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ing-card {
  background: var(--dark-3);
  border: 1px solid rgba(200,145,58,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 24px 28px;
  text-align: center;
  transition: var(--transition);
}

.ing-card:hover {
  border-color: rgba(200,145,58,0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.ing-img-wrap {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background: rgba(200,145,58,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid rgba(200,145,58,0.15);
}

.ing-img-wrap img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.ing-honey .ing-emoji {
  font-size: 2.5rem;
}

.ing-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.ing-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Kapsamlı Mobil Düzeltme
   ══════════════════════════════════════════════ */

/* ── Tablet Landscape ── */
@media (max-width: 1100px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.85rem; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .ing-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-product { width: min(320px, 34vw); }
}

/* ── Tablet Portrait ── */
@media (max-width: 992px) {
  .about-grid,
  .production-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .about-img-accent { display: none; }
  .about-badge { top: auto; bottom: 16px; left: 16px; right: auto; }

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

  .hero-product { display: none; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-subtitle { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }

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

  .section-title { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
}

/* ── Mobile Navigation ── */
@media (max-width: 768px) {
  /* Navbar */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(13,5,0,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 8px 0 16px;
    gap: 0;
    border-bottom: 1px solid rgba(200,145,58,0.2);
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(200,145,58,0.06);
  }
  .nav-links a::after { display: none; }
  .nav-links a.active { background: rgba(200,145,58,0.08); }
  .hamburger { display: flex; }

  /* Stats — 2×2 grid */
  .stat-divider { display: none; }
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-item {
    min-width: 0;
    flex: none;
    padding: 28px 16px;
    border: 1px solid rgba(200,145,58,0.08);
  }
  .stat-number { font-size: 2.4rem; }

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

  /* Hero */
  .hero { padding: 100px 16px 60px; }
  .hero-title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .hero-desc { font-size: 1rem; }

  /* Sections padding */
  .products, .about, .global, .production, .contact, .ingredients { padding: 70px 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-top { padding: 48px 0 32px; }

  /* Contact form */
  .contact-form { padding: 24px 20px; }
  .contact-grid { gap: 32px; }

  /* Gallery strip */
  .gallery-slide { width: 180px; height: 180px; }

  /* Container */
  .container { padding: 0 16px; }
}

/* ── Large Phones ── */
@media (max-width: 600px) {
  /* World map */
  #world-map { height: 260px !important; }

  /* Stats — single column on very small */
  .stat-item { padding: 22px 12px; }
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: 0.72rem; }

  /* Ing grid */
  .ing-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ing-card { padding: 24px 16px 20px; }
  .ing-img-wrap { width: 80px; height: 80px; }
  .ing-img-wrap img { width: 55px; height: 55px; }

  /* Section headers */
  .section-header { margin-bottom: 36px; }
  .section-desc { font-size: 0.92rem; }

  /* Hero CTA */
  .hero-cta { flex-direction: column; align-items: center; gap: 12px; }
  .btn { width: 100%; justify-content: center; max-width: 300px; }

  /* About */
  .about-badge { padding: 12px 16px; }
  .badge-year { font-size: 1.2rem; }
  .badge-label { font-size: 0.65rem; }
  .feature-item { padding: 12px 14px; gap: 12px; }
  .feature-icon { font-size: 1.2rem; }

  /* Gallery */
  .gallery-slide { width: 150px; height: 150px; }

  /* Lang switcher */
  .lang-code { display: none; }
  .nav-right { gap: 10px; }
}

/* ── Small Phones ── */
@media (max-width: 400px) {
  .hero-title { font-size: 2rem; }
  .hero { padding: 90px 12px 50px; }
  .container { padding: 0 12px; }
  .lang-current { padding: 6px 9px; }
  .hamburger span { width: 20px; }
  .stat-number { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .ing-grid { grid-template-columns: 1fr 1fr; }
  .about-badge { display: none; }
  .wa-float { width: 48px; height: 48px; bottom: 20px; right: 16px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ══════════════════════════════════════════════
   TESTIMONIALS (Global Journalists)
   ══════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testi-card {
  background: var(--dark-3);
  border: 1px solid rgba(200,145,58,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
}

.testi-card:hover {
  border-color: rgba(200,145,58,0.35);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.testi-quote {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 12px;
}

.testi-card > p {
  font-size: 0.9rem;
  color: var(--cream-70);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(200,145,58,0.1);
  padding-top: 18px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(200,145,58,0.18);
  border: 1px solid rgba(200,145,58,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: var(--cream);
  margin-bottom: 2px;
}

.testi-author span {
  font-size: 0.78rem;
  color: var(--gold);
  opacity: 0.8;
}

/* Responsive testimonials */
@media (max-width: 992px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testi-card { padding: 24px 20px; }
}
