:root{
  /* slightly grey base background for a cleaner, more modern trade feel */
  --bg:#f2f3f5;
  --ink:#0b0c0f;
  --ink2:#141823;
  --muted:#6b7280;
  --line:#e6e8ee;
  --panel:#f7f8fb;
  --panel2:#0f1116;
  --accent:#111827;
  --radius:18px;
  --shadow:0 18px 55px rgba(15,17,22,.10);
  --pad:22px;
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height:1.55;
}

/* subtle page texture without being "busy" */
body:before{
  content:"";
  position:fixed;
  inset:-200px;
  background:
    radial-gradient(900px 380px at 10% 0%, rgba(15,17,22,.08), transparent 60%),
    radial-gradient(900px 380px at 90% 10%, rgba(15,17,22,.06), transparent 55%),
    radial-gradient(700px 320px at 50% 110%, rgba(15,17,22,.05), transparent 60%);
  pointer-events:none;
  z-index:-1;
}

img{max-width:100%; display:block}
a{color:inherit}

.container{width:min(var(--max), calc(100% - 48px)); margin:0 auto}
.section{padding:72px 0}
.section.slim{padding:44px 0}

/* alternating section treatment */
.section.alt{
  background:#fff;
  border-top:1px solid rgba(230,232,238,.75);
  border-bottom:1px solid rgba(230,232,238,.75);
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(242,243,245,.82);
  backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.brand img{
  width:44px;
  height:44px;
  object-fit:contain;
  border-radius:12px;
  background:var(--panel);
  border:1px solid var(--line);
}

.brand .name{font-weight:800; letter-spacing:-0.02em}
.brand .tag{font-size:.85rem; color:var(--muted)}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
}

.nav a{
  padding:10px 10px;
  border-radius:12px;
  text-decoration:none;
  color:var(--ink2);
  font-weight:600;
  font-size:.95rem;
}

.nav a:hover{background:#ffffff}
.nav a.active{background:var(--panel2); color:#fff}

.nav-toggle{
  display:none;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:700;
}

/* Hero */
.hero{
  padding-top:54px;
  position:relative;
}

.hero:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0));
  pointer-events:none;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:center;
}

.kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  font-weight:800;
  font-size:.84rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--muted);
}

.kicker:before{
  content:"";
  width:22px;
  height:2px;
  background:var(--ink2);
  border-radius:999px;
}

.h1{
  font-size:clamp(2.2rem, 4vw, 3.3rem);
  line-height:1.05;
  letter-spacing:-0.03em;
  margin:14px 0 12px;
}

.h2{
  font-size:clamp(1.6rem, 2.3vw, 2.1rem);
  line-height:1.15;
  letter-spacing:-0.02em;
  margin:0 0 10px;
}

.h3{
  font-size:1.05rem;
  font-weight:800;
  margin:0 0 6px;
}

.lead{
  font-size:1.05rem;
  color:var(--ink2);
  margin:0;
  max-width:62ch;
}

.muted{
  color:var(--muted);
  margin:0;
  max-width:70ch;
}

.small{font-size:.92rem; color:var(--muted)}

.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  text-decoration:none;
  font-weight:800;
  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.btn:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 32px rgba(15,17,22,.10);
}

.btn.primary{
  background:var(--panel2);
  color:#fff;
  border-color:transparent;
}

.btn.primary:hover{filter:brightness(1.07)}

/* Cards */
.card{
  background:#fff;
  border:1px solid rgba(230,232,238,.85);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  transition:transform .18s ease, box-shadow .18s ease;
}

.card:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 70px rgba(15,17,22,.12);
}

.card.pad{
  padding:var(--pad);
  display:flex;
  flex-direction:column;
  gap:10px;
}

.card.pad .h3,
.card.pad p{margin:0}

/* Media cards */
.media-card{
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.media-card img{
  width:100%;
  height:190px;
  object-fit:cover;
  display:block;
}

.media-card .pad{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.figure{
  border-radius:calc(var(--radius) + 4px);
  overflow:hidden;
  border:1px solid rgba(230,232,238,.85);
  background:#fff;
  box-shadow:var(--shadow);
}

.figure img{
  width:100%;
  height:100%;
  object-fit:cover;
  min-height:340px;
}

/* Hero figure */
.hero-figure{
  display:flex;
  flex-direction:column;
  gap:14px;
  padding:18px;
  align-items:center;
}

.hero-figure img{min-height:unset}

.hero-figure .hero-logo{
  width:min(260px, 70%);
  height:auto;
  border-radius:999px;
  box-shadow:0 18px 60px rgba(15,17,22,.16);
}

.hero-figure .hero-support{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:calc(var(--radius) + 2px);
}

/* Layout helpers */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.grid{display:grid; gap:18px}
.grid.cols-2{grid-template-columns:1fr 1fr}
.grid.cols-3{grid-template-columns:1fr 1fr 1fr}

.grid.cols-2 > .card,
.grid.cols-3 > .card{height:100%}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(230,232,238,.95);
  font-weight:800;
  font-size:.86rem;
}

.hr{
  height:1px;
  background:var(--line);
  margin:16px 0;
}

/* Product catalogue */
.catalog-shell{
  max-width:860px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}

.catalog-head{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  margin-bottom:12px;
}

.search{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  min-width:min(520px, 100%);
}

.search input{
  border:0;
  outline:0;
  width:100%;
  font:inherit;
  background:transparent;
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.chip{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--panel);
  font-weight:800;
  font-size:.86rem;
  cursor:pointer;
}

.chip[data-active="true"]{
  background:var(--panel2);
  color:#fff;
  border-color:transparent;
}

.catalog-card{
  padding:0;
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow);
}

