/* ========================================
   HERO SECTION
   ======================================== */
.hero-action {
	padding: clamp(18px, 7vw, 48px) 0 clamp(16px, 6vw, 40px) 0;
	width: 100%;
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	border-radius: 0;
	margin: 0;
	background: rgba(0,0,0,0.1); /* Koyu zemin üzerinde hafif ton farkı */
}

.hero-content-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(12px, 5vw, 48px);
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 clamp(4px, 4vw, 32px);
	min-width: 0;
	box-sizing: border-box;
}

.hero-logo {
	width: clamp(180px, 32vw, 420px);
	height: clamp(180px, 32vw, 420px);
	object-fit: contain;
	border-radius: 24px;
	background: linear-gradient(135deg, var(--color-accent-sand) 0%, #D4C5B0 100%); /* Logonun kendi esmerliğini kırmak için kum rengi çerçeve dolgusu */
	box-shadow: 0 12px 40px rgba(230, 213, 184, 0.2); /* Kum rengi dış parlama */
  border: 2px solid rgba(255, 255, 255, 0.4); /* Şık bir sınır çizgisi */
	margin-right: 0;
	display: block;
	padding: 12px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-logo:hover {
	transform: scale(1.05) translateY(-5px);
  box-shadow: 0 16px 50px rgba(230, 213, 184, 0.4);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-content {
	max-width: 400px;
	margin: 0 auto;
	text-align: left;
	word-break: break-word;
}
.hero-content h1 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.4rem, 5vw, 2.5rem);
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 16px;
	color: var(--color-text-cream);
}

.hero-content p {
	color: var(--color-text-cream);
	font-size: clamp(0.9rem, 3.5vw, 1.08rem);
	margin-bottom: 24px;
	font-weight: 500;
}
.font-green {
	color: var(--color-accent-pale); /* Vurgu rengi soluk altın */
}

/* ========================================
   BUTONLAR
   ======================================== */
.hero-buttons {
	display: flex;
	gap: 18px;
	justify-content: center;
	flex-wrap: wrap;
}
.btn {
	display: inline-block;
	font-weight: 600;
	font-size: clamp(0.95rem, 3vw, 1.1rem);
	border-radius: 999px;
	padding: clamp(8px, 2vw, 12px) clamp(18px, 6vw, 28px);
	border: none;
	cursor: pointer;
	transition: all 0.18s;
	outline: none;
	text-decoration: none;
}
.btn-primary {
	background: var(--color-accent-gold); /* Yeni bordo rengi */
	color: var(--color-text-cream); /* Üstündeki yazı krem */
	box-shadow: 0 4px 18px rgba(114, 47, 55, 0.3); /* Bordo rengi gölge */
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: all 0.6s ease;
}
.btn-primary:hover::after, .btn-primary:focus::after {
  left: 150%;
}
.btn-primary:hover, .btn-primary:focus {
	background: #5A242B; /* Bordo renginin koyusu */
	color: var(--color-text-cream);
  box-shadow: 0 6px 20px rgba(114, 47, 55, 0.4);
}
.btn-ghost {
	background: transparent;
	color: var(--color-accent-pale); /* Soluk altın */
	border: 2px solid var(--color-accent-pale); /* Soluk altın kenarlık */
}
.btn-ghost:hover, .btn-ghost:focus {
	background: var(--color-accent-pale);
	color: var(--color-bg-dark); /* İç yazı koyu yeşil */
}

.btn-danger {
  display: inline-block;
	font-weight: 600;
	font-size: clamp(0.95rem, 3vw, 1.1rem);
	border-radius: 999px;
	padding: clamp(8px, 2vw, 12px) clamp(16px, 5vw, 24px); /* Sığdırmak için padding ayarlandı */
	border: 2px solid var(--color-alert-red);
	cursor: pointer;
	transition: all 0.18s;
	outline: none;
	text-decoration: none;
  background: transparent;
  color: var(--color-alert-red);
  flex-shrink: 0; /* Butonun sıkışıp küçülmesini engeller */
}
.btn-danger:hover, .btn-danger:focus {
  background: var(--color-alert-red);
  color: #fff;
}

/* ========================================
   WHATSAPP FAB
   ======================================== */
.wa-fab {
	position: fixed;
	right: 32px;
	bottom: 32px;
	z-index: 9999;
	width: 72px;
	height: 72px;
	background: #25d366;
	border-radius: 50%;
	box-shadow: 0 6px 24px rgba(37,211,102,0.25), 0 1.5px 6px rgba(0,0,0,0.10);
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	outline: none;
	color: var(--new-text-color);
	text-decoration: none;
	animation: wa-in-right 1.2s cubic-bezier(.2,.7,.2,1) 0.2s both;
	transition: box-shadow 0.18s, transform 0.18s;
	transform: translateX(0) scale(1);
}
.wa-fab:hover, .wa-fab:focus {
	box-shadow: 0 12px 32px rgba(37,211,102,0.35), 0 2px 8px rgba(0,0,0,0.13);
	transform: translateX(0) scale(1.3);
}
.wa-fab svg {
	width: 34px;
	height: 34px;
	fill: #fff;
	display: block;
}
@keyframes wa-in-right {
	0%   { transform: translateX(120%) scale(1); opacity: 0; }
	60%  { transform: translateX(-8%) scale(1.08); opacity: 1; }
	80%  { transform: translateX(4%) scale(0.98); opacity: 1; }
	100% { transform: translateX(0) scale(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab { animation: none; transform: none; }
}

/* ========================================
   KATEGORİ FİLTRE BUTONLARI
   ======================================== */
.category-filter-section {
  width: 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
  margin-top: clamp(24px, 6vw, 48px);
  padding: 16px clamp(8px, 4vw, 32px);
  position: sticky;
  top: 70px; /* Header'ın hemen altında yapışkan kalır */
  z-index: 90;
  background-color: rgba(58, 44, 40, 0.7); /* Frosted Glass Oak */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 163, 107, 0.15); /* İnce altın çizgi */
  border-top: 1px solid rgba(212, 163, 107, 0.05);
}
.category-buttons-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
}
.category-btn {
  background: none;
  border: 2px solid var(--color-accent-pale); /* Soluk altın kenarlık */
  color: var(--color-accent-pale); /* Soluk altın yazı */
  font-weight: 600;
  font-size: clamp(0.9rem, 3vw, 1rem);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.05em;
}
.category-btn:hover {
  background: var(--color-accent-pale);
  color: var(--color-bg-dark); /* Üzerine gelince iç yazı koyu yeşil */
}
.category-btn.active {
  background: var(--color-accent-gold); /* Aktif buton bordo */
  color: var(--color-text-cream); /* Aktif buton iç yazı krem */
  border-color: var(--color-accent-gold);
  box-shadow: 0 4px 18px rgba(114, 47, 55, 0.3);
  font-weight: 700;
}

/* ========================================
   ÜRÜN BÖLÜM BAŞLIKLARI (Yeni Lüks Yaklaşım)
   ======================================== */
.category-section {
  width: 100%;
  margin-bottom: 60px;
}
.category-section-title {
  text-align: center;
  margin: 80px 0 40px;
}
.category-section-title h2 {
  font-family: 'Playfair Display', serif;
  color: var(--color-accent-pale); /* Meşe Altını */
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ========================================
   ÜRÜN KARTLARI
   ======================================== */
.product-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  justify-content: center;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 16px;
}
/* Gizli ürünler için */
.product-card[style*="display: none"] {
  display: none !important;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  /* Koyu zemin üzerinde cam efekti */
  background: rgba(255, 255, 255, 0.05); 
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s cubic-bezier(.4, 0, .2, 1), box-shadow 0.4s cubic-bezier(.4, 0, .2, 1);
  padding-bottom: 20px;
  box-sizing: border-box;
  overflow: hidden; /* Parıltı animasyonunu kart içinde tutar */
}

/* Karta fırçalanmış ışık parıltısı (glare) efekti */
.product-card::before {
  content: "";
  position: absolute;
  top: 0; left: -150%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none;
}

.product-card:hover::before {
  left: 200%;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35), 0 0 15px rgba(114, 47, 55, 0.15); /* Hafif bordo gölge */
}

