:root{
  /* Tema */
  --brand:#2098A0;
  --brand2:#1f8f97;
  --brandDark:#0b2a3d;
  --paper:#ffffff;
  --ink:#0f172a;
  --border:rgba(15,23,42,.10);

  /* Ölçek */
  --wrap:min(96vw, 1400px);
  --gutter:clamp(12px, 2vw, 24px);
  --radius:clamp(12px, 1.4vw, 18px);

  /* Slider */
 --slider-h: clamp(420px, 55vh, 650px);

  /* About */
  --about-max: 1300px;
  --about-minh: 560px;
}

/* ============ RESET ============ */
*{ box-sizing:border-box; }
html,body{ height:100%; overflow-x:hidden; }

body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:var(--ink);
  min-height:100vh;
  display:flex;
  flex-direction:column;
  background:linear-gradient(180deg, var(--brand) 0%, var(--brand2) 100%);
}

a{ text-decoration:none; color:inherit; }

.container{
  width:var(--wrap);
  margin:0 auto;
  padding:0 var(--gutter);
}

/* =========================
   HEADER
========================= */
.header{
  background:var(--paper);
  border-bottom:1px solid var(--border);
  padding:10px 0;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.logo img{
  height:58px;
  width:auto;
  display:block;
}

.nav{
  flex:1;
  display:flex;
  justify-content:center;
  gap:clamp(12px, 2vw, 26px);
  flex-wrap:wrap;
}

.nav a{
  color:var(--brandDark);
  font-weight:700;
  font-size:clamp(14px, 1.1vw, 16px);
}
.nav a:hover{ text-decoration:underline; }

.contact-info{ white-space:nowrap; }
.contact-info a{ color:var(--brandDark); font-weight:700; }

.language-select{
  display:flex;
  align-items:center;
  gap:10px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(11,42,61,.04);
  border:1px solid rgba(11,42,61,.18);
}

.language-select .lang{
  width:34px;
  height:34px;
  border-radius:50%;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}

.language-select .lang img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.language-select .sep{
  opacity:.7;
  color:rgba(11,42,61,.55);
}

/* =========================
   SLIDER (TEK GÖRSEL / 3’lü görünüm FIX)
========================= */
.hero-slider{
  width:100%;
 height: var(--slider-h) !important;
  min-height: var(--slider-h) !important;
  margin:12px 0 0;
  overflow:hidden;
  background:var(--brandDark);
  position:relative;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

/* Flex vb. varsa ez */
.hero-slider .slides{
  position:relative;
  width:100%;
   height: 100% !important;
  display:block !important;
}

.hero-slider .slide{
  position:absolute !important;
  inset:0;
  width:100% !important;
  height:100% !important;
  opacity:0;
  transition:opacity .6s ease;
  background:none !important;
}

.hero-slider .slide.active{ opacity:1; }

.hero-slider .slide::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:var(--img);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  filter:blur(18px);
  transform:scale(1.12);
  opacity:.55;
}

.hero-slider .slide::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:var(--img);
  background-size:contain; /* tek parça */
  background-position:center;
  background-repeat:no-repeat;
}

.hero-slider .arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:50%;
  border:0;
  cursor:pointer;
  background:rgba(0,0,0,.35);
  color:#fff;
  font-size:30px;
  line-height:44px;
  text-align:center;
  z-index:5;
}
.hero-slider .prev{ left:16px; }
.hero-slider .next{ right:16px; }
.hero-slider .arrow:hover{ background:rgba(0,0,0,.55); }

.hero-slider .dots{
  position:absolute;
  left:0; right:0;
  bottom:16px;
  display:flex;
  justify-content:center;
  gap:8px;
  z-index:5;
}
.hero-slider .dot{
  width:10px;
  height:10px;
  border-radius:50%;
  border:0;
  background:rgba(255,255,255,.5);
  cursor:pointer;
}
.hero-slider .dot.active{ background:#fff; }

@media (max-width:640px){
  :root{ --slider-h:clamp(480px, 80vw, 650px); }
}

/* =========================
   PRODUCTS
========================= */
.products{
  width:100%;
  padding:clamp(28px, 6vh,570px) 0;
}

.products .container{
  background:#fff;
  border-radius:var(--radius);
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  padding:clamp(22px, 3.5vw, 158px);
}

.products h2{
  text-align:center;
  margin:0 0 clamp(18px, 3vh, 34px);
  font-size:clamp(22px, 3vw, 34px);
  font-weight:800;
  color:#000;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(540px, 1fr));
  gap:clamp(14px, 2vw, 28px);
}

.product-card{
  position:relative;
  overflow:hidden;
  min-height:clamp(180px, 18vh, 3500px);
  border-radius:var(--radius);
  border:1px solid var(--border);
  color:#fff;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:18px;
  isolation:isolate;
}

.product-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:var(--bg) center/cover no-repeat;
  transform:scale(1.03);
  z-index:-2;
}

.product-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(0deg, rgba(11,42,61,.55), rgba(11,42,61,.25));
  z-index:-1;
}

/* =========================
   WhatsApp
========================= */
.whatsapp-btn{
  position:fixed;
  left:18px;
  bottom:18px;
  width:56px;
  height:56px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 25px rgba(0,0,0,.18);
  z-index:9999;
}
.whatsapp-btn img{ width:60px; height:60px; display:block; }

/* =========================
   FOOTER TOP
========================= */
.footer-top{
  background:#fff;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.footer-top-inner{
  display:grid;
  grid-template-columns: 1.35fr auto 1.35fr;
  align-items:center;
  gap:24px;
  padding:18px 0;
}

.ft-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:6px 0;
  line-height:1.35;
}

.ft-ico{
  width:22px;
  height:22px;
  color:var(--brandDark);
  flex:0 0 auto;
  margin-top:2px;
}
.ft-ico svg{ width:22px; height:22px; display:block; }

.ft-text{
  color:var(--ink);
  font-weight:500;
  line-height:1.45;
  font-size:13px;
}

.ft-logo{
  display:flex;
  justify-content:center;
}
.ft-logo img{
  height:58px;
  width:auto;
  display:block;
}

.footer-top .ft-left{
  justify-self:start;
  width:100%;
  max-width:520px;
  text-align:left;
}
.footer-top .ft-right{
  justify-self:end;
  width:100%;
  max-width:520px;
  text-align:right;
}

.footer-top .ft-right .ft-row{ justify-content:flex-end; }
.footer-top .ft-left  .ft-row{ justify-content:flex-start; }

.footer-top a{
  color:var(--brandDark);
  font-weight:500;
}
.footer-top a:hover{ text-decoration:underline; }

@media (max-width:860px){
  .footer-top-inner{ grid-template-columns:1fr; text-align:center; }
  .footer-top .ft-left,
  .footer-top .ft-right{
    justify-self:center;
    text-align:center;
    max-width:620px;
  }
  .footer-top .ft-left .ft-row,
  .footer-top .ft-right .ft-row{ justify-content:center; }
}

/* =========================
   FOOTER
========================= */
.footer{
  background:var(--paper);
  color:var(--brandDark);
  text-align:center;
  padding:18px 0;
  font-weight:700;
  margin-top:auto;
  border-top:1px solid var(--border);
}

/* =========================
   ABOUT PAGE - BAŞLIK BANDI (BEYAZ ARKA + TURKUAZ YAZI)
========================= */
.page-hero{
  width:100%;
  margin-top:12px;
  background:#ffffff;
  border-bottom:1px solid var(--border);
}

