/* ============ GENEL ============ */
:root {
  --gold: #c9962e;
  --gold-light: #e3b85a;
  --dark: #2c251f;
  --dark-2: #362f28;
  --dark-3: #423b32;
  --cream: #fdfaf5;
  --muted: #b8b1a8;
  --radius: 14px;
  font-size: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--dark);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3 { font-family: Georgia, 'Times New Roman', serif; font-weight: 600; }

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

/* ============ ÜST ŞERİT ============ */
.topbar {
  background: var(--gold);
  color: #1d1709;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  padding: 7px 12px;
  font-weight: 600;
}

/* ============ NAVBAR ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(44, 37, 31, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 150, 46, 0.18);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,0.5); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 120px;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
}
.logo em { color: var(--gold); font-style: normal; }

.nav-links { display: flex; gap: 34px; }
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  position: relative;
  padding: 4px 0;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--gold);
  margin: 6px 0;
  transition: 0.3s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(44,37,31,0.92) 25%, rgba(44,37,31,0.55) 60%, rgba(44,37,31,0.25));
}

.hero-content { position: relative; z-index: 2; max-width: 720px; }

.hero-tag {
  color: var(--gold-light);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.12;
  margin-bottom: 22px;
}
.hero h1 span {
  background: linear-gradient(90deg, var(--gold-light), var(--gold), #9c701d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  color: #e3dbcc;
  font-size: 1.08rem;
  max-width: 540px;
  margin-bottom: 34px;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  color: #1d1709;
  box-shadow: 0 8px 24px rgba(201, 150, 46, 0.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(201,150,46,0.5); }
.btn-outline {
  border: 1.5px solid rgba(245,239,228,0.45);
  color: var(--cream);
  background: transparent;
}
.btn-outline:hover { background: rgba(245,239,228,0.1); transform: translateY(-3px); }

.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 2px solid rgba(245,239,228,0.4);
  border-radius: 16px;
  z-index: 2;
}
.hero-scroll span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 4px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 24px; }
  100% { opacity: 0; top: 8px; }
}

/* ============ ÖZELLİKLER ============ */
.features { padding: 70px 0; background: var(--dark-2); border-bottom: 1px solid rgba(201,150,46,0.12); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.feature { text-align: center; padding: 10px; }
.f-icon { font-size: 2rem; margin-bottom: 12px; }
.feature h3 { font-size: 1.05rem; color: var(--gold-light); margin-bottom: 8px; }
.feature p { font-size: 0.88rem; color: var(--muted); }

/* ============ BÖLÜM BAŞLIKLARI ============ */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-tag {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.78rem;
  margin-bottom: 10px;
}
.section-head h2, .about-text h2, .contact-info h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin-bottom: 14px;
}
.section-sub { color: var(--muted); font-size: 0.98rem; }

/* ============ ÜRÜNLER ============ */
.products { padding: 96px 0; }

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

.product-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,150,46,0.14);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,150,46,0.5);
  box-shadow: 0 20px 44px rgba(0,0,0,0.55);
}

.product-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img img { transform: scale(1.08); }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: #1d1709;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 30px;
  z-index: 2;
}

.product-quick {
  position: absolute;
  inset: auto 0 0 0;
  background: rgba(44,37,31,0.85);
  backdrop-filter: blur(6px);
  color: var(--gold-light);
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 10px;
  transform: translateY(100%);
  transition: transform 0.35s;
}
.product-card:hover .product-quick { transform: translateY(0); }

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.product-desc {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 14px;
  flex: 1;
}
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.product-price { font-size: 1.15rem; font-weight: 700; color: var(--gold-light); white-space: nowrap; }
.btn-buy {
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  color: #1d1709;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 40px;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}
.btn-buy:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,150,46,0.4); }

