:root{
  --bg:#07080b;
  --bg2:#0b0d12;
  --card:rgba(18,20,28,.62);
  --card2:rgba(12,13,18,.72);
  --text:#f2f4f8;
  --muted:rgba(242,244,248,.72);
  --line:rgba(255,255,255,.12);
  --accent:#ff6a2a;
  --accent2:#ff3f1a;
  --shadow: 0 18px 40px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 26px;
  --max: 1200px;
  --blur: blur(16px);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 80% 10%, rgba(255,106,42,.18), transparent 60%),
              radial-gradient(900px 500px at 20% 60%, rgba(255,106,42,.12), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}
.kicker{letter-spacing:.18em; text-transform:uppercase; font-weight:700; font-size:.78rem; color:rgba(255,255,255,.68)}
.h1{font-size: clamp(2.1rem, 3.2vw, 3.4rem); line-height:1.05; margin:.3rem 0 1rem}
.h2{font-size: clamp(1.6rem, 2.4vw, 2.4rem); line-height:1.1; margin:0 0 .75rem}
.p{color:var(--muted); line-height:1.7; margin:0}
.small{color:rgba(242,244,248,.65); font-size:.95rem; line-height:1.6}
.hr{
  height:1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.20), transparent);
  margin: 18px 0;
}

/* Nav */
.nav{
  position: sticky; top:0; z-index:50;
  backdrop-filter: var(--blur);
  background: linear-gradient(180deg, rgba(0,0,0,.58), rgba(0,0,0,.18));
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; padding: 14px 0}
.brand{display:flex; align-items:center; gap:12px}
.brand .mark{
  width:42px; height:42px; border-radius:12px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  display:grid; place-items:center;
  box-shadow: 0 12px 24px rgba(0,0,0,.35);
}
.brand .mark img{width:28px; height:28px}
.brand .title{display:flex; flex-direction:column; line-height:1.05}
.brand .title strong{font-family: Georgia, "Times New Roman", serif; letter-spacing:.06em; font-size:1.08rem}
.brand .title span{font-size:.76rem; color:rgba(255,255,255,.56)}

.links{display:flex; align-items:center; gap:22px}
.links a{
  font-size:.95rem; color:rgba(255,255,255,.75);
  padding:8px 10px; border-radius:12px;
  transition: all .2s ease;
}
.links a:hover{color:rgba(255,255,255,.95); background: rgba(255,255,255,.06)}
.links a.active{color:white; background: rgba(255,106,42,.12); border:1px solid rgba(255,106,42,.22)}
.cta{
  display:flex; align-items:center; gap:10px;
}
.btn{
  border:0; cursor:pointer;
  padding: 12px 16px; border-radius: 14px;
  color:white; font-weight:700; letter-spacing:.01em;
  background: linear-gradient(180deg, var(--accent), #df4b1e);
  box-shadow: 0 14px 30px rgba(255,106,42,.24);
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover{transform: translateY(-1px); filter: brightness(1.02)}
.btn:active{transform: translateY(0px)}
.btn.secondary{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  box-shadow: none;
  color: rgba(255,255,255,.92);
}
.burger{display:none; width:42px; height:42px; border-radius:14px; border:1px solid rgba(255,255,255,.14); background:rgba(255,255,255,.06); color:white; cursor:pointer}
.burger svg{width:22px; height:22px}

/* Hero */
.hero{
  position:relative;
  padding: 68px 0 40px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .85fr;
  gap: 28px;
  align-items:center;
}
.hero-card{
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero-card .overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 280px at 70% 25%, rgba(255,106,42,.30), transparent 55%),
    radial-gradient(800px 260px at 20% 82%, rgba(255,106,42,.20), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.55));
  pointer-events:none;
}
.hero-card img{width:100%; height: 420px; object-fit:cover; opacity:.85; transform: scale(1.02)}
.hero-copy{
  position:relative;
  padding: 20px 0;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.pillrow{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  font-weight:600; font-size:.9rem;
}
.pill i{width:10px; height:10px; border-radius:999px; background: var(--accent); box-shadow:0 0 0 5px rgba(255,106,42,.15)}

/* Sections */
.section{padding: 42px 0}
.grid2{display:grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items:stretch}
.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px}
.card{
  border-radius: var(--radius);
  background: var(--card);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
  backdrop-filter: var(--blur);
}
.card.pad{padding: 18px}
.card.pad-lg{padding: 22px}
.card-title{font-weight:800; letter-spacing:.01em; margin:0 0 8px}
.icon{
  width:44px; height:54px; border-radius:14px;
  display:grid; place-items:center;
  background: rgba(255,106,42,.14);
  border: 1px solid rgba(255,106,42,.24);
}
.icon svg{width:22px; height:22px; fill:none; stroke:white; stroke-width:2}

