:root{
  --accent:#2f5fb3;
  --accent-light:#6fd1e1;
  --text:#111;
  --muted:#666;
  --bg:#f4f6fa;
  --card:#ffffff;
}
/* =========================
   COOKIE BANNER
========================= */

.cookie-banner{
  position:fixed;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  background:#fff;
  border:1px solid #e3e3e3;
  border-radius:18px;
  box-shadow:0 18px 40px rgba(0,0,0,.12);
  padding:18px 22px;
  max-width:640px;
  width:calc(100% - 40px);
  display:none;
  z-index:999;
}

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

.cookie-inner p{
  margin:0;
  font-size:.95rem;
}

.cookie-actions{
  display:flex;
  gap:10px;
}
/* =========================
   GLOBAL
========================= */

body{
  margin:0;
  font-family:Inter, sans-serif;
  background:linear-gradient(180deg,#eef4ff 0%,#f7fbff 45%,#f6f0e8 100%);
  color:var(--text);
}

.container{
  max-width:1900px;
  margin:0 auto;
  padding:0 40px;
}

img{
  max-width:100%;
}

/* =========================
   HEADER / NAV
========================= */

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:#fff;
  border-bottom:1px solid #e9eef5;
  backdrop-filter:blur(12px);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:8px 40px;
  gap:28px;
}

.site-logo{
  height:72px;
  width:auto;
  display:block;
}

.nav{
  display:flex;
  gap:36px;
  font-weight:500;
}

.nav a{
  color:#28456f;
  text-decoration:none;
}

.nav a:hover,
.nav a.active{
  color:#2f5fb3;
}
/* =========================
   BUTTONS
========================= */

.btn{
  padding:14px 26px;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:all .2s ease;
  cursor:pointer;
  border:none;
}

.btn-primary{
  background:#2f5fb3;
  color:#fff;
  box-shadow:0 10px 24px rgba(47,95,179,.25);
}

.btn-primary:hover{
  background:#1f4fa1;
  color:#fff;
}

.btn-secondary{
  background:#fff;
  color:#2f5fb3;
  border:1px solid #cfd9ea;
  box-shadow:0 6px 18px rgba(0,0,0,.05);
}

.btn-secondary:hover{
  background:#f5f8ff;
  color:#1f4fa1;
  border-color:#b9c9e6;
}

.btn-accent{
  background:#2f5fb3;
  color:#fff;
  box-shadow:0 10px 24px rgba(47,95,179,.25);
}

.btn-accent:hover{
  background:#1f4fa1;
  color:#fff;
}
/* =========================
   HOME / HERO
========================= */

.hero{
  padding:48px 40px 56px;
}

.hero-grid,
.hero-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:stretch;
}

.hero-copy{
  background:linear-gradient(180deg,#ffffff 0%,#eef5ff 60%,#f3ecdf 100%);
  padding:52px;
  border-radius:28px;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.hero-copy h1{
  font-size:64px;
  line-height:1.05;
  margin-bottom:20px;
}

.lead{
  color:var(--muted);
  max-width:520px;
}

.hero-actions{
  margin-top:30px;
  display:flex;
  gap:14px;
}

.hero-visual{
  border-radius:28px;
  min-height:620px;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.35)),
    url("images/hero-balustrade.jpg");
  background-size:cover;
  background-position:center;
  position:relative;
  overflow:hidden;
}

.hero-pills{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}

.hero-pills span{
  border:1px solid rgba(31,86,179,.14);
  background:#fff;
  color:#1f56b3;
  font-weight:700;
  padding:12px 16px;
  border-radius:16px;
}

.hero-test-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:28px;
}

.split-head h2{
  font-size:56px;
  line-height:1.05;
  max-width:700px;
}

/* =========================
   HOME SYSTEM IMAGES / CARDS
========================= */

.system-image-1{
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.28)),
    url("images/frameless.jpg");
  background-size:cover;
  background-position:center;
}

.system-image-2{
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.28)),
    url("images/post-glass.jpg");
  background-size:cover;
  background-position:center;
}

.system-image-3{
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.28)),
    url("images/juliette.jpg");
  background-size:cover;
  background-position:center;
}

.system-image{
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}
.card-body{
  padding:24px;
}

.card-body h3{
  margin:0 0 10px;
}

.card-body p{
  margin:0 0 18px;
  line-height:1.5;
  color:#555;
}

/* =========================
   QUOTE / FORM
========================= */

.quote-page{
  max-width:700px;
  margin:80px auto;
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.quote-page h1{
  font-size:42px;
  font-weight:700;
  margin-bottom:10px;
}

.quote-form{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.quote-form input,
.quote-form textarea{
  padding:12px;
  border:1px solid #ccc;
  border-radius:10px;
  font-size:16px;
}

.quote-form button{
  padding:14px;
  background:#2f5fb3;
  color:#fff;
  border:none;
  border-radius:30px;
  font-weight:600;
  cursor:pointer;
}

.form-page{
  padding:80px 0;
}

.form-shell{
  max-width:820px;
  margin:0 auto;
  padding:42px;
}

.form{
  display:grid;
  gap:14px;
  margin-top:24px;
}

.form input,
.form textarea,
.form select{
  width:100%;
  padding:14px 16px;
  border:1px solid #d7deeb;
  border-radius:14px;
  font:inherit;
  background:#fff;
}

.form textarea{
  min-height:150px;
  resize:vertical;
}
/* =========================
   FOOTER LINK SPACING FIX
========================= */

.footer a{
  display:block;
  margin-bottom:8px;
  color:#5b5b5b;
}

.footer a:hover{
  color:#000;
}

.footer p{
  margin:4px 0;
  color:#5b5b5b;
}
/* =========================
   FOOTER
========================= */
.footer h4{
  font-size:1rem;
  margin-bottom:12px;
}
.footer{
  margin-top:80px;
  padding:60px 40px;
  background:#f7f9fc;
  border-top:1px solid #e3e8ef;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr 1fr;
  gap:40px;
}

.footer h4{
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:14px;
  color:#222;
}

.footer a{
  display:block;
  color:#555;
  text-decoration:none;
  margin-bottom:10px;
}

.footer a:hover{
  color:#2f5fb3;
}

.footer p{
  color:#666;
  margin-bottom:8px;
}

.footer-brand img{
  height:70px;
  margin-bottom:12px;
}

/* =========================
   PROJECTS
========================= */
.project-tile{
  position:relative;
  padding:0;
  color:#fff;
  border-radius:28px;
  overflow:hidden;
  min-height:260px;
}

.project-tile-image{
  position: absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.project-tile-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.45));
}

.project-tile-content{
  position:absolute;
  top:24px;
  left:24px;
  right:24px;
  z-index:2;
}

.project-tile-content p{
  color:rgba(255,255,255,.82);
}
.projects-page{
  padding:70px 0 80px;
}

.projects{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:22px;
}

.project-stack{
  display:grid;
  gap:22px;
}

.project-feature{
  min-height:360px;
  border-radius:24px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.project-side-1{
  background:
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.45)),
    url("images/project-side-2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.project-side-2{
  background:
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.45)),
    url("images/project-side-2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.project-main{
  min-height:560px !important;
  padding:34px !important;
  border-radius:30px !important;
  color:#fff !important;
  position:relative !important;
  overflow:hidden !important;
  box-shadow:0 18px 40px rgba(0,0,0,.12) !important;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.58)),
    url("images/project-main-2.jpg") !important;
  background-size:cover !important;
  background-position:center !important;
  background-repeat:no-repeat !important;
}

.projects-hero{
  padding-bottom:30px;
}

.projects-hero-copy{
  max-width:900px;
}

.projects-hero-copy h1{
  font-size:clamp(2.6rem, 5vw, 4.4rem);
  line-height:1.02;
  margin:0 0 18px;
}

.projects-hero-copy p{
  max-width:760px;
  color:#666;
  font-size:1.08rem;
  line-height:1.5;
}

.project-grid-luxury{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:22px;
  margin-top:28px;
}

.project-tile{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  min-height:320px;
  background:#ddd;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.project-tile img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .4s ease;
}

.project-tile:hover img{
  transform:scale(1.04);
}

.project-large{
  grid-column:1 / 2;
  grid-row:1 / 3;
  min-height:680px;
}

.project-small{
  min-height:320px;
}

.project-wide{
  grid-column:2 / 4;
  min-height:330px;
}

.project-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:28px;
  background:linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.74));
  color:#fff;
}

.project-overlay h3{
  margin:0 0 8px;
  color:#fff;
}

.project-overlay p{
  margin:0;
  color:rgba(255,255,255,.84);
}

.project-tag{
  display:inline-block;
  margin-bottom:12px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.24);
  color:#fff;
  font-size:13px;
  font-weight:600;
}

.project-gallery{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:18px;
}

.project-gallery img{
  width:100%;
  height:280px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:transform .35s ease;
  cursor:pointer;
}

.project-gallery img:hover{
  transform:scale(1.04);
}

/* =========================
   SHOP
========================= */

.shop-hero{
  padding:70px 0 30px;
}