.catalog-meta{
  padding:var(--pad);
  border-bottom:1px solid var(--line);
}

.catalog-scroll{
  max-height:560px;
  overflow:auto;
  scroll-behavior:smooth;
}

/* Product row */
.product-row{
  display:grid;
  grid-template-columns:140px 1fr auto;
  gap:16px;
  align-items:center;
  padding:16px var(--pad);
  border-bottom:1px solid var(--line);
}

.product-row:last-child{border-bottom:0}

.pname{
  font-weight:900;
  margin:0;
}

.pdesc{
  margin:4px 0 0;
  color:var(--muted);
  font-size:.92rem;
}

.pricebox{
  text-align:right;
  min-width:160px;
}

.price{
  font-weight:950;
  font-size:1.05rem;
}

.moq{
  color:var(--muted);
  font-size:.86rem;
  margin-top:4px;
}

/* Product media gallery */
.pimg{
  width:140px;
  height:140px;
  border-radius:14px;
  overflow:hidden;
  background:#f3f3f3;
  position:relative;
  flex-shrink:0;
  border:1px solid var(--line);
}

.pimg.placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  color:#777;
  font-size:0.9rem;
  font-weight:600;
}

.media-track{
  display:flex;
  width:100%;
  height:100%;
  transition:transform 0.3s ease;
}

.media-slide{
  min-width:100%;
  height:100%;
}

.media-slide img,
.media-slide video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.gallery-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  border:none;
  background:rgba(0,0,0,0.45);
  color:white;
  width:28px;
  height:28px;
  border-radius:50%;
  cursor:pointer;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
}

.gallery-btn.prev{left:8px}
.gallery-btn.next{right:8px}

.gallery-dots{
  position:absolute;
  bottom:8px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:6px;
  z-index:2;
}

.gallery-dots .dot{
  width:8px;
  height:8px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,0.5);
  cursor:pointer;
  padding:0;
}

.gallery-dots .dot[data-active="true"]{
  background:white;
}

/* Forms */
.form{display:grid; gap:14px}
.field{display:grid; gap:6px}
label{font-weight:800}

input, textarea, select{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  font:inherit;
}

textarea{
  min-height:140px;
  resize:vertical;
}

/* Footer */
.footer{
  padding:54px 0;
  margin-top:40px;
  background:var(--panel2);
  color:#fff;
  border-top:1px solid rgba(255,255,255,.08);
}

.footer a{color:#fff}
.footer .small{color:rgba(255,255,255,.72)}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
}

.footer .badge{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.18);
  color:#fff;
}

/* Reveal */
[data-reveal]{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .6s ease, transform .6s ease;
}

[data-reveal].revealed{
  opacity:1;
  transform:none;
}

