/* ============================================================
   CANTAT PASTANESİ — MAIN STYLESHEET
   Design & Powered by Ubden®
   ============================================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --gold:          #C9A84C;
  --gold-light:    #E8C97A;
  --gold-dark:     #9A7A2E;
  --brown-dark:    #1A0F00;
  --brown-mid:     #2D1A00;
  --brown-light:   #4A2C0A;
  --cream:         #FDF8F0;
  --cream-dark:    #F5EDD8;
  --white:         #FFFFFF;
  --text-dark:     #1A0F00;
  --text-mid:      #4A3520;
  --text-light:    #8A7060;
  --accent-green:  #4A7C59;
  --shadow-sm:     0 2px 12px rgba(26,15,0,0.08);
  --shadow-md:     0 8px 32px rgba(26,15,0,0.15);
  --shadow-lg:     0 20px 60px rgba(26,15,0,0.25);
  --shadow-gold:   0 8px 32px rgba(201,168,76,0.35);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     40px;
  --transition:    all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Raleway', system-ui, sans-serif;
  --font-script:   'Dancing Script', cursive;
  --nav-h:         80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

body.menu-open { overflow: hidden; }

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

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

.section-padding { padding: 100px 0; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--brown-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Preloader hızlandırılmış */
@media (prefers-reduced-motion: no-preference) {
  #preloader { animation: preloaderFadeOut 1.2s ease forwards; }
  @keyframes preloaderFadeOut { 0% { opacity: 1; } 95% { opacity: 1; } 100% { opacity: 0; } }
}

.preloader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.preloader-logo img {
  width: 80px;
  height: 80px;
  animation: preloaderSpin 2s linear infinite;
}

@keyframes preloaderSpin {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

.preloader-text {
  display: flex;
  gap: 4px;
}

.preloader-text span {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  animation: preloaderLetterDrop 0.6s ease forwards;
  opacity: 0;
  transform: translateY(-20px);
}

.preloader-text span:nth-child(1) { animation-delay: 0.1s; }
.preloader-text span:nth-child(2) { animation-delay: 0.2s; }
.preloader-text span:nth-child(3) { animation-delay: 0.3s; }
.preloader-text span:nth-child(4) { animation-delay: 0.4s; }
.preloader-text span:nth-child(5) { animation-delay: 0.5s; }
.preloader-text span:nth-child(6) { animation-delay: 0.6s; }

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

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(201,168,76,0.2);
  border-radius: 99px;
  overflow: hidden;
}

.preloader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 99px;
  animation: preloaderFill 2s ease forwards;
}

@keyframes preloaderFill {
  0%   { width: 0%; }
  100% { width: 100%; }
}

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(26, 15, 0, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  height: 68px;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: var(--transition);
}

#navbar.scrolled .logo-img { width: 40px; height: 40px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
}

.logo-sub {
  font-size: 0.65rem;
  color: rgba(201,168,76,0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  letter-spacing: 0.5px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 99px;
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--brown-dark) !important;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.5);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 99px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--brown-dark);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(201,168,76,0.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--brown-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(201,168,76,0.6);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 34px;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(255,255,255,0.6);
  transition: var(--transition);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* ===== SECTION COMMON ===== */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.label-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

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

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-header { margin-bottom: 60px; }

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.05);
  animation: heroKenBurns 8s ease infinite alternate;
}

.hero-slide.active {
  opacity: 1;
}

@keyframes heroKenBurns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,15,0,0.85) 0%,
    rgba(26,15,0,0.6) 50%,
    rgba(26,15,0,0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge i { font-size: 0.6rem; color: var(--gold); }

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.hero-title-script {
  font-family: var(--font-script);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold-light);
  line-height: 1.2;
}

.hero-title-main {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
}

.hero-title-accent {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -1px;
  text-shadow: 0 0 60px rgba(201,168,76,0.4);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(26,15,0,0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  white-space: nowrap;
}

.stats-section-new {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 24px;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, rgba(26,15,0,0.02) 100%);
}

.stats-section-new .hero-stats {
  position: static;
  transform: none;
  bottom: auto;
  left: auto;
  white-space: normal;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item {
  text-align: center;
  padding: 0 24px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-symbol {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.3);
}

.stats-section-new .stat-divider {
  display: none;
}

.stats-section-new .stat-item {
  flex: 1;
  min-width: 120px;
  padding: 20px 24px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 40px;
  z-index: 2;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-scroll-indicator.left {
  left: 40px;
  right: auto;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 99px;
  animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

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

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

/* ===== MARQUEE ===== */
.marquee-strip {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brown-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 20px;
}

.marquee-dot {
  color: var(--brown-mid) !important;
  font-size: 0.6rem !important;
  padding: 0 4px !important;
}

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

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--cream); }

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

.about-images {
  position: relative;
}

.about-img-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--brown-dark);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-gold);
}

.about-img-badge i { font-size: 1.2rem; }

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}

.about-img-secondary img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-secondary:hover img { transform: scale(1.08); }

.about-content { padding-bottom: 30px; }

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

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201,168,76,0.2);
  transition: var(--transition);
}

.value-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.value-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-dark);
  font-size: 1rem;
  flex-shrink: 0;
}

.value-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.value-text span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  position: relative;
  background: var(--brown-dark);
  overflow: hidden;
}

.products-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/texture_bg.jpg');
  background-size: cover;
  opacity: 0.15;
}

.products-section .section-title { color: var(--white); }
.products-section .section-subtitle { color: rgba(255,255,255,0.6); }
.products-section .section-label { color: var(--gold); }

