
:root{
  --red:#ED2939;
  --blue:#004F98;
  --dark:#0f1b31;
  --text:#223149;
  --muted:#6d7b8f;
  --bg:#f7f9fc;
  --line:rgba(15,27,49,.08);
  --shadow:0 16px 42px rgba(15,27,49,.12);
  --radius:24px;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.6;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
.container{width:min(1200px, calc(100% - 32px));margin:auto}
.topbar{background:var(--blue);color:#fff;font-size:14px}
.topbar .container{
  display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap;padding:10px 0;
}
.navbar{
  position:fixed;top:0;left:0;width:100%;z-index:1000;
  background:transparent !important;
  border-bottom:none;
  box-shadow:none;
  backdrop-filter:blur(0px);
}
.navbar .container{
  display:flex;align-items:center;justify-content:space-between;gap:24px;padding:14px 0;
}
.brand{display:flex;align-items:center;gap:14px;min-width:0}
.brand img{
  width:92px;height:92px;object-fit:contain;background:#fff;border-radius:18px;
}
.brand-text strong{
  display:block;font-size:28px;line-height:1;color:#fff;letter-spacing:.3px;
}
.brand-text span{
  display:block;margin-top:6px;color:rgba(255,255,255,.85);font-weight:700;font-size:14px;
}
.menu{display:flex;gap:22px;align-items:center;flex-wrap:wrap}
.menu a{font-weight:700;color:#fff}
.menu a:hover{color:var(--red)}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  min-height:48px;padding:0 22px;border-radius:999px;font-weight:800;
  transition:.25s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-red{background:var(--red);color:#fff}
.btn-blue{background:var(--blue);color:#fff}
.hero{
  background: url('../img/ui/arka.1.png') center/cover no-repeat;
}
.hero .container{
  min-height:76vh;
  display:grid;grid-template-columns:1.08fr .92fr;gap:30px;align-items:center;padding:48px 0 54px;
}
.hero-logo{
  width:min(100%,440px);margin-bottom:18px;background:#fff;border-radius:28px;padding:18px;box-shadow:var(--shadow);
}
.hero h1{
  font-size:clamp(38px,6vw,70px);
  line-height:1.02;
  margin-bottom:18px;
  max-width:760px;
}
.hero p{
  font-size:18px;
  max-width:640px;
  color:rgba(255,255,255,.95);
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
.hero-panel{
  display:grid;grid-template-columns:repeat(2,1fr);gap:16px;
}
.hero-card{
  background:#fff;color:var(--dark);border-radius:24px;padding:22px;box-shadow:var(--shadow)
}
.hero-card strong{
  display:block;font-size:30px;color:var(--blue);margin-bottom:6px;
}
.section{padding:86px 0}
.section.alt{background:var(--bg)}
.section-head{margin-bottom:30px}
.eyebrow{
  display:inline-block;color:var(--red);font-weight:900;letter-spacing:.12em;text-transform:uppercase;font-size:13px;margin-bottom:12px;
}
.section-head h2{
  font-size:clamp(30px,4.5vw,50px);line-height:1.08;margin-bottom:12px;
}
.section-head p{
  color:var(--muted);max-width:780px;font-size:17px;
}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:26px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.grid-5{display:grid;grid-template-columns:repeat(5,1fr);gap:20px}

.card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);transition:.28s ease;
}
.card:hover{transform:translateY(-6px)}
.card-media{
  position:relative;height:290px;overflow:hidden;background:#eef2f8;
}
.card-media img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
.card:hover .card-media img{transform:scale(1.06)}
.card-media::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(to top, rgba(15,27,49,.55), rgba(15,27,49,.08));
}
.card-body{padding:26px}
.tag{
  display:inline-flex;padding:8px 12px;border-radius:999px;background:rgba(237,41,57,.1);color:var(--red);font-size:13px;font-weight:900;
}
.card-body h3{
  margin:16px 0 10px;font-size:30px;line-height:1.1;color:var(--blue)
}
.card-body p{color:var(--muted);margin-bottom:18px}
.tip{
  margin-top:16px;padding:12px 14px;background:#eff6ff;border-radius:14px;color:var(--blue);font-size:14px;font-weight:700;
}
.link-strong{font-weight:900;color:var(--blue)}
.split{display:grid;grid-template-columns:1fr 1fr;gap:28px;align-items:center}
.panel{
  background:#fff;border:1px solid var(--line);border-radius:28px;padding:30px;box-shadow:var(--shadow)
}
.features{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-top:20px}
.feature{
  border:1px solid var(--line);border-radius:20px;padding:18px;background:#fff
}
.feature h4{color:var(--blue);margin-bottom:8px;font-size:18px}
.feature p{color:var(--muted)}
.ref-box{
  height:112px;background:#fff;border:1px solid var(--line);border-radius:20px;box-shadow:var(--shadow);display:grid;place-items:center;font-weight:900;color:var(--blue)
}
.map{
  border-radius:28px;overflow:hidden;border:1px solid var(--line);box-shadow:var(--shadow)
}
.map iframe{width:100%;height:420px;border:0}
.footer{
  background:var(--dark);color:#d7dfeb;padding:56px 0 24px
}
.footer-grid{display:grid;grid-template-columns:1.1fr .9fr .9fr;gap:24px}
.footer h4{margin-bottom:14px;color:#fff}
.footer ul{list-style:none}
.footer p,.footer li{color:#d7dfeb}
.copy{margin-top:24px;padding-top:20px;border-top:1px solid rgba(255,255,255,.08);color:#99a9c0;font-size:14px}

.page-hero{
  background:linear-gradient(120deg, var(--blue), var(--red));color:#fff;padding:74px 0;
}
.page-hero h1{
  font-size:clamp(36px,5vw,60px);line-height:1.05;margin-bottom:10px;
}
.page-hero p{max-width:760px;color:rgba(255,255,255,.96)}
.category-card .card-media{height:220px}
.product-card .card-media{height:220px}
.product-card .card-media::after{display:none}
.chips{display:flex;gap:8px;flex-wrap:wrap;margin:12px 0 14px}
.chip{
  display:inline-flex;padding:7px 10px;border-radius:999px;background:#eff6ff;color:var(--blue);font-size:12px;font-weight:900;
}
.price{font-size:20px;font-weight:900;color:var(--red)}
.note{
  background:#fff1f2;color:#be123c;border:1px solid rgba(190,18,60,.14);padding:14px 16px;border-radius:16px;margin-bottom:24px;
}
@media (max-width:1080px){
  .hero .container,.grid-4,.grid-5,.grid-3,.split,.footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:760px){
  .menu{display:none}
  .hero .container,.grid-2,.grid-3,.grid-4,.grid-5,.split,.features,.footer-grid,.hero-panel{grid-template-columns:1fr}
  .hero-card strong{font-size:26px}
  .brand img{width:74px;height:74px}
  .brand-text strong{font-size:22px}
  .section{padding:68px 0}
  .card-media,.category-card .card-media,.product-card .card-media{height:220px}
}


/* Added: mobile menu helper, whatsapp button, values section, modal */
.menu a.menu-cta{
  background:var(--red);
  color:#fff;
  padding:12px 18px;
  border-radius:999px;
}
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.value-card{
  background:#fff;border:1px solid var(--line);border-radius:24px;
  box-shadow:var(--shadow);padding:28px;
}
.value-card h3{font-size:24px;color:var(--blue);margin-bottom:10px}
.value-card p{color:var(--muted)}
.whatsapp-float{
  position:fixed;right:22px;bottom:22px;z-index:150;
  width:62px;height:62px;border-radius:50%;
  background:#25D366;color:#fff;display:flex;align-items:center;justify-content:center;
  box-shadow:0 18px 36px rgba(37,211,102,.35);
}
.whatsapp-float svg{width:30px;height:30px;fill:currentColor}
.product-card{cursor:pointer}
.product-card .zoom-text{margin-top:12px;color:var(--blue);font-weight:900;font-size:14px}
.image-modal{
  position:fixed;inset:0;background:rgba(8,15,28,.82);z-index:500;
  display:none;align-items:center;justify-content:center;padding:24px;
}
.image-modal.active{display:flex}
.image-modal-dialog{
  width:min(1080px,100%);background:#fff;border-radius:28px;overflow:hidden;
  box-shadow:0 24px 70px rgba(0,0,0,.35);
}
.image-modal-grid{display:grid;grid-template-columns:1.1fr .9fr}
.image-modal-media{background:#eef2f8;min-height:420px}
.image-modal-media img{width:100%;height:100%;object-fit:cover}
.image-modal-body{padding:30px}
.image-modal-body h3{font-size:34px;line-height:1.1;color:var(--blue);margin-bottom:12px}
.image-modal-body p{color:var(--muted);margin-bottom:18px}
.image-modal-close{
  position:absolute;top:14px;right:14px;width:46px;height:46px;border:none;border-radius:50%;
  background:rgba(15,27,49,.92);color:#fff;font-size:24px;cursor:pointer;
}
@media (max-width:760px){
  .values-grid,.image-modal-grid{grid-template-columns:1fr}
  .image-modal-body{padding:22px}
  .image-modal-media{min-height:280px}
  .whatsapp-float{right:16px;bottom:16px;width:58px;height:58px}
}


/* --- senayapi-inspired header and hero updates --- */
.topbar{display:none}
.navbar{
  position:relative;
  top:auto;
  background:
    linear-gradient(rgba(9,7,6,.78), rgba(9,7,6,.78)),
    url('../img/ui/hero-placeholder.jpg') center/cover no-repeat;
  border-bottom:none;
  backdrop-filter:none;
}
.navbar .container{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:26px;
  padding:20px 0 16px;
}
.brand{
  color:#fff;
  align-items:center;
}
.brand img{
  width:78px;
  height:78px;
  background:transparent;
  border-radius:0;
}
.brand-text strong{
  color:#fff;
  font-size:30px;
  line-height:1;
}
.brand-text span{
  color:#fff;
  opacity:.92;
  font-size:14px;
  margin-top:6px;
}
.brand-text .stack-center{
  display:block;
  text-align:center;
  width:100%;
}
.nav-center{
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:14px;
}
.header-actions{
  display:flex;
  align-items:center;
  gap:18px;
  justify-content:flex-end;
}
.header-action{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  min-width:0;
}
.header-action-icon{
  width:46px;height:46px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  color:var(--red);
  background:rgba(255,255,255,.05);
  font-size:22px;
  flex-shrink:0;
}
.header-action small{
  display:block;
  color:rgba(255,255,255,.72);
  font-size:12px;
  margin-bottom:2px;
}
.header-action strong{
  display:block;
  font-size:14px;
  line-height:1.3;
  font-weight:800;
  color:#fff;
}
.header-divider{
  width:1px;
  height:44px;
  background:rgba(255,255,255,.18);
}
.menu{
  gap:24px;
}
.menu a{
  color:#fff;
  font-weight:800;
  font-size:15px;
}
.menu a.menu-cta{
  background:var(--red);
  padding:14px 22px;
}
.hero{
  background: url('../img/ui/arka.1.png') center/cover no-repeat;
}
.hero .container{
  min-height:54vh;
  align-items:end;
  grid-template-columns:1.1fr .9fr;
  padding:42px 0 52px;
}
.hero-logo{
  display:none;
}
.hero-panel{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  justify-content:center;
  gap:16px;
}
.hero-panel h1{
  font-size:clamp(42px,6vw,70px);
  line-height:1;
  margin:0;
  text-transform:uppercase;
  letter-spacing:.02em;
  text-align:right;
}
.hero-panel h1 .subline{
  display:block;
  text-align:center;
  font-size:clamp(24px,3vw,36px);
  letter-spacing:.16em;
  margin-top:8px;
}
.hero-panel h2{
  font-size:20px !important;
  line-height:1.4;
  margin:0;
  text-align:right;
  max-width:640px;
  color:rgba(255,255,255,.92);
}
.hero-panel .hero-buttons{
  display:flex;
  gap:14px;
  justify-content:flex-end;
  flex-wrap:wrap;
  margin-top:12px;
}
.section-title-inline{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.extra-categories{
  margin-top:34px;
}
.mini-card-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.mini-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.mini-card .card-media{
  height:190px;
}
.mini-card .card-body{
  padding:18px;
}
.mini-card h4{
  font-size:20px;
  line-height:1.15;
  color:var(--blue);
  margin-bottom:8px;
}
.mini-card p{
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}
@media (max-width:1080px){
  .navbar .container{
    grid-template-columns:1fr;
    align-items:flex-start;
  }
  .nav-center{
    width:100%;
  }
  .header-actions{
    width:100%;
    flex-wrap:wrap;
    justify-content:flex-start;
  }
  .mini-card-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media (max-width:760px){
  .navbar .container{
    padding:16px 0 14px;
    gap:14px;
  }
  .brand img{
    width:58px;height:58px;
  }
  .brand-text strong{
    font-size:24px;
  }
  .brand-text span{
    font-size:12px;
  }
  .menu{
    width:100%;
    gap:10px 14px;
  }
  .header-actions{
    gap:12px;
  }
  .header-action{
    width:100%;
  }
  .header-divider{
    display:none;
  }
  .header-action-icon{
    width:42px;height:42px;font-size:20px;
  }
  .hero .container{
    grid-template-columns:1fr;
    min-height:auto;
    padding:34px 0 40px;
    gap:20px;
  }
  .hero-panel{
    align-items:flex-start;
  }
  .hero-panel h1{
    text-align:left;
    font-size:34px;
  }
  .hero-panel h1 .subline{
    text-align:left;
    letter-spacing:.12em;
    font-size:22px;
  }
  .hero-panel h2{
    text-align:left;
    font-size:16px !important;
  }
  .hero-panel .hero-buttons{
    justify-content:flex-start;
  }
  .mini-card-grid{
    grid-template-columns:1fr;
  }
}


/* --- v3 menu + centered hero fixes --- */
.nav-center{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  width:100%;
}

.menu{
  display:flex !important;
  flex-wrap:nowrap;
  align-items:center;
  justify-content:center;
  gap:22px;
  width:auto;
}

.menu-item{
  position:relative;
  display:flex;
  align-items:center;
}

.menu-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  white-space:nowrap;
}

.menu-arrow{
  font-size:11px;
  opacity:.85;
  transform:translateY(1px);
}

.dropdown{
  position:absolute;
  top:calc(100% + 14px);
  left:0;
  min-width:240px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:10px;
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:.22s ease;
  z-index:120;
}

.dropdown a{
  display:block;
  color:var(--text) !important;
  font-size:14px;
  font-weight:700;
  padding:11px 12px;
  border-radius:12px;
  white-space:nowrap;
}

.dropdown a:hover{
  background:#f5f8ff;
  color:var(--blue) !important;
}

.menu-item:hover .dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.hero-panel{
  align-items:center !important;
  justify-content:center;
  text-align:center !important;
}

.hero-panel h1{
  width:100%;
  text-align:center !important;
}

.hero-panel h1 .subline{
  display:block;
  width:100%;
  text-align:center !important;
}

.hero-panel h2{
  text-align:center !important;
  margin:0 auto;
}

.hero-panel .hero-buttons{
  justify-content:center !important;
}

@media (max-width:1080px){
  .menu{
    flex-wrap:wrap;
    justify-content:flex-start;
    width:100%;
  }
}

@media (max-width:760px){
  .nav-center{
    align-items:flex-start;
  }
  .menu{
    flex-wrap:wrap !important;
    width:100% !important;
    justify-content:flex-start;
    gap:10px 14px;
  }
  .menu-item{
    width:auto;
  }
  .dropdown{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    min-width:100%;
    margin-top:8px;
    padding:8px;
    display:none;
  }
  .menu-item.open .dropdown{
    display:block;
  }
  .menu-link{
    width:100%;
  }
}


/* --- v4 fixes --- */
.navbar .container{
  grid-template-columns:auto minmax(0,1fr) auto;
}
.nav-center{
  min-width:0;
}
.menu{
  gap:16px;
}
.menu a,
.menu-link{
  font-size:14px;
}
.header-actions{
  flex-wrap:nowrap;
}
.header-actions .menu-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--red);
  color:#fff;
  padding:14px 20px;
  border-radius:999px;
  font-weight:800;
  white-space:nowrap;
}
.page-hero{
  background:
    linear-gradient(115deg, rgba(0,79,152,.72), rgba(237,41,57,.64)),
    url('../img/ui/hero-placeholder.jpg') center/cover no-repeat;
}
.page-hero .container{
  text-align:center;
}
.page-hero h1,
.page-hero p{
  margin-left:auto;
  margin-right:auto;
}
.mini-card-grid{
  grid-template-columns:repeat(3,1fr);
}
@media (max-width:1280px){
  .navbar .container{
    grid-template-columns:1fr;
    gap:16px;
  }
  .header-actions{
    flex-wrap:wrap;
    justify-content:flex-start;
  }
  .menu{
    flex-wrap:wrap;
    justify-content:flex-start;
  }
}
@media (max-width:760px){
  .header-actions .menu-cta{
    padding:12px 16px;
  }
  .mini-card-grid{
    grid-template-columns:1fr;
  }
}


/* --- v5 header and decorative grid fixes --- */
.navbar{
  padding: 0;
}
.navbar .container{
  grid-template-columns: auto minmax(0,1fr) auto !important;
  align-items: center !important;
  gap: 36px !important;
  padding: 22px 0 18px !important;
}

.brand{
  gap: 16px !important;
  align-items: center !important;
}
.brand img{
  width: 84px !important;
  height: 84px !important;
}
.brand-text{
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.brand-text strong{
  font-size: 31px !important;
  line-height: 1 !important;
  white-space: nowrap;
}
.brand-text .stack-center{
  margin-top: 6px !important;
  font-size: 15px !important;
  letter-spacing: .16em;
}

.nav-center{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-width:0;
}

.menu{
  display:flex !important;
  flex-wrap: nowrap !important;
  align-items:center !important;
  justify-content:center !important;
  gap: 24px !important;
  width:auto !important;
}
.menu-item{
  position:relative;
  display:flex;
  align-items:center;
}
.menu-link{
  display:inline-flex;
  align-items:center;
  gap:7px;
  white-space:nowrap;
  font-size:15px !important;
  line-height:1.2;
  padding: 8px 0;
}

.header-actions{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:18px !important;
  flex-wrap: nowrap !important;
}
.header-action{
  display:flex;
  align-items:center;
  gap:12px;
}
.header-action small{
  white-space:nowrap;
}
.header-action strong{
  white-space:nowrap;
}
.header-actions .menu-cta{
  white-space:nowrap;
  padding:14px 20px !important;
  min-width: fit-content;
}

.dropdown{
  top: calc(100% + 12px);
}

.extra-categories{
  margin-top:0 !important;
}
.decorative-all-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.decorative-all-grid .card-media{
  height:220px;
}
.decorative-all-grid .card-body{
  padding:22px;
}
.decorative-all-grid h3{
  font-size:26px;
  margin:14px 0 8px;
}

@media (max-width: 1360px){
  .navbar .container{
    grid-template-columns:1fr !important;
    align-items:flex-start !important;
    gap:18px !important;
  }
  .nav-center{
    width:100%;
    justify-content:flex-start !important;
  }
  .menu{
    flex-wrap:wrap !important;
    justify-content:flex-start !important;
    gap:14px 18px !important;
  }
  .header-actions{
    flex-wrap:wrap !important;
    justify-content:flex-start !important;
  }
}

@media (max-width: 760px){
  .navbar .container{
    gap:14px !important;
    padding:16px 0 14px !important;
  }
  .brand img{
    width:58px !important;
    height:58px !important;
  }
  .brand-text strong{
    font-size:21px !important;
    white-space:normal;
  }
  .brand-text .stack-center{
    font-size:12px !important;
    letter-spacing:.12em;
    text-align:left !important;
  }
  .menu{
    width:100% !important;
    gap:10px 14px !important;
  }
  .header-action,
  .header-actions .menu-cta{
    width:auto;
  }
  .decorative-all-grid{
    grid-template-columns:1fr;
  }
}


/* --- v6 hard header fix --- */
.navbar{
  width:100%;
  overflow:visible;
}
.navbar .container{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:24px !important;
  flex-wrap:wrap !important;
  padding:18px 0 !important;
}
.brand{
  display:flex !important;
  align-items:center !important;
  gap:14px !important;
  flex:0 0 auto !important;
  min-width:260px;
}
.brand img{
  width:72px !important;
  height:72px !important;
}
.brand-text{
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
}
.brand-text strong{
  font-size:28px !important;
  line-height:1 !important;
}
.brand-text .stack-center{
  text-align:left !important;
  letter-spacing:.10em !important;
  margin-top:4px !important;
  font-size:14px !important;
}

.nav-center{
  flex:1 1 420px !important;
  min-width:320px !important;
  display:flex !important;
  justify-content:center !important;
}
.menu{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex-wrap:wrap !important;
  gap:12px 18px !important;
  width:100% !important;
}
.menu-item{
  position:relative;
}
.menu-link{
  font-size:14px !important;
  font-weight:800 !important;
  line-height:1.2 !important;
  padding:6px 0 !important;
}
.menu-arrow{
  font-size:10px !important;
}
.dropdown{
  min-width:220px !important;
  max-width:280px;
  z-index:999 !important;
}

.header-actions{
  flex:0 1 auto !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  flex-wrap:wrap !important;
  gap:12px !important;
  min-width:260px;
}
.header-action{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
}
.header-action-icon{
  width:42px !important;
  height:42px !important;
  font-size:18px !important;
}
.header-action small{
  font-size:11px !important;
}
.header-action strong{
  font-size:13px !important;
  line-height:1.25 !important;
}
.header-divider{
  display:none !important;
}
.header-actions .menu-cta{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  white-space:nowrap !important;
  padding:12px 18px !important;
  font-size:14px !important;
  border-radius:999px !important;
}

@media (max-width:1180px){
  .navbar .container{
    align-items:flex-start !important;
  }
  .nav-center{
    order:3;
    flex:1 1 100% !important;
    min-width:100% !important;
    justify-content:flex-start !important;
  }
  .menu{
    justify-content:flex-start !important;
  }
  .header-actions{
    justify-content:flex-end !important;
    margin-left:auto;
  }
}

@media (max-width:760px){
  .navbar .container{
    gap:14px !important;
    padding:14px 0 !important;
  }
  .brand{
    min-width:0;
    width:100%;
  }
  .brand img{
    width:56px !important;
    height:56px !important;
  }
  .brand-text strong{
    font-size:22px !important;
  }
  .brand-text .stack-center{
    font-size:12px !important;
  }
  .nav-center{
    order:2;
    min-width:100% !important;
  }
  .menu{
    gap:10px 14px !important;
  }
  .menu-link{
    font-size:13px !important;
  }
  .dropdown{
    min-width:100% !important;
    max-width:none !important;
  }
  .header-actions{
    order:3;
    width:100%;
    min-width:100%;
    justify-content:flex-start !important;
    gap:10px !important;
  }
  .header-action{
    width:100%;
  }
  .header-actions .menu-cta{
    width:auto !important;
  }
}


/* --- v7 hero size + new categories --- */
.hero{
  min-height: 78vh;
}
.hero .container{
  min-height: 78vh !important;
  padding-top: 54px !important;
  padding-bottom: 54px !important;
}
.page-hero{
  min-height: 46vh;
  display:flex;
  align-items:center;
}
.page-hero .container{
  min-height: 46vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.decorative-all-grid{
  grid-template-columns:repeat(3,1fr) !important;
}
@media (max-width: 980px){
  .decorative-all-grid{
    grid-template-columns:repeat(2,1fr) !important;
  }
}
@media (max-width: 760px){
  .hero,
  .hero .container{
    min-height: 62vh !important;
  }
  .page-hero,
  .page-hero .container{
    min-height: 34vh !important;
  }
  .decorative-all-grid{
    grid-template-columns:1fr !important;
  }
}


/* center hero text fix */
.hero{
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero .container{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
}
.hero-panel{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center !important;
  justify-content:center;
  text-align:center !important;
}
.hero-panel h1,
.hero-panel h2{
  text-align:center !important;
}
.hero-panel h1 .subline{
  text-align:center !important;
}
.hero-buttons{
  justify-content:center !important;
}





/* restore header normal flow */
.header-actions{
  position:static !important;
  display:flex;
  align-items:center;
  gap:14px;
}

.nav-center{
  margin-right:0 !important;
}


/* dual map section */
.location-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:10px 0 24px;
}
.location-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:999px;
  background:var(--blue);
  color:#fff;
  font-weight:800;
  box-shadow:var(--shadow);
}
.location-link:hover{
  background:var(--red);
}
.map-dual{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.map-box{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.map-label{
  font-size:24px;
  font-weight:900;
  color:var(--blue);
}
@media (max-width:760px){
  .map-dual{
    grid-template-columns:1fr;
  }
  .map-label{
    font-size:20px;
  }
}


.hero{background: url('../img/ui/arka.1.png') center/cover no-repeat !important;}

.page-hero{display:none !important;}

/* === Çeto fix: ürün modal görsel alanı büyütme + indirme zorlaştırma === */
.image-modal{
  padding: 0;
}
.image-modal-dialog{
  width: min(96vw, 1600px);
  max-height: 88vh;
  border-radius: 28px;
}
.image-modal-grid{
  display: grid;
  grid-template-columns: minmax(0, 80vw) minmax(320px, 380px);
  min-height: 80vh;
}
.image-modal-media{
  width: 100%;
  min-height: 80vh;
  background: #eef2f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.image-modal-media img{
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}
.image-modal-body{
  position: relative;
  overflow-y: auto;
}
.product-card img,
.image-modal-media img{
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}
@media (max-width: 900px){
  .image-modal-dialog{width: 96vw; max-height: 94vh; overflow-y: auto;}
  .image-modal-grid{grid-template-columns: 1fr; min-height: auto;}
  .image-modal-media{min-height: 70vh; height: 70vh;}
  .image-modal-body{padding: 22px;}
}

/* === Çeto fix: modal kapatma tuşu çalışsın === */
.image-modal-dialog{
  position: relative;
}
.image-modal-close{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 9999;
  pointer-events: auto;
}


/* --- Çeto ekleme: Safari/Apple görsel indirme zorlaştırma --- */
html, body, img, a, .card, .product-card, .image-modal {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

/* --- Çeto ekleme: Ana sayfa kayan görsel / hero slider --- */
.hero-slider {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  background: #0f1b31;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 900ms ease, transform 6000ms ease;
  display: flex;
  align-items: center;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 12, 24, .82), rgba(7, 12, 24, .45), rgba(7, 12, 24, .18));
}
.hero-slide-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  color: #fff;
  padding: 80px 0;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(237, 41, 57, .92);
  color: #fff;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 18px;
}
.hero-slide-content h1 {
  max-width: 780px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.02;
  margin: 0 0 18px;
  color: #fff;
}
.hero-slide-content p {
  max-width: 640px;
  font-size: clamp(16px, 2vw, 21px);
  color: rgba(255,255,255,.92);
  margin-bottom: 28px;
}
.btn-glass {
  color: #fff;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(15, 27, 49, .45);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: .25s ease;
}
.hero-slider-btn:hover { background: var(--red); border-color: var(--red); }
.hero-slider-prev { left: 24px; }
.hero-slider-next { right: 24px; }
.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}
.hero-slider-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  cursor: pointer;
  transition: .25s ease;
}
.hero-slider-dot.active {
  width: 32px;
  background: var(--red);
}
@media (max-width: 760px) {
  .hero-slider { min-height: 66vh; }
  .hero-slide-overlay { background: linear-gradient(90deg, rgba(7, 12, 24, .88), rgba(7, 12, 24, .50)); }
  .hero-slide-content { width: calc(100% - 34px); padding: 54px 0 74px; }
  .hero-slider-btn { display: none; }
  .hero-slide-content h1 { font-size: 34px; }
  .hero-slide-content p { font-size: 16px; }
}


/* --- v8 sticky navbar + e-katalog button --- */
.navbar{
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  background: transparent !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none !important;
}
.catalog-cta{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  white-space:nowrap !important;
  padding:12px 18px !important;
  font-size:14px !important;
  font-weight:900 !important;
  border-radius:999px !important;
  color:#fff !important;
  background:#004F98 !important;
  text-decoration:none !important;
  box-shadow:0 10px 24px rgba(0,79,152,.22);
  transition:transform .2s ease, filter .2s ease;
}
.catalog-cta:hover{
  transform:translateY(-2px);
  filter:brightness(1.08);
}
@media (max-width:760px){
  .catalog-cta{
    padding:11px 16px !important;
    font-size:13px !important;
  }
}

/* --- v9 Sena Yapı tarzı header/navbar --- */
body{
  padding-top:0 !important;
}
.navbar{
  position:fixed !important;
  top:0 !important;
  left:0 !important;
  width:100% !important;
  z-index:99999 !important;
  background:transparent !important;
  box-shadow:none !important;
  border:0 !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
}
.navbar .container{
  width:min(1220px, calc(100% - 38px)) !important;
  display:grid !important;
  grid-template-columns:330px minmax(0, 1fr) auto !important;
  grid-template-areas:
    "brand nav nav"
    "info info actions" !important;
  align-items:center !important;
  gap:12px 28px !important;
  padding:18px 0 12px !important;
}
.brand{
  grid-area:brand !important;
  display:flex !important;
  align-items:center !important;
  gap:14px !important;
  color:#fff !important;
  min-width:0 !important;
}
.brand img{
  width:76px !important;
  height:76px !important;
  object-fit:contain !important;
  background:transparent !important;
  border-radius:0 !important;
  padding:0 !important;
  box-shadow:none !important;
}
.brand-text strong{
  color:#fff !important;
  font-size:30px !important;
  font-weight:900 !important;
  line-height:1.02 !important;
  text-shadow:0 2px 12px rgba(0,0,0,.35) !important;
}
.brand-text span,
.brand-text .stack-center{
  color:#fff !important;
  font-size:15px !important;
  font-weight:900 !important;
  letter-spacing:.04em !important;
  margin-top:4px !important;
  text-shadow:0 2px 12px rgba(0,0,0,.35) !important;
}
.nav-center{
  grid-area:nav !important;
  justify-self:end !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  min-width:0 !important;
}
.menu{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:25px !important;
  flex-wrap:nowrap !important;
}
.menu-link,
.menu a{
  color:#fff !important;
  font-size:15px !important;
  font-weight:900 !important;
  text-shadow:0 2px 12px rgba(0,0,0,.42) !important;
}
.menu a:hover,
.menu-link:hover{
  color:#ED2939 !important;
}
.dropdown{
  background:#fff !important;
  border-radius:14px !important;
  box-shadow:0 20px 45px rgba(0,0,0,.18) !important;
  border:0 !important;
}
.dropdown a{
  color:#223149 !important;
  text-shadow:none !important;
}
.header-actions{
  grid-area:info / info / actions / actions !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:12px !important;
  flex-wrap:wrap !important;
  min-width:0 !important;
}
.header-action{
  display:flex !important;
  align-items:center !important;
  gap:9px !important;
  color:#fff !important;
  text-shadow:0 2px 12px rgba(0,0,0,.4) !important;
}
.header-action small{
  display:block !important;
  color:rgba(255,255,255,.88) !important;
  font-size:12px !important;
  line-height:1.1 !important;
}
.header-action strong{
  color:#fff !important;
  font-size:15px !important;
  line-height:1.1 !important;
  font-weight:900 !important;
  white-space:nowrap !important;
}
.header-action-icon{
  width:42px !important;
  height:42px !important;
  border-radius:12px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:rgba(255,255,255,.12) !important;
  border:1px solid rgba(255,255,255,.18) !important;
  color:#ED2939 !important;
  box-shadow:none !important;
}
.header-divider{
  display:none !important;
}
.catalog-cta{
  margin-left:auto !important;
  background:#ED2939 !important;
  color:#fff !important;
  border:0 !important;
  border-radius:999px !important;
  padding:13px 21px !important;
  font-size:15px !important;
  font-weight:900 !important;
  box-shadow:0 12px 28px rgba(237,41,57,.28) !important;
}
.menu-cta{
  background:#25D366 !important;
  color:#fff !important;
  border-radius:999px !important;
  padding:13px 22px !important;
  font-weight:900 !important;
  box-shadow:0 12px 28px rgba(37,211,102,.24) !important;
}
.hero-slider{
  margin-top:0 !important;
  padding-top:0 !important;
}
.navbar.navbar-scrolled,
.navbar.scrolled{
  background:rgba(4, 10, 22, .62) !important;
  backdrop-filter:blur(12px) !important;
  -webkit-backdrop-filter:blur(12px) !important;
}
@media (max-width:980px){
  .navbar .container{
    grid-template-columns:1fr !important;
    grid-template-areas:"brand" "nav" "actions" !important;
    gap:12px !important;
    padding:12px 0 !important;
  }
  .nav-center,
  .menu{
    justify-self:start !important;
    justify-content:flex-start !important;
    flex-wrap:wrap !important;
    gap:14px !important;
  }
  .header-actions{
    grid-area:actions !important;
    justify-content:flex-start !important;
  }
  .brand img{width:58px !important;height:58px !important;}
  .brand-text strong{font-size:23px !important;}
}
@media (max-width:620px){
  .header-action{display:none !important;}
  .menu{gap:10px !important;}
  .menu-link,.menu a{font-size:13px !important;}
  .catalog-cta,.menu-cta{padding:10px 14px !important;font-size:13px !important;}
}