.page-hero-inner{
  padding: 26px 0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.page-hero h1{
  margin:0;
  color: var(--brand);
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 900;
  letter-spacing: .2px;
  text-align:center !important;
  position: relative;
     
}

/* =========================
   ABOUT PAGE - YEŞİL ÇİZDİĞİN ALAN + BEYAZ KARTI BÜYÜT
========================= */
.about{
  width:100%;
  padding: clamp(80px, 12vh, 180px) 0; /* turkuaz alan büyür */
  min-height: 78vh;                   /* alt boş teal bitmesin */
}

/* About sayfasında container: ortala + biraz geniş */
.about .container{
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
  display:flex;
  justify-content:center;
}

/* Beyaz kart: büyüt */
.about-card{
  position:relative;
  width:100%;
  max-width: var(--about-max);
  min-height: var(--about-minh);
  background: rgba(255,255,255,.92);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  padding: 42px 48px;
  overflow:hidden;
}

/* watermark logo */
.about-card::before{
  content:"";
  position:absolute;
  inset:-20%;
  background: url("../slider/logo.png") center/380px no-repeat;
  opacity:.06;
  transform: rotate(-8deg);
  pointer-events:none;
}
.about-card > *{ position:relative; }

.about-card p{
  margin: 0 0 14px;
  color: rgba(15,23,42,.78);
  font-weight: 600;
  line-height: 1.8;
  font-size: 14px;
}

.about-grid{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
   gap: 22px !important;
}

.about-box{
  background: rgba(255,255,255,.85);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 18px;
}

.about-box h3{
  margin: 0 0 8px;
  color: var(--brandDark);
  font-size: 15px;
  font-weight: 900;
}

.about-box p{
  margin-top:8px;
  font-weight: 600;
  color: rgba(15,23,42,.80);
}

@media (max-width: 860px){
	.page-hero h1{
    left: 0 !important;
  }
  .about{ padding: 48px 0; min-height:auto; }
  .about-card{
    max-width: 100%;
    min-height: auto;
    padding: 22px 18px;
  }
  .about-grid{ grid-template-columns:1fr; }
}
.products-page{ background:#fff; }

.page-hero{
  padding:40px 0 20px;
  text-align:center;
}

.page-hero h1{
  margin:0 0 18px;
  font-size:32px;
  font-weight:900;
  letter-spacing:.5px;
}

.product-tabs{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}

.product-tabs .tab{
  padding:10px 14px;
  border:1px solid #d7e0ea;
  background:#fff;
  font-weight:800;
  font-size:13px;
}

.product-tabs .tab:hover{
  background:#f3f6fa;
}

.product-section{
  padding:70px 0;
}

.product-section.alt{
  background:#0b2f4a;
  color:#fff;
}

.section-grid{
  width:min(1200px, calc(100% - 48px));
  margin:0 auto;
  display:grid;
  grid-template-columns: 520px 1fr;
  gap:56px;
  align-items:center;
}

.section-media img{
  width:100%;
  height:360px;
  object-fit:cover;
  border-radius:2px;
  box-shadow:0 14px 30px rgba(0,0,0,.22);
}

.section-content h2{
  margin:0 0 10px;
  font-size:36px;
  font-weight:900;
}

.section-content h3{
  margin:18px 0 8px;
  font-size:16px;
  font-weight:900;
}

.section-content p, .section-content li{
  font-size:13px;
  line-height:1.8;
  opacity:.95;
}

.section-content ul{ padding-left:18px; margin:8px 0; }

.table-wrap{ overflow:auto; border:1px solid rgba(255,255,255,.15); }

.prod-table{
  width:100%;
  border-collapse:collapse;
  min-width:720px;
  background:transparent;
}

.prod-table th, .prod-table td{
  padding:12px 12px;
  border-bottom:1px solid rgba(255,255,255,.15);
  text-align:left;
  font-size:13px;
}

.product-section:not(.alt) .table-wrap{ border:1px solid #d7e0ea; }
.product-section:not(.alt) .prod-table th,
.product-section:not(.alt) .prod-table td{
  border-bottom:1px solid #e6eef5;
  color:#0f172a;
}
.product-section:not(.alt) .prod-table{ background:#fff; }

.prod-cards{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:14px;
  margin-top:10px;
}
.mini-card{
  border:1px solid rgba(255,255,255,.15);
  padding:14px;
}
.product-section:not(.alt) .mini-card{
  border:1px solid #d7e0ea;
}

@media (max-width: 980px){
  .section-grid{ grid-template-columns:1fr; }
  .section-media img{ height:320px; }
  .prod-cards{ grid-template-columns:1fr; }
}
/* ========== PRODUCTS PAGE (Kimpol tarzı) ========== */

.products-page { background:#fff; }

/* Üst başlık + sekmeler */
.page-hero{
  padding:34px 0 20px;
  text-align:center;
}

.page-hero h1{
  margin:0 0 16px;
  font-size:36px;
  font-weight:900;
  letter-spacing:.6px;
}

/* Sekmeler daha “buton” gibi */
.product-tabs{
  width:min(1200px, calc(100% - 48px));
  margin:0 auto;
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

.product-tabs .tab{
  display:inline-block;
  padding:10px 14px;
  border:1px solid #d7e0ea;
  background:#fff;
  color:#0f172a;
  font-weight:800;
  font-size:13px;
}

.product-tabs .tab:hover{
  background:#f3f6fa;
}

/* Bölümler */
.product-section{
  padding:80px 0;
}

/* Lacivert bantlar */
.product-section.alt{
  background:#0b2f4a;
  color:#fff;
}

/* İçeriği genişlet + doğru grid */
.section-grid{
  width:min(1200px, calc(100% - 48px));
  margin:0 auto;
  display:grid;
  grid-template-columns: minmax(460px, 620px) 1fr;  /* SOLU büyüttük */
  gap:60px;
  align-items:center;
}

/* Resim kutusu */
.section-media{
  width:100%;
}

/* Resim görünmüyorsa bile kutu bozulmasın */
.section-media img{
  width:100%;
  height:420px;           /* büyüttük */
  object-fit:cover;
  display:block;
  border-radius:2px;
  box-shadow:0 14px 30px rgba(0,0,0,.22);
  background:#0a2540;
}

/* Sağ içerik */
.section-content h2{
  margin:0 0 12px;
  font-size:40px;         /* büyüttük */
  font-weight:900;
}

.section-content h3{
  margin:16px 0 8px;
  font-size:16px;
  font-weight:900;
}

.section-content p, .section-content li{
  font-size:14px;
  line-height:1.85;
  opacity:.95;
}

.section-content ul{ padding-left:18px; margin:8px 0; }

/* Tablo */
.table-wrap{
  overflow:auto;
  border:1px solid rgba(255,255,255,.18);
  border-radius:2px;
}

.prod-table{
  width:100%;
  border-collapse:collapse;
  min-width:760px;
  background:transparent;
}

.prod-table th, .prod-table td{
  padding:12px 12px;
  border-bottom:1px solid rgba(255,255,255,.18);
  text-align:left;
  font-size:13px;
  vertical-align:top;
}

/* Beyaz zemindeki tablolar */
.product-section:not(.alt) .table-wrap{ border:1px solid #d7e0ea; }
.product-section:not(.alt) .prod-table th,
.product-section:not(.alt) .prod-table td{
  border-bottom:1px solid #e6eef5;
  color:#0f172a;
}
.product-section:not(.alt) .prod-table{ background:#fff; }

/* Kartlar (Boya) */
.prod-cards{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  margin-top:10px;
}
.mini-card{
  border:1px solid rgba(255,255,255,.18);
  padding:14px;
  border-radius:2px;
}
.product-section:not(.alt) .mini-card{
  border:1px solid #d7e0ea;
}

/* Responsive */
@media (max-width: 980px){
  .section-grid{ grid-template-columns:1fr; }
  .section-media img{ height:320px; }
  .prod-cards{ grid-template-columns:1fr; }
}
.products-hero{ padding:32px 0 18px; background:#fff; text-align:center; }
.products-hero h1{ margin:0 0 14px; font-size:34px; font-weight:900; letter-spacing:.6px; }

.products-tabs{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; }
.products-tabs .tab{
  padding:10px 14px; border:1px solid #d7e0ea; background:#fff; color:#0f172a;
  font-weight:800; font-size:13px;
}
.products-tabs .tab:hover{ background:#f3f6fa; }

.products-section{ padding:80px 0; background:#fff; }
.products-section.dark{ background:#0b2f4a; color:#fff; }

.products-row{ display:flex; gap:60px; align-items:center; }
.products-media{ flex:0 0 520px; }
.products-media img{
  width:100%; height:420px; object-fit:cover; display:block;
  border-radius:2px; box-shadow:0 14px 30px rgba(0,0,0,.22);
  background:#0a2540;
}
.products-content{ flex:1 1 auto; }
.products-content h2{ margin:0 0 12px; font-size:40px; font-weight:900; }
.products-content h3{ margin:16px 0 8px; font-size:16px; font-weight:900; }
.products-content p, .products-content li{ font-size:14px; line-height:1.85; opacity:.95; }
.products-content ul{ padding-left:18px; margin:8px 0; }

.table-wrap{ overflow:auto; border:1px solid rgba(255,255,255,.18); border-radius:2px; }
.products-section:not(.dark) .table-wrap{ border:1px solid #d7e0ea; }

.prod-table{ width:100%; border-collapse:collapse; min-width:760px; }
.prod-table th,.prod-table td{ padding:12px; text-align:left; vertical-align:top; font-size:13px; }
.products-section.dark .prod-table th, .products-section.dark .prod-table td{ border-bottom:1px solid rgba(255,255,255,.18); }
.products-section:not(.dark) .prod-table th, .products-section:not(.dark) .prod-table td{ border-bottom:1px solid #e6eef5; }

.cards{ display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:14px; margin-top:10px; }
.card{ border:1px solid #d7e0ea; padding:14px; border-radius:2px; }
.products-section.dark .card{ border:1px solid rgba(255,255,255,.18); }

.products-page section[id]{ scroll-margin-top: 90px; }

@media (max-width: 980px){
  .products-row{ flex-direction:column; gap:18px; }
  .products-media{ flex:0 0 auto; width:100%; }
  .products-media img{ height:320px; }
  .cards{ grid-template-columns:1fr; }
}
/* ==== PRODUCTS PAGE (ek css) ==== */
.products-page{
  padding: 22px 0 60px;
}

.products-page .products-layout{
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: start;
}

/* sol kategori menüsü */
.products-page .products-side{
  position: sticky;
  top: 90px; /* header yüksekliğine göre 80-110 arası ayarlayabilirsin */
  align-self: start;
}

.products-page .products-side a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding: 13px 14px;
  margin: 0 0 10px;
  background: var(--nav, #0b2f4a);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:13px;
  border-radius:0;
}

.products-page .products-side a.active{
  outline: 2px solid rgba(11,47,74,.25);
  filter: brightness(1.06);
}

.products-page .products-side .chev{
  opacity:.9;
  font-size:16px;
  line-height:1;
}

/* sağ içerik */
.products-page .products-content{ min-width:0; }

.products-page .products-heroimg{
  width: 100%;
  height: 260px;
  overflow:hidden;
  border:1px solid var(--cardBorder, #e6eef5);
  background:#0a2540;
}

.products-page .products-heroimg img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.products-page .products-block{ padding-top:14px; }

.products-page .products-kicker{
  margin:14px 0 6px;
  font-size:13px;
  color: var(--muted, #64748b);
  font-weight:700;
}

.products-page .products-section{
  scroll-margin-top: 90px; /* header varsa */
  padding-bottom: 34px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 24px;
}

.products-page .products-section.last{
  border-bottom:none;
  margin-bottom:0;
  padding-bottom:0;
}

/* mobil */
@media (max-width: 900px){
  .products-page .products-layout{ grid-template-columns: 1fr; }
  .products-page .products-side{
    position: relative;
    top: 0;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
  }
  .products-page .products-side a{
    flex: 1 1 170px;
    margin: 0;
  }
  .products-page .products-heroimg{ height: 220px; }
}
/* === HOME / Ürünlerimiz alanını büyüt (sadece .products etkilenir) === */
section.products{
  /* Bölümün turkuaz alanı + alt boşluk büyür, footer aşağı iner */
  padding-top: clamp(70px, 7vh, 95px) !important;
  padding-bottom: clamp(120px, 14vh, 210px) !important;
}

section.products > .container{
  /* Beyaz kart büyür */
  padding: clamp(140px, 4.5vw, 120px) !important;
}

section.products .product-card{
  /* İki büyük görsel kart daha yüksek olur */
 min-height: clamp(220px, 26vh, 380px) !important;
 
}
/* HOME / Ürünlerimiz: resimler kırpılmasın, tamamı görünsün */
/* ÜRÜNLERİMİZ: resim tam görünsün + boşluk görünmesin (blur fill) */
section.products .product-card::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(18px);
  transform: scale(1.12);
  opacity: .55;
  z-index: -2;
}

section.products .product-card::after{
  content:"";
  position:absolute;
  inset:0;

  /* Üstte gradient, altta resmin kendisi (tam görünür) */
  background-image:
    linear-gradient(0deg, rgba(11,42,61,.55), rgba(11,42,61,.25)),
    var(--bg);

  background-size: cover, contain;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  z-index: -1;
}

/* =========================================================
   PAGE-SPECIFIC STYLES (moved from contact.html + products.html)
   ========================================================= */

/* === contact.html === */
/* === CONTACT PAGE OVERRIDES (temiz) === */
    /* About sayfasındaki başlık bandı ile aynı görünüm */
    .contact-page .page-hero{ background:#fff !important; border-bottom:1px solid rgba(15,23,42,.10) !important; }
    .contact-page .page-hero h1{ color: var(--brand) !important; text-align:center !important; }

    /* Üstte harita + iletişim kutuları */
    .contact-page .contact-top{
      padding: 26px 0 10px;
    }
    .contact-page .contact-grid{
      display:grid;
      grid-template-columns: 1.25fr .75fr;
      gap: 22px;
      /* Sağ kutunun (bilgi kartı) sol harita kartıyla aynı yüksekliğe uzaması için */
      align-items: stretch;
    }

    /* Grid elemanları satır yüksekliğini doldursun */
    .contact-page .contact-grid > .card{ height: 100%; }
    .contact-page .card{
      background:#fff;
      border:1px solid rgba(15,23,42,.10);
      border-radius: 12px;
      box-shadow: 0 8px 22px rgba(2, 8, 23, .05);
      overflow:hidden;
    }
    .contact-page .card-head{
      padding: 14px 16px;
      font-weight: 700;
      color: #0f172a;
    }
    .contact-page .map-wrap{
      padding: 0 16px 16px;
    }
    .contact-page .map-frame{
      width:100%;
      height: 280px;
      border:0;
      border-radius: 10px;
      overflow:hidden;
      display:block;
    }

    /* Sağdaki iletişim bilgileri kutuları */
    .contact-page .info-list{ padding: 8px 16px 16px; display:flex; flex-direction:column; gap: 12px; }
    .contact-page .info-item{
      display:flex;
      gap: 12px;
      padding: 12px 12px;
      border:1px solid rgba(15,23,42,.08);
      border-radius: 10px;
      background: #fff;
    }
    .contact-page .info-ico{
      width:40px; height:40px;
      border-radius: 10px;
      display:grid; place-items:center;
      background: rgba(11,47,74,.08);
      color: var(--nav, #0b2f4a);
      flex: 0 0 auto;
    }
    .contact-page .info-ico svg{ width:20px; height:20px; }
    .contact-page .info-text{ display:flex; flex-direction:column; gap: 4px; }
    .contact-page .info-text b{ font-size: 14px; color:#0f172a; }
    .contact-page .info-text a{ color:#0f172a; opacity:.85; }
    .contact-page .info-text a:hover{ opacity:1; }

    /* Form alanı */
    .contact-page .contact-form{
      padding: 22px 0 70px;
    }
    .contact-page .form-wrap{ padding: 0 16px 18px; }
    .contact-page .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 6px;
    }
    .contact-page .form-row{ display:flex; flex-direction:column; gap: 8px; }
    .contact-page .form-row.full{ grid-column: 1 / -1; }

    .contact-page .input, .contact-page .textarea{
      width:100%;
      padding: 12px 12px;
      border-radius: 10px;
      border:1px solid rgba(15,23,42,.12);
      outline:none;
      font: inherit;
      background:#fff;
    }
    .contact-page .textarea{ min-height: 160px; resize: vertical; }
    .contact-page .input:focus, .contact-page .textarea:focus{
      border-color: rgba(11,47,74,.35);
      box-shadow: 0 0 0 3px rgba(11,47,74,.12);
    }

    .contact-page .consent{
      display:flex;
      gap: 8px;
      align-items:flex-start;
      margin: 10px 0 8px;
      font-size: 13px;
      opacity:.9;
    }
    .contact-page .consent a{ text-decoration: underline; }

    .contact-page .captcha-row{
      display:flex;
      gap: 14px;
      align-items:center;
      margin-top: 10px;
      flex-wrap: wrap;
    }
    .contact-page .captcha-input{ max-width: 260px; }

    
    .contact-page .captcha-box{
      display:flex;
      align-items:center;
      gap: 10px;
      padding: 10px 12px;
      border:1px solid rgba(15,23,42,.12);
      border-radius: 10px;
      background:#fff;
    }
    .contact-page .captcha-code{
      font-weight: 800;
      letter-spacing: .18em;
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
      color:#0f172a;
      user-select:none;
    }
    .contact-page .captcha-refresh{
      border:0;
      width:34px;
      height:34px;
      border-radius: 10px;
      cursor:pointer;
      background: rgba(11,47,74,.10);
      color: var(--nav, #0b2f4a);
      font-weight: 800;
      line-height: 1;
    }
    .contact-page .captcha-refresh:hover{ filter: brightness(1.03); }
.contact-page .btn{
      border:0;
      background: var(--nav, #0b2f4a);
      color:#fff;
      padding: 12px 18px;
      border-radius: 10px;
      cursor:pointer;
      font-weight: 700;
      min-width: 120px;
    }
    .contact-page .btn:hover{ filter: brightness(1.05); }

    @media (max-width: 980px){
      .contact-page .contact-grid{ grid-template-columns: 1fr; }
      .contact-page .map-frame{ height: 260px; }
    }
    @media (max-width: 720px){
      .contact-page .form-grid{ grid-template-columns: 1fr; }
      .contact-page .captcha-input{ max-width: 100%; }
    }

/* === products.html === */
/* ===== PRODUCTS PAGE (About menü + footer, içerik bu sayfaya özel) ===== */

    /* About sayfasındaki başlık bandı ile uyumlu */
    .products-page .page-hero{ background:#fff !important; border-bottom:1px solid rgba(15,23,42,.10) !important; }
    .products-page .page-hero h1{ color: var(--brand) !important; text-align:center !important; }

    .products-page .products-section{
      padding: 26px 0 70px;
    }

    .products-page .products-grid{
      display:grid;
      grid-template-columns: 280px 1fr;
      gap: 22px;
      align-items:start;
    }

    /* Sol kategori butonları (turkuaz) */
    .products-page .cat-list{
      display:flex;
      flex-direction:column;
      gap: 14px;
      padding: 0;
      margin: 0;
      list-style:none;
    }
    .products-page .cat-btn{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 10px;
      padding: 14px 16px;
      border-radius: 0; /* ekrandaki gibi düz */
      border: 0;
      cursor:pointer;
      background: var(--brand, #12b3c7);   /* turkuaz */
      color: #fff;
      font-weight: 700;
      letter-spacing: .2px;
      box-shadow: 0 8px 22px rgba(2, 8, 23, .06);
    }
    .products-page .cat-btn:hover{ filter: brightness(1.05); }
    .products-page .cat-btn .arrow{
      font-weight: 900;
      opacity: .95;
      transform: translateY(-1px);
    }
    .products-page .cat-btn.is-active{
      outline: 3px solid rgba(18,179,199,.28);
      outline-offset: 2px;
      filter: brightness(1.08);
    }

    /* Sağ içerik */
    .products-page .product-panel{
      display:none;
      background:#fff;
    }
    .products-page .product-panel.is-active{
      display:block;
    }

    .products-page .hero-img{
      width:100%;
      border-radius: 0;
      display:block;
      max-height: 320px;
      object-fit: cover;
      background: linear-gradient(135deg, rgba(11,47,74,.12), rgba(11,47,74,.04));
    }

    .products-page .panel-body{
      padding: 14px 2px 0;
    }

    .products-page .panel-kicker{
      font-size: 13px;
      font-weight: 700;
      color: #0f172a;
      opacity: .75;
      margin: 10px 0 6px;
    }
    .products-page .panel-title{
      margin: 0 0 14px;
      font-size: 22px;
      color: #0f172a;
      font-weight: 800;
    }

    .products-page .p-block{
      margin: 0 0 14px;
    }
    .products-page .p-block h3{
      margin: 18px 0 6px;
      font-size: 18px;
      font-weight: 800;
      color: #0f172a;
    }

    /* Ürün satırı: Kalın isim + açıklama */
    .products-page .p-item{
      margin: 8px 0;
      font-size: 14px;
      line-height: 1.5;
      color: #0f172a;
      opacity: .95;
    }
    .products-page .p-item b{
      font-weight: 800;
    }

    @media (max-width: 980px){
      .products-page .products-grid{ grid-template-columns: 1fr; }
      .products-page .cat-btn{ border-radius: 10px; }
      .products-page .hero-img{ max-height: 260px; border-radius: 12px; }
      .products-page .product-panel{ padding-top: 6px; }
    }

/* =========================================================
   FOOTER RIGHT (telefon + mail) hizalama fix
   ========================================================= */
.footer-top .ft-right{ text-align:left; }
.footer-top .ft-right .ft-row{ justify-content:flex-start; align-items:center; }
.footer-top .ft-right .ft-ico{ margin-top:0; }

/* =========================================================
   KVKK / AYDINLATMA METNİ SAYFASI
   ========================================================= */
.legal-page .page-hero{ background:#fff !important; border-bottom:1px solid rgba(15,23,42,.10) !important; }
.legal-page .page-hero h1{ color: var(--brand) !important; text-align:center !important; }

.legal-page .legal{ padding: 26px 0 70px; }
.legal-page .legal-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(2, 8, 23, .05);
  padding: 18px 18px;
}
.legal-page .legal-meta{
  font-size: 12px;
  color: rgba(15,23,42,.65);
  font-weight: 700;
  margin: 0 0 10px;
}
.legal-page .legal-card h2{
  margin: 14px 0 8px;
  font-size: 16px;
  font-weight: 900;
  color:#0f172a;
}
.legal-page .legal-card h2:first-child{ margin-top:0; }
.legal-page .legal-card p,
.legal-page .legal-card li{
  margin: 0 0 10px;
  color: rgba(15,23,42,.85);
  line-height: 1.85;
  font-size: 14px;
}
.legal-page .legal-card ul{ padding-left: 18px; margin: 0 0 12px; }



/* =========================================================
   PRODUCTS PAGE - KIMSEL STYLE (Search + Tiles)
   ========================================================= */

/* ürünler sayfasında zemin beyaz olsun */
.products-page{ background:#fff; }

.products-page .products-section{
  padding: 26px 0 70px;
}

/* Arama + ana kategori kutuları */
.products-page .products-toolbar{
  display:flex;
  flex-direction:column;
  gap: 18px;
  margin: 10px 0 18px;
}

.products-page .products-search{
  width: min(920px, 100%);
  margin: 0 auto;
  display:flex;
  align-items:center;
  border: 1px solid #d7e0ea;
  background:#fff;
  height: 48px;
}

.products-page .products-search input{
  flex: 1 1 auto;
  height: 100%;
  border: 0;
  outline: none;
  padding: 0 14px;
  font: inherit;
  font-weight: 600;
  color: #0f172a;
}

.products-page .products-search input::placeholder{
  color: rgba(15,23,42,.55);
  font-weight: 600;
}

.products-page .products-search .search-btn{
  width: 56px;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  display:grid;
  place-items:center;
  color: var(--brand);
}

.products-page .products-search .search-btn svg{
  width: 22px;
  height: 22px;
}

/* Kutular (KIMSEL tarzı) */
.products-page .tile-row{
  width: min(1200px, 100%);
  margin: 0 auto;
  display:flex;
  justify-content:center;
  gap: 18px;
  flex-wrap: wrap;
}

.products-page .tile{
  border: 0;
  cursor: pointer;
  background: #eeeeee;
  color: #0f172a;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  padding: 14px 12px;
  min-height: 84px;
  width: 220px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  box-shadow: 0 8px 18px rgba(2, 8, 23, .05);
}

.products-page .tile:hover{ filter: brightness(0.98); }

.products-page .tile.is-active{
  background: var(--brand);
  color:#fff;
}

.products-page .tile.tile-sub{
  text-transform:none;
  font-weight: 800;
  letter-spacing: 0;
  min-height: 78px;
  width: auto;
}

/* Banner (kategori başlığı bandı) */
.products-page .products-banner{
  margin: 10px calc(var(--gutter) * -1) 0;
  padding: 34px var(--gutter);
  background-image:
    linear-gradient(90deg, rgba(32,152,160,.88), rgba(32,152,160,.88)),
    var(--banner-img);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.products-page .products-banner h2{
  margin: 0;
  color:#fff;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: clamp(26px, 3vw, 40px);
}

/* Panel gövdesi */
.products-page .products-panels{ margin-top: 10px; }

.products-page .panel-body{ padding: 18px 0 0; }

.products-page .p-block{ margin-top: 10px; }

.products-page .p-section{
  padding: 10px 0;
  scroll-margin-top: 120px;
}

.products-page .p-section + .p-section{
  border-top: 1px solid rgba(15,23,42,.08);
}

.products-page .p-section.is-focus{
  outline: 3px solid rgba(32,152,160,.22);
  outline-offset: 4px;
  border-radius: 6px;
}

/* Mobil */
@media (max-width: 980px){
  .products-page .tile{ width: min(260px, 100%); }
  .products-page .tile.tile-sub{ width: min(320px, 100%); }
  .products-page .products-banner{ padding: 26px var(--gutter); }
}

/* =========================================================
   PRODUCTS PAGE - SOL MENÜ + SAĞ KARTLAR (ekrandaki gibi)
   Bu blok, products.html içindeki .products-split/.products-sidebar
   yapısını hedefler ve eski yatay kutu görünümünü override eder.
   ========================================================= */

.products-page .products-split{
  display:grid;
  grid-template-columns: 380px 1fr;
  gap: 44px;
  align-items:start;
}


/* Mobil menü toggle butonu (desktop'ta gizli) */
.products-page .sidebar-toggle{
  display:none !important;
  border:1px solid rgba(32,152,160,.35);
  background:#fff;
  color:var(--brand);
  border-radius:12px;
  padding:10px 12px;
  font-weight:700;
  gap:8px;
  align-items:center;
}
.products-page .sidebar-toggle-ico{ display:none; }

@media (max-width: 980px){
  .products-page .sidebar-toggle{
    display:inline-flex !important;
    margin: 0 0 10px 0;
  }
  .products-page .sidebar-toggle-ico{
    display:inline-block;
    width:18px; height:12px;
    border-top:2px solid var(--brand);
    border-bottom:2px solid var(--brand);
    position:relative;
  }
  .products-page .sidebar-toggle-ico::before{
    content:"";
    position:absolute;
    left:0; right:0;
    top:50%;
    transform:translateY(-50%);
    border-top:2px solid var(--brand);
  }
}

/* Sol menü kutusu */
.products-page .products-sidebar{
  position: sticky;
  top: 98px; /* header yüksekliğine göre */
  align-self:start;
}

.products-page .products-sidebar .sidebar-title{
  background:#fff;
  padding: 18px 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
  border-bottom: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 16px 34px rgba(2, 8, 23, .06);
}

/* (Kullanılmıyor ama HTML'de kalırsa görünmesin) */
.products-page .products-sidebar .sidebar-divider,
.products-page .products-sidebar .sidebar-subtitle,
.products-page .products-sidebar .side-subtiles{
  display:none !important;
}

/* Ana kategori butonları: dikey liste */
.products-page .products-sidebar .tile-row{
  width: 100% !important;
  margin: 0 !important;
  display:block !important;
  background:#fff;
  box-shadow: 0 16px 34px rgba(2, 8, 23, .06);
}

.products-page .products-sidebar .tile-row .tile{
  width: 100% !important;
  min-height: 78px;
  padding: 24px 22px;
  font-size: 16px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  text-align:left;
  background:#fff;
  color:#0f172a;
  border:0;
  border-bottom: 1px solid rgba(15,23,42,.06);
  box-shadow:none;
  border-radius:0;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.products-page .products-sidebar .tile-row .tile:last-child{
  border-bottom:0;
}

.products-page .products-sidebar .tile-row .tile.is-active{
  background: var(--brand);
  color:#fff;
  position:relative;
}

/* Aktif menü oku */
.products-page .products-sidebar .tile-row .tile.is-active::after{
  content:"";
  position:absolute;
  right:-22px;
  top:50%;
  transform: translateY(-50%);
  border-top: 36px solid transparent;
  border-bottom: 36px solid transparent;
  border-left: 22px solid var(--brand);
}

/* Sağ alan */
.products-page .products-main{ min-width:0; }

/* Banner/uzun açıklama blokları görünmesin (ekrandaki gibi sadece kartlar) */
.products-page .products-banner,
.products-page .p-block{
  display:none !important;
}

/* Alt kategori kartları (sağdaki kutular) */
.products-page .products-main .sub-tiles{
  width: 100% !important;
  margin: 0 !important;
  display:grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  justify-content:stretch;
}

.products-page .products-main .tile.tile-sub{
  width: auto !important;
  min-height: 132px;
  padding: 38px 26px;
  font-size: 16px;
  background:#fff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 14px 30px rgba(2, 8, 23, .06);
  text-transform: uppercase;
  letter-spacing: .35px;
  position:relative;
  overflow:hidden;
}

.products-page .products-main .tile.tile-sub::before{
  content:"";
  position:absolute;
  inset:-10px;
  background: url("../slider/logo.png") center/280px no-repeat;
  opacity:.06;
  pointer-events:none;
}

.products-page .products-main .tile.tile-sub > *{ position:relative; }

@media (max-width: 1024px){
  .products-page .products-split{ grid-template-columns: 280px 1fr; gap: 22px; }
  .products-page .products-main .sub-tiles{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 820px){
  .products-page .products-split{ grid-template-columns: 1fr; }
  .products-page .products-sidebar{ position:relative; top:0; }
  .products-page .products-sidebar .tile-row{ display:flex !important; overflow:auto; }
  .products-page .products-sidebar .tile-row .tile{
    flex: 0 0 auto;
    width: auto !important;
    border-bottom:0;
    border-right: 1px solid rgba(15,23,42,.06);
  }
  .products-page .products-sidebar .tile-row .tile.is-active::after{ display:none; }
  .products-page .products-main .sub-tiles{ grid-template-columns: 1fr; }
}


/* === FOOTER LINKS (KVKK / FORMS) === */
.footer-top .ft-right .ft-links{
  margin-top: 10px;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-top .ft-right .ft-links a{
  color: var(--brandDark);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.2;
  text-decoration: none;
}
.footer-top .ft-right .ft-links a:hover{ text-decoration: underline; }
@media (max-width: 860px){
  .footer-top .ft-right .ft-links{ padding-left: 0; align-items: center; }
}



/* =========================================================
   PRODUCTS PAGE - Ürün içerikleri (açılır başlıklar)
   Bu blok, ürün sayfasında alt başlık tıklayınca açıklamaların görünmesi için.
   ========================================================= */
.products-page .products-banner,
.products-page .p-block{
  display:block !important;
}

.products-page .p-acc{
  margin: 14px 0;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(2, 8, 23, .06);
}

.products-page .p-acc > summary{
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 900;
  font-size: 16px;
  color: #0f172a;
  background: #f8fafc;
  list-style: none;
}
.products-page .p-acc > summary::-webkit-details-marker{ display:none; }

.products-page .p-acc[open] > summary{
  background: rgba(32,152,160,.12);
}

.products-page .p-acc .p-acc-body{
  padding: 14px 18px 16px;
}

.products-page .p-acc .p-item{
  margin: 10px 0;
  line-height: 1.6;
}

@media (max-width: 980px){
  .products-page .p-acc > summary{ font-size: 15px; padding: 14px 14px; }
  .products-page .p-acc .p-acc-body{ padding: 12px 14px 14px; }
}



/* === PRODUCTS PAGE - Drill-down (Alt kategoriye gir) === */
.products-page .subcat-store{ display:none; }

.products-page .subcat-detail{
  margin-top: 18px;
  padding: 18px 18px 8px;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.products-page .subcat-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 12px;
}

.products-page .subcat-back{
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  cursor:pointer;
  font-weight: 600;
}

.products-page .subcat-back:hover{ transform: translateY(-1px); }

.products-page .subcat-breadcrumb{
  font-size: 14px;
  opacity: .75;
  text-align: right;
  flex: 1;
}

.products-page .subcat-title{
  margin: 6px 0 14px;
  font-size: 20px;
  font-weight: 800;
}

.products-page .subcat-content-area .p-item{
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(0,0,0,.015);
  margin-bottom: 10px;
  line-height: 1.55;
}

.products-page .subcat-empty{
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px dashed rgba(0,0,0,.18);
  opacity: .75;
}



/* =========================================================
   PRODUCTS PAGE - 2.seviye drilldown (Kategori > Ürün > Detay)
   ========================================================= */

.products-page .product-list{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding-bottom: 10px;
}

.products-page .product-btn{
  width:100%;
  text-align:left;
  background:#fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
  padding: 14px 16px;
  cursor:pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,.05);
  transition: transform .12s ease, box-shadow .12s ease;
}

.products-page .product-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
}

.products-page .product-btn-title{
  font-size: 15px;
  font-weight: 900;
  color: #0b2234;
}

.products-page .product-btn-hint{
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.35;
  color: #51606a;
}

.products-page .product-detail-view{
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
  padding: 18px 18px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

.products-page .product-detail-title{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  color: #0b2234;
}

.products-page .product-detail-desc{
  font-size: 14px;
  line-height: 1.65;
  color: #26323a;
  white-space: pre-line;
}



/* =========================================================
   PRODUCTS PAGE - ÜRÜN ACCORDION (Turuncu başlık + detay)
   İstenen: Selüloz Eterler içine girince ürünler turuncu başlık gibi gözüksün,
   tıklayınca açıklaması açılsın (hepsi aynı anda görünmesin).
   ========================================================= */
.products-page .product-acc-list{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding-bottom: 6px;
}

.products-page details.prod-acc{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  overflow:hidden;
  background:#fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.products-page details.prod-acc > summary{
  cursor:pointer;
  padding: 14px 16px;
  font-weight: 900;
  font-size: 15px;
  color:#fff;
  background: #f59e0b; /* turuncu */
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.products-page details.prod-acc > summary::-webkit-details-marker{ display:none; }

.products-page details.prod-acc > summary::after{
  content:"+";
  font-weight: 900;
  opacity:.95;
}

.products-page details.prod-acc[open] > summary::after{
  content:"–";
}

.products-page .prod-acc-body{
  padding: 14px 16px 16px;
  font-size: 14px;
  line-height: 1.65;
  color:#26323a;
  background:#fff;
  white-space: pre-line;
}

/* odak çizgisi (rahatsız etmeyen) */
.products-page details.prod-acc > summary:focus{
  outline: 2px solid rgba(245,158,11,.35);
  outline-offset: -2px;
}


/* =========================
   PRODUCTS v3.3 (Kare ürün kutuları + banner kaldırma)
========================= */

/* Kırmızıyla işaretlenen büyük bant (kategori banner) tamamen gizlensin */
.products-page .products-banner{ display:none !important; }

/* Alt kategori içine girince: üstteki alt-kategori kutuları görünmesin */
.products-page .product-panel.is-subcat .sub-tiles{ display:none !important; }

/* Ürünler: kare kutular (Selüloz Eterler içindeki ürünler) */
.products-page .product-grid{
  width: min(1200px, 100%);
  margin: 0 auto 14px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.products-page .tile.tile-product{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  min-height: 86px;
  width: auto;
  box-shadow: 0 10px 22px rgba(2, 8, 23, .06);
}

.products-page .tile.tile-product.is-active{
  outline: 2px solid rgba(32,152,160,.55);
  outline-offset: -2px;
}

.products-page .tile.tile-product{
  position: relative;
  overflow: hidden;
}

.products-page .tile.tile-product::before{
  z-index: 0;
}

.products-page .tile.tile-product .tile-label{
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
}

/* Ürün detayı kutusu */
.products-page .product-detail-box{
  width: min(1200px, 100%);
  margin: 0 auto;
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 14px 28px rgba(2, 8, 23, .06);
}

.products-page .product-detail-title{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  color: var(--brandDark);
}

.products-page .product-detail-desc{
  margin: 0;
  line-height: 1.55;
  color: rgba(15,23,42,.85);
}


/* === v3.5 düzeltme: ürün kutusu aktifken yazı kaybolmasın === */
.products-page .tile.tile-product.is-active{
  background:#fff;
  color:#0f172a;
}

/* === v3.5: ürün seçilince sadece detay ekranı === */
.products-page .product-detail-wrap{
  width: min(1200px, 100%);
  margin: 0 auto;
}
.products-page .product-detail-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin: 6px 0 14px 0;
}
.products-page .product-detail-back{
  border: 1px solid rgba(15,23,42,.12);
  background:#fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}
.products-page .product-detail-back:hover{
  filter: brightness(.98);
}
.products-page .product-detail-head{
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color:#0f172a;
}
@media (max-width: 820px){
  .products-page .product-detail-top{
    flex-direction: column;
    align-items: flex-start;
  }
  .products-page .product-detail-head{
    font-size: 20px;
  }
}

/* =========================================================
   PRODUCTS v3.6 - İstenen düzeltmeler

/* Utilities */
[hidden]{display:none !important;}

/* Ensure grids really hide */
.product-grid[hidden], .sub-tiles[hidden], .subcat-detail[hidden], .subcat-content-area[hidden]{display:none !important;}



/* =========================================================
   FINAL7 - Turkuaz tema + ortalama + ürün detayı turkuaz
   ========================================================= */

/* Sayfayı ortala (kart içindeki iki sütunu) */
.products-page .products-row{
  justify-content: center;
}

/* Sol menü renkleri */
.products-page{
  --nav: var(--brand);
}

.products-page .products-side a{
  border-radius: 14px;
  border: 1px solid rgba(32,152,160,.30);
  background: rgba(32,152,160,.14);
  color: var(--brand);
  font-weight: 800;
}

.products-page .products-side a:hover{
  background: rgba(32,152,160,.20);
}

.products-page .products-side a.active{
  background: var(--brand);
  color: #fff;
  border-color: rgba(32,152,160,.45);
}

/* Kutu (tile) renkleri - turkuaz ağırlıklı */
.products-page .tile{
  background: #fff;
  border: 1px solid rgba(32,152,160,.25);
  color: var(--brand);
}

.products-page .tile:hover{
  border-color: rgba(32,152,160,.45);
}

.products-page .tile.is-active{
  background: var(--brand);
  color:#fff;
  border-color: rgba(32,152,160,.55);
}

/* Ürün kutuları (grid) */
.products-page .tile.tile-product{
  background:#fff;
  border: 1px solid rgba(32,152,160,.22);
  color: var(--brand);
}

.products-page .tile.tile-product.is-active{
  background: rgba(32,152,160,.12);
  border-color: rgba(32,152,160,.45);
  color: var(--brand);
}

/* Ürün detay kutusu turkuaz */
.products-page .product-detail-box{
  background: var(--brand);
  border: 1px solid rgba(32,152,160,.55);
  box-shadow: 0 18px 40px rgba(2, 8, 23, .10);
}

.products-page .product-detail-title{
  color:#fff;
}

.products-page .product-detail-desc{
  color: rgba(255,255,255,.92);
}

/* Breadcrumb turkuaz */
.products-page .breadcrumb,
.products-page .crumb{
  color: rgba(32,152,160,.95);
}

.products-page .breadcrumb strong,
.products-page .crumb strong{
  color: var(--brand);
}

/* Geri butonları turkuaz */
.products-page .back-btn,
.products-page .product-detail-back{
  border-color: rgba(32,152,160,.45);
  color: var(--brand);
}

.products-page .back-btn:hover,
.products-page .product-detail-back:hover{
  background: rgba(32,152,160,.12);
}



/* =========================
   PRODUCTS PAGE - About sayfası görünümü (Turkuaz tema + ortalama)
   Bu blok sadece Products sayfasını etkiler.
========================= */

.products-page .about.products-area{
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand2) 100%);
  padding: clamp(80px, 11vh, 170px) 0;
  min-height: 78vh;
}

.products-page .about.products-area .container{
  width: min(1500px, calc(100% - 64px));
  margin: 0 auto;
  display:flex;
  justify-content:center; /* tüm içerik ortaya */
}

.products-page .products-card{
  width: min(1500px, 100%);
  border-radius: 18px;
  padding: clamp(26px, 3vw, 44px);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
}

/* Sol menü + sağ içerik: tek blok ve ortalı */
.products-page .products-split{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap: clamp(22px, 3vw, 44px);
}

/* Sol menü */
.products-page .products-sidebar{
  flex: 0 0 360px;
  max-width: 360px;
}

/* Sol menü kartı turkuaz */
.products-page .main-tiles{
  background: transparent;
}
.products-page .tile-row.main-tiles{
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 16px 35px rgba(0,0,0,.10);
}

/* Sol menü butonları */
.products-page .tile-row.main-tiles .tile{
  width:100%;
  text-align:left;
  padding: 18px 22px;
  font-weight: 900;
  letter-spacing: .2px;
  border: 0;
  background: rgba(255,255,255,.95);
  color: var(--brand);
}
.products-page .tile-row.main-tiles .tile.active,
.products-page .tile-row.main-tiles .tile[aria-current="true"]{
  background: var(--brand);
  color:#fff;
}

/* Sağ alan */
.products-page .products-main{
  flex: 1 1 860px;
  min-width: 720px;
}

/* Üst aksiyonlar */
.products-page .products-banner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.products-page .products-banner .btn,
.products-page .products-banner button{
  border: 1px solid rgba(32,152,160,.35);
  background: #fff;
  color: var(--brand);
  font-weight: 800;
}
.products-page .products-banner .btn:hover,
.products-page .products-banner button:hover{
  background: rgba(32,152,160,.08);
}

/* Sub-category / ürün kutuları: filigran yok, yazılar turkuaz */
.products-page .tile,
.products-page .tile.tile-sub{
  background-image: none !important;
}
.products-page .tile::before,
.products-page .tile::after{
  display:none !important;
}

.products-page .tile{
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0,0,0,.08);
  padding: 22px 22px;
  min-height: 78px;
}
.products-page .tile span,
.products-page .tile{
  color: var(--brand);
  font-weight: 900;
}

/* Seçili kutu */
.products-page .tile.is-active,
.products-page .tile.active{
  border-color: rgba(32,152,160,.55);
  box-shadow: 0 16px 32px rgba(32,152,160,.18);
}

/* Detay kutusu turkuaz arkaplan + beyaz yazı */
.products-page .product-panel .p-detail{
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand2) 100%);
  border: 0;
  color: #fff;
}
.products-page .product-panel .p-detail h3{
  color:#fff;
}
.products-page .product-panel .p-detail p{
  color: rgba(255,255,255,.95);
}

/* hidden kesin çalışsın */
.products-page [hidden]{
  display:none !important;
}

/* Responsive */
@media (max-width: 1150px){
  .products-page .products-split{
    flex-direction: column;
    align-items: stretch;
  }
  .products-page .products-sidebar{
    flex: 0 0 auto;
    max-width: none;
  }
  .products-page .products-main{
    min-width: 0;
  }
}


/* =========================
   PATCH: remove white panel background + remove watermark behind tiles
========================= */
.products-page .product-panel{
  background: transparent !important; /* remove the white area behind the buttons */
}

/* remove watermark / logo background behind tiles */
.products-page .products-main .tile.tile-sub::before,
.products-page .product-grid .tile::before,
.products-page .product-grid .tile::after{
  display:none !important;
  content:none !important;
}

/* ensure hidden attribute always works */
[hidden]{ display:none !important; }

/* make right area breathe a bit without solid background */
.products-page .products-panels{
  background: transparent !important;
}

/* optional: soften the panel inner padding so background doesn't look like a box */
.products-page .products-main{
  background: transparent !important;
}

/* =========================
   FINAL PATCH (23.01) – Turkuaz tema + iç beyaz paneli kaldır
   ========================= */
:root{
  --chimpol-turkuaz: #1f9aa2;
  --chimpol-turkuaz-dark: #177e85;
  --chimpol-turkuaz-soft: rgba(31,154,162,.10);
}

/* Sol menü: lacivert -> turkuaz, siyah metinler -> turkuaz */
.products-page .products-sidebar .tile-row .tile{
  color: var(--chimpol-turkuaz) !important;
}
.products-page .products-sidebar .tile-row .tile.is-active{
  background: var(--chimpol-turkuaz) !important;
  color:#fff !important;
}
.products-page .products-sidebar .tile-row .tile.is-active::after{
  border-left-color: var(--chimpol-turkuaz) !important;
}

/* Sol menü kartının lacivert kısmı varsa onu da turkuaza çek */
.products-page .left-menu .item.active,
.products-page .left-menu .item.active a,
.products-page .menu-card .menu-item.active,
.products-page .menu-card .menu-item.active a{
  background: var(--chimpol-turkuaz) !important;
  color:#fff !important;
}

/* Sağ içerikteki “iç beyaz kutu” (subcat-detail) tamamen şeffaf olsun */
.products-page .subcat-detail{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Üst bar (geri + breadcrumb) turkuaz vurgulu */
.products-page .subcat-back{
  border-color: rgba(31,154,162,.35) !important;
  color: var(--chimpol-turkuaz-dark) !important;
}
.products-page .subcat-back:hover{
  border-color: rgba(31,154,162,.55) !important;
}
.products-page .subcat-breadcrumb{
  color: var(--chimpol-turkuaz-dark) !important;
  opacity: .75;
}

/* İçerikteki ürün açıklama kartları – turkuaz dokunuş */
.products-page .subcat-content-area .p-item{
  background: #fff !important;
  border-color: rgba(31,154,162,.18) !important;
}
.products-page .subcat-content-area .p-item b{
  color: var(--chimpol-turkuaz-dark) !important;
}

/* Ürün kartları (tile-sub) metinleri turkuaz */
.products-page .tile.tile-sub,
.products-page .product-grid .product-card,
.products-page .product-grid .product-btn,
.products-page .product-grid .product-tile{
  color: var(--chimpol-turkuaz-dark) !important;
}

/* Seçili kart vurgusu turkuaz */
.products-page .tile.active,
.products-page .tile[aria-current="true"],
.products-page .product-grid .product-btn.active,
.products-page .product-grid .product-btn[aria-current="true"]{
  border-color: rgba(31,154,162,.55) !important;
  box-shadow: 0 10px 24px rgba(31,154,162,.18) !important;
}


/* Ek güvenlik: ürün paneli de şeffaf kalsın */
.products-page .product-panel,
.products-page .panel-body,
.products-page .products-main-inner{
  background: transparent !important;
  box-shadow: none !important;
}

/* =========================
   FINAL: Ürün butonlarındaki logo (watermark) kaldırıldı
   ========================= */
.products-page .products-main .tile.tile-sub::before,
.products-page .product-grid .tile::before,
.products-page .product-grid .product-item::before,
.products-page .product-grid .product-card::before,
.products-page .tile::before,
.products-page .tile::after{
  content: none !important;
  display: none !important;
  background: none !important;
}


/* === PATCH: remove logo watermark from product buttons (sub tiles) === */
.products-page .products-main .tile.tile-sub::before{
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
}

/* =========================================================
   MOBILE PATCH v2 (menu/nav untouched)
   - Keeps existing menu structure as-is
   - Aligns phone (left) and languages (right) on the row BELOW the menu
   - Enlarges product cards on mobile while keeping turquoise sides
   ========================================================= */
@media (max-width: 768px){

  /* ===== HEADER (do NOT change .nav) ===== */
  .header-inner{
    flex-wrap: wrap;
    align-items: center;
    row-gap: 8px;
  }

  /* Keep logo and nav in their natural DOM order.
     Only style phone + language block positioning/sizing. */

  .contact-info{
    /* next line, left */
    flex: 1 1 50%;
    text-align: left;
    white-space: nowrap;
    font-size: 12px;
    line-height: 1.1;
    margin: 0 !important;
  }
  .contact-info a{
    font-size: 12px;
    font-weight: 700;
  }

  .language-select{
    /* same line, right */
    flex: 0 0 auto;
    margin-left: auto !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    padding: 2px 6px;
  }
  .language-select .lang{ width: 28px; height: 28px; }
  .language-select img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px;
    display: block;
  }
  .language-select .sep{ margin: 0 4px; }

  /* If phone + languages still sit on same line as nav on some widths,
     force them to a new row without touching .nav styling: */
  .contact-info, .language-select{
    align-self: center;
  }

  /* ===== HOME PRODUCTS (Ürün Gruplarımız) ===== */
  .products .container{
    width: calc(100% - 36px);
    max-width: 600px;
    margin: 0 auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box;
  }

  .product-grid{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 18px;
  }

  .product-card{
    width: 100% !important;
    max-width: 540px;
    min-height: 210px !important;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
  }

  .product-card::before{
    background-position: center !important;
    background-size: cover !important;
  }

  .product-card span{
    font-size: 22px;
    font-weight: 900;
    line-height: 1.15;
    padding: 0 14px;
  }
}

/* =========================================================
   MOBILE OVERRIDE v3 (wider products section/cards)
   - Keeps previous v2 behavior, only widens products area on mobile
   ========================================================= */
@media (max-width: 768px){
  .products .container{
    width: calc(100% - 18px) !important; /* wider than v2, turquoise still visible */
    max-width: 680px !important;
  }
  .product-card{
    max-width: 620px !important;
    min-height: 220px !important;
  }
}