/* Slider */
.slider{
  position:relative;
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  min-height: 360px;
}
.slide{
  position:absolute; inset:0;
  opacity:0; transform: scale(1.02);
  transition: opacity .6s ease, transform 1s ease;
}
.slide.active{opacity:1; transform: scale(1.0)}
.slide img{width:100%; height: 460px; object-fit: cover; opacity:.78}
.slide .shade{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,0.15),rgba(0,0,0,0.25));}
.slide .content{
  position:absolute; left:26px; bottom:22px;
  width:min(640px, calc(100% - 52px));
}
.slide .content h3{margin:.2rem 0 .6rem; font-size: clamp(1.25rem, 2vw, 1.7rem)}
.slide .content p{margin:0; color:rgba(255,255,255,.78); line-height:1.6}
.slider-nav{
  position:absolute; right:18px; top:18px;
  display:flex; gap:8px;
}
.sbtn{
  width:40px; height:40px; border-radius:14px;
  background: rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter: var(--blur);
  display:grid; place-items:center;
  cursor:pointer;
  transition: transform .15s ease;
}
.sbtn:hover{transform: translateY(-1px)}
.dots{
  position:absolute; left:26px; top:18px;
  display:flex; gap:8px;
}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: rgba(255,255,255,.22);
  border:1px solid rgba(255,255,255,.20);
  cursor:pointer;
}
.dot.active{background: var(--accent); box-shadow:0 0 0 5px rgba(255,106,42,.14)}

/* Feature list */
.feature{
  display:flex; gap:14px;
}
.feature strong{display:block; margin-bottom:4px}
.feature p{margin:0; color:rgba(242,244,248,.72); line-height:1.6}

/* Timeline */
.timeline{display:grid; gap:12px}
.step{
  display:grid;
  grid-template-columns: 44px 1fr;
  gap:12px;
  padding:14px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}
.badge{
  width:44px; height:54px; border-radius:16px;
  display:grid; place-items:center;
  background: rgba(255,106,42,.16);
  border:1px solid rgba(255,106,42,.22);
  font-weight:900;
}
.step h4{margin:0 0 6px}
.step p{margin:0; color:rgba(242,244,248,.70); line-height:1.6}

/* Gallery */
.gallery{display:grid; grid-template-columns: 1fr 1fr; gap:16px}
.figure{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
  background: rgba(0,0,0,.25);
  position:relative;
}
.figure img{width:100%; height: 360px; object-fit: cover; opacity:.82}
.figure .cap{
  position:absolute; left:0; right:0; bottom:0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.66));
}
.figure .cap strong{display:block}
.figure .cap span{display:block; color:rgba(255,255,255,.72); font-size:.95rem; margin-top:4px}

/* Contact */
.form{
  display:grid; gap:12px;
}
.input{
  width:100%;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.14);
  color: white;
  outline:none;
}
.input:focus{border-color: rgba(255,106,42,.55); box-shadow: 0 0 0 4px rgba(255,106,42,.14)}
textarea.input{min-height: 140px; resize: vertical}
.kv{
  display:grid; gap:10px;
}
.kv-item{
  display:flex; gap:12px; align-items:flex-start;
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}
.kv-item svg{width:20px; height:20px; stroke: var(--accent); stroke-width:2; fill:none; margin-top:2px}
.kv-item .v strong{display:block}
.kv-item .v span{display:block; color:rgba(242,244,248,.70); margin-top:4px; line-height:1.5}