.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-cream);
  margin: 20px 0 8px 0;
  text-align: center;
}

.product-card p {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-accent-gold); /* Fiyatı altın rengi yaptık */
  margin: 0 0 12px 0;
  text-align: center;
}

.product-image-box {
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: var(--color-bg-light-mint); /* Nane yeşili zemin */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-image-box img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 12px;
}

/* ========================================
   ÜRÜN KARTI SEPET ALANI
   ======================================== */
.card-cart-area {
  width: 100%;
  padding: 0 18px;
  box-sizing: border-box;
  margin-top: auto;
}

/* Sepete Ekle Butonu */
.add-to-cart-btn {
  width: 100%;
  background: var(--color-accent-gold); /* Bordo rengi */
  border: none;
  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: 0 4px 18px rgba(114, 47, 55, 0.3);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  color: var(--color-text-cream); /* İç yazı krem */
}

.add-to-cart-btn svg {
  stroke: var(--color-text-cream); /* İkon krem */
  transition: stroke 0.2s;
}

.add-to-cart-btn:hover {
  background: #5A242B; /* Bordo renginin koyusu */
  box-shadow: 0 8px 20px rgba(114, 47, 55, 0.5);
}

.add-to-cart-btn:hover svg {
  stroke: var(--color-text-cream);
}