/* Chatbot widget */
.chatbot-launch{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:60;
  width:74px;
  height:74px;
  border-radius:16px;
  border:1px solid rgba(230,232,238,.9);
  background:var(--panel2);
  color:#fff;
  box-shadow:0 18px 55px rgba(15,17,22,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.chatbot-launch:hover{filter:brightness(1.08)}

.chatbot-launch img{
  width:46px;
  height:46px;
  display:block;
}

.chatbot{
  position:fixed;
  right:18px;
  bottom:86px;
  z-index:60;
  width:min(460px, calc(100vw - 36px));
  border-radius:18px;
  border:1px solid rgba(230,232,238,.9);
  background:#fff;
  box-shadow:0 22px 70px rgba(15,17,22,.20);
  overflow:hidden;
  display:none;
}

.chatbot[data-open="true"]{display:block}

.chatbot-head{
  background:var(--panel2);
  color:#fff;
  padding:14px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.chatbot-head .title{
  font-weight:900;
  display:flex;
  align-items:center;
  gap:10px;
}

.chatbot-head .chatbot-brand{
  height:18px;
  width:auto;
  border-radius:4px;
  display:block;
  filter:drop-shadow(0 2px 10px rgba(0,0,0,.15));
}

.chatbot-head .sub{
  font-size:.85rem;
  opacity:.8;
}

.chatbot-close{
  border:0;
  background:rgba(255,255,255,.12);
  color:#fff;
  border-radius:12px;
  padding:8px 10px;
  cursor:pointer;
  font-weight:900;
}

.chatbot-body{
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
  max-height:520px;
  overflow:auto;
}

.chatbot-msg{
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px 12px;
  background:var(--panel);
}

.chatbot-msg.me{background:#fff}

.chatbot-msg .m{
  margin:0;
  font-size:.95rem;
}

.chatbot-quick{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.chatbot-quick button{
  border:1px solid var(--line);
  background:#fff;
  border-radius:999px;
  padding:9px 10px;
  cursor:pointer;
  font-weight:800;
  font-size:.85rem;
}

.chatbot-quick button:hover{background:var(--panel)}

.chatbot-form{
  display:flex;
  gap:8px;
  padding:12px 14px;
  border-top:1px solid var(--line);
  background:#fff;
}

.chatbot-form input{
  flex:1;
  border-radius:14px;
  border:1px solid var(--line);
  padding:12px 12px;
  font:inherit;
}

.chatbot-form button{
  border:0;
  border-radius:14px;
  background:var(--panel2);
  color:#fff;
  padding:12px 14px;
  font-weight:900;
  cursor:pointer;
}

.chatbot-form button:hover{filter:brightness(1.08)}

/* UK GDPR / PECR cookie banner */
.cookie{
  position:fixed;
  inset:auto 0 0 0;
  z-index:70;
  padding:16px;
}

.cookie.hide{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .25s ease, transform .25s ease;
}

.cookie__card{
  max-width:1100px;
  margin:0 auto;
  border:1px solid rgba(230,232,238,.9);
  border-radius:18px;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  box-shadow:0 22px 70px rgba(15,17,22,.16);
  padding:14px 14px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}

.cookie__copy{max-width:760px}
.cookie__title{font-weight:1000; letter-spacing:-0.02em; margin:0 0 6px}
.cookie__text{margin:0; color:var(--muted); font-size:.95rem; line-height:1.35}
.cookie__link{color:inherit; text-decoration:underline; text-underline-offset:2px}

.cookie__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
}

.cookie__small{
  color:var(--muted);
  font-size:.9rem;
}

.cookie__modal{
  position:fixed;
  inset:0;
  background:rgba(15,17,22,.55);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
}

.cookie__modal.open{display:flex}

.cookie__modalCard{
  width:min(720px, calc(100vw - 36px));
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(230,232,238,.9);
  box-shadow:0 30px 90px rgba(15,17,22,.25);
  overflow:hidden;
}

.cookie__modalHead{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  border-bottom:1px solid rgba(230,232,238,.9);
}

.cookie__x{
  border:0;
  background:var(--panel);
  border-radius:12px;
  padding:8px 10px;
  cursor:pointer;
  font-weight:900;
}

.cookie__rows{padding:8px 8px}

.cookie__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 10px;
  border-radius:14px;
}

.cookie__row:hover{background:var(--panel)}
.cookie__rowTitle{font-weight:900}

.cookie__pill{
  border:1px solid var(--line);
  border-radius:999px;
  padding:6px 10px;
  font-weight:900;
  font-size:.85rem;
  background:#fff;
}

.cookie__pill.on{
  background:var(--panel2);
  color:#fff;
  border-color:transparent;
}

.cookie__toggle{
  width:46px;
  height:24px;
}

/* Responsive */
@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .figure img{min-height:240px}
  .split{grid-template-columns:1fr}
  .grid.cols-3{grid-template-columns:1fr}
  .grid.cols-2{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}

  .nav-toggle{display:inline-flex}
  .nav{
    position:absolute;
    left:24px;
    right:24px;
    top:72px;
    display:none;
    flex-direction:column;
    padding:12px;
    border-radius:18px;
    background:#fff;
    border:1px solid var(--line);
    box-shadow:var(--shadow);
  }
  .nav[data-open="true"]{display:flex}
  .nav a{width:100%}

  .product-row{
    grid-template-columns:1fr;
    gap:14px;
  }

  .pimg{
    width:100%;
    max-width:220px;
    height:220px;
  }

  .pricebox{
    text-align:left;
    min-width:unset;
  }

  .search{min-width:100%}
}

@media (max-width: 760px){
  .footer-grid{grid-template-columns:1fr}
}

@media (max-width: 820px){
  .cookie__card{
    flex-direction:column;
    align-items:stretch;
  }

  .cookie__actions{
    justify-content:flex-start;
  }
}