:root {
  --bg: #f8f6f2;
  --fg: #2f2923;
  --accent: #c46b44;
  --muted: #7c756d;
  --card: #fff;
  --radius: 18px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

a {
  color: inherit;
  text-decoration: none;
}

/* Dil Seçici */
.language-switcher {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  display: flex;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
}

.lang-btn {
  padding: 0.5rem 1rem;
  border: none;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  color: var(--fg);
  background: rgba(0,0,0,0.05);
}

.lang-btn.active {
  background: var(--fg);
  color: #fff;
}

@media (max-width: 768px) {
  .language-switcher {
    top: 1rem;
    right: 1rem;
    padding: 0.4rem;
  }
  
  .lang-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
}

/* Hero Section */
.hero {
  display: grid;
  gap: 3rem;
  padding: 4rem clamp(1.5rem, 5vw, 5rem);
  background: linear-gradient(120deg, #f1ebe5, #fff);
  min-height: 60vh;
  align-items: center;
}

.hero__text h1 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  margin: 0.3rem 0 1rem;
  font-weight: 700;
}

.hero__text .eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero__text p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-primary,
.btn-secondary {
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--fg);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--fg);
}

.btn-secondary:hover {
  background: var(--fg);
  color: #fff;
}

/* Main Content */
main {
  padding: clamp(1.5rem, 4vw, 4rem);
  max-width: 1400px;
  margin: 0 auto;
}

.section {
  margin-bottom: 4rem;
}

.section__heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section__heading h2 {
  margin-bottom: 0.4rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.section__heading p {
  color: var(--muted);
  font-size: 1.1rem;
}

/* Product Grid */
.product-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.product-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.product-card__body {
  padding: 0.5rem 0;
}

.product-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.product-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0.3rem 0;
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.3rem;
  margin-top: 0.8rem !important;
}

/* Info Cards */
.info-cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.info-cards article {
  padding: 1.8rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.9);
  border: 1px solid #ece7e2;
}

.info-cards h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.info-cards p {
  color: var(--muted);
}

/* Order Section */
.order {
  text-align: center;
  background: #fff;
  border-radius: calc(var(--radius) * 1.2);
  padding: 3rem 1.5rem;
  box-shadow: 0 20px 45px rgba(0,0,0,0.07);
}

.order h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.order p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.iban-box {
  margin-top: 1.5rem;
  padding: 2rem;
  border: 2px dashed var(--accent);
  border-radius: var(--radius);
  background: #fef9f6;
}

.iban-box .label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.iban {
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--fg);
  margin: 0.8rem 0;
}

.name {
  font-size: 1.1rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #d97757;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #ede6df;
  font-size: 0.9rem;
  color: var(--muted);
}

footer a {
  color: var(--accent);
  text-decoration: underline;
}

/* Modal */
dialog {
  border: none;
  border-radius: var(--radius);
  padding: 0;
  max-width: 400px;
  width: 90vw;
  background: white;
}

dialog::backdrop {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  padding: 2rem;
}

.modal-content h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.modal-content p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.iban-display {
  background: #fef9f6;
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.iban-display .iban {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

/* Responsive */
@media (min-width: 960px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero__image img {
    height: 500px;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem 1.5rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .section__heading h2 {
    font-size: 2rem;
  }
}

