/* Smijl Theme: #fff / #369694 */
:root{
  --bg:#ffffff;
  --ink:#0f2020;
  --muted:#5f6b6b;
  --line:rgba(15,32,32,.08);
  --brand:#369694;
  --brand-soft:rgba(54,150,148,.12);
  --brand-strong:#2d7f7d;
  --radius:22px;
  --shadow:0 20px 60px rgba(15,32,32,.08);
  --header-h:78px;
}

/* 1) Make width calculations predictable */
*, *::before, *::after{
  box-sizing:border-box;
}

/* 2) Never allow horizontal page overflow */
html, body{
  width:100%;
  max-width:100%;
  overflow-x:clip;
}

/* fallback for browsers that don't support clip */
@supports not (overflow: clip){
  html, body{
    overflow-x:hidden;
  }
}

/* 3) Prevent media from forcing overflow */
img, svg, video, canvas{
  max-width:100%;
  height:auto;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:"Manrope",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.35;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,textarea{font:inherit}

.container{
  width:min(1200px, calc(100% - 2rem));
  margin-inline:auto;
}



.hero, .page-hero{
  position:relative;
  min-height:92svh;
  background-size:cover;
  background-position:top right;
  display:grid;
  align-items:end;
  padding-top:var(--header-h);

}
.page-hero{
  min-height:62svh;
}
.page-hero.slim{
  min-height:44svh;

}
.hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 20% 10%, rgba(54,150,148,.15), transparent 55%),
    linear-gradient(to top, rgba(8,15,15,.78), rgba(8,15,15,0));
}
.hero-content,.page-hero-content{
  position:relative;
  z-index:1;
  color:#fff;
  padding:7rem 0 3rem;
}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.78rem;
  font-weight:800;
  color:var(--brand);
}
.hero .eyebrow,.page-hero .eyebrow{color:#d7fffd}
h1,h2,h3{
  margin:.4rem 0 0;
  line-height:1.05;
  letter-spacing:-.02em;
}
h1{font-size:clamp(2.1rem, 5vw, 4.2rem); font-weight:800}
h2{font-size:clamp(1.8rem, 3vw, 3rem); font-weight:800}

.hero-grid{
  margin-top:1.1rem;
  display:flex; flex-wrap:wrap; gap:.65rem;
}
.hero-grid span{
  padding:.6rem .9rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.08);
  font-weight:600;
  font-size:.95rem;
}
.hero-grid.compact span{font-size:.88rem; padding:.5rem .8rem}

.cta-row{
  display:flex; flex-wrap:wrap; gap:.8rem;
  margin-top:1.25rem;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:.5rem;
  padding:.8rem 1rem;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:700;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(15,32,32,.12);
}
.btn-lg{padding:1rem 1.2rem; font-size:1rem}
.btn-block{width:100%}
.btn-primary{
  background:var(--brand);
  color:#fff;
}
.btn-primary:hover{background:var(--brand-strong)}
.btn-ghost{
  background:#fff;
  color:var(--ink);
  border-color:var(--line);
}
.hero .btn-ghost, .page-hero .btn-ghost{
  background:rgba(255,255,255,.1);
  color:#fff;
  border-color:rgba(255,255,255,.22);
}
.hero .btn-ghost:hover, .page-hero .btn-ghost:hover{
  background:rgba(255,255,255,.2);
}

.section{
  padding:4.5rem 0;
}
.alt-section{
  background:var(--brand);
  border-top:1px solid rgba(54,150,148,.06);
  border-bottom:1px solid rgba(54,150,148,.06);
  border-radius: 50px;
  margin: 20px 0px;
}
.section-head{
  display:grid; gap:.35rem;
  margin-bottom:1.5rem;
}
.section-line{
  color:var(--muted);
  font-weight:600;
}