/* Footer */
.footer{
  padding: 30px 0 34px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.25));
}
.foot{
  display:flex; align-items:flex-start; justify-content:space-between; gap:18px; flex-wrap:wrap;
}
.foot .left{max-width:540px}
.legal{color:rgba(242,244,248,.58); font-size:.92rem}
.chips{display:flex; gap:10px; flex-wrap:wrap}
.chip{
  padding:10px 12px; border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.80);
  font-weight:700;
}

/* Animations */
.reveal{opacity:0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease}
.reveal.on{opacity:1; transform: translateY(0)}
.glowline{
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(255,106,42,.75), transparent);
  box-shadow: 0 0 30px rgba(255,106,42,.22);
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr; gap:16px}
  .hero-card img{height: 360px}
  .grid3{grid-template-columns: 1fr}
  .grid2{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr}
  .links{display:none}
  .burger{display:grid; place-items:center}
  .nav-open .links{
    display:flex;
    position:absolute;
    left: 20px; right: 20px; top: 70px;
    flex-direction: column;
    padding: 14px;
    border-radius: 18px;
    background: rgba(0,0,0,.65);
    backdrop-filter: var(--blur);
    border:1px solid rgba(255,255,255,.14);
  }
}

/* Full-page background (uses your screenshots as page-wide art, not inline images) */
.page-bg{
  position:fixed;
  inset:0;
  z-index:-2;
  background: var(--pagebg, radial-gradient(1200px 600px at 80% 10%, rgba(255,106,42,.18), transparent 60%),
              radial-gradient(900px 500px at 20% 60%, rgba(255,106,42,.12), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2)));
  background-size: cover;
  background-position: center;
  background-repeat:no-repeat;
  filter: saturate(1.05) contrast(1.02);
}
.page-bg::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(900px 520px at 70% 18%, rgba(255,106,42,.20), transparent 62%),
    radial-gradient(900px 520px at 18% 72%, rgba(255,106,42,.12), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.68));
}
.page-lines{
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  opacity:.9;
}
.page-lines::before,
.page-lines::after{
  content:"";
  position:absolute;
  left:-10%;
  width:120%;
  height:2px;
  background: linear-gradient(90deg, transparent, rgba(255,106,42,.85), transparent);
  box-shadow: 0 0 28px rgba(255,106,42,.22);
}
.page-lines::before{
  top: 34%;
  transform: rotate(-8deg);
}
.page-lines::after{
  top: 62%;
  transform: rotate(8deg);
}

/* More “poster-like” spacing on screenshot-based pages */
.poster-hero{
  padding: 86px 0 28px;
}
.poster-hero .hero-grid{
  grid-template-columns: 1.15fr .95fr;
}
.poster-card{
  background: rgba(0,0,0,.22);
}
.poster-card img{opacity:0; height:420px} /* keep card shape but hide inline img */
@media (max-width: 980px){
  .poster-hero{padding: 72px 0 18px}
  .poster-card img{height: 320px}
}


/* SPA anchors */
section[id]{scroll-margin-top: 96px}

/* SPA: background swap per section */
.page-bg[data-bg="home"]{--pagebg:url('assets/images/bg-home.png');}
.page-bg[data-bg="product"]{--pagebg:url('assets/images/bg-product.png');}
.page-bg[data-bg="how"]{--pagebg:url('assets/images/bg-product.png');}
.page-bg[data-bg="about"]{--pagebg:url('assets/images/bg-about.png');}
.page-bg[data-bg="contact"]{--pagebg:url('assets/images/bg-contact.png');}

/* Fix: hero right visual uses hero-visual.png */
.hero-card{
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}
.hero-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
}
.hero-card .overlay{
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(700px 420px at 20% 20%, rgba(255,106,42,.18), transparent 55%),
    radial-gradient(900px 520px at 80% 75%, rgba(255,106,42,.12), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.55));
  pointer-events:none;
}
.hero-card::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.08) 38%, transparent 55%);
  transform: translateX(-70%) skewX(-18deg);
  opacity:0;
  pointer-events:none;
}
.hero-card:hover::after{
  opacity:.8;
  animation: heroShimmer 1.1s ease forwards;
}
@keyframes heroShimmer{
  from{ transform: translateX(-70%) skewX(-18deg); }
  to{ transform: translateX(120%) skewX(-18deg); }
}
/* Remove slider arrows completely (just in case) */
.slider-nav{ display:none !important; }