.shop-hero-box{
  background:linear-gradient(180deg,#ffffff 0%,#eef5ff 65%,#f3ecdf 100%);
  padding:50px;
  border-radius:28px;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.shop-grid-section,
.shop-products-section{
  padding:30px 0 60px;
}

.shop-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.shop-card{
  display:block;
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  text-decoration:none;
  transition:transform .3s ease, box-shadow .3s ease;
}

.shop-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 50px rgba(0,0,0,.12);
}

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

.shop-card-content{
  padding:24px;
}

.shop-card-content h3{
  margin:0 0 10px;
}

.shop-card-content p{
  color:#666;
  margin-bottom:16px;
}

.shop-link{
  color:#2f5fb3;
  font-weight:600;
}

.shop-cta-section{
  padding:0 0 80px;
}

.shop-cta-box{
  background:#fff;
  padding:40px;
  border-radius:24px;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.shop-toolbar-section{
  padding:0 0 30px;
}

.shop-toolbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
  background:#fff;
  border-radius:20px;
  padding:18px 22px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  margin-bottom:24px;
}

.shop-toolbar-left{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.shop-filter{
  padding:10px 16px;
  border-radius:999px;
  background:#f3f6fb;
  color:#28456f;
  font-size:14px;
  font-weight:600;
}

.shop-filter.active{
  background:#2f5fb3;
  color:#fff;
}

.shop-results{
  font-weight:600;
  color:#333;
}

.shop-sort{
  display:flex;
  align-items:center;
  gap:10px;
  color:#666;
  font-size:14px;
  font-weight:600;
}

.shop-sort select{
  padding:10px 14px;
  border:1px solid #d7deeb;
  border-radius:12px;
  background:#fff;
  font:inherit;
}

.shop-page{
  padding:60px 0 80px;
}

.shop-layout{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:32px;
  align-items:start;
}

.shop-sidebar{
  position:sticky;
  top:120px;
}

.shop-filter-box{
  background:#fff;
  border-radius:22px;
  padding:24px;
  box-shadow:0 12px 30px rgba(0,0,0,.06);
}

.shop-filter-box h3{
  margin:0 0 20px;
}

.shop-main{
  min-width:0;
}

/* =========================
   FILTERS
========================= */

.filter-group{
  margin-bottom:24px;
}

.filter-group h4{
  margin:0 0 12px;
  font-size:15px;
  font-weight:700;
  color:#222;
}

.filter-group label{
  display:block;
  margin-bottom:10px;
  color:#555;
  font-size:15px;
}

.filter-group input{
  margin-right:8px;
}

/* =========================
   PRODUCT CARDS / SHOP GRID
========================= */

.product-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.shop-page .product-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  transition:transform .3s ease, box-shadow .3s ease;
}

.shop-page .product-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 50px rgba(0,0,0,.12);
}

.shop-page .product-card img{
  width:100%;
  height:250px;
  object-fit:contain;
  display:block;
  background:#fff;
  padding:16px;
  box-sizing:border-box;
}

.shop-page .product-card-body{
  padding:24px;
}

.product-category{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#2f5fb3;
  font-weight:700;
  margin-bottom:10px;
}

.product-card-body h3{
  margin:0 0 10px;
}

.product-text{
  color:#666;
  margin-bottom:18px;
}

.product-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.product-bottom .btn{
  white-space:nowrap;
}

.product-price{
  font-size:20px;
  font-weight:700;
  color:#111;
}
/* =========================
   PRODUCT PAGE
========================= */

.product-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:start;
}

.product-gallery img,
.product-main-image img{
  width:100%;
  height:auto;
  max-height:700px;
  object-fit:contain;
  display:block;
  padding:0;
  background:#fff;
}

.product-info{
  width:100%;
}

.shop-page .product-card {
  background: #fff;
  border: 1px solid #e4e7ee;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: none;
}

.shop-page .product-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  padding: 14px;
  display: block;
}

.shop-page .product-card-body {
  padding: 18px;
  box-sizing: border-box;
}

.product-category {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #3f63b5;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
}

.product-use {
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 10px;
}

.product-description {
  font-size: 0.98rem;
  line-height: 1.45;
  color: #666;
  margin: 0 0 16px;
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.product-price {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #111;
}

.product-stock {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f7a35;
}

.product-delivery {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 16px;
}

.product-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.product-buttons .btn,
.product-buttons button {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  justify-content: center;
}

.product-buttons .btn-secondary {
  display: block;
}

.product-buttons .btn-primary {
  display: block;
}
/* =========================
   BUILDER
========================= */
main{
  padding-top: 30px;
}
.builder{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap:32px;
  align-items:start;
}

.builder-page{
  padding-top: 40px;
}

.builder-shell{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap:32px;
  align-items:start;
}

.builder-main{
  min-width:0;
}

.builder-summary{
  position:sticky;
  top:120px;
}
.builder-page{
  padding:80px 0;
}

.builder-layout{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:40px;
}

.builder-form{
  background:#fff;
  padding:40px;
  border-radius:24px;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.builder-form label{
  display:block;
  margin-top:20px;
  font-weight:600;
}

.builder-form input,
.builder-form select{
  width:100%;
  padding:14px;
  border-radius:10px;
  border:1px solid #ddd;
  margin-top:8px;
}

.builder-summary{
  background:#fff;
  padding:30px;
  border-radius:24px;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  position:sticky;
  top:120px;
  align-self:start;
}

.summary-item{
  display:flex;
  justify-content:space-between;
  margin-bottom:16px;
}

.summary-price{
  margin-top:20px;
  font-size:22px;
  font-weight:700;
}

.summary-price strong{
  display:block;
  font-size:32px;
  margin-top:5px;
}

.builder-actions{
  margin-top:25px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.builder-preview{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  margin-bottom:24px;
}

.builder-preview img{
  width:100%;
  height:300px;
  object-fit:cover;
  display:block;
}

.builder-intro{
  color:#666;
  margin-bottom:20px;
}

.builder-header{
  text-align:center;
  margin-bottom:40px;
}

.builder-header h1{
  font-size:42px;
  font-weight:700;
  margin-bottom:12px;
}

.builder-header p{
  max-width:640px;
  margin:auto;
  color:#666;
  font-size:16px;
}

.builder-label{
  display:block;
  margin-bottom:12px;
  font-weight:700;
  color:#fff;
}

.builder-image-box{
  margin-top:24px;
}

.builder-image-box img{
  width:100%;
  max-height:320px;
  object-fit:contain;
  display:block;
  border-radius:16px;
  background:#fff;
}

#builder-image-placeholder{
  color:#666;
  margin:0;
}

/* =========================
   HOME BUILDER / CARD OPTIONS
========================= */

.home-system-cards{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:14px;
  margin-bottom:20px;
}

.home-system-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:10px;
  cursor:pointer;
  transition:.2s ease;
}

.home-system-card img{
  width:100%;
  height:190px;
  object-fit:contain;
  background:#fff;
  border-radius:12px;
  margin-bottom:10px;
  display:block;
  padding:10px;
}

.home-system-card span{
  display:block;
  text-align:center;
  color:#fff;
  font-weight:700;
  font-size:.95rem;
}

.home-system-card.active{
  border-color:#cbb78b;
  box-shadow:0 0 0 2px rgba(203,183,139,.25);
}

.home-builder-fields{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:10px;
}

.home-builder-fields input{
  width:100%;
  padding:14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:#fff;
  font:inherit;
}

/* =========================
   BUILDER LAYOUT / SYSTEM CHOICES
========================= */

.quick-quote{
  font-size:65px;
  font-weight:800;
  letter-spacing:1px;
  margin-bottom:6px;
}

.quote-price-row{
  display:flex;
  align-items:center;
  gap:16px;
}

.quote-price-row h3{
  margin:0;
  font-size:32px;
}

.layout-cards{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:20px;
  margin:12px 0 24px;
}

.layout-card{
  background:#fff;
  border:2px solid rgba(20,20,20,.08);
  border-radius:20px;
  padding:18px;
  cursor:pointer;
  transition:.2s ease;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}

.layout-card img{
  width:100%;
  height:220px;
  object-fit:contain;
  background:#fff;
  border-radius:12px;
  padding:8px;
  margin-bottom:10px;
  display:block;
}

.layout-card span{
  display:block;
  text-align:center;
  font-weight:700;
  color:#111;
}

.layout-card.active{
  border-color:#2f5fb3;
  box-shadow:0 0 0 3px rgba(47,95,179,.18);
}

.system-cards-6{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin:12px 0 24px;
}

.system-card{
  background:#fff;
  border:2px solid rgba(20,20,20,.08);
  border-radius:18px;
  padding:18px 14px;
  cursor:pointer;
  transition:.2s ease;
  text-align:center;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.system-card span{
  font-weight:700;
  line-height:1.3;
  color:#111;
}

.system-card:hover{
  transform:translateY(-2px);
}

.system-card.active{
  border-color:#2f5fb3;
  box-shadow:0 0 0 3px rgba(47,95,179,.18);
}

/* =========================
   GUIDE HUB CARDS
========================= */

.guide-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
  margin-top:40px;
}

.guide-card{
  background:#fff;
  border-radius:16px;
  padding:24px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:transform .25s ease, box-shadow .25s ease;
}

.guide-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.guide-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  object-position:center;
  border-radius:12px;
  display:block;
  margin-bottom:16px;
}

