/* ==========================================================================
   TEMA 01 — EVERGREEN (Orman)  •  Kurumsal / premium doğa markası
   ========================================================================== */
:root{
  --c-primary:#35594a;
  --c-primary-d:#274236;
  --c-primary-l:#e9efec;
  --c-accent:#9c7a43;
  --c-bg:#f6f7f4;
  --c-surface:#ffffff;
  --c-text:#17211c;
  --c-muted:#61706a;
  --c-border:#e5e9e4;
  --radius:8px; --radius-sm:6px;
  --shadow:0 10px 30px rgba(20,28,24,.07);
  --shadow-sm:0 4px 14px rgba(20,28,24,.05);
  --font-head:'Fraunces',Georgia,serif;
  --font-body:'Inter',system-ui,-apple-system,sans-serif;
  --maxw:1200px;
}
*,*::before,*::after{box-sizing:border-box;margin:0}
html{scroll-behavior:smooth}
body{font-family:var(--font-body);color:var(--c-text);background:var(--c-bg);line-height:1.65;-webkit-font-smoothing:antialiased}
img,svg{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{font-family:var(--font-head);font-weight:600;line-height:1.14;letter-spacing:-.015em}
.wrap{max-width:var(--maxw);margin-inline:auto;padding-inline:24px}
.section{padding:88px 0}
.section-head{max-width:620px;margin:0 auto 48px}
.section-head.center{text-align:center;margin-inline:auto}
.eyebrow{display:inline-flex;align-items:center;gap:.6rem;color:var(--c-accent);font-weight:600;
  letter-spacing:.16em;text-transform:uppercase;font-size:.72rem}
.eyebrow::before{content:"";width:26px;height:1px;background:var(--c-accent);opacity:.6}
.section-head.center .eyebrow::before{display:none}
.section-head h2{font-size:clamp(1.7rem,3.2vw,2.5rem);margin:.7rem 0 .5rem}
.section-head p{color:var(--c-muted)}

/* Buttons — kurumsal, düz köşe, glow yok */
.btn{display:inline-flex;align-items:center;gap:.55rem;border:0;cursor:pointer;font-family:inherit;
  font-weight:600;font-size:.92rem;padding:.8rem 1.5rem;border-radius:var(--radius);transition:.22s;white-space:nowrap}
.btn--primary{background:var(--c-primary);color:#fff}
.btn--primary:hover{background:var(--c-primary-d);transform:translateY(-2px)}
.btn--accent{background:var(--c-accent);color:#fff}
.btn--accent:hover{filter:brightness(.96);transform:translateY(-2px)}
.btn--ghost{background:transparent;color:var(--c-text);border:1px solid var(--c-border)}
.btn--ghost:hover{border-color:var(--c-primary);color:var(--c-primary)}
.btn--lg{padding:.95rem 1.8rem;font-size:.98rem}
.btn svg{width:18px;height:18px}

/* Header */
.site-header{position:sticky;top:0;z-index:50;background:color-mix(in srgb,var(--c-bg) 88%,transparent);
  backdrop-filter:blur(10px);border-bottom:1px solid var(--c-border)}
.nav{display:flex;align-items:center;gap:1.6rem;height:72px}
.brand{display:flex;align-items:center;gap:.65rem;font-family:var(--font-head);font-weight:600;font-size:1.2rem;letter-spacing:-.02em}
.brand-badge{width:34px;height:34px;border-radius:8px;background:var(--c-primary);color:#fff;display:grid;place-items:center}
.brand-badge svg{width:20px;height:20px}
.nav-links{display:flex;gap:1.7rem;margin-left:auto}
.nav-links a{color:var(--c-muted);font-weight:500;font-size:.92rem;transition:.2s;position:relative}
.nav-links a:hover,.nav-links a.active{color:var(--c-text)}
.nav-links a.active::after{content:"";position:absolute;left:0;right:0;bottom:-6px;height:1.5px;background:var(--c-primary)}
.nav-actions{display:flex;align-items:center;gap:.5rem}
.icon-btn{width:40px;height:40px;border-radius:8px;border:1px solid var(--c-border);background:var(--c-surface);
  display:grid;place-items:center;cursor:pointer;color:var(--c-text);transition:.2s;position:relative}
.icon-btn:hover{border-color:var(--c-primary);color:var(--c-primary)}
.icon-btn svg{width:18px;height:18px}
.icon-btn .badge{position:absolute;top:-6px;right:-6px;background:var(--c-primary);color:#fff;font-size:.66rem;
  font-weight:700;min-width:17px;height:17px;border-radius:9px;display:grid;place-items:center;padding:0 4px}
.nav-toggle{display:none}

/* Hero — gerçek fotoğraf + tema-tonlu kaplama (switcher kaplamayı renklendirir) */
.hero{position:relative;overflow:hidden;background:var(--c-primary-d);color:#fff}
.hero-photo{position:absolute;inset:0;background-size:cover;background-position:center;transform:scale(1.03)}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(101deg,
  color-mix(in srgb,var(--c-primary-d) 93%,transparent) 0%,
  color-mix(in srgb,var(--c-primary-d) 76%,transparent) 40%,
  color-mix(in srgb,var(--c-primary-d) 32%,transparent) 78%,
  color-mix(in srgb,var(--c-primary-d) 12%,transparent) 100%)}
.hero-inner{position:relative;z-index:2;max-width:var(--maxw);margin-inline:auto;padding:134px 24px 118px}
.hero-copy{max-width:610px}
.hero .eyebrow{color:#fff}
.hero .eyebrow::before{background:var(--c-accent);opacity:1;width:30px}
.hero-copy h1{font-size:clamp(2.4rem,5.4vw,4rem);margin:1.2rem 0;letter-spacing:-.03em;color:#fff}
.hero-copy p{font-size:1.12rem;color:rgba(255,255,255,.86);max-width:46ch;margin-bottom:2.1rem}
.hero-cta{display:flex;gap:.8rem;flex-wrap:wrap}
.hero .btn--ghost{color:#fff;border-color:rgba(255,255,255,.45)}
.hero .btn--ghost:hover{background:rgba(255,255,255,.12);border-color:#fff}
.hero-stats{display:flex;gap:2.6rem;margin-top:2.4rem}
.hero-stats b{font-family:var(--font-head);font-size:1.7rem;display:block;color:#fff}
.hero-stats span{color:rgba(255,255,255,.72);font-size:.82rem}
.hero-trust{margin-top:2.6rem;padding-top:1.6rem;border-top:1px solid rgba(255,255,255,.22);max-width:610px}
.hero-trust .lbl{font-size:.68rem;letter-spacing:.16em;text-transform:uppercase;color:rgba(255,255,255,.62);margin-bottom:.7rem}
.hero-trust .logos{display:flex;gap:1.8rem;flex-wrap:wrap;align-items:center}
.hero-trust .logos span{font-family:var(--font-head);font-weight:600;font-size:1.05rem;color:rgba(255,255,255,.78);letter-spacing:-.01em}

/* Banners */
.banner{border-radius:var(--radius);overflow:hidden;position:relative;color:#fff;isolation:isolate}
.banner .bnr-photo{position:absolute;inset:0;z-index:-2;background-size:cover;background-position:center;transition:.5s}
.banner:hover .bnr-photo{transform:scale(1.04)}
.banner .bnr-overlay{position:absolute;inset:0;z-index:-1;background:linear-gradient(92deg,
  color-mix(in srgb,var(--c-primary-d) 90%,transparent) 0%,
  color-mix(in srgb,var(--c-primary-d) 60%,transparent) 55%,
  color-mix(in srgb,var(--c-primary-d) 24%,transparent) 100%)}
.banner--accent .bnr-overlay{background:linear-gradient(92deg,
  color-mix(in srgb,var(--c-accent) 88%,transparent) 0%,
  color-mix(in srgb,var(--c-accent) 55%,transparent) 60%,
  color-mix(in srgb,var(--c-accent) 20%,transparent) 100%)}
.banner-content{padding:2.4rem}
.banner h3{font-size:1.5rem;margin-bottom:.5rem;color:#fff}
.banner p{opacity:.9;margin-bottom:1.2rem;max-width:38ch;font-size:.96rem}
.banner .btn{background:#fff;color:var(--c-primary-d)}
.banner .btn:hover{background:var(--c-accent);color:#fff}
.banner--single{min-height:230px;display:flex;align-items:center}
.banner--single .banner-content{max-width:540px;padding:2.8rem}
.banner-double{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-top:1.5rem}
.banner-double .banner{min-height:220px;display:flex;align-items:flex-end}
.banner-triple{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:1.5rem}
.banner-triple .banner{min-height:260px;display:flex;align-items:flex-end}
.banner--triple .banner-content{padding:1.8rem}
.banner--triple h3{font-size:1.25rem}
.tag{display:inline-block;background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.25);
  padding:.3rem .8rem;border-radius:6px;font-size:.68rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;margin-bottom:.8rem}

/* Product cards */
.products{display:grid;grid-template-columns:repeat(4,1fr);gap:1.6rem}
.product-card{background:var(--c-surface);border:1px solid var(--c-border);border-radius:var(--radius);
  overflow:hidden;transition:.24s;display:flex;flex-direction:column}
.product-card:hover{transform:translateY(-3px);box-shadow:var(--shadow);border-color:var(--c-border)}
.product-media{position:relative;aspect-ratio:4/5;overflow:hidden;background:var(--c-primary-l)}
.product-media svg{width:100%;height:100%}
.product-media img{width:100%;height:100%;object-fit:cover;transition:.4s}
.product-card:hover .product-media img{transform:scale(1.04)}
.product-media .chip{position:absolute;top:12px;left:12px;background:var(--c-surface);color:var(--c-primary-d);
  font-size:.64rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;padding:.3rem .6rem;border-radius:5px;border:1px solid var(--c-border)}
.product-media .wish{position:absolute;top:10px;right:10px;width:34px;height:34px;border-radius:8px;
  background:color-mix(in srgb,#fff 90%,transparent);display:grid;place-items:center;color:var(--c-primary);border:1px solid var(--c-border);cursor:pointer}
.product-media .wish svg{width:16px;height:16px}
.product-body{padding:1.1rem 1.2rem 1.3rem;display:flex;flex-direction:column;gap:.35rem;flex:1}
.product-body .cat{font-size:.7rem;color:var(--c-muted);letter-spacing:.1em;text-transform:uppercase}
.product-body h3{font-family:var(--font-body);font-weight:600;font-size:1rem;letter-spacing:-.01em}
.rating{color:var(--c-muted);font-size:.82rem;display:flex;align-items:center;gap:.3rem}
.rating b{color:var(--c-text);font-weight:600}
.rating .star{color:var(--c-accent)}
.price-row{display:flex;align-items:center;justify-content:space-between;margin-top:auto;padding-top:.7rem}
.price{font-family:var(--font-head);font-weight:600;font-size:1.15rem;color:var(--c-text)}
.price .old{font-family:var(--font-body);font-size:.82rem;color:var(--c-muted);text-decoration:line-through;margin-left:.4rem;font-weight:400}
.add-btn{width:38px;height:38px;border-radius:8px;background:var(--c-primary);color:#fff;border:0;
  cursor:pointer;display:grid;place-items:center;transition:.2s}
.add-btn:hover{background:var(--c-primary-d)}
.add-btn svg{width:18px;height:18px}

/* Teaser gallery */
.teaser{display:grid;grid-template-columns:2fr 1fr 1fr;grid-template-rows:1fr 1fr;gap:1.1rem;height:440px}
.teaser .gtile:first-child{grid-row:span 2}
.gtile{position:relative;border-radius:var(--radius);overflow:hidden;cursor:pointer;background:var(--c-primary-l)}
.gtile svg,.gtile img{width:100%;height:100%;object-fit:cover;transition:.5s;display:block}
.gtile .glabel{position:absolute;left:16px;bottom:14px;color:#fff;font-weight:600;font-size:.95rem;text-shadow:0 1px 10px rgba(0,0,0,.5);z-index:2}
.gtile::after{content:"";position:absolute;inset:0;background:linear-gradient(transparent 45%,color-mix(in srgb,var(--c-primary-d) 78%,transparent));transition:.3s;z-index:1}
.gtile:hover svg,.gtile:hover img{transform:scale(1.05)}

/* Inner page heads */
.page-head{background:var(--c-primary-l);padding:52px 0 46px;border-bottom:1px solid var(--c-border)}
.breadcrumb{color:var(--c-muted);font-size:.82rem;margin-bottom:.6rem;letter-spacing:.02em}
.breadcrumb a:hover{color:var(--c-primary)}
.page-head h1{font-size:clamp(1.9rem,4vw,2.6rem);letter-spacing:-.02em}
.shop-layout{display:grid;grid-template-columns:264px 1fr;gap:2.4rem;align-items:start}
.filters{background:var(--c-surface);border:1px solid var(--c-border);border-radius:var(--radius);padding:1.5rem;position:sticky;top:92px}
.filters h4{font-family:var(--font-body);font-size:.72rem;text-transform:uppercase;letter-spacing:.12em;color:var(--c-muted);margin:1.4rem 0 .8rem}
.filters h4:first-child{margin-top:0}
.filter-opt{display:flex;align-items:center;gap:.6rem;padding:.36rem 0;color:var(--c-text);font-size:.92rem;cursor:pointer}
.filter-opt input{accent-color:var(--c-primary);width:15px;height:15px}
.color-dots{display:flex;gap:.5rem;flex-wrap:wrap}
.color-dots span{width:24px;height:24px;border-radius:6px;cursor:pointer;border:1px solid var(--c-border)}
.toolbar{display:flex;align-items:center;justify-content:space-between;margin-bottom:1.6rem;gap:1rem;flex-wrap:wrap}
.toolbar select{padding:.6rem .9rem;border-radius:var(--radius-sm);border:1px solid var(--c-border);background:var(--c-surface);font-family:inherit;color:var(--c-text);font-size:.9rem}
.pagination{display:flex;gap:.4rem;justify-content:center;margin-top:2.8rem}
.pagination a{min-width:42px;height:42px;padding:0 .5rem;border-radius:var(--radius-sm);display:grid;place-items:center;border:1px solid var(--c-border);background:var(--c-surface);font-weight:600;font-size:.9rem}
.pagination a.active,.pagination a:hover{background:var(--c-primary);color:#fff;border-color:var(--c-primary)}

/* Product detail */
.pdp{display:grid;grid-template-columns:1.05fr 1fr;gap:3.2rem;align-items:start}
.pdp-gallery .main{border-radius:var(--radius);overflow:hidden;border:1px solid var(--c-border);background:var(--c-primary-l);aspect-ratio:4/5}
.pdp-gallery .main svg,.pdp-gallery .main img{width:100%;height:100%;object-fit:cover}
.pdp-thumbs{display:flex;gap:.7rem;margin-top:.8rem}
.pdp-thumbs button{width:76px;height:76px;border-radius:var(--radius-sm);overflow:hidden;border:1px solid var(--c-border);background:var(--c-primary-l);cursor:pointer;padding:0}
.pdp-thumbs button.active{border-color:var(--c-primary);border-width:2px}
.pdp-thumbs button img{width:100%;height:100%;object-fit:cover;display:block}
.pdp-info .cat{font-size:.72rem;color:var(--c-muted);text-transform:uppercase;letter-spacing:.12em}
.pdp-info h1{font-size:clamp(1.7rem,3.4vw,2.4rem);margin:.5rem 0 .7rem;letter-spacing:-.02em}
.pdp-rating{color:var(--c-muted);font-size:.9rem;display:flex;align-items:center;gap:.4rem}
.pdp-rating .star{color:var(--c-accent)}
.pdp-price{font-family:var(--font-head);font-size:1.9rem;color:var(--c-text);margin:1.1rem 0}
.pdp-price .old{font-size:1.05rem;color:var(--c-muted);text-decoration:line-through;margin-left:.6rem}
.opt-group{margin:1.4rem 0}
.opt-group .lbl{font-weight:600;margin-bottom:.55rem;display:block;font-size:.92rem}
.opt-pills{display:flex;gap:.6rem;flex-wrap:wrap}
.opt-pills button{padding:.55rem 1.1rem;border-radius:var(--radius-sm);border:1px solid var(--c-border);background:var(--c-surface);cursor:pointer;font-family:inherit;font-weight:500;color:var(--c-text);transition:.2s;font-size:.9rem}
.opt-pills button.active,.opt-pills button:hover{border-color:var(--c-primary);color:var(--c-primary);background:var(--c-primary-l)}
.qty{display:inline-flex;align-items:center;border:1px solid var(--c-border);border-radius:var(--radius-sm);overflow:hidden}
.qty button{width:42px;height:44px;border:0;background:var(--c-surface);font-size:1.1rem;cursor:pointer;color:var(--c-text)}
.qty span{width:42px;text-align:center;font-weight:600}
.buy-row{display:flex;gap:.8rem;align-items:center;margin:1.5rem 0}
.pdp-meta{border-top:1px solid var(--c-border);margin-top:1.5rem;padding-top:1.3rem;color:var(--c-muted);font-size:.88rem;display:grid;gap:.5rem}
.pdp-meta span{display:flex;gap:.5rem;align-items:center}
.tabs{margin-top:3.2rem;border-top:1px solid var(--c-border)}
.tab-btns{display:flex;gap:.3rem;margin-top:1.3rem;flex-wrap:wrap}
.tab-btns button{padding:.7rem 1.3rem;border:0;background:transparent;font-family:inherit;font-weight:600;color:var(--c-muted);cursor:pointer;border-radius:var(--radius-sm);font-size:.92rem}
.tab-btns button.active{background:var(--c-primary-l);color:var(--c-primary-d)}
.tab-pane{display:none;padding:1.5rem 0;color:var(--c-muted);max-width:72ch;line-height:1.8}
.tab-pane.active{display:block}

/* Gallery */
.gtabs{display:flex;gap:.5rem;justify-content:center;flex-wrap:wrap;margin-bottom:2.2rem}
.gtabs button{padding:.55rem 1.2rem;border-radius:var(--radius-sm);border:1px solid var(--c-border);background:var(--c-surface);cursor:pointer;font-family:inherit;font-weight:500;color:var(--c-muted);transition:.2s;font-size:.9rem}
.gtabs button.active{background:var(--c-primary);color:#fff;border-color:var(--c-primary)}
.gallery{columns:3;column-gap:1.2rem}
.gallery .gtile{break-inside:avoid;margin-bottom:1.2rem;height:auto}
.gallery .gtile svg,.gallery .gtile img{height:auto;aspect-ratio:var(--ar,4/3)}

/* Lightbox */
.lightbox{position:fixed;inset:0;background:rgba(15,20,17,.9);z-index:100;display:none;place-items:center;padding:24px}
.lightbox.open{display:grid}
.lightbox .lb-inner{max-width:760px;width:100%;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
.lightbox .lb-inner svg,.lightbox .lb-inner img{width:100%;height:auto;display:block}
.lightbox .lb-close{position:absolute;top:20px;right:24px;width:44px;height:44px;border-radius:8px;border:0;background:#fff;cursor:pointer;font-size:1.2rem}

/* CTA + footer */
.cta-band{background:var(--c-primary);color:#fff;border-radius:var(--radius);padding:3rem;display:grid;grid-template-columns:1.4fr 1fr;gap:2rem;align-items:center}
.cta-band h2{color:#fff;font-size:1.9rem}
.cta-band p{opacity:.88}
.subscribe{display:flex;gap:.5rem;background:#fff;padding:.45rem;border-radius:var(--radius)}
.subscribe input{flex:1;border:0;padding:.6rem .9rem;font-family:inherit;background:transparent;outline:none;color:var(--c-text)}
.site-footer{background:var(--c-primary-d);color:#c7d3cd;margin-top:0;padding:72px 0 32px}
.footer-grid{display:grid;grid-template-columns:1.7fr 1fr 1fr 1fr;gap:2rem}
.site-footer .brand{color:#fff}
.site-footer .brand-badge{background:#fff;color:var(--c-primary-d)}
.footer-col h5{color:#fff;font-family:var(--font-body);font-size:.72rem;text-transform:uppercase;letter-spacing:.12em;margin-bottom:1.1rem}
.footer-col a{display:block;color:#a9bab2;padding:.3rem 0;font-size:.92rem}
.footer-col a:hover{color:#fff}
.footer-bottom{border-top:1px solid rgba(255,255,255,.12);margin-top:48px;padding-top:24px;display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;color:#8ba295;font-size:.84rem}
.socials{display:flex;gap:.5rem}
.socials a{width:36px;height:36px;border-radius:8px;border:1px solid rgba(255,255,255,.18);display:grid;place-items:center;color:#fff}
.socials a:hover{background:var(--c-accent);border-color:var(--c-accent)}
.socials svg{width:16px;height:16px}

/* Switcher */
.switcher{position:fixed;right:22px;bottom:22px;z-index:80}
.switcher-toggle{width:50px;height:50px;border-radius:12px;border:0;background:var(--c-primary);color:#fff;cursor:pointer;
  box-shadow:var(--shadow);display:grid;place-items:center;transition:.25s}
.switcher-toggle:hover{transform:translateY(-2px)}
.switcher-toggle svg{width:22px;height:22px}
.switcher-panel{position:absolute;right:0;bottom:62px;width:262px;background:var(--c-surface);border:1px solid var(--c-border);
  border-radius:var(--radius);box-shadow:var(--shadow);padding:1.3rem}
.switcher-title{font-weight:600;margin-bottom:1rem;font-size:.82rem;text-transform:uppercase;letter-spacing:.1em;color:var(--c-muted)}
.switcher-presets{display:flex;gap:.55rem;flex-wrap:wrap;margin-bottom:1.1rem}
.swatch{width:36px;height:36px;border-radius:8px;border:1px solid var(--c-border);cursor:pointer;transition:.2s}
.swatch:hover{transform:scale(1.08);border-color:var(--c-text)}
.switcher-custom{display:grid;gap:.6rem;margin-bottom:1.1rem}
.switcher-custom label{display:flex;align-items:center;justify-content:space-between;font-size:.88rem;font-weight:500;color:var(--c-text)}
.switcher-custom input[type=color]{width:44px;height:28px;border:1px solid var(--c-border);border-radius:6px;background:none;cursor:pointer;padding:2px}
.switcher-reset{width:100%;padding:.6rem;border-radius:var(--radius-sm);border:1px solid var(--c-border);background:var(--c-bg);cursor:pointer;font-family:inherit;font-weight:600;color:var(--c-text);font-size:.88rem}
.switcher-reset:hover{background:var(--c-primary-l);color:var(--c-primary-d)}

/* Responsive */
@media(max-width:1000px){
  .products{grid-template-columns:repeat(2,1fr)}
  .hero-inner{grid-template-columns:1fr;padding-top:64px}
  .hero-visual{display:none}
  .banner-triple{grid-template-columns:1fr}
  .shop-layout{grid-template-columns:1fr}
  .filters{position:static}
  .pdp{grid-template-columns:1fr;gap:2rem}
  .footer-grid{grid-template-columns:1fr 1fr}
  .cta-band{grid-template-columns:1fr}
  .gallery{columns:2}
  .teaser{grid-template-columns:1fr 1fr;height:auto}
  .teaser .gtile{height:210px}
  .teaser .gtile:first-child{grid-row:span 1}
}
@media(max-width:640px){
  .nav-links{display:none;position:absolute;top:72px;left:0;right:0;background:var(--c-surface);flex-direction:column;
    padding:1rem 24px;border-bottom:1px solid var(--c-border);margin:0;gap:.2rem}
  .nav-links.open{display:flex}
  .nav-links a{padding:.7rem 0}
  .nav-toggle{display:grid}
  .banner-double{grid-template-columns:1fr}
  .products{grid-template-columns:1fr 1fr;gap:1rem}
  .gallery{columns:1}
  .footer-grid{grid-template-columns:1fr}
  .hero-stats{gap:1.4rem}
  .section{padding:60px 0}
}