.category-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1rem;
}
.category-card{
  position:relative;
  min-height:480px;
  border-radius:26px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid rgba(15,32,32,.04);
}
.category-card img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .5s ease;
}
.category-card-overlay{
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(8,16,16,.8), rgba(8,16,16,.15) 55%);
}
.category-card-content{
  position:absolute; inset:auto 1rem 1rem 1rem;
  color:#fff;
  display:grid; gap:.4rem;
}
.badge{
  display:inline-flex; width:max-content;
  padding:.35rem .55rem; border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  font-size:.72rem; font-weight:700; letter-spacing:.06em;
  text-transform:uppercase;
}
.category-title{font-size:1.5rem;font-weight:800}
.category-sub{opacity:.95;font-weight:600}
.category-link{font-weight:700}
.category-card:hover img{transform:scale(1.06)}

.split-panel{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:1rem;
  align-items:stretch;
}
.split-media{
  border-radius:26px;
  min-height:800px;
  background-size:cover;
  background-position:center;
  box-shadow:var(--shadow);
}

.split-media-home{
  border-radius:26px;
  min-height:800px;
  background-size:cover;
  background-position:top right;
  box-shadow:var(--shadow);
}

.split-copy{
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  box-shadow:var(--shadow);
  padding:1.2rem;
  display:grid; align-content:start; gap:.9rem;
}
.statement-list{
  margin:0; padding:0; list-style:none;
  display:grid; gap:.65rem;
}
.statement-list li{
  padding:.8rem .9rem;
  border-radius:14px;
  background:#fff;
  border:1px solid var(--line);
  font-weight:600;
}
.alt-section .statement-list li{
  background:rgba(255,255,255,.75);
}
.statement-list.compact li{
  padding:.65rem .8rem;
  font-size:.95rem;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1rem;
}
.product-card{
  background:#fff;
  border-radius:22px;
  border:1px solid var(--line);
  overflow:hidden;
  box-shadow:0 18px 40px rgba(15,32,32,.05);
  display:grid;
}
.product-image-wrap{
  position:relative;
  aspect-ratio: 4/4.8;
  overflow:hidden;
}
.product-image-wrap img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .4s ease;
}
.product-hover-chip{
  position:absolute;
  left:50%; top:50%;
  transform:translate(-50%, -42%);
  background:rgba(255,255,255,.95);
  border:1px solid rgba(255,255,255,.95);
  border-radius:999px;
  padding:.55rem .85rem;
  font-weight:700; font-size:.85rem;
  opacity:0; transition:all .2s ease;
}
.product-card:hover .product-image-wrap img{transform:scale(1.05)}
.product-card:hover .product-hover-chip{opacity:1; transform:translate(-50%, -50%)}
.product-card-body{
  padding:1rem;
  display:grid; gap:.65rem;
}
.product-meta{
  display:flex; justify-content:space-between; gap:.4rem;
  color:var(--muted); font-weight:600; font-size:.8rem;
}
.product-title{
  font-size:1.1rem; font-weight:800; line-height:1.15;
}
.product-tagline{
  color:var(--muted); font-weight:600; font-size:.92rem;
}
.product-tagline.detail{font-size:1rem}
.product-price{
  font-size:1.25rem; font-weight:800; color:var(--brand-strong);
}
.product-price.detail{font-size:1.6rem}
.product-cta-row{
  display:grid; grid-template-columns:1fr auto; gap:.6rem;
}
.center-cta{
  margin-top:1.4rem;
  display:flex; justify-content:center;
}

.feature-row{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1rem;
}
.feature-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:1.1rem;
  display:grid; gap:.35rem;
  box-shadow:0 12px 28px rgba(15,32,32,.04);
}
.feature-card i{
  width:42px; height:42px; border-radius:14px;
  display:grid; place-items:center;
  background:var(--brand-soft);
  color:var(--brand);
}
.feature-card > div{
  font-size:1.1rem;
  font-weight:800;
}
.feature-card > span{
  color:var(--muted);
  font-weight:600;
}