.guide-card h3{
  margin:0 0 10px;
}

.guide-card p{
  color:#555;
  line-height:1.6;
  margin:0;
}

.guide-buttons{
  display:flex;
  gap:12px;
  margin-top:16px;
}

.guide-list{
  margin-top:30px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.guide-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 20px;
  background:#f7f9fc;
  border-radius:14px;
}

.guide-row a{
  text-decoration:none;
  font-weight:600;
  color:#2f5fb3;
}

.guide-wrap{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:40px;
  align-items:start;
}

/* =========================
   SUPPORT HUB
========================= */

.support-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
  margin-top:40px;
}

.support-card{
  background:#fff;
  padding:32px;
  border-radius:14px;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  transition:all .2s ease;
}

.support-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

.support-hub{
  padding:70px 0 90px;
}

.support-hub h2{
  font-size:36px;
  margin-bottom:20px;
}

.support-hub p{
  font-size:18px;
  line-height:1.7;
  color:#444;
  margin-bottom:18px;
  max-width:800px;
}

.support-hub h3{
  margin-top:30px;
  font-size:24px;
}

.support-links{
  margin-top:20px;
}

.support-links li{
  margin-bottom:10px;
}

.support-links a{
  color:#2f5fb3;
  font-weight:600;
  text-decoration:none;
}

.support-links a:hover{
  text-decoration:underline;
}

/* =========================
   CONTACT PAGE
========================= */

.contact-page{
  padding:60px 0 80px;
}

.contact-hero{
  padding:20px 0 30px;
}

.contact-hero h1{
  font-size:clamp(2.2rem, 4vw, 3.4rem);
  line-height:1.05;
  margin:0 0 16px;
}

.contact-hero p{
  max-width:760px;
  font-size:18px;
  line-height:1.6;
  color:#555;
  margin:0;
}

.contact-content{
  padding:20px 0 40px;
}

.contact-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:32px;
  align-items:start;
}

.contact-form,
.contact-details{
  background:#fff;
  border-radius:24px;
  padding:32px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.contact-form h2,
.contact-details h2{
  margin:0 0 22px;
  font-size:32px;
  line-height:1.1;
}

.contact-form form{
  display:grid;
  gap:14px;
}

.contact-form label{
  display:block;
  font-weight:600;
  color:#222;
  margin:0;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid #d7deeb;
  border-radius:14px;
  font:inherit;
  background:#fff;
  box-sizing:border-box;
}

.contact-form textarea{
  min-height:180px;
  resize:vertical;
}

.contact-form button{
  margin-top:8px;
  border:none;
  cursor:pointer;
}

.contact-details p{
  color:#555;
  line-height:1.7;
  margin:0 0 12px;
}

.contact-side{
  display:grid;
  gap:24px;
  align-content:start;
}

/* =========================
   BLOG HUB PAGE
========================= */

.blog-page{
  padding:60px 0 80px;
}

.blog-hero{
  padding:20px 0 40px;
}

.blog-hero h1{
  font-size:clamp(2.4rem,5vw,3.6rem);
  line-height:1.05;
  margin:0 0 16px;
}

.blog-hero p{
  max-width:820px;
  color:#555;
  font-size:18px;
  line-height:1.6;
  margin:0;
}

.blog-list-section{
  padding:10px 0 40px;
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
}

.blog-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  display:flex;
  flex-direction:column;
}

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

.blog-card-body{
  padding:24px;
}

.blog-category{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#2f5fb3;
  font-weight:700;
  margin-bottom:10px;
}

.blog-card-body h2{
  font-size:26px;
  line-height:1.15;
  margin:0 0 10px;
}

.blog-excerpt{
  color:#666;
  line-height:1.6;
  margin-bottom:16px;
}

/* =========================
   BLOG ARTICLE PAGE
========================= */

.blog-article-page{
  padding:60px 0 80px;
}

.blog-article-section{
  padding:10px 0 40px;
}

.blog-article-layout{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 320px;
  gap:32px;
  align-items:start;
}

