

:root{
  --bg:#f7f1e7;
  --bg2:#fffaf2;
  --dark:#2c1b12;
  --green:#4d6b3c;
  --green2:#738f59;
  --gold:#c88b3a;
  --gold2:#e5b66f;
  --cream:#fffdf9;
  --text:#2a1c14;
  --muted:#6d5848;
  --line:rgba(70,40,20,.08);
  --shadow:0 20px 60px rgba(60,35,18,.10);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(229,182,111,.18), transparent 24%),
    linear-gradient(180deg,var(--bg) 0%,var(--bg2) 100%);
}
a{text-decoration:none;color:inherit}
.container{width:min(1180px,92%);margin:auto}
.nav{position:sticky;top:0;z-index:50;background:rgba(255,250,242,.88);box-shadow:0 8px 30px rgba(60,35,18,.06);backdrop-filter:blur(18px);border-bottom:1px solid var(--line)}
.nav-inner{height:78px;display:flex;justify-content:space-between;align-items:center;gap:20px}
.brand{display:flex;align-items:center;gap:12px;font-weight:950;font-size:22px}
.brand span{width:46px;height:46px;border-radius:16px;background:linear-gradient(135deg,var(--green),var(--green2));display:grid;place-items:center;color:#fff}
.menu{display:flex;gap:22px;font-size:14px;color:#4d3a2d}
.menu a:hover{color:var(--gold2)}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;border:0;cursor:pointer;padding:14px 20px;border-radius:999px;background:linear-gradient(135deg,var(--green),var(--green2));color:#fff;font-weight:950;box-shadow:0 16px 35px rgba(212,154,42,.22)}
.btn.dark{background:rgba(255,255,255,.97);color:#fff;border:1px solid var(--line);box-shadow:none}
.hero{padding:80px 0 65px;min-height:calc(100vh - 78px);display:grid;align-items:center}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:42px;align-items:center}
.kicker{display:inline-flex;padding:10px 14px;border-radius:999px;background:rgba(212,154,42,.14);border:1px solid rgba(212,154,42,.25);color:var(--gold2);font-size:13px;font-weight:900;letter-spacing:2px;text-transform:uppercase}
h1{font-size:clamp(42px,6vw,76px);line-height:.98;margin:18px 0;font-weight:950;letter-spacing:-3px}
.lead{font-size:19px;line-height:1.75;color:#5d4a3b;max-width:720px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
.hero-card{position:relative;border-radius:36px;padding:24px;background:linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.035));border:1px solid var(--line);box-shadow:var(--shadow);overflow:hidden}
.hero-card:before{content:"";position:absolute;right:-70px;top:-70px;width:220px;height:220px;background:rgba(212,154,42,.22);filter:blur(50px)}
.product-stack{display:grid;gap:14px;position:relative}
.mini-product{border-radius:26px;padding:20px;background:rgba(255,255,255,.97);border:1px solid var(--line);display:flex;justify-content:space-between;gap:18px;align-items:center}
.mini-product b{font-size:22px}
.badge{display:inline-flex;width:max-content;padding:8px 12px;border-radius:999px;background:rgba(47,125,50,.18);color:#adffb2;font-size:12px;font-weight:900}
.section{padding:86px 0}
.section-title{display:flex;justify-content:space-between;align-items:end;gap:24px;margin-bottom:34px}
.section-title h2{font-size:clamp(32px,4vw,52px);line-height:1.05;margin:0;letter-spacing:-2px}
.section-title p{color:#6d5848;max-width:560px;line-height:1.7}
.grid{display:grid;gap:18px}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}
.card{border-radius:30px;padding:26px;background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));border:1px solid var(--line);box-shadow:0 16px 45px rgba(0,0,0,.2)}
.card h3{font-size:23px;margin:12px 0 10px}
.card p,.card li{color:#6d5848;line-height:1.65}
.icon{font-size:30px;width:58px;height:58px;border-radius:20px;background:rgba(212,154,42,.16);display:grid;place-items:center;border:1px solid rgba(212,154,42,.25)}
.product{overflow:hidden;padding:0}
.product-img{height:180px;background:linear-gradient(135deg,rgba(212,154,42,.30),rgba(185,50,34,.18));display:grid;place-items:center;font-size:58px}
.product-body{padding:22px}
.price{font-size:24px;color:var(--gold2);font-weight:950}
.old{font-size:14px;color:#bfb092;text-decoration:line-through;margin-left:8px}
.product-actions{display:flex;gap:10px;margin-top:16px;flex-wrap:wrap}
.smallbtn{padding:11px 14px;border-radius:16px;background:rgba(255,255,255,.94);border:1px solid var(--line);font-weight:900;font-size:13px}
.smallbtn.gold{background:linear-gradient(135deg,var(--green),var(--green2));color:#120d07;border:0}
.band{border-radius:34px;padding:34px;background:linear-gradient(135deg,rgba(212,154,42,.22),rgba(47,125,50,.12));border:1px solid rgba(212,154,42,.22)}
.form{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.form input,.form textarea,.form select{width:100%;padding:16px;border-radius:18px;border:1px solid var(--line);background:rgba(255,255,255,.97);color:#fff;outline:none}
.form textarea{grid-column:1/-1;min-height:130px;resize:vertical}
.form button{grid-column:1/-1}
.footer{padding:46px 0;background:#2c1b12;border-top:1px solid var(--line);color:#d8c9a9}
.footer-grid{display:flex;justify-content:space-between;gap:20px;align-items:center}
.whatsapp{position:fixed;right:22px;bottom:22px;z-index:60;width:62px;height:62px;border-radius:22px;background:#25d366;display:grid;place-items:center;color:#07120b;font-size:28px;font-weight:950;box-shadow:0 18px 45px rgba(37,211,102,.25)}
.reveal{opacity:0;transform:translateY(25px);transition:.7s ease}
.reveal.show{opacity:1;transform:none}
.notice{font-size:13px;color:#bfae8d;margin-top:10px}
@media(max-width:900px){
  .hero-grid,.grid-3,.grid-4{grid-template-columns:1fr}
  .menu{display:none}
  .section-title{display:block}
  .form{grid-template-columns:1fr}
  .footer-grid{display:block}
}

.hero{
  min-height:92vh;
}
.hero-card{
  background:#fffdf8;
  border:1px solid rgba(70,40,20,.06);
}
.hero-card:before{
  background:rgba(200,139,58,.18);
}
.card{
  border:1px solid rgba(70,40,20,.06);
}
.card h3{
  color:#2c1b12;
}
.product{
  transition:.3s ease;
}
.product:hover{
  transform:translateY(-6px);
  box-shadow:0 28px 60px rgba(60,35,18,.14);
}
.product-img{
  height:240px;
  background:linear-gradient(135deg,#f4e2c6,#e7c08b);
  color:#5a3412;
  font-size:72px;
}
.price{
  color:#4d6b3c;
}
.badge{
  background:rgba(77,107,60,.10);
  color:#4d6b3c;
}
.smallbtn.gold{
  background:linear-gradient(135deg,#c88b3a,#e5b66f);
  color:#fff;
}
.btn.dark{
  background:#fff;
  color:#2c1b12;
  border:1px solid rgba(70,40,20,.08);
}
.band{
  background:linear-gradient(135deg,#fff8ef,#f4e2c6);
}
.form input,.form textarea,.form select{
  background:#fff;
  color:#2c1b12;
}
.brand{
  color:#2c1b12;
}
.kicker{
  background:rgba(200,139,58,.10);
  color:#a56d23;
}
.lead{
  color:#6d5848;
}
.footer{
  color:#f3e7d7;
}

/* Gerçek fotoğraf sistemi */
.product-img{
  height:260px !important;
  padding:0 !important;
  overflow:hidden !important;
  display:block !important;
  background:#f4e2c6 !important;
}
.product-img img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
  transition:.45s ease;
}
.product:hover .product-img img{
  transform:scale(1.06);
}
.hero-food-real{
  min-height:520px;
  border-radius:30px;
  overflow:hidden;
  background:
    linear-gradient(180deg,rgba(44,27,18,.05),rgba(44,27,18,.28)),
    url('https://commons.wikimedia.org/wiki/Special:FilePath/K%C3%BCnefe%2020230904.jpg');
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:flex-end;
  padding:24px;
}
.hero-food-panel{
  width:100%;
  background:rgba(255,253,248,.90);
  backdrop-filter:blur(14px);
  border:1px solid rgba(70,40,20,.08);
  border-radius:24px;
  padding:22px;
}
.hero-food-panel h2{margin:8px 0;color:#2c1b12}
.hero-food-panel p{margin:0;color:#6d5848;line-height:1.6}


/* V6 - Yerel premium ürün görsel sistemi: dış link yok, site bozulmaz */
.product-img{
  height:245px !important;
  padding:0 !important;
  overflow:hidden !important;
  display:block !important;
  background:#f4e2c6 !important;
}
.product-img img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
}
.product:hover .product-img img{transform:scale(1.035)}
@media(max-width:900px){.product-img{height:230px !important}}


/* V8 Premium katalog geliştirmeleri */
.trust-strip{padding:22px 0;background:#fffaf2;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.trust-grid div{background:#fff;border:1px solid rgba(70,40,20,.06);border-radius:22px;padding:18px;box-shadow:0 10px 28px rgba(60,35,18,.06)}
.trust-grid strong{display:block;color:#2c1b12;font-size:17px;margin-bottom:6px}
.trust-grid span{display:block;color:#6d5848;font-size:13px;line-height:1.45}
.catalog-tools{display:flex;align-items:center;justify-content:space-between;gap:16px;margin:-8px 0 22px}
.catalog-tools input{flex:1;max-width:460px;padding:16px 18px;border-radius:18px;border:1px solid rgba(70,40,20,.10);background:#fff;color:#2c1b12;outline:none;font-weight:700}
.catalog-tools span{color:#6d5848;font-size:14px}
.product-img{cursor:pointer}
.product-body p{min-height:76px}
.premium-boxes .card{background:#fffdf8}
.product-detail{padding-top:70px}
.detail-grid{display:grid;grid-template-columns:.95fr 1.05fr;gap:44px;align-items:center}
.detail-photo{border-radius:34px;overflow:hidden;box-shadow:var(--shadow);background:#fff;border:1px solid var(--line)}
.detail-photo img{width:100%;height:560px;object-fit:cover;display:block}
.detail-content h1{font-size:clamp(42px,5vw,70px)}
.detail-list{color:#6d5848;line-height:1.9;font-weight:700}
@media(max-width:900px){.trust-grid,.detail-grid{grid-template-columns:1fr}.catalog-tools{display:block}.catalog-tools input{max-width:none;width:100%;margin-bottom:10px}.detail-photo img{height:360px}.product-body p{min-height:auto}}