.category-pills{
  display:flex; flex-wrap:wrap; gap:.55rem;
  margin-bottom:1rem;
}
.pill{
  padding:.65rem .95rem;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:700;
  transition:.18s ease;
}
.pill:hover, .pill.active{
  background:var(--brand-soft);
  border-color:rgba(54,150,148,.2);
  color:var(--brand-strong);
}

.product-detail-page{padding-top:calc(var(--header-h) + 2rem)}
.product-detail-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:1rem;
  align-items:start;
}
.product-gallery{
  position:sticky;
  top:calc(var(--header-h) + 1rem);
  display:grid; gap:.8rem;
}
.main-image{
  border-radius:24px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow);
}
.main-image img{width:100%; aspect-ratio:4/4.8; object-fit:cover}
.thumb-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:.6rem;
}
.thumb-grid img{
  border-radius:16px;
  border:1px solid var(--line);
  aspect-ratio:1/1;
  object-fit:cover;
}
.product-detail-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:1.1rem;
  box-shadow:var(--shadow);
  display:grid; gap:.9rem;
}
.detail-badges{
  display:flex; flex-wrap:wrap; gap:.55rem;
}
.detail-badges span{
  padding:.45rem .7rem;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--brand-soft);
  font-weight:700;
  color:var(--brand-strong);
  font-size:.85rem;
}
.add-to-cart-form{
  display:grid; grid-template-columns:130px 1fr 1fr; gap:.6rem;
  align-items:end;
}
.add-to-cart-form label{
  display:grid; gap:.3rem; font-weight:700; color:var(--muted);
}
.add-to-cart-form input[type="number"]{
  width:100%;
  border:1px solid var(--line);
  border-radius:12px;
  padding:.75rem .85rem;
}
.detail-block{
  display:grid; gap:.5rem;
}
.detail-title{
  font-weight:800;
  font-size:1rem;
}

.flash{
  margin-top:calc(var(--header-h) + .9rem);
  margin-bottom:-1.1rem;
  border-radius:16px;
  padding:.9rem 1rem;
  border:1px solid var(--line);
  display:flex; align-items:center; gap:.7rem;
  font-weight:700;
}
.flash.success{
  background:rgba(54,150,148,.1);
  color:var(--brand-strong);
  border-color:rgba(54,150,148,.2);
}
.flash.error{
  background:rgba(200,48,48,.08);
  color:#9a2d2d;
  border-color:rgba(200,48,48,.2);
}

.page-center{
  min-height:75svh;
  display:grid; align-items:center;
  padding-top:calc(var(--header-h) + 2rem);
}
.center-stack{
  display:grid; gap:.8rem; justify-items:center; text-align:center;
}

.cart-layout, .checkout-layout, .contact-layout{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:1rem;
}
.cart-items, .checkout-form, .contact-card, .contact-form{
  display:grid; gap:.9rem;
}
.empty-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:1.1rem;
  box-shadow:var(--shadow);
  display:grid; gap:.8rem; justify-items:start;
}
.empty-box i{
  width:46px; height:46px; border-radius:14px;
  display:grid; place-items:center;
  background:var(--brand-soft); color:var(--brand);
}
.cart-row{
  display:grid;
  grid-template-columns:88px 1fr auto auto auto;
  gap:.8rem;
  align-items:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:.7rem;
}
.cart-row img{
  width:88px;height:88px; object-fit:cover;
  border-radius:14px;
}
.cart-row-info{display:grid; gap:.25rem}
.cart-row-title{font-weight:800}
.cart-row-sub{font-size:.86rem; color:var(--muted); font-weight:600}
.cart-row-price{color:var(--brand-strong); font-weight:800}
.cart-row-total{font-weight:800}
.cart-qty-form{
  display:flex; gap:.5rem; align-items:center;
}
.cart-qty-form input{
  width:74px;
  border:1px solid var(--line);
  border-radius:12px;
  padding:.55rem .65rem;
}
.icon-btn{
  width:42px;height:42px;border-radius:12px;
  border:1px solid var(--line);
  background:#fff; cursor:pointer;
  transition:.18s ease;
}
.icon-btn:hover{
  background:rgba(200,48,48,.06);
  border-color:rgba(200,48,48,.2);
  color:#9a2d2d;
}