/* ============ HAKKIMIZDA ============ */
.about { padding: 96px 0; background: var(--dark-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-img { position: relative; }
.about-img img {
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.about-badge {
  position: absolute;
  bottom: -22px; right: -16px;
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  color: #1d1709;
  border-radius: var(--radius);
  padding: 18px 26px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.about-badge strong { display: block; font-size: 1.8rem; line-height: 1.1; }
.about-badge span { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; }

.about-text p { color: #e3dbcc; margin-bottom: 16px; font-size: 0.98rem; }
.about-text strong { color: var(--gold-light); }
.about-list { list-style: none; margin: 6px 0 28px; }
.about-list li { padding: 6px 0; color: var(--cream); font-size: 0.95rem; }

/* ============ ALINTI ŞERİDİ ============ */
.quote-band {
  padding: 70px 0;
  text-align: center;
  background:
    linear-gradient(rgba(44,37,31,0.88), rgba(44,37,31,0.88)),
    var(--dark-3);
  border-top: 1px solid rgba(201,150,46,0.15);
  border-bottom: 1px solid rgba(201,150,46,0.15);
}
.quote-band p {
  font-family: Georgia, serif;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-style: italic;
  color: var(--gold-light);
  max-width: 760px;
  margin: 0 auto 12px;
}
.quote-band span { color: var(--muted); font-size: 0.9rem; letter-spacing: 0.1em; }

/* ============ İLETİŞİM ============ */
.contact { padding: 96px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
}
.contact-info > p { color: var(--muted); margin-bottom: 28px; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #e3dbcc;
}
.contact-item strong { color: var(--gold-light); }
.c-icon { font-size: 1.3rem; }

.socials { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.socials a {
  border: 1px solid rgba(201,150,46,0.4);
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 30px;
  transition: background 0.25s, color 0.25s;
}
.socials a:hover { background: var(--gold); color: #1d1709; }

.contact-form {
  background: var(--dark-2);
  border: 1px solid rgba(201,150,46,0.16);
  border-radius: var(--radius);
  padding: 34px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid rgba(201,150,46,0.2);
  border-radius: 10px;
  color: var(--cream);
  padding: 13px 16px;
  margin-bottom: 16px;
  font-family: inherit;
  font-size: 0.93rem;
  transition: border-color 0.25s;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form .btn { width: 100%; }
.form-success {
  display: none;
  margin-top: 14px;
  color: #7fd98a;
  text-align: center;
  font-size: 0.9rem;
}
.form-success.show { display: block; }

/* ============ FOOTER ============ */
.footer { background: #241e19; border-top: 1px solid rgba(201,150,46,0.15); padding-top: 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-logo { margin-bottom: 14px; font-size: 1.1rem; }
.footer p { color: var(--muted); font-size: 0.88rem; }
.footer h4 { color: var(--gold-light); font-size: 0.95rem; margin-bottom: 14px; letter-spacing: 0.05em; }
.footer-grid a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 4px 0;
  transition: color 0.25s;
}
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  padding: 18px 12px;
  font-size: 0.82rem;
}
.footer-bottom strong { color: var(--gold-light); }

/* ============ MODAL ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 18, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.modal-box {
  position: relative;
  background: rgba(54, 47, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 150, 46, 0.25);
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8), inset 0 1px 1px rgba(255,255,255,0.05);
  animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-box::-webkit-scrollbar { width: 8px; }
.modal-box::-webkit-scrollbar-thumb { background: rgba(201,150,46,0.4); border-radius: 4px; }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--cream);
  font-size: 1.8rem;
  line-height: 1;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.modal-close:hover { 
  background: var(--gold); 
  color: #1d1709; 
  transform: rotate(90deg); 
  border-color: var(--gold);
}

.modal-content { 
  display: grid; 
  grid-template-columns: 1.2fr 1fr; 
  gap: 30px;
  padding: 40px; 
}

.modal-info { display: flex; flex-direction: column; justify-content: center; }
.modal-info h3 { font-size: 1.8rem; margin-bottom: 12px; color: var(--gold-light); line-height: 1.2; }
.modal-info .product-price { display: block; font-size: 1.6rem; font-weight: 700; margin-bottom: 20px; color: #fff; }
.modal-info p { color: #e3dbcc; font-size: 1.05rem; line-height: 1.7; margin-bottom: 24px; }

/* Modal Gallery Layout */
.modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal-main-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.modal-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.modal-thumbs::-webkit-scrollbar { height: 6px; }
.modal-thumbs::-webkit-scrollbar-thumb { background: rgba(201,150,46,0.4); border-radius: 4px; }

.color-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.color-thumb:hover {
  opacity: 1;
}
.color-thumb.active {
  border-color: var(--gold);
  opacity: 1;
}

/* ============ REVEAL ANİMASYON ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

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

@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    top: 0; right: -280px;
    width: 260px;
    height: 100vh;
    background: var(--dark-2);
    flex-direction: column;
    padding: 100px 32px;
    gap: 24px;
    transition: right 0.35s ease;
    border-left: 1px solid rgba(201,150,46,0.2);
    z-index: 90;
  }
  .nav-links.open { right: 0; }
  .hamburger { display: block; position: relative; z-index: 95; }
  .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { right: 10px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-content { grid-template-columns: 1fr; padding: 24px; gap: 20px; }
  .modal-box { margin-top: 20px; max-height: 85vh; }
  .modal-close { top: -16px; right: -10px; background: var(--dark-2); box-shadow: 0 4px 10px rgba(0,0,0,0.5); }
}

@media (max-width: 520px) {
  .product-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero { min-height: 80vh; }
  .modal-info h3 { font-size: 1.4rem; margin-bottom: 6px; }
  .modal-info .product-price { font-size: 1.3rem; margin-bottom: 12px; }
}

/* ============ WHATSAPP BUTONU ============ */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-btn svg {
  width: 34px;
  height: 34px;
  fill: white;
}
.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
@media (max-width: 820px) {
  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-btn svg {
    width: 28px;
    height: 28px;
  }
}