/* Miktar Kontrol Alanı */
.cart-qty-controls {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.1); /* Hafif transparan zemin */
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  padding: 8px 16px;
  box-sizing: border-box;
}

.cart-qty-controls button {
  background: none;
  border: none;
  color: var(--color-accent-pale); /* Soluk altın */
  font-size: 1.5em;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.cart-qty-controls button:hover {
  background: var(--color-accent-pale);
  color: var(--color-bg-dark); /* İç yazı koyu yeşil */
}

.qty-value {
  color: var(--color-text-cream);
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}

.product-price-total {
    font-weight: 700;
    color: var(--color-accent-pale); /* Ara toplam soluk altın */
    font-size: 1em;
}

/* ========================================
   ÜRÜN BİLGİ PANELİ (Overlay)
   ======================================== */
.product-info-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.2); /* Transparan beyaz */
  color: var(--color-bg-dark); /* İkon koyu */
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  font-family: 'Times New Roman', serif;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 30px; /* Dikeyde ortalamak için */
  text-align: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s ease;
}

.product-info-btn:hover {
  background-color: var(--color-text-cream);
  transform: scale(1.1);
}

.product-info-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(43, 33, 30, 0.95); /* Koyu meşe opak zemin */
  backdrop-filter: blur(5px);
  color: var(--color-text-cream);
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.4) transparent;
}

.product-info-overlay.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.product-info-overlay h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

.product-info-overlay p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-accent-pale); /* Açıklama soluk altın */
  margin: 0;
}

.product-info-overlay .info-storage {
  margin-top: 15px;
  font-size: 0.85rem;
  font-style: italic;
}

.product-info-overlay .info-storage strong {
  color: var(--color-text-cream);
}

.close-info-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  color: var(--color-text-cream);
  font-size: 2rem;
  line-height: 30px;
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.2s ease;
}

.close-info-btn:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.product-info-overlay::-webkit-scrollbar {
  width: 6px;
}
.product-info-overlay::-webkit-scrollbar-track {
  background: transparent;
}
.product-info-overlay::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  border: 3px solid transparent;
}

/* ========================================
   PREMIUM SITE FOOTER
   ======================================== */
.site-footer {
  width: 100%;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 40px) 40px;
  background: var(--color-bg-dark); /* Koyu meşe zemin */
  border-top: 1px solid rgba(230, 213, 184, 0.15); /* Çok hafif kum rengi çizgi */
  color: var(--color-text-cream);
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Footer İçerik Taşıyıcı: 3 Kolonlu Grid */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

/* Ortak Kolon Başlıkları */
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--color-accent-sand); /* Sand accent */
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 2px;
  background: var(--color-accent-sand); /* Sand bar */
}

/* 1. Marka Kolonu */
.brand-col .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--color-accent-sand);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.brand-vision {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* 2. Hızlı Menü Kolonu */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links a::before {
  content: "»";
  margin-right: 8px;
  color: transparent;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-text-cream);
  transform: translateX(5px);
}

.footer-links a:hover::before {
  color: var(--color-accent-sand);
  transform: translateX(0);
}

/* 3. İletişim Kolonu */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.contact-item svg {
  color: var(--color-accent-sand);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--color-text-cream);
}

/* Alt kısımdaki Haklar Alanı */
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   ANIMASYONLAR (SCROLL REVEAL)
   ======================================== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