.cart-summary{
  position:sticky;
  top:calc(var(--header-h) + 1rem);
  align-self:start;
}
.summary-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:1rem;
  display:grid; gap:.75rem;
}
.summary-title{
  font-size:1.05rem; font-weight:800;
}
.summary-line{
  display:flex; justify-content:space-between; gap:.6rem;
  font-weight:600;
  color:var(--muted);
}
.summary-line strong{color:var(--ink)}
.summary-line.compact{font-size:.9rem}
.summary-line.total{
  padding-top:.65rem;
  margin-top:.2rem;
  border-top:1px solid var(--line);
  font-size:1.05rem;
}
.summary-line.total strong{color:var(--brand-strong)}

.form-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:0 12px 28px rgba(15,32,32,.04);
  padding:1rem;
  display:grid;
  gap:.8rem;
}
.form-card-title{
  font-size:1rem;
  font-weight:800;
}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:.8rem;
}
.form-grid label{
  display:grid; gap:.35rem;
  font-weight:700;
  color:var(--muted);
}
.form-grid label.full{grid-column:1/-1}
.form-grid input,
.form-grid textarea,
.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="tel"],
.form-card textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:12px;
  padding:.8rem .9rem;
  background:#fff;
  color:var(--ink);
}
.form-grid textarea, .form-card textarea{resize:vertical}
.radio-grid{
  display:grid;
  gap:.6rem;
}
.radio-grid label{
  display:flex; align-items:center; gap:.6rem;
  padding:.75rem .85rem;
  border-radius:14px;
  border:1px solid var(--line);
  font-weight:700;
  background:#fff;
}
.radio-grid.payments label i{color:var(--brand)}
.muted-line{
  color:var(--muted);
  font-weight:600;
  font-size:.9rem;
}

.contact-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:1rem;
  align-content:start;
}
.contact-title{font-size:1.3rem;font-weight:800}
.contact-mini-grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:.6rem;
}
.contact-mini-grid a{
  padding:.8rem .9rem;
  border:1px solid var(--line);
  border-radius:14px;
  font-weight:700;
  background:var(--brand-soft);
  color:var(--brand-strong);
}
.contact-mini-grid a i{margin-right:.45rem}

.faq-wrap{
  display:grid; gap:.8rem;
}
.faq-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 12px 28px rgba(15,32,32,.04);
  overflow:hidden;
}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:1rem;
  font-weight:800;
  position:relative;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:"+";
  position:absolute; right:1rem; top:.9rem;
  color:var(--brand);
  font-size:1.1rem; font-weight:800;
}
.faq-item[open] summary::after{content:"–"}
.faq-answer{
  padding:0 1rem 1rem;
  color:var(--muted);
  font-weight:600;
}

.card-grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1rem;
}
.info-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:1rem;
  box-shadow:0 14px 32px rgba(15,32,32,.04);
  display:grid; gap:.7rem;
}
.info-card-title{
  font-weight:800;
  font-size:1rem;
}
.chip-cloud{
  display:flex;
  flex-wrap:wrap;
  gap:.65rem;
}
.chip-cloud span{
  padding:.7rem .9rem;
  border-radius:999px;
  border:1px solid rgba(54,150,148,.18);
  background:var(--brand-soft);
  color:var(--brand-strong);
  font-weight:700;
}

.site-footer{
  margin-top:2rem;
  background:#0f1818;
  color:#eef6f6;
  border-top:1px solid rgba(255,255,255,.05);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .7fr .7fr 1.2fr;
  gap:1rem;
  padding:2rem 0 1.2rem;
}


/* First column brand panel */
.footer-brand-block{
  display:grid;
  gap:.85rem;
  align-content:start;
  padding:1rem;
}

