:root {
  --green: #4a4a4a;
  --green-700: #2f2f2f;
  --cream: #f5f5f5;
  --bg: #ffffff;
  --text: #22242a;
  --muted: #646b73;
  --border: #e6e6e6;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1120px, 92%); margin-inline: auto; }

/* Announcement */
.announcement { background: var(--cream); border-bottom: 1px solid var(--border); }
.announcement .container { display: flex; align-items: center; gap: 12px; padding: 10px 0; font-size: 14px; }
.announcement .link { color: var(--green); font-weight: 600; }

/* Header / Navbar */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--border); backdrop-filter: saturate(120%) blur(6px); }
.nav { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 24px; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.logo-mark { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; font-size: 18px; } /* isteğe bağlıdır . background: var(--green); color: #fff;*/
.brand-text { letter-spacing: 0.4px; }
.desktop-nav { display: flex; gap: 18px; }
.nav-link { color: var(--muted); font-weight: 500; padding: 8px 10px; border-radius: 8px; }
.nav-link:hover { color: var(--text); background: #f6f7f8; }
.actions { display: flex; gap: 14px; align-items: center; }
.action-link { color: var(--muted); font-weight: 500; }
.action-link:hover { color: var(--text); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; padding: 10px 16px; font-weight: 600; border: 1px solid transparent; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-700); }
.btn-outline { border-color: var(--border); color: var(--text); background: #fff; }
.btn-outline:hover { border-color: #d0d0d0; background: #f8f8f8; }
.btn-light { background: #fff; color: var(--text); }

.mobile-toggle { display: none; width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 8px; background: #fff; align-items: center; justify-content: center; gap: 3px; }
.mobile-toggle .bar { width: 20px; height: 2px; background: var(--text); display: block; }

/* Mobile Nav */
.mobile-nav { position: fixed; inset: 64px 0 0 0; background: #fff; padding: 16px; display: grid; gap: 12px; border-top: 1px solid var(--border); }
.mobile-link { padding: 12px; border-radius: 8px; color: var(--muted); }
.mobile-link:hover { background: #f6f7f8; color: var(--text); }
.mobile-actions { display: flex; gap: 10px; align-items: center; padding-top: 8px; border-top: 1px dashed var(--border); }

/* Hero */
.hero { background: linear-gradient(180deg, #f9fafb, #fff); padding: 36px 0 12px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 32px; align-items: center; }
.hero-content h1 { font-size: clamp(28px, 3.8vw, 44px); margin: 0 0 10px; }
.hero-content p { color: var(--muted); margin: 0 0 16px; }
.hero-actions { display: flex; gap: 12px; }
.hero-media img { border-radius: 16px; box-shadow: 0 16px 30px rgba(0,0,0,0.08); }

/* Events */
.events { padding: 12px 0 0; }
.event-slider { position: relative; border-radius: 16px; overflow: hidden; height: clamp(220px, 28vw, 320px); background: #000; }
.event-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .3s ease; background-size: cover; background-position: center; }
.event-slide.active { opacity: 1; }

/* Promos */
.promos { padding: 28px 0; }
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.promo-card { position: relative; min-height: 220px; border-radius: 16px; overflow: hidden; color: #fff; display: grid; align-items: end; }
.promo-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.55)); }
.promo-content { position: relative; padding: 18px; }
.promo-winter { background: url('https://placehold.co/1600x900/999999/ffffff?text=K%C4%B1%C5%9F+Lezzetleri') center/cover; }
.promo-plant { background: url('https://placehold.co/1600x900/777777/ffffff?text=Bitkisel+Se%C3%A7enekler') center/cover; }

/* Products */
.products { padding: 10px 0 28px; }
.products h2 { margin: 0 0 12px; font-size: 24px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: #fff; }
.product-card img { aspect-ratio: 4 / 3; object-fit: cover; }
.product-info { padding: 12px; }
.product-info h3 { margin: 0 0 6px; font-size: 18px; }
.product-info p { margin: 0 0 10px; color: var(--muted); }
.product-meta { display: flex; align-items: center; justify-content: space-between; }
.price { font-weight: 700; color: var(--green); }

/* Categories */
.categories { padding: 10px 0 28px; }
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; grid-auto-rows: 140px; grid-auto-flow: dense; }
.category-card { position: relative; border-radius: 16px; overflow: hidden; height: 100%; color: #fff; display: grid; place-items: center; background-size: cover; background-position: center; }
.category-card.span-2 { grid-column: span 2; }
.category-card.tall { grid-row: span 2; }
.category-card.round-a { border-radius: 16px 16px 8px 16px; }
.category-card.round-b { border-radius: 16px 8px 16px 16px; }
.category-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.55)); }
.category-label { position: relative; padding: 12px 16px; font-weight: 700; letter-spacing: 0.2px; text-align: center; font-size: 18px; }
.badge-new { position: absolute; top: 10px; left: 10px; background: #d0021b; color: #fff; font-weight: 700; font-size: 12px; padding: 4px 6px; border-radius: 6px; }

/* Locator */
.locator { padding: 0; }
.locator .container { width: 100%; margin: 0; }
.locator-card { display: block; }
.locator-media img { width: 100%; height: 100%; min-height: 60vh; object-fit: cover; border-radius: 0; display: block; }

/* Values */
/* (values bölümü kaldırıldı) */

/* App Promo */
.app-promo { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 0; }
.app-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 18px; align-items: center; }
.app-content h2 { margin: 0 0 8px; font-size: clamp(22px, 3vw, 32px); }
.app-content p { margin: 0 0 14px; color: var(--muted); }
.store-badges { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.badge img { display: block; height: 48px; width: auto; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.app-media img { border-radius: 14px; box-shadow: 0 16px 30px rgba(0,0,0,0.08); }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 18px; padding: 18px 0; }
.foot-links { list-style: none; padding: 0; margin: 6px 0 0; }
.foot-links li a { color: var(--muted); display: inline-block; padding: 6px 0; }
.foot-links li a:hover { color: var(--text); }
.foot-note { color: var(--muted); margin-top: 6px; }

/* Reviews */
.reviews { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 0; }
.reviews h2 { margin: 0 0 12px; font-size: 24px; }
.review-slider { position: relative; min-height: 240px; }
.review-card { position: absolute; inset: 0; width: 350px; height: 200px; margin: auto; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 16px; opacity: 0; transform: translateY(8px); transition: opacity .4s ease, transform .4s ease; display: grid; align-content: space-between; }
.review-card.active { opacity: 1; transform: translateY(0); }
.review-text { margin: 0 0 10px; color: var(--text); }
.review-meta { display: flex; align-items: center; gap: 10px; color: var(--muted); }
.review-author { font-weight: 600; color: var(--text); }
.review-rating { letter-spacing: 2px; color: #888; }

/* Review side images */
.review-card .side-img { position: absolute; top: 50%; transform: translateY(-50%); width: 64px; height: 64px; object-fit: contain; opacity: 0.95; pointer-events: none; }
.review-card .side-img.left { left: -80px; }
.review-card .side-img.right { right: -80px; }

/* Responsive */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .desktop-nav, .actions { display: none; }
  .mobile-toggle { display: inline-flex; }
  .promo-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: 1fr; grid-auto-rows: 140px; }
  .locator-card { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .product-grid { grid-template-columns: 1fr; }
}