.products-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.tab-btn:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  color: var(--gold-light);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: transparent;
  color: var(--brown-dark);
  box-shadow: var(--shadow-gold);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: tabFadeIn 0.4s ease;
}

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

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

.product-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

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

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

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

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

.product-order-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--brown-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  transform: translateY(10px);
}

.product-card:hover .product-order-btn { transform: translateY(0); }

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--brown-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  letter-spacing: 0.5px;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.product-info p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 12px;
}

.product-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-tags span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--gold-light);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 3px 10px;
  border-radius: var(--radius-xl);
}

.products-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
}

.products-cta p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  font-size: 1rem;
}

/* ===== WHY SECTION ===== */
.why-section { background: var(--cream-dark); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(201,168,76,0.1);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-card:hover::before { transform: scaleX(1); }

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.3);
}

.why-icon-wrap {
  margin-bottom: 20px;
}

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 2px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.5rem;
  color: var(--gold-dark);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--brown-dark);
  border-color: transparent;
  transform: rotateY(360deg);
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== GALLERY SECTION ===== */
.gallery-section { background: var(--cream); }

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item--large img { height: 100%; min-height: 456px; }

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--tall img { height: 100%; min-height: 456px; }

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--wide img { height: 220px; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,15,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay i {
  font-size: 2rem;
  color: var(--gold-light);
  transform: scale(0.5);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay i { transform: scale(1); }
.gallery-item:hover img { transform: scale(1.08); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 1.2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--brown-dark);
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,15,0,0.92), rgba(45,26,0,0.88));
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 24px;
  animation: ctaIconPulse 2s ease infinite;
}

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

.cta-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-content h2 em {
  font-style: italic;
  color: var(--gold);
}

.cta-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--cream); }

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

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201,168,76,0.15);
  margin-bottom: 16px;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.contact-link:hover { color: var(--gold-dark); }

.contact-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}

.contact-social { margin-top: 8px; }

.social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
}

.social-btn.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
}

.social-btn.instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(220,39,67,0.4);
}

.map-container {
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(201,168,76,0.2);
}

.map-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--brown-dark);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.map-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ===== FOOTER ===== */
.footer { background: var(--brown-dark); }

.footer-top { padding: 80px 0 60px; }

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-logo-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
}

.footer-logo-sub {
  display: block;
  font-size: 0.62rem;
  color: rgba(201,168,76,0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--brown-dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.footer-links-col ul li {
  margin-bottom: 10px;
}

.footer-links-col ul li a {
  color: var(--gold-light);
  font-size: 0.88rem;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links-col ul li a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
}

.footer-links-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact-col address p {
  color: var(--gold-light);
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.footer-contact-col address p i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-col address a {
  color: var(--gold-light);
  transition: var(--transition-fast);
}

.footer-contact-col address a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

.footer-credit {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

.footer-credit a {
  color: var(--gold);
  font-weight: 700;
  transition: var(--transition-fast);
}

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

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--brown-dark);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201,168,76,0.5);
}

/* ===== FLOATING CALL BUTTON ===== */
.float-call {
  position: fixed;
  bottom: 32px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
}

.float-call:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,0.6);
}

.float-call-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: callPulse 2s ease infinite;
}

@keyframes callPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0);
}

/* Animate fade up for hero */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: animFadeUp 0.8s ease forwards;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-grid    { grid-template-columns: 1fr; gap: 48px; }
  .about-img-secondary { display: none; }
  .contact-grid  { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--large,
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--tall img { height: 220px; min-height: unset; }
  .gallery-item--large img { min-height: 280px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  
  /* Preloader mobilde daha hızlı */
  #preloader { animation: preloaderFadeOut 0.8s ease forwards; }
  .preloader-progress { animation: preloaderFill 1s ease forwards; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--brown-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
    z-index: 1000;
    border-left: 1px solid rgba(201,168,76,0.1);
  }

  .nav-links.open { right: 0; }

  .nav-link {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
  }

  .section-padding { padding: 70px 0; }

  .hero-stats {
    flex-wrap: wrap;
    gap: 0;
    padding: 12px 16px;
    bottom: 60px;
    width: calc(100% - 32px);
    left: 16px;
    right: 16px;
    background: rgba(26,15,0,0.8);
  }

  .stat-item { 
    padding: 6px 12px;
    flex: 1;
    min-width: 70px;
  }
  .stat-number { font-size: 1.2rem; }
  .stat-label { font-size: 0.65rem; }

  .hero-scroll-indicator { display: none; }

  .stats-section-new {
    padding: 40px 16px;
  }

  .stats-section-new .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 16px 12px;
  }

  .stats-section-new .stat-item {
    min-width: 100%;
    padding: 12px 16px;
  }

  .products-grid { grid-template-columns: 1fr 1fr; }
  .why-grid      { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top  { padding: 60px 0 40px; }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .about-values { grid-template-columns: 1fr; }

  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-item--large,
  .gallery-item--wide { grid-column: span 1; }

  .hero-actions { flex-direction: column; align-items: center; }

  .hero-title-main,
  .hero-title-accent { font-size: clamp(2rem, 10vw, 3.5rem); }
  
  .hero-title-script { font-size: clamp(1.2rem, 4vw, 2rem); }

  .stat-divider { display: none; }
  .hero-stats { justify-content: space-around; }

  .products-tabs { gap: 6px; }
  .tab-btn { padding: 10px 18px; font-size: 0.82rem; }
}

/* ===== UTILITY ===== */
.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;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--brown-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ===== SELECTION ===== */
::selection {
  background: var(--gold);
  color: var(--brown-dark);
}