/* Brand row */
.footer-brand{
  display:inline-flex;
  align-items:center;
  gap:.7rem;
  font-weight:800;
  font-size:1.08rem;
  letter-spacing:.02em;
  text-decoration:none;
  line-height:1;
}

/* Logo chip (fits footer style better) */
.footer-brand-logo-wrap{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  flex:0 0 42px;
}

.footer-brand-logo{
  width:42px;
  height:42px;
  object-fit:contain;
  display:block;
}

/* Brand text: mostly white for consistency, brand accent via subtle glow */
.footer-brand-text{
  color:var(--brand);
  line-height:1;
  text-shadow:0 0 12px rgba(54,150,148,.16);
}

/* Info lines */
.footer-lines{
  display:grid;
  gap:.45rem;
  color:#b8caca;
  font-weight:600;
  font-size:.92rem;
  line-height:1.35;
}

/* Each line as a subtle row */
.footer-lines > div{
  position:relative;
  padding-left:.8rem;
}


/* First line slightly stronger */
.footer-lines > div:first-child{
  color:#e3efef;
  font-weight:700;
}

/* Optional: make first footer column breathe a bit more */
.footer-grid > :first-child{
  min-width:0;
}

.footer-col{
  display:grid; align-content:start; gap:.55rem;
}
.footer-col a{
  color:#dbe8e8;
  font-weight:600;
  transition:color .15s ease;
}
.footer-col a:hover{color:#fff}
.footer-title{
  font-weight:800;
  font-size:1rem;
  margin-bottom:.2rem;
}
.footer-note{
  color:#bdd0d0;
  font-weight:600;
  font-size:.9rem;
}
.newsletter-form{
  display:grid;
  grid-template-columns:1fr auto;
  gap:.55rem;
}
.newsletter-form input{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:#fff;
  border-radius:12px;
  padding:.8rem .9rem;
}
.newsletter-form input::placeholder{color:#adc1c1}
.payment-badges{
  margin-top: 20px;
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
}
.payment-badges span{
  display:inline-flex; align-items:center; gap:.45rem;
  padding:.5rem .7rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  font-weight:700;
  font-size:.82rem;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.07);
  padding:1rem 0 1.4rem;
  display:block; 
  color:#a8b9b9; font-weight:600;
}

.footer-bottom{padding-top:14px; margin-top:18px;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.footer-credits-text{
  margin-top:18px;
}
.parallax{
  background-attachment:fixed;
  will-change:background-position;
}

@media (max-width: 1120px){
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .feature-row{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .product-detail-grid{grid-template-columns:1fr}
  .product-gallery{position:static}
  .cart-layout,.checkout-layout,.contact-layout{grid-template-columns:1fr}
  .cart-summary{position:static}
}

@media (max-width: 860px){
  :root{--header-h:72px}
  .category-grid,
  .card-grid-2{grid-template-columns:1fr}
  .split-panel{grid-template-columns:1fr}
  .split-media{min-height:320px}
  .category-card{min-height:360px}
  .hero, .page-hero{min-height:72svh}
  .hero-content,.page-hero-content{padding:5.5rem 0 2rem}
  .add-to-cart-form{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .newsletter-form{grid-template-columns:1fr}
  .cart-row{
    grid-template-columns:70px 1fr;
    align-items:start;
  }
  .cart-row img{width:70px;height:70px}
  .cart-qty-form{grid-column:2; justify-self:start}
  .cart-row-total{
    grid-column:2;
    justify-self:start;
  }
  .cart-row > form:last-child{
    position:absolute;
    right:1.1rem;
    margin-top:.2rem;
  }
  .cart-row{position:relative}
  .product-grid{grid-template-columns:1fr}
  .feature-row{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column}
  .parallax{background-attachment:scroll}
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important}
  .parallax{background-attachment:scroll}
  .product-card:hover .product-image-wrap img,
  .category-card:hover img{transform:none}
}