.hero-card.poster-card{background-image: var(--hero); background-size: cover; background-position: center;}

.hero-card.poster-card img{display:none;}


/* === Final tweak: Logo bigger, no frame === */
.logo{
  height:54px;
  width:auto;
  display:block;
  border:none !important;
  background:transparent !important;
  box-shadow:none !important;
  padding:0 !important;
  margin:0 !important;
  border-radius:0 !important;
}
.brand-icon,.logo-box,.logo-frame,.brand-mark{
  border:none !important;
  background:transparent !important;
  box-shadow:none !important;
  padding:0 !important;
  border-radius:0 !important;
}

/* === Final tweak: Slider brighter === */
.slider .shade,
.slider .overlay,
.slider::before,
.slide::before{
  background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.14)) !important;
}
.slider .slide img{
  filter: brightness(1.12) contrast(1.05) saturate(1.08) !important;
}


/* Press & SEO */
.press-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}
.press-item{
  display:block;
  padding:16px;
  border-radius:16px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.press-item:hover{
  transform: translateY(-2px);
  border-color: rgba(255,106,42,.35);
  background: rgba(255,106,42,.08);
}
.press-item strong{
  display:block;
  margin-bottom:6px;
  font-size:1rem;
}
.press-item span{
  color: rgba(255,255,255,.72);
  line-height:1.6;
}
.seo-faq{
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:14px 16px;
  background: rgba(255,255,255,.04);
  margin-bottom:12px;
}
.seo-faq summary{
  cursor:pointer;
  font-weight:700;
  color:#fff;
}
.seo-faq p{ margin:10px 0 0 0; }

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

/* Language switcher */
.lang-switcher{position:relative}
.lang-toggle{border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.06);color:#fff;height:54px;min-width:58px;border-radius:14px;padding:0 14px;font-weight:800;cursor:pointer}
.lang-menu{position:absolute;top:52px;right:0;min-width:170px;display:none;flex-direction:column;gap:6px;padding:8px;border-radius:16px;background:rgba(10,10,14,.92);border:1px solid rgba(255,255,255,.10);backdrop-filter:blur(16px);z-index:60}
.lang-switcher.open .lang-menu{display:flex}
.lang-menu button{border:0;background:rgba(255,255,255,.04);color:#fff;text-align:left;padding:10px 12px;border-radius:12px;cursor:pointer}
.lang-menu button:hover{background:rgba(255,106,42,.12)}
body.rtl{direction:rtl}
body.rtl .nav-inner, body.rtl .foot, body.rtl .feature, body.rtl .step, body.rtl .kv-item{text-align:right}
body.rtl .lang-menu{left:0;right:auto}

/* Mobile overflow fix */
*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0;width:100%;max-width:100%;overflow-x:hidden}
body{position:relative}
img,video,canvas,svg{max-width:100%;height:auto}
.page-bg,.page-lines,.hero,.section,.slider,.slide,.card,.figure,.gallery,.grid2,.grid3,.nav,.nav-inner,.foot{max-width:100%}
@media (max-width:980px){
  html,body{overflow-x:hidden}
  .container{width:calc(100% - 24px);max-width:100%}
  .hero,.section,.slider{overflow-x:hidden}
  .hero-grid,.grid2,.grid3,.gallery,.nav-inner,.foot,.hero-copy,.card,.step,.kv-item{min-width:0;max-width:100%}
}


/* Final logo update */
.logo,
.brand img,
.mark img{
  height:54px;
  width: auto;
  display: block;
  object-fit: contain;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
.mark{
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}


/* Header logo real size fix */
.nav .brand{
  display:flex !important;
  align-items:center !important;
  gap:14px !important;
}

.nav .mark{
  width:auto !important;
  height:auto !important;
  min-width:72px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
  padding:0 !important;
  margin:0 !important;
}

.nav .mark img,
.nav .brand img.logo,
.nav .brand img{
  height:54px !important;
  width:auto !important;
  max-height:none !important;
  object-fit:contain !important;
  display:block !important;
}

.nav .title strong{
  font-size:1.15rem !important;
  line-height:1 !important;
}

.nav .title span{
  font-size:.9rem !important;
  line-height:1.1 !important;
}

.nav-inner{
  min-height:92px !important;
}

@media (max-width:980px){
  .nav .mark{
    min-width:58px !important;
  }
  .nav .mark img,
  .nav .brand img.logo,
  .nav .brand img{
    height:44px !important;
  }
  .nav-inner{
    min-height:78px !important;
  }
}


/* logo-size-final */
.nav .mark img,
.nav .brand img{
  height:54px !important;
  width:auto;
}

@media (max-width:980px){
  .nav .mark img,
  .nav .brand img{
    height:44px !important;
  }
}

/* logo-54-final */
.nav .mark img,
.nav .brand img{
  height:54px !important;
  width:auto;
}

@media (max-width:980px){
  .nav .mark img,
  .nav .brand img{
    height:44px !important;
  }
}



/* ===== FINAL MOBILE LOGO / FAVICON / PRODUCT FIX ===== */

/* Prevent logo distortion everywhere */
.nav .mark img,
.nav .brand img.logo,
.nav .brand img,
.logo,
.brand img,
.mark img{
  width:auto !important;
  max-width:none !important;
  object-fit:contain !important;
  object-position:center center !important;
  aspect-ratio:auto !important;
}

/* Mobile header controls smaller */
@media (max-width:980px){
  .cta{
    gap:6px !important;
    flex:0 0 auto !important;
  }

  .cta > .btn{
    padding:7px 9px !important;
    font-size:.68rem !important;
    line-height:1 !important;
    border-radius:10px !important;
    white-space:nowrap !important;
    min-height:34px !important;
  }

  .lang-toggle{
    height:32px !important;
    min-width:34px !important;
    padding:0 7px !important;
    font-size:.66rem !important;
    line-height:1 !important;
    border-radius:10px !important;
    white-space:nowrap !important;
  }

  .nav .mark{
    min-width:48px !important;
    width:auto !important;
    height:auto !important;
  }

  .nav .mark img,
  .nav .brand img.logo,
  .nav .brand img{
    height:40px !important;
    width:auto !important;
    max-height:40px !important;
  }

  .brand{
    gap:8px !important;
    min-width:0 !important;
  }

  .brand .title strong{
    font-size:.86rem !important;
    line-height:1 !important;
    white-space:nowrap !important;
  }

  .brand .title span{
    font-size:.62rem !important;
    line-height:1 !important;
    white-space:nowrap !important;
  }

  /* Product visuals must stay side-by-side and fully visible */
  #product .gallery{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:8px !important;
  }

  #product .gallery .figure{
    min-width:0 !important;
    overflow:hidden !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
  }

  #product .gallery .figure img{
    width:100% !important;
    height:145px !important;
    object-fit:contain !important;
    object-position:center center !important;
    padding:2px !important;
    background:rgba(0,0,0,.04) !important;
  }

  #product .gallery .cap{
    padding:6px !important;
  }

  #product .gallery .cap strong{
    font-size:.80rem !important;
  }

  #product .gallery .cap span{
    font-size:.66rem !important;
    line-height:1.2 !important;
  }
}

@media (max-width:640px){
  .cta > .btn{
    padding:6px 8px !important;
    font-size:.64rem !important;
    min-height:32px !important;
  }

  .lang-toggle{
    height:30px !important;
    min-width:32px !important;
    padding:0 6px !important;
    font-size:.64rem !important;
  }

  .nav .mark img,
  .nav .brand img.logo,
  .nav .brand img{
    height:38px !important;
    max-height:38px !important;
  }

  #product .gallery .figure img{
    height:132px !important;
  }
}

/* Keep desktop product visuals unchanged */
@media (min-width:981px){
  #product .gallery .figure img{
    object-fit:cover !important;
    object-position:center center !important;
    padding:0 !important;
    background:transparent !important;
  }
}
/* Deneyimle butonu ortalama fix */
.cta .btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1 !important;
}