.blog-article-content{
  background:#fff;
  border-radius:24px;
  padding:36px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.blog-article-content h2{
  font-size:32px;
  line-height:1.15;
  margin:40px 0 14px;
}

.blog-article-content p,
.blog-article-content li{
  color:#555;
  font-size:18px;
  line-height:1.7;
}

.blog-article-content ul,
.blog-article-content ol{
  padding-left:22px;
}

.blog-article-content img{
  width:100%;
  height:auto;
  border-radius:14px;
  margin:24px 0;
  display:block;
}

.blog-inline-image{
  width:100%;
  max-width:750px;
  border-radius:12px;
  margin:20px 0 30px 0;
  display:block;
}

.blog-step-image-full{
  width:100%;
  height:auto;
  max-height:none;
  object-fit:contain;
  border-radius:14px;
  margin:24px 0;
  display:block;
  background:#fff;
}

.blog-sidebar{
  position:sticky;
  top:120px;
}

.blog-side-card{
  background:#fff;
  border-radius:24px;
  padding:28px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.blog-side-card h3{
  margin:0 0 18px;
}

.blog-side-card a{
  display:block;
  color:#2f5fb3;
  text-decoration:none;
  font-weight:600;
  margin-bottom:12px;
}

.blog-side-card a:hover{
  text-decoration:underline;
}

.blog-featured-image{
  margin:24px 0 40px;
}

.blog-featured-image img{
  width:80%;
  max-height:620px;
  object-fit:cover;
  border-radius:14px;
  display:block;
  margin:0 auto;
}

.blog-cta{
  margin-top:50px;
  padding:40px 0;
}

.blog-cta .container{
  background:#f5f7fb;
  border-radius:20px;
  padding:40px;
  text-align:center;
}

.blog-cta h2{
  margin-bottom:10px;
}

.blog-cta p{
  margin-bottom:20px;
}

/* =========================
   GUIDE DETAIL PAGE
========================= */

.guide-detail-page{
  padding:50px 0 80px;
}

.guide-detail-hero{
  padding-bottom:30px;
}

.guide-topbar{
  display:grid;
  grid-template-columns:1fr auto;
  gap:30px;
  align-items:start;
  margin-bottom:30px;
}

.guide-top-logo{
  background:#fff;
  border-radius:22px;
  padding:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  max-width:380px;
}

.guide-top-logo img{
  width:100%;
  height:auto;
  display:block;
}

.guide-top-contact{
  font-size:18px;
  line-height:1.6;
  color:#222;
}

.guide-top-contact p{
  margin:0 0 6px;
}

.guide-title-block{
  text-align:center;
  margin-top:20px;
}

.guide-title-block h1{
  font-size:clamp(2rem,4vw,3.2rem);
  line-height:1.08;
  margin-bottom:18px;
}

.guide-hero-actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.guide-summary{
  padding:10px 0 20px;
}

.guide-summary .container{
  background:#fff;
  border-radius:24px;
  padding:28px 32px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.guide-summary h2{
  margin:0 0 14px;
}

.guide-summary ul{
  margin:0;
  padding-left:22px;
  line-height:1.7;
  color:#444;
}

.guide-featured-image{
  padding:10px 0 25px;
}

.guide-featured-image img{
  width:100%;
  display:block;
  border-radius:24px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.guide-steps{
  padding-top:20px;
}

.guide-step-row{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:50px;
  align-items:center;
  margin-bottom:60px;
}

.guide-step-row.reverse{
  grid-template-columns:420px 1fr;
}

.guide-step-row.reverse .guide-step-text{
  order:2;
}

.guide-step-row.reverse .guide-step-image{
  order:1;
}

.guide-step-text{
  background:#fff;
  border-radius:24px;
  padding:40px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.guide-step-text h2{
  margin:0 0 14px;
  font-size:clamp(1.5rem,3vw,2.2rem);
}

.guide-step-text ol{
  margin:0;
  padding-left:22px;
  line-height:1.6;
  color:#333;
}

.guide-step-image{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.guide-step-image img{
  width:100%;
  height:auto;
  display:block;
}

.guide-step-full{
  max-width:820px;
  margin:40px auto;
  background:#fff;
  border-radius:20px;
  padding:32px 36px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.guide-final-note{
  background:#fff;
  border-radius:24px;
  padding:32px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  text-align:center;
  margin-top:20px;
}

.guide-final-note h2{
  margin:0 0 14px;
}

.guide-final-note ol{
  margin:0;
  padding-left:22px;
  text-align:left;
  max-width:900px;
  margin-inline:auto;
  line-height:1.6;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px){
  .shop-layout{
    grid-template-columns:1fr;
  }

  .shop-sidebar{
    position:static;
  }

  .product-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 1000px){
  .guide-step-row,
  .guide-step-row.reverse{
    grid-template-columns:1fr;
  }

  .guide-step-row.reverse .guide-step-text,
  .guide-step-row.reverse .guide-step-image{
    order:initial;
  }

  .guide-topbar{
    grid-template-columns:1fr;
  }
}

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

@media (max-width: 950px){
  .project-grid-luxury{
    grid-template-columns:1fr;
  }

  .project-large,
  .project-wide{
    grid-column:auto;
    grid-row:auto;
    min-height:420px;
  }

  .project-small{
    min-height:320px;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .shop-grid{
    grid-template-columns:1fr;
  }

  .product-grid{
    grid-template-columns:1fr;
  }

  .product-layout,
  .product-details-grid{
    grid-template-columns:1fr;
  }

  .product-points{
    grid-template-columns:1fr;
  }

  .blog-article-layout{
    grid-template-columns:1fr;
  }

  .blog-sidebar{
    position:static;
  }
}

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

  .layout-cards{
    grid-template-columns:1fr;
  }

  .system-cards-6{
    grid-template-columns:repeat(2, 1fr);
  }

  .contact-grid{
    grid-template-columns:1fr;
  }

  .support-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 760px){
  .home-system-cards,
  .home-builder-fields{
    grid-template-columns:1fr;
  }
}

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

  .product-grid{
    grid-template-columns:1fr;
  }

  .shop-toolbar{
    flex-direction:column;
    align-items:flex-start;
  }

  .product-thumbs{
    grid-template-columns:1fr;
  }
}

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

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

.builder-page{
  padding:80px 0;
}

.builder-shell{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:32px;
  align-items:start;
}

.builder-main{
  min-width:0;
}

.builder-summary{
  background:#fff;
  padding:30px;
  border-radius:24px;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  position:sticky;
  top:120px;
  align-self:start;
}
.builder-page{
  padding-top: 40px;
}

.builder-shell{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap:32px;
  align-items:start;
}

.builder-main{
  min-width:0;
}

.builder-summary{
  position:sticky;
  top:120px;
}

.hero-test-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.system-image{
  height:250px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.system-image-1{
  background-image:url("images/frameless-system.jpg");
}
.system-image-2{
  background-image:url("images/post-glass-system.jpg");
}
.system-image-3{
  background-image:url("images/juliette-system.jpg");
}

.home-system-cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-bottom:18px;
}

.home-system-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:10px;
  cursor:pointer;
  text-align:center;
  transition:.2s ease;
}

.home-system-card img{
  width:100%;
  height:auto;
  object-fit:contain;
  background:#fff;
  border-radius:12px;
  margin-bottom:8px;
}

.home-system-card span{
  display:block;
  color:#fff;
  font-weight:600;
  font-size:.92rem;
}

.home-system-card.active{
  border-color:var(--accent);
  box-shadow:0 0 0 2px rgba(155,138,98,.25);
}

.home-builder-fields{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.field input{
  width:100%;
  border:none;
  outline:none;
  background:transparent;
  color:#fff;
  font-size:1rem;
}

.quote-price-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.project-tile{
  min-height:250px;
}

.project-tile-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.project-tile-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.55));
}

.project-tile-content{
  position:relative;
  z-index:2;
}

.guide-row{
  padding:15px 16px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#faf9f6;
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
  margin-top:12px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr .8fr .9fr;
  gap:22px
}
/* FORCE PRIMARY BUTTON COLOUR */
.btn-primary{
  background:#2f5fb3 !important;
  color:#fff !important;
  border:none !important;
}

.btn-primary:hover{
  background:#1f4fa1 !important;
  color:#fff !important;
}

.btn-secondary{
  background:#fff !important;
  color:#2f5fb3 !important;
  border:1px solid #cfd9ea !important;
}

.btn-secondary:hover{
  background:#f5f8ff !important;
  color:#1f4fa1 !important;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  margin-bottom: 8px;
}

.filters {
  width: 260px;
}

.cart-page{
  padding:60px 0 80px;
}

.cart-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin-bottom:30px;
  flex-wrap:wrap;
}

.cart-header h1{
  margin:0;
  font-size:clamp(2.2rem, 4vw, 3.2rem);
}

.cart-layout{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:32px;
  align-items:start;
}

.cart-items-wrap{
  min-width:0;
}

.cart-item-card{
  display:grid;
  grid-template-columns:150px 1fr;
  gap:20px;
  background:#fff;
  border-radius:24px;
  padding:20px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  margin-bottom:18px;
}

.cart-item-image-wrap{
  background:#fff;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px;
}

.cart-item-image{
  width:100%;
  max-height:130px;
  object-fit:contain;
}

.cart-item-content{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:16px;
}

.cart-item-top{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:start;
}

.cart-item-top h3{
  margin:0 0 8px;
  font-size:1.2rem;
  line-height:1.2;
}

.cart-item-price{
  margin:0;
  color:#666;
}

.cart-remove-btn{
  border:none;
  background:none;
  color:#2f5fb3;
  font-weight:600;
  cursor:pointer;
  padding:0;
}

.cart-item-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.cart-qty-controls{
  display:flex;
  align-items:center;
  gap:12px;
  background:#f5f7fb;
  border-radius:999px;
  padding:8px 14px;
}

.cart-qty-controls button{
  width:32px;
  height:32px;
  border:none;
  border-radius:50%;
  background:#fff;
  box-shadow:0 4px 10px rgba(0,0,0,.08);
  cursor:pointer;
  font-size:18px;
}

.cart-qty-controls span{
  min-width:20px;
  text-align:center;
  font-weight:700;
}

.cart-line-total{
  font-size:1.15rem;
  font-weight:700;
  color:#111;
}

.cart-summary-card{
  background:#fff;
  border-radius:24px;
  padding:28px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  position:sticky;
  top:120px;
}

.cart-summary-card h2{
  margin:0 0 20px;
  font-size:1.5rem;
}

.summary-row,
.summary-total{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
  border-bottom:1px solid #edf1f6;
}

.summary-total{
  font-size:1.1rem;
  font-weight:700;
  border-bottom:none;
  padding-top:18px;
}

.cart-checkout-btn,
.cart-clear-btn{
  width:100%;
  margin-top:14px;
}

.empty-cart{
  background:#fff;
  border-radius:24px;
  padding:40px;
  text-align:center;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.empty-cart h2{
  margin:0 0 12px;
}

.empty-cart p{
  margin:0 0 20px;
  color:#666;
}

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

  .cart-summary-card{
    position:static;
  }
}

@media (max-width: 700px){
  .cart-item-card{
    grid-template-columns:1fr;
  }

  .cart-item-top,
  .cart-item-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}

.checkout-page{
  padding:60px 0 80px;
}

.checkout-header{
  margin-bottom:30px;
}

.checkout-header h1{
  margin:0 0 10px;
  font-size:clamp(2.2rem, 4vw, 3.2rem);
}

.checkout-header p{
  margin:0;
  color:#666;
}

.checkout-layout{
  display:grid;
  grid-template-columns:1fr 380px;
  gap:32px;
  align-items:start;
}

.checkout-form-card,
.checkout-summary-card{
  background:#fff;
  border-radius:24px;
  padding:32px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.checkout-form-card h2,
.checkout-summary-card h2{
  margin:0 0 20px;
  font-size:1.5rem;
}

.checkout-form-card form{
  display:grid;
  gap:14px;
}

.checkout-form-card label{
  display:block;
  font-weight:600;
  color:#222;
  margin-bottom:6px;
}

.checkout-form-card input,
.checkout-form-card textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid #d7deeb;
  border-radius:14px;
  font:inherit;
  background:#fff;
  box-sizing:border-box;
}

.checkout-form-card textarea{
  min-height:140px;
  resize:vertical;
}

.checkout-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.juliet-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.checkout-pay-btn{
  margin-top:10px;
  width:100%;
}

.checkout-item-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
  border-bottom:1px solid #edf1f6;
  font-size:.96rem;
}

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

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


/* COMPONENT CARD IMAGES */
.component-card img,
.option-card img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  display: block;
  margin-bottom: 16px;
}

/* POSTS CARD - PRODUCT STYLE IMAGE */
.post-card img{
  width: 100%;
  height: 190px;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 12px;
  border-radius: 18px;
  display: block;
  margin-bottom: 16px;
}

@media (min-width: 768px) {

}

/* =========================
   MOBILE FIXES
========================= */

@media (max-width: 900px){

  .container{
    padding:0 20px;
  }

  .header-inner{
    flex-direction:column;
    align-items:flex-start;
    padding:14px 20px;
    gap:14px;
  }

  .nav{
    display:flex;
    flex-wrap:wrap;
    gap:14px 18px;
    width:100%;
  }

  .header-cta{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    width:100%;
  }

  .header-cta .btn{
    width:auto;
  }

  .hero,
  .shop-hero,
  .product-page,
  .projects-page,
  .contact-page,
  .blog-page,
  .blog-article-page,
  .guide-detail-page,
  .support-hub,
  .builder-page{
    padding-left:0;
    padding-right:0;
  }

  .hero-grid,
  .hero-wrap,
  .builder,
  .builder-shell,
  .builder-layout,
  .product-layout,
  .contact-grid,
  .guide-wrap,
  .shop-layout,
  .blog-article-layout,
  .intro-grid,
  .image-text-grid,
  .project-grid-luxury{
    grid-template-columns:1fr !important;
  }

  .hero-copy{
    padding:28px;
  }

  .hero-copy h1{
    font-size:38px;
    line-height:1.1;
  }

  .split-head h2{
    font-size:34px;
  }

  .hero-visual{
    min-height:320px;
  }

  .home-system-cards,
  .home-builder-fields,
  .layout-cards,
  .system-cards-6,
  .shop-grid,
  .product-grid,
  .support-grid,
  .blog-grid,
  .product-details-grid,
  .footer-grid{
    grid-template-columns:1fr !important;
  }

  .product-card,
  .shop-card,
  .product-details-card,
  .contact-form,
  .contact-details,
  .builder-form,
  .builder-summary,
  .shop-filter-box,
  .cart-summary-card,
  .checkout-form-card,
  .checkout-summary-card{
    border-radius:20px;
  }

  .product-bottom,
  .category-card-bottom,
  .cart-item-top,
  .cart-item-bottom,
  .quote-price-row{
    flex-direction:column;
    align-items:flex-start;
  }

  .product-bottom .btn,
  .category-card-bottom .btn,
  .builder-actions .btn,
  .hero-actions .btn,
  .guide-buttons .btn,
  .hero-buttons .btn{
    width:100%;
  }

  .product-card img,
  .shop-card img,
  .blog-card img,
  .guide-card img{
    height:220px;
  }

  .product-main-image{
    padding:16px;
  }

  .product-main-image img{
    max-height:360px;
  }

  .product-thumbs{
    grid-template-columns:1fr 1fr;
  }

  .builder-summary,
  .shop-sidebar,
  .blog-sidebar,
  .footer,
  .cart-summary-card{
    position:static !important;
    top:auto !important;
  }

  .footer{
    padding:40px 20px;
  }

  .footer-grid{
    gap:20px;
  }

  .guide-step-row,
  .guide-step-row.reverse,
  .guide-topbar{
    grid-template-columns:1fr !important;
  }

  .guide-step-text,
  .guide-step-full,
  .guide-summary .container{
    padding:24px;
  }

  .comparison-table{
    display:block;
    overflow-x:auto;
    white-space:nowrap;
  }
}

@media (max-width: 600px){

  .site-logo{
    height:58px;
  }

  .hero-copy h1{
    font-size:32px;
  }

  .projects-hero-copy h1,
  .contact-hero h1,
  .blog-hero h1,
  .builder-header h1,
  .quote-page h1{
    font-size:30px;
    line-height:1.1;
  }

  .product-price-large{
    font-size:28px;
  }

  .btn{
    padding:13px 18px;
    font-size:15px;
  }

  .product-card-body,
  .shop-card-content,
  .product-info,
  .contact-form,
  .contact-details,
  .builder-form,
  .builder-summary{
    padding:20px;
  }

  .cart-item-card{
    grid-template-columns:1fr;
  }

  .cart-item-image{
    max-height:180px;
  }

  .checkout-grid{
    grid-template-columns:1fr;
  }
}

.mobile-menu-toggle{
  display:none;
  border:none;
  background:#1f4ea8;
  color:#fff;
  width:48px;
  height:48px;
  border-radius:12px;
  font-size:24px;
  cursor:pointer;
}

@media (max-width: 900px){

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

  .mobile-menu-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .nav{
    display:none;
    width:100%;
    flex-direction:column;
    gap:12px;
    padding:16px 0 4px;
  }

  .nav.nav-open{
    display:flex;
  }

  .nav a{
    display:block;
    width:100%;
    font-size:18px;
  }

  .header-cta{
    width:100%;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
  }

  .header-cta .btn{
    flex:1;
    text-align:center;
  }
}

@media (min-width: 901px){
  .nav{
    display:flex !important;
    align-items:center;
    gap:24px;
  }
}

.mobile-menu-toggle{
  display:none;
  border:none;
  background:#1f4ea8;
  color:#fff;
  width:48px;
  height:48px;
  border-radius:12px;
  font-size:24px;
  cursor:pointer;
}

.mobile-menu-toggle{
  display:none;
  border:none;
  background:#1f4ea8;
  color:#fff;
  width:44px;
  height:44px;
  border-radius:12px;
  font-size:22px;
  cursor:pointer;
}

@media (max-width: 900px){

  .site-header .header-inner{
    display:grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-areas:
      "logo menu"
      "cta cta"
      "nav nav";
    align-items:center !important;
    gap:12px !important;
    padding:16px 20px !important;
  }

  .site-header .site-logo{
    grid-area:logo;
    height:52px;
    width:auto;
  }

  .site-header .mobile-menu-toggle{
    grid-area:menu;
    display:flex !important;
    align-items:center;
    justify-content:center;
    margin:0;
  }

  .site-header .header-cta{
    grid-area:cta;
    display:flex !important;
    justify-content:center;
    gap:12px;
    width:100%;
    flex-wrap:nowrap;
  }

  .site-header .header-cta .btn{
    flex:1;
    text-align:center;
    min-width:0;
  }

  .site-header .nav{
    grid-area:nav;
    display:none;
    width:100%;
    flex-direction:column;
    align-items:center;
    gap:12px;
    padding-top:4px;
  }

  .site-header .nav.nav-open{
    display:flex !important;
  }

  .site-header .nav a{
    display:block;
    width:100%;
    text-align:center;
    font-size:18px;
  }
}

@media (min-width: 901px){
  .site-header .mobile-menu-toggle{
    display:none !important;
  }

  .site-header .nav{
    display:flex !important;
    align-items:center;
    gap:24px;
  }

  .site-header .header-cta{
    display:flex !important;
    gap:12px;
  }
}

@media (min-width: 901px){
  .mobile-menu-toggle{
    display:none;
  }

  .nav{
    display:flex !important;
    align-items:center;
    gap:24px;
  }

  .header-cta{
    display:flex !important;
    gap:12px;
  }
}

@media (max-width: 900px){
  .header-cta{
    display:flex !important;
    visibility:visible !important;
    opacity:1 !important;
    width:100%;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
  }

  .header-cta .btn{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    min-width:130px;
    text-align:center;
  }
}

.product-top-section{
  padding:50px 0 20px;
}

.product-layout{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:42px;
  align-items:start;
}

.product-gallery{
  background:#fff;
  border-radius:24px;
  padding:24px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.product-main-image{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
}

.product-main-image img{
  width:100%;
  max-height:640px;
  object-fit:contain;
  display:block;
}

.product-info{
  background:#fff;
  border-radius:24px;
  padding:32px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.product-breadcrumb{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  font-size:14px;
  margin-bottom:16px;
  color:#666;
}

.product-breadcrumb a{
  color:#2f5fb3;
  text-decoration:none;
}

.product-title-main{
  font-size:clamp(2rem,4vw,3rem);
  line-height:1.08;
  margin:0 0 12px;
}

.product-price-large{
  font-size:36px;
  font-weight:800;
  color:#111;
  margin-bottom:10px;
}

.product-meta-line{
  margin:0 0 16px;
  color:#2f5fb3;
  font-weight:600;
}

.product-description{
  font-size:17px;
  line-height:1.7;
  color:#555;
  margin-bottom:22px;
}

.product-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:18px;
}

.product-actions .btn{
  width:100%;
  box-sizing:border-box;
}

.product-reassurance{
  margin:0 0 20px;
  color:#555;
  font-size:15px;
  line-height:1.6;
}

.product-reassurance a{
  color:#2f5fb3;
  text-decoration:none;
  font-weight:600;
}

.product-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:10px;
}

.product-point{
  background:#f5f8ff;
  border:1px solid #dce6f4;
  border-radius:16px;
  padding:14px 16px;
  font-weight:600;
  color:#28456f;
}

.product-details-section{
  padding:24px 0;
}

.product-details-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.product-details-card{
  background:#fff;
  border-radius:24px;
  padding:28px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.product-details-card h2{
  margin:0 0 18px;
  font-size:28px;
}

.product-list{
  margin:0;
  padding-left:20px;
}

.product-list li{
  margin-bottom:10px;
  color:#555;
  line-height:1.6;
}

.spec-row{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
  border-bottom:1px solid #edf1f6;
}

.spec-row:last-child{
  border-bottom:none;
}

.spec-row span{
  color:#666;
}

.spec-row strong{
  color:#111;
  text-align:right;
}

.product-seo-text{
  padding:20px 0 10px;
}

.narrow-text{
  background:#fff;
  border-radius:24px;
  padding:32px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.narrow-text h2{
  margin:0 0 18px;
  font-size:28px;
}

.narrow-text p{
  color:#555;
  line-height:1.75;
  margin:0 0 16px;
}

.product-help-strip{
  padding:24px 0;
}

.product-help-strip-inner{
  background:linear-gradient(180deg,#ffffff 0%,#eef5ff 100%);
  border-radius:24px;
  padding:32px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:center;
  flex-wrap:wrap;
}

.product-help-strip-inner h2{
  margin:0 0 10px;
  font-size:28px;
}

.product-help-strip-inner p{
  margin:0;
  color:#555;
  line-height:1.6;
  max-width:700px;
}

.product-help-buttons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.related-products{
  padding:10px 0 50px;
}

.related-products h2{
  margin-bottom:20px;
}

@media (max-width: 950px){
  .product-layout,
  .product-details-grid{
    grid-template-columns:1fr;
  }

  .product-points{
    grid-template-columns:1fr;
  }

  .product-help-strip-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}

.product-use-box{
  background:#f7f9fc;
  border:1px solid #dce6f4;
  border-radius:16px;
  padding:14px 16px;
  margin:0 0 20px;
  color:#28456f;
  line-height:1.6;
}

.product-reassurance{
  margin:0 0 20px;
  padding:16px 18px;
  background:#f7f9fc;
  border:1px solid #e2e8f2;
  border-radius:16px;
}

.product-reassurance p{
  margin:0 0 8px;
  color:#555;
  line-height:1.5;
}

.product-reassurance p:last-child{
  margin-bottom:0;
}

.product-reassurance a{
  color:#2f5fb3;
  text-decoration:none;
  font-weight:600;
}

.product-layout{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:40px;
  align-items:start;
  min-width: 0;
}

.product-gallery,
.product-info{
  min-width:0;
}

.product-title-main,
.product-info h1{
  overflow-wrap:anywhere;
  word-break:break-word;
}

.product-page{
  overflow-x:hidden;
}

/* =========================
   PRODUCT TOP SECTION FIX
========================= */

.product-page{
  overflow-x:hidden;
}

.product-top-section .container,
.product-page .container{
  max-width:1400px;
  width:100%;
  box-sizing:border-box;
}

.product-layout{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
  gap:24px;
  align-items:start;
}

.product-gallery,
.product-info,
.product-details-card,
.narrow-text,
.product-help-strip-inner{
  width:100%;
  max-width:100%;
  min-width:0;
  box-sizing:border-box;
}

.product-main-image{
  width:100%;
  max-width:100%;
  min-width:0;
}

.product-main-image img{
  width:100%;
  max-width:100%;
  height:auto;
  max-height:640px;
  object-fit:contain;
  display:block;
}

.product-info h1,
.product-title-main,
.product-description,
.product-meta-line,
.product-point,
.product-reassurance,
.product-use-box,
.spec-row span,
.spec-row strong{
  overflow-wrap:anywhere;
  word-break:break-word;
}

.product-actions .btn,
.product-actions button{
  width:100%;
  max-width:100%;
  box-sizing:border-box;
}

@media (max-width: 950px){
  .product-layout{
    grid-template-columns:1fr;
  }
}

/* =========================
   MOBILE-ONLY IMPROVEMENTS
   Desktop unchanged
========================= */
@media (max-width: 900px){

  html,
  body{
    overflow-x:hidden;
  }

  .container{
    padding:0 16px;
  }

  main{
    padding-top:18px;
  }

  .site-header{
    position:sticky;
    top:0;
  }

  .site-header .header-inner{
    padding:12px 16px !important;
    gap:10px !important;
  }

  .site-header .site-logo{
    height:46px;
  }

  .site-header .header-cta{
    gap:10px;
  }

  .site-header .header-cta .btn{
    min-height:46px;
    padding:12px 14px;
    font-size:15px;
  }

  .site-header .nav a{
    font-size:17px;
    padding:6px 0;
  }

  .hero,
  .shop-hero,
  .contact-page,
  .blog-page,
  .projects-page,
  .support-hub,
  .builder-page,
  .product-page{
    padding-top:18px;
  }

  .hero-copy,
  .shop-hero-box,
  .product-info,
  .product-gallery,
  .product-details-card,
  .narrow-text,
  .product-help-strip-inner,
  .contact-form,
  .contact-details,
  .builder-form,
  .builder-summary,
  .shop-filter-box,
  .cart-summary-card,
  .checkout-form-card,
  .checkout-summary-card{
    padding:20px;
    border-radius:20px;
  }

  .product-layout{
    grid-template-columns:1fr !important;
    gap:18px !important;
  }

  .product-main-image{
    padding:0;
  }

  .product-main-image img{
    max-height:320px;
    object-fit:contain;
  }

  .product-title-main,
  .product-info h1{
    font-size:clamp(1.9rem, 7vw, 2.5rem);
    line-height:1.08;
  }

  .product-price-large{
    font-size:30px;
    margin-bottom:8px;
  }

  .product-description{
    font-size:16px;
    line-height:1.6;
    margin-bottom:18px;
  }

  .product-meta-line{
    font-size:14px;
    line-height:1.5;
  }

  .product-use-box,
  .product-reassurance{
    padding:14px;
    font-size:14px;
  }

  .product-actions{
    gap:10px;
    margin-bottom:16px;
  }

  .product-actions .btn,
  .product-actions button,
  .product-help-buttons .btn,
  .hero-buttons .btn,
  .guide-buttons .btn{
    width:100%;
    min-height:50px;
    padding:14px 18px;
    font-size:16px;
  }

  .product-points{
    grid-template-columns:1fr !important;
    gap:10px;
  }

  .product-point{
    padding:14px;
    font-size:15px;
    line-height:1.4;
  }

  .product-details-grid{
    grid-template-columns:1fr !important;
    gap:16px;
  }

  .product-details-card h2,
  .narrow-text h2,
  .product-help-strip-inner h2{
    font-size:24px;
    line-height:1.15;
  }

  .spec-row{
    gap:12px;
    padding:12px 0;
    align-items:flex-start;
  }

  .spec-row span,
  .spec-row strong{
    font-size:15px;
    line-height:1.45;
  }

  .spec-row strong{
    text-align:right;
    max-width:48%;
  }

  .related-products{
    padding-bottom:30px;
  }

  .related-products .product-grid{
    grid-template-columns:1fr !important;
    gap:16px;
  }

  .related-products .product-card img{
    height:220px;
    object-fit:contain;
    padding:14px;
    background:#fff;
  }

  .footer{
    margin-top:40px;
    padding:32px 16px;
  }

  .footer-grid{
    grid-template-columns:1fr !important;
    gap:18px;
  }
}

/* tighter phones */
@media (max-width: 520px){

  .container{
    padding:0 14px;
  }

  .site-header .site-logo{
    height:42px;
  }

  .site-header .header-cta .btn{
    min-height:44px;
    font-size:14px;
    padding:11px 12px;
  }

  .product-info,
  .product-gallery,
  .product-details-card,
  .narrow-text,
  .product-help-strip-inner{
    padding:18px;
  }

  .product-title-main,
  .product-info h1{
    font-size:clamp(1.7rem, 8vw, 2.2rem);
  }

  .product-price-large{
    font-size:28px;
  }

  .product-main-image img{
    max-height:280px;
  }

  .product-point{
    font-size:14px;
  }

  .spec-row{
    flex-direction:column;
    gap:4px;
  }

  .spec-row strong{
    text-align:left;
    max-width:100%;
  }
}

/* =========================
   MOBILE FIXES
   Desktop unchanged
========================= */

.mobile-menu-toggle{
  display:none;
  border:none;
  background:#1f4ea8;
  color:#fff;
  width:44px;
  height:44px;
  border-radius:12px;
  font-size:22px;
  cursor:pointer;
}

@media (max-width: 900px){

  html,
  body{
    overflow-x:hidden;
  }

  .container{
    padding:0 16px;
  }

  main{
    padding-top:18px;
  }

  .site-header{
    position:sticky;
    top:0;
  }

  .site-header .header-inner{
    display:grid !important;
    grid-template-columns:1fr auto !important;
    grid-template-areas:
      "logo menu"
      "cta cta"
      "nav nav";
    align-items:center !important;
    gap:12px !important;
    padding:12px 16px !important;
  }

  .site-header .site-logo{
    grid-area:logo;
    height:46px;
    width:auto;
  }

  .site-header .mobile-menu-toggle{
    grid-area:menu;
    display:flex !important;
    align-items:center;
    justify-content:center;
    margin:0;
  }

  .site-header .header-cta{
    grid-area:cta;
    display:flex !important;
    justify-content:center;
    gap:10px;
    width:100%;
    flex-wrap:nowrap;
    visibility:visible !important;
    opacity:1 !important;
  }

  .site-header .header-cta .btn{
    flex:1;
    min-width:0;
    min-height:46px;
    padding:12px 14px;
    font-size:15px;
    text-align:center;
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
  }

  .site-header .nav{
    grid-area:nav;
    display:none;
    width:100%;
    flex-direction:column;
    align-items:center;
    gap:12px;
    padding-top:4px;
  }

  .site-header .nav.nav-open{
    display:flex !important;
  }

  .site-header .nav a{
    display:block;
    width:100%;
    text-align:center;
    font-size:17px;
    padding:6px 0;
  }

  .hero,
  .shop-hero,
  .product-page,
  .projects-page,
  .contact-page,
  .blog-page,
  .blog-article-page,
  .guide-detail-page,
  .support-hub,
  .builder-page{
    padding-top:18px;
    padding-left:0;
    padding-right:0;
  }

  .hero-grid,
  .hero-wrap,
  .builder,
  .builder-shell,
  .builder-layout,
  .product-layout,
  .contact-grid,
  .guide-wrap,
  .shop-layout,
  .blog-article-layout,
  .intro-grid,
  .image-text-grid,
  .project-grid-luxury,
  .guide-step-row,
  .guide-step-row.reverse,
  .guide-topbar{
    grid-template-columns:1fr !important;
  }

  .home-system-cards,
  .home-builder-fields,
  .layout-cards,
  .system-cards-6,
  .shop-grid,
  .product-grid,
  .support-grid,
  .blog-grid,
  .product-details-grid,
  .footer-grid{
    grid-template-columns:1fr !important;
  }

  .hero-copy,
  .shop-hero-box,
  .product-info,
  .product-gallery,
  .product-details-card,
  .narrow-text,
  .product-help-strip-inner,
  .contact-form,
  .contact-details,
  .builder-form,
  .builder-summary,
  .shop-filter-box,
  .cart-summary-card,
  .checkout-form-card,
  .checkout-summary-card,
  .guide-step-text,
  .guide-step-full,
  .guide-summary .container{
    padding:20px;
    border-radius:20px;
  }

  .hero-copy h1{
    font-size:38px;
    line-height:1.1;
  }

  .split-head h2{
    font-size:34px;
  }

  .hero-visual{
    min-height:320px;
  }

  .product-layout{
    gap:18px !important;
  }

  .product-gallery,
  .product-info{
    min-width:0;
  }

  .product-main-image{
    padding:0;
    width:100%;
    max-width:100%;
    min-width:0;
  }

  .product-main-image img{
    width:100%;
    max-width:100%;
    height:auto;
    max-height:320px;
    object-fit:contain;
    display:block;
  }

  .product-title-main,
  .product-info h1{
    font-size:clamp(1.9rem, 7vw, 2.5rem);
    line-height:1.08;
    overflow-wrap:anywhere;
    word-break:break-word;
  }

  .product-price-large{
    font-size:30px;
    margin-bottom:8px;
  }

  .product-description{
    font-size:16px;
    line-height:1.6;
    margin-bottom:18px;
  }

  .product-meta-line{
    font-size:14px;
    line-height:1.5;
  }

  .product-use-box,
  .product-reassurance{
    padding:14px;
    font-size:14px;
  }

  .product-actions{
    gap:10px;
    margin-bottom:16px;
  }

  .product-actions .btn,
  .product-actions button,
  .product-help-buttons .btn,
  .hero-buttons .btn,
  .guide-buttons .btn,
  .builder-actions .btn,
  .hero-actions .btn{
    width:100%;
    max-width:100%;
    min-height:50px;
    padding:14px 18px;
    font-size:16px;
    box-sizing:border-box;
  }

  .product-points{
    grid-template-columns:1fr !important;
    gap:10px;
  }

  .product-point{
    padding:14px;
    font-size:15px;
    line-height:1.4;
    overflow-wrap:anywhere;
    word-break:break-word;
  }

  .product-details-grid{
    gap:16px;
  }

  .product-details-card h2,
  .narrow-text h2,
  .product-help-strip-inner h2{
    font-size:24px;
    line-height:1.15;
  }

  .spec-row{
    gap:12px;
    padding:12px 0;
    align-items:flex-start;
  }

  .spec-row span,
  .spec-row strong{
    font-size:15px;
    line-height:1.45;
    overflow-wrap:anywhere;
    word-break:break-word;
  }

  .spec-row strong{
    text-align:right;
    max-width:48%;
  }

  .product-card,
  .shop-card,
  .product-details-card,
  .contact-form,
  .contact-details,
  .builder-form,
  .builder-summary,
  .shop-filter-box,
  .cart-summary-card,
  .checkout-form-card,
  .checkout-summary-card{
    border-radius:20px;
  }

  .product-bottom,
  .category-card-bottom,
  .cart-item-top,
  .cart-item-bottom,
  .quote-price-row{
    flex-direction:column;
    align-items:flex-start;
  }

  .product-bottom .btn,
  .category-card-bottom .btn{
    width:100%;
  }

  .product-card img,
  .shop-card img,
  .blog-card img,
  .guide-card img{
    height:220px;
  }

  .related-products{
    padding-bottom:30px;
  }

  .related-products .product-grid{
    grid-template-columns:1fr !important;
    gap:16px;
  }

  .related-products .product-card img{
    height:220px;
    object-fit:contain;
    padding:14px;
    background:#fff;
  }

  .product-thumbs{
    grid-template-columns:1fr 1fr;
  }

  .builder-summary,
  .shop-sidebar,
  .blog-sidebar,
  .cart-summary-card,
  .footer{
    position:static !important;
    top:auto !important;
  }

  .footer{
    margin-top:40px;
    padding:32px 16px;
  }

  .footer-grid{
    gap:18px;
  }

@media (max-width: 640px){

}
}

@media (max-width: 600px){

  .hero-copy h1{
    font-size:32px;
  }

  .projects-hero-copy h1,
  .contact-hero h1,
  .blog-hero h1,
  .builder-header h1,
  .quote-page h1{
    font-size:30px;
    line-height:1.1;
  }

  .product-price-large{
    font-size:28px;
  }

  .btn{
    padding:13px 18px;
    font-size:15px;
  }

  .product-card-body,
  .shop-card-content,
  .product-info,
  .contact-form,
  .contact-details,
  .builder-form,
  .builder-summary{
    padding:20px;
  }

  .cart-item-card{
    grid-template-columns:1fr;
  }

  .cart-item-image{
    max-height:180px;
  }

  .checkout-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 520px){

  .container{
    padding:0 14px;
  }

  .site-header .site-logo{
    height:42px;
  }

  .site-header .header-cta .btn{
    min-height:44px;
    font-size:14px;
    padding:11px 12px;
  }

  .product-info,
  .product-gallery,
  .product-details-card,
  .narrow-text,
  .product-help-strip-inner{
    padding:18px;
  }

  .product-title-main,
  .product-info h1{
    font-size:clamp(1.7rem, 8vw, 2.2rem);
  }

  .product-price-large{
    font-size:28px;
  }

  .product-main-image img{
    max-height:280px;
  }

  .product-point{
    font-size:14px;
  }

  .spec-row{
    flex-direction:column;
    gap:4px;
  }

  .spec-row strong{
    text-align:left;
    max-width:100%;
  }
}

@media (min-width: 901px){
  .site-header .mobile-menu-toggle{
    display:none !important;
  }

  .site-header .nav{
    display:flex !important;
    align-items:center;
    gap:24px;
  }

  .site-header .header-cta{
    display:flex !important;
    gap:12px;
  }
}

/* COOKIE BANNER FIX */

.site-cookie-inner{
  max-width:760px;
  margin:0 auto;
  background:#fff;
  border:1px solid rgba(20,20,20,.08);
  border-radius:18px;
  box-shadow:0 18px 40px rgba(0,0,0,.12);
  padding:18px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.site-cookie-inner p{
  margin:0;
  color:#555;
  font-size:0.95rem;
  line-height:1.5;
  flex:1 1 420px;
}

.site-cookie-inner a{
  color:#2f5fb3;
  text-decoration:none;
  font-weight:600;
}

.site-cookie-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.site-cookie-actions .btn{
  min-height:46px;
}

@media (max-width:760px){
  .site-cookie-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .site-cookie-actions{
    width:100%;
  }

  .site-cookie-actions .btn{
    width:100%;
  }
}

@media (max-width:640px){

  .site-cookie-inner{
    padding:16px;
    gap:14px;
  }
}

.star-rating {
  color: #f5b301; /* gold */
  letter-spacing: 2px;
}

.tick {
  color: #22c55e; /* green */
  font-weight: bold;
}

/* ⭐ ALL stars gold */
.star-rating,
.star-rating *,
.star,
.rating-stars {
  color: #f5b301 !important;
}

/* ✔ ALL ticks green */
.tick,
.check,
.tick-icon {
  color: #22c55e !important;
}

@media (max-width: 900px){
  .hero-wrap{
    display:flex !important;
    flex-direction:column !important;
  }

  .hero-visual{
    order:1;
  }

  .hero-copy{
    order:2;
  }
}

@media (max-width: 900px){
  .top-bar{
    padding:8px 12px !important;
  }

  .top-bar .container{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:8px 14px !important;
    align-items:center;
    justify-items:start;
    font-size:13px !important;
    line-height:1.3;
  }
}

@media (max-width: 520px){
  .top-bar .container{
    grid-template-columns:1fr !important;
    gap:6px !important;
    font-size:12px !important;
  }
}

@media (max-width: 900px){
  .hero{
    padding-top:16px !important;
    padding-bottom:24px !important;
  }

  .hero-copy{
    padding:22px !important;
  }

  .hero-visual{
    min-height:auto !important;
  }

  .hero-visual img,
  .hero-test-image{
    width:100%;
    height:auto;
    display:block;
    border-radius:24px;
  }
}
.top-trust-bar{
  background:#f8fafc;
  padding:10px 0;
  border-bottom:1px solid #eee;
}

.top-bar{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  font-size:.95rem;
  font-weight:600;
  line-height:1.3;
  text-align:center;
}

.top-divider{
  color:#999;
}

.star-rating{
  color:#d4a017;
  letter-spacing:2px;
}

.tick{
  color:#22c55e;
  font-weight:700;
}

@media (max-width: 900px){
  .hero-wrap{
    display:flex;
    flex-direction:column;
    gap:18px;
  }

  .hero-visual{
    order:1;
    min-height:auto;
  }

  .hero-copy{
    order:2;
    min-height:auto;
    padding:26px;
  }

  .hero-test-image{
    width:100%;
    height:auto;
    display:block;
    border-radius:24px;
  }

  .top-trust-bar{
    padding:8px 0;
  }

  .top-bar{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px 12px;
    justify-items:start;
    text-align:left;
    font-size:.8rem;
  }

  .top-divider{
    display:none;
  }
}

@media (max-width: 760px){

  .system-cards-6,
  .system-options,
  .layout-cards{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:10px !important;
  }

  .system-cards-6 > *,
  .system-options > *,
  .layout-cards > *{
    width:100% !important;
    min-width:0 !important;
  }

}

@media (max-width: 760px){

  .system-cards-6,
  .system-options,
  .layout-cards{
    gap:8px !important;
  }

  .system-card,
  .layout-card,
  .option-card{
    padding:8px !important;
    font-size:0.8rem !important;
    border-radius:14px !important;
  }

}

@media (max-width: 760px){

  .layout-cards,
  .system-cards-6,
  .system-options{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:8px !important;
  }

  .layout-card,
  .system-card,
  .option-card{
    width:100% !important;
    min-width:0 !important;
    margin:0 !important;
    padding:10px !important;
    border-radius:16px !important;
    min-height:140px !important;
    height:140px !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:space-between !important;
    align-items:center !important;
    text-align:center !important;
    overflow:hidden !important;
  }

  .layout-card img,
  .system-card img,
  .option-card img{
    width:100% !important;
    max-width:110px !important;
    height:70px !important;
    object-fit:contain !important;
    margin:0 auto 8px !important;
    display:block !important;
  }

  .layout-card span,
  .layout-card h3,
  .layout-card p,
  .system-card span,
  .system-card h3,
  .system-card p,
  .option-card span,
  .option-card h3,
  .option-card p{
    font-size:13px !important;
    line-height:1.2 !important;
    margin:0 !important;
  }
}

@media (max-width: 760px){

  /* TEXT-ONLY CARDS FIX */
  .system-card:not(:has(img)),
  .layout-card:not(:has(img)),
  .option-card:not(:has(img)){
    justify-content:center !important;
    align-items:center !important;
    height:90px !important;
    min-height:90px !important;
    padding:12px !important;
  }

  .system-card:not(:has(img)) span,
  .layout-card:not(:has(img)) span,
  .option-card:not(:has(img)) span{
    font-size:14px !important;
    font-weight:600 !important;
  }

}

@media (max-width: 760px){

  .system-cards-6,
  .system-options,
  .layout-cards{
    display:grid !important;
    grid-template-columns:repeat(2, max-content) !important;
    justify-content:center !important;
    gap:10px !important;
  }

  .system-card,
  .layout-card,
  .option-card{
    width:140px !important;
    max-width:140px !important;
  }

}

@media (max-width: 760px){

  .container{
    width:calc(100% - 40px) !important;
    max-width:420px !important;
    margin:0 auto !important;
  }

}

@media (max-width: 760px){

  .top-bar{
    display:none !important;
  }

  .top-bar-wrapper{
    display:none !important;
  }

}

.top-bar-wrapper{
  background:#f8fafc;
  padding:10px 0;
  border-bottom:1px solid #eee;
}

@media (max-width: 760px){
  .top-bar-wrapper{
    display:none !important;
  }
}

@media (max-width: 760px){

  input,
  select,
  textarea,
  .field input,
  .field select,
  .builder-form input,
  .builder-form select{
    width:100% !important;
    max-width:100% !important;
    box-sizing:border-box !important;
  }

  .builder-form,
  .builder-main,
  .builder-shell,
  .builder-page,
  .container{
    overflow-x:hidden !important;
  }

}

@media (max-width: 760px){

  .builder-form,
  .builder-summary,
  .builder-box{
    width:100% !important;
    max-width:100% !important;
    box-sizing:border-box !important;
  }

}

@media (max-width: 900px){

  .site-header{
    position:sticky;
    top:0;
    z-index:9999;
  }

  .site-header .header-inner{
    display:grid !important;
    grid-template-columns:1fr auto !important;
    grid-template-areas:
      "logo menu"
      "cta cta"
      "nav nav";
    align-items:center !important;
    gap:12px !important;
  }

  .site-header .site-logo{
    grid-area:logo;
  }

  .site-header .mobile-menu-toggle{
    grid-area:menu;
    display:flex !important;
    align-items:center;
    justify-content:center;
    z-index:10001;
  }

  .site-header .header-cta{
    grid-area:cta;
  }

  .site-header .nav{
    grid-area:nav;
    display:none !important;
    flex-direction:column;
    width:100%;
    gap:12px;
    padding-top:8px;
    background:#fff;
    position:relative;
    z-index:10000;
  }

  .site-header .nav.nav-open{
    display:flex !important;
  }

  .site-header .nav a{
    display:block;
    width:100%;
    text-align:center;
    padding:8px 0;
  }
}

@media (max-width: 760px) {
  .shop-sidebar,
  .filters,
  .filter-box,
  .filter-group {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .filter-group label,
  .filters label,
  .shop-sidebar label {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    width: 100% !important;
    margin: 0 0 14px 0 !important;
    text-align: left !important;
  }

  .filter-group input[type="checkbox"],
  .filters input[type="checkbox"],
  .shop-sidebar input[type="checkbox"] {
    margin: 2px 0 0 0 !important;
    flex: 0 0 20px !important;
    width: 20px !important;
    height: 20px !important;
  }

  .filter-group label span,
  .filters label span,
  .shop-sidebar label span {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    text-align: left !important;
    line-height: 1.3 !important;
  }
}

@media (max-width: 760px) {
  .filter-group label,
  .filters label,
  .shop-sidebar label {
    font-size: 15px !important;
    line-height: 1.3 !important;
  }
}

@media (max-width: 760px) {
  .popular-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start;
  }

  .popular-options-grid .option-card {
    width: 100%;
    min-width: 0;
    padding: 14px;
  }

  .popular-options-grid .option-card img {
    max-width: 100%;
    height: auto;
    margin: 0 auto 10px;
    display: block;
  }

  .popular-options-grid .option-card h3,
  .popular-options-grid .option-card p {
    text-align: center;
  }
}

@media (max-width: 760px) {
  .popular-options-grid .option-card img {
    width: 70px;
  }
}

@media (max-width: 760px) {
  .popular-options-section .container {
    width: calc(100% - 24px);
    margin: 0 auto;
  }

  .popular-options-section .popular-options-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    align-items: start !important;
    margin-bottom: 20px !important;
  }

  .popular-options-section .popular-options-grid .product-details-card,
  .popular-options-section .popular-options-grid .option-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 10px !important;
    margin: 0 !important;
  }

  .popular-options-section .popular-options-grid .option-card img {
    width: 100% !important;
    height: 50px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto 8px !important;
  }

  .popular-options-section .popular-options-grid .option-card h3 {
    font-size: 0.82rem !important;
    line-height: 1.15 !important;
    margin: 0 0 6px !important;
    text-align: center !important;
  }

  .popular-options-section .popular-options-grid .option-card p {
    display: none !important;
  }

  .popular-options-section .popular-options-grid .btn {
    width: 100% !important;
    min-height: 34px !important;
    padding: 0 8px !important;
    font-size: 0.74rem !important;
  }
}

@media (max-width: 760px) {
  .popular-post-options-section .container {
    width: calc(100% - 24px);
    margin: 0 auto;
  }

  .popular-post-options-section .popular-post-options-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    align-items: start !important;
    margin-bottom: 20px !important;
  }

  .popular-post-options-section .popular-post-options-grid .product-details-card,
  .popular-post-options-section .popular-post-options-grid .option-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 10px !important;
    margin: 0 !important;
  }

  .popular-post-options-section .popular-post-options-grid .option-card img {
    width: 100% !important;
    height: 50px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto 8px !important;
  }

  .popular-post-options-section .popular-post-options-grid .option-card h3 {
    font-size: 0.82rem !important;
    line-height: 1.15 !important;
    margin: 0 0 6px !important;
    text-align: center !important;
  }

  .popular-post-options-section .popular-post-options-grid .option-card p {
    display: none !important;
  }

  .popular-post-options-section .popular-post-options-grid .btn {
    width: 100% !important;
    min-height: 34px !important;
    padding: 0 8px !important;
    font-size: 0.74rem !important;
  }
}