:root{
   --bg: #ffffff;
   --muted: #f5f3ef;
   --text: #1f2328;
   --text-2: #4a515a;
   --line: rgba(31,35,40,.12);
   --shadow: 0 12px 36px rgba(0,0,0,.12);
   --radius: 14px;

   --header-h: 76px;
   --max: 1120px;
   --gutter: 24px;
   --legacy-max: 1120px; /* legacy content width control */
}

*{ box-sizing:border-box; }
html, body{ height:100%; }

html{
   scroll-padding-top: var(--header-h);
}

body{
   margin:0;
   font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
   color:var(--text);
   background:var(--bg);
   line-height:1.55;
}

.page{ padding-top: 0 !important; }

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

/* --------------------------------------------------
   Header – shared container
-------------------------------------------------- */

.wrap{
   max-width: calc(var(--max) + (var(--gutter) * 2));
   margin: 0 auto;
   padding: 0 var(--gutter);
}

/* -------------------------------------------------
   Stop bullets on lists
   ------------------------------------------------- */

.no-bullets {
   list-style: none;
   padding-left: 0;
   margin-left: 0;
}
.no-bullets li {
   margin: 4px 0;
}
/* --------------------------------------------------
   Header – Topbar
-------------------------------------------------- */

.topbar{
   background: var(--muted);
   border-bottom: 1px solid var(--line);
}

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

.menu-left{
   display: flex;
   align-items: center;
   gap: 10px;
   min-width: 52px;
}

.brand{
   display: flex;
   align-items: center;
   gap: 10px;
   min-width: 200px;
}

.brand .site-name{
   font-size: 16px;
   margin: 0;
   letter-spacing: .2px;
   font-weight: 800;
   line-height: 1.15;
   color: var(--text);
}

.brand small{
   display: block;
   color: var(--text-2);
   font-weight: 700;
}

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

.pill{
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 8px 10px;
   border: 1px solid var(--line);
   border-radius: 999px;
   background: #fff;
   font-weight: 700;
   color: var(--text);
   text-decoration: none;
   white-space: nowrap;
}

.pill:hover{
   text-decoration: none;
   background: rgba(31,35,40,.06);
}

/* Only style the language select in the header */
.top-actions select{
   border: 1px solid var(--line);
   border-radius: 10px;
   padding: 8px 10px;
   font-weight: 700;
   background: #fff;
   color: var(--text);
}

/* --------------------------------------------------
   Header – Nav row
-------------------------------------------------- */

.nav{
   background: var(--muted);
   border-bottom: 1px solid var(--line);
}

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

.navlinks{
   display: flex;
   align-items: center;
   gap: 18px;
   flex-wrap: wrap;
}

/* Works whether anchors are direct children or inside nav.site-nav */
.navlinks a,
.navlinks .site-nav a{
   text-decoration: none;
   color: var(--text-2);
   font-weight: 800;
   font-size: 14px;
   padding: 8px 10px;
   border-radius: 10px;
}

.navlinks a:hover,
.navlinks .site-nav a:hover{
   background: rgba(31,35,40,.06);
   color: var(--text);
}

/* --------------------------------------------------
   Side navigation (off-canvas)
-------------------------------------------------- */

.sidenav{
   height: 100%;
   width: 0;
   position: fixed;
   z-index: 9999;
   top: 0;
   left: 0;
   background: linear-gradient(180deg, #1b2d3e 0%, #14202b 100%);
   overflow-x: hidden;
   transition: .3s;
   padding-top: 60px;
}

.sidenav.is-open{
   width: 300px;
   max-width: 85vw;
}

.sidenav ul{
   list-style: none;
   margin: 0;
   padding: 0;
}

.sidenav a{
   padding: 4px 24px;
   line-height: 1.1;
   text-decoration: none;
   font-size: .90rem;
   color: #ffffff;
   display: block;
}

.content_area .sidenav a:hover,
.content_area .sidenav a:focus,
.content_area .sidenav a:focus-visible{
   background-color: rgba(255,255,255,.08);
   color: #f3bb01 !important;
   text-decoration: none;
}

.sidenav .closebtn{
   position: absolute;
   top: 12px;
   right: 18px;
   font-size: 32px;
   line-height: 1;
}

#mySidenav hr{
   border-color: rgba(255,255,255,0.08);
}

/* REMOVE GAP between header and hero (legacy wrappers) */
#header_wrap{
   margin: 0 !important;
   padding: 0 !important;
}

#header_wrap + *{
   margin-top: 0 !important;
   padding-top: 0 !important;
}

#wrap{
   margin-top: 0 !important;
   padding-top: 0 !important;
}

/* --------------------------------------------------
   Small-screen adjustments
-------------------------------------------------- */

@media (max-width: 760px){
   .brand{ min-width: 0; }
   .top-actions{ gap: 8px; }
   .nav .wrap{ padding-bottom: 10px; }
}

/* --------------------------------------------------
HERO — full width image, centered overlay aligned to site grid 
 --------------------------------------------------*/
.hero{
   position: relative;
   min-height: 540px;
   border-bottom: 1px solid var(--line);
   overflow: hidden;

   /* key: keep overlay aligned to centered content no matter how wide the screen is */
   display: grid;
   grid-template-columns: 1fr minmax(0, var(--max)) 1fr;
}

/* Full-bleed image */
.hero-media{
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   background-size: cover;
   background-position: right center; /* adjust if you prefer center */
}

/* Overlay content sits in the centered column */
.hero-content{
   position: relative;
   z-index: 2;
   grid-column: 2;

   padding: 64px var(--gutter);
   display:flex;
   flex-direction: column;
   align-items:flex-start;
   justify-content:center;

   /* width of the text panel */
   max-width: 640px;
}

/* Hero typography */
.eyebrow{
   margin:0 0 10px 0;
   color:var(--text-2);
   font-weight:600;
   letter-spacing:.3px;
}

.hero h1{
   margin:0;
   font-size: clamp(34px, 3.4vw, 54px);
   line-height:1.05;
   letter-spacing: -0.6px;
}

.lede{
   margin: 16px 0 22px 0;
   color:var(--text-2);
   font-size: 16.5px;
   max-width: 52ch;
}

.hero-cta{
   display:flex;
   flex-wrap:wrap;
   gap:12px;
   margin: 10px 0 18px 0;
}

.btn{
   display:inline-flex;
   align-items:center;
   justify-content:center;
   gap:10px;
   padding: 12px 16px;
   border-radius: 999px;
   border:1px solid transparent;
   font-weight:650;
   text-decoration:none;
   cursor:pointer;
}

.btn:hover{ text-decoration:none; }

.btn-primary{
   background: var(--text);
   color:#fff;
}

.btn-primary:hover{ 
    color:#ffffff;
    filter: brightness(1.05); 
}

   a.btn.btn-primary,
   a.btn.btn-primary:visited{
      background: var(--text);
      color:#fff;
      border-color: transparent;
   }

   a.btn.btn-primary:hover,
   a.btn.btn-primary:active,
   a.btn.btn-primary:focus{
      background: var(--text);
      color:#fff;
      border-color: transparent;
      text-decoration:none;
      filter: brightness(1.05);
   }

.btn-secondary{
   background: transparent;
   border-color: var(--line);
   color: var(--text);
}

.btn-secondary:hover{
   background: rgba(31,35,40,.06);
}

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

.chip{
   font-size: 13.5px;
   color: var(--text-2);
   border:1px solid var(--line);
   background:#fff;
   padding:8px 10px;
   border-radius: 999px;
}

/* Sections */
.section{
   padding: 54px var(--gutter);
}

.section-muted{
   background: var(--muted);
   border-top:1px solid var(--line);
   border-bottom:1px solid var(--line);
}

.section-head{
   max-width: var(--max);
   margin: 0 auto 24px auto;
   text-align: center;
}

.section-head h2{
   margin:0 0 8px 0;
   font-size: 30px;
   line-height:1.15;
   letter-spacing:-.3px;
}

.section-head p{
   margin:0 auto;
   color:var(--text-2);
   max-width: 70ch;
}

.section-title .catalogue-intro{
   flex: 0 0 100%;
   width: 100%;
   display: block;
   margin-top: 8px;
   text-align: center;
}


/* --------------------------------------------------
   Features
-------------------------------------------------- */
.section{
   padding:28px 0 0;
}

.section h2{
   font-family:"Playfair Display",serif;
   font-weight:600;
   font-size:32px;
   letter-spacing:-.2px;
   text-align:center;
   margin:18px 0 8px;
   color:#1f2430;
}

.section .sub{
   text-align:center;
   color:#6b7280;
   margin:0 auto 18px;
   max-width:72ch;
   font-size:14px;
   line-height:1.5;
}

.cards-4{
   display:grid;
   grid-template-columns:repeat(4,1fr);
   gap:20px;
}

.info-card{
   background:#fff;
   border:1px solid rgba(15,23,42,.10);
   border-radius:18px;
   box-shadow:0 10px 24px rgba(15,23,42,.05);
   overflow:hidden;
}

.info-card .thumb{
   aspect-ratio:4/3;
   background:#e9eef5;
   border-bottom:1px solid rgba(15,23,42,.10);
}

.info-card .thumb img{
   width:100%;
   height:100%;
   object-fit:cover;
}

.info-card .body{
   padding:18px 18px 20px;
   background:#fff;
}

.info-card h3{
   margin:0 0 8px;
   font-size:18px;
   line-height:1.25;
   letter-spacing:-.1px;
   color:#1f2430;
   font-weight:700;
}

.info-card p{
   margin:0;
   color:#6b7280;
   font-size:15px;
   line-height:1.55;
}

.format-summary{
   margin: 18px 0 24px 0;
   padding: 14px 18px;
   border: 1px solid rgba(0,0,0,.08);
   border-radius: 10px;
   background: rgba(255,255,255,.65);
   line-height: 1.6;
   font-size: 15px;
}

.format-summary p{
   margin: 0;
}

.format-summary a{
   font-weight: 700;
   text-decoration: underline;
   text-underline-offset: 2px;
}
/* --------------------------------------------------
   Product cards
-------------------------------------------------- */
.prod-section{
   padding: 30px 0 52px;
}

.prod-head{
   text-align: center;
   margin-bottom: 22px;
}

.prod-head h2{
   margin: 0;
   font-size: 34px;
   line-height: 1.12;
   letter-spacing: -.3px;
   color: #1f2937;
}

.prod-head p{
   margin:10px auto 0;
   max-width:64ch;

   color:#4b5563;          /* stronger contrast */
   font-size:16px;
   line-height:1.6;
   font-weight:500;        /* key improvement */

   letter-spacing:.1px;
}

.prod-grid{
   display: grid;
   grid-template-columns: repeat(4,1fr);
   gap: 16px;
   align-items: stretch;
}

   .prod-card{
      background: #ffffff;
      border: 1px solid rgba(15,23,42,.08);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(15,23,42,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;

      display: flex;
      flex-direction: column;
      height: 100%;
   }

   .prod-card:hover{
      transform: translateY(-4px);
      box-shadow: 0 16px 36px rgba(15,23,42,.12);
      border-color: rgba(15,23,42,.14);
   }

   .prod-media{
      position: relative;
      display: block;
      overflow: hidden;
      background: #e9eef5;
      aspect-ratio: 4 / 3;
      flex: 0 0 auto;
   }

.prod-media::after{
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(
      to top,
      rgba(15,23,42,.58) 0%,
      rgba(15,23,42,.26) 38%,
      rgba(15,23,42,.06) 62%,
      rgba(15,23,42,0) 78%
   );
   pointer-events: none;
}

.prod-media img{
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   transform: scale(1.01);
   transition: transform .38s ease;
}

.prod-card:hover .prod-media img{
   transform: scale(1.045);
}

.prod-tags{
   position: absolute;
   top: 12px;
   right: 12px;
   display: flex;
   flex-direction: column;
   align-items: flex-end;
   gap: 7px;
   z-index: 2;
   max-width: 46%;
}

.prod-tags span{
   display: inline-block;
   background: rgba(255,255,255,.94);
   color: #1f2937;
   font-size: 12px;
   line-height: 1.2;
   padding: 7px 11px;
   border-radius: 999px;
   font-weight: 700;
   box-shadow: 0 2px 8px rgba(15,23,42,.10);
   white-space: nowrap;
}

.prod-cta{
   position:absolute;
   right:12px;
   bottom:12px;

   display:inline-flex;
   align-items:center;
   justify-content:center;

   padding:9px 14px;
   border-radius:10px;

   font-size:13px;
   font-weight:800;
   letter-spacing:.2px;

   z-index:2;

   transition:all .18s ease;

   background:#1f2937;   /* dark slate */
   color:#fff;
   box-shadow:0 6px 16px rgba(0,0,0,.25);
}
.prod-card:hover .prod-cta{
   background:#111827;
   transform:translateY(-2px);
}

   .prod-body{
      padding: 16px 16px 17px;
      display: flex;
      flex-direction: column;
      flex: 1 1 auto;
   }

   .prod-title{
      margin: 0;
      font-size: 17px;
      line-height: 1.25;
      font-weight: 800;
      letter-spacing: -.2px;
      color: #1f2937;
   }

   .prod-sub{
      margin-top: 7px;
      color: #6b7280;
      font-size: 13px;
      line-height: 1.5;
      min-height: 39px;
   }

   .prod-row{
      margin-top: auto;
      padding-top: 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
   }

   .prod-price{
      font-size: 17px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: -.2px;
      color: #111827;
      white-space: nowrap;
      flex: 0 0 auto;
   }

   .prod-swatches{
      display: flex;
      gap: 8px;
      align-items: center;
      justify-content: flex-end;
      flex: 0 0 auto;
      min-width: 52px;
   }

.prod-swatches img{
   width:22px;
   height:22px;
   border-radius:6px;
   object-fit:cover;
   border:1px solid rgba(15,23,42,.15);
   background:#fff;
   box-shadow:0 1px 3px rgba(0,0,0,.08);
   transition:transform .15s ease, box-shadow .15s ease;
   cursor:default;
}

.prod-swatches img:hover{
   transform:scale(1.08);
   box-shadow:0 4px 10px rgba(0,0,0,.15);
}

/* --------------------------------------------------
   Responsive
-------------------------------------------------- */
@media (max-width: 1200px){
   .prod-grid{
      grid-template-columns: repeat(2,1fr);
   }
}

@media (max-width: 720px){
   .prod-section{
      padding: 24px 0 44px;
   }

   .prod-head h2{
      font-size: 28px;
   }

   .prod-head p{
      font-size: 15px;
   }

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

   .prod-tags{
      max-width: 58%;
   }

   .prod-tags span{
      font-size: 11.5px;
      padding: 6px 10px;
   }

   .prod-title{
      font-size: 16px;
   }

   .prod-sub{
      min-height: 0;
   }

   .prod-price{
      font-size: 16px;
   }
}

/* Trust strip */
.trust-strip{
   background: #2a2f36;
   color: #f2f4f6;
}

.trust-strip-inner{
   max-width: var(--max);
   margin: 0 auto;
   padding: 18px var(--gutter);
   display:grid;
   grid-template-columns: repeat(4, 1fr);
   gap:12px;
   align-items:center;
}

.trust-item{
   display:flex;
   align-items:center;
   gap:10px;
   font-weight:600;
   font-size: 14.5px;
   opacity:.95;
}

.tick{
   width:18px;
   height:18px;
   display:inline-flex;
   align-items:center;
   justify-content:center;
   border:1px solid rgba(255,255,255,.22);
   border-radius:999px;
}

/* Steps */
.steps{
   max-width: var(--max);
   margin: 0 auto;
   display:grid;
   grid-template-columns: repeat(3, 1fr);
   gap:16px;
}

.step{
   background:#fff;
   border:1px solid var(--line);
   border-radius: var(--radius);
   padding:18px;
   display:flex;
   flex-direction:column;
   align-items:center;
   text-align:center;
}

.step-num{
   width:34px;
   height:34px;
   border-radius:999px;
   border:1px solid var(--line);
   display:flex;
   align-items:center;
   justify-content:center;
   font-weight:750;
   margin-bottom:10px;
}

.steps .step-num{
   display:flex !important;
   align-items:center !important;
   justify-content:center !important;
   margin: 0 auto 10px auto !important;
   float:none !important;
   text-align:center !important;
}
.step h3{
   margin:0 0 6px 0;
   font-size:18px;
}

.step p{
   margin:0;
   color: var(--text-2);
}

.section-cta{
   max-width: var(--max);
   margin: 18px auto 0 auto;
   text-align:center;
}



/* Contact */
.contact-card{
   max-width: var(--max);
   margin: 0 auto;
   border:1px solid var(--line);
   border-radius: var(--radius);
   background:#fff;
   padding:18px;
   display:grid;
   grid-template-columns: repeat(3, 1fr);
   gap:14px;
}

.contact-card a{ color: var(--text); }
.contact-card strong{ display:inline-block; margin-bottom:6px; }

/* page-summary */
.page-summary{
   padding: 22px var(--gutter) 40px var(--gutter);
}

.page-summary-inner{
   max-width: var(--max);
   margin: 0 auto;
   color: var(--text-2);
   border-top:1px solid var(--line);
   padding-top:18px;
}

/* Footer */
.footer{
   padding: 22px var(--gutter) 40px var(--gutter);
}

.footer-inner{
   max-width: var(--max);
   margin: 0 auto;
   color: var(--text-2);
   border-top:1px solid var(--line);
   padding-top:18px;
}

/* Responsive */
@media (max-width: 980px){
   :root{ --header-h: 72px; }

   .trust-strip-inner{
      grid-template-columns: 1fr 1fr;
   }

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

   .two-col{
      grid-template-columns: 1fr;
   }

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

   .hero{
      min-height: 520px;
      grid-template-columns: 1fr;
   }

   .hero-content{
      grid-column: 1;
      padding: 28px var(--gutter) 36px var(--gutter);
      max-width: 720px;
      justify-content:flex-start;
   }
}

@media (max-width: 760px){
   .site-nav{
      display:none;
      position:absolute;
      top: var(--header-h);
      left: 12px;
      right: 12px;
      background:#fff;
      border:1px solid var(--line);
      border-radius: 14px;
      padding: 10px;
      box-shadow: var(--shadow);
      flex-direction:column;
      align-items:stretch;
      gap:0;
   }

   .site-nav.is-open{ display:flex; }
   .site-nav a{ padding: 12px 12px; }

   .header-actions{ display:none; }
   .nav-toggle{ display:block; }

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

/* --------------------------------------------------
   Blog accordion – “single card list” style
-------------------------------------------------- */

.blog-wrap .page-build-id,
.blog-wrap [style*="text-align:center"]{
  text-align:center !important;
  font-size:.9rem;
  color:#6b7280;
  margin:0 0 12px;
}

.blog-wrap{
  max-width:900px;
  margin:0 auto;
  background:transparent;
  border:1px solid #e0e4ec;
  border-radius:16px;
  box-shadow:0 10px 26px rgba(0,0,0,0.06);
  overflow:hidden;
}

.blog-wrap .blog_accordion{
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  padding:16px 18px !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
  background:transparent !important;
  color:#111827 !important;
  cursor:pointer;
  text-align:left;
  font-size:1rem;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border-top:1px solid #eef2f7 !important;
}
.blog-wrap .blog_accordion:first-of-type{ border-top:0 !important; }
.blog-wrap .blog_accordion:hover{ background:transparent !important; }

.blog-wrap .blog_accordion:after{
  content:"+";
  font-size:1.15rem;
  color:#6b7280;
  margin-left:auto;
  float:none !important;
  line-height:1;
}
.blog-wrap .blog_accordion.active:after{
  content:"–";
  color:#111827;
}

.blog-wrap .blog_panel{
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
  background:#fff !important;
  padding:0 18px !important;
  color:#1f2937 !important;
  line-height:1.65;
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}

.blog-wrap .blog_panel > *:first-child{ margin-top:12px; }
.blog-wrap .blog_panel > *:last-child{ margin-bottom:16px; }

.blog-wrap .blog_panel p{ margin:10px 0; }
.blog-wrap .blog_panel ul,
.blog-wrap .blog_panel ol{
  margin:10px 0 14px;
  padding-left:18px;
}
.blog-wrap .blog_panel li{ margin:6px 0; }

/* --------------------------------------------------
   Hard overrides to defeat legacy wrapper CSS
-------------------------------------------------- */

html, body{ 
    height:100%;
    background: #fff !important; 
}

#wrap, #header_wrap, #main_wrap, #main_content, .content_area{
  background:transparent !important;
  padding:0 !important;
  margin:0 !important;
  border:0 !important;
  width:auto !important;
  max-width:none !important;
}

center{ display:block; width:auto !important; }

/* Some legacy pages use TD background="...gif" – neutralise it */
td[background]{
  background: none !important;
  background-color: #fff !important;
}

.request_heading {
   text-decoration:none;
   font-weight:600;
   padding-left:0.25rem;
   padding-right:0.25rem;
}
.request_text {
   text-decoration:none;
   font-weight:normal;
   padding-left:0.25rem;
   padding-right:0.25rem;
   padding-top:0.25rem;
   padding-bottom:0.25rem;	
}
.request_text_medium {
   font-size:0.85rem;
   line-height:0.75rem;	   
   text-decoration:none;
   font-weight:normal;
   padding-left:0.25rem;
   padding-right:0.25rem;
   padding-top:0.25rem;
   padding-bottom:0.25rem;	
}	  
.request_commander {
   font-size:0.85rem;
   color:#29088A;
   font-weight:650;	   
   padding-left:0.40rem;
   padding-right:0.40rem;
   padding-top:0.40rem;
   padding-bottom:0.40rem;	
}	   
.request_commander  a{	
   font-size:0.85rem;
   color:#29088A;
   font-weight:650;	   
   padding-left:0.25rem;
   padding-right:0.25rem;
   padding-top:0.25rem;
   padding-bottom:0.25rem;	
}
.request_commander  a:hover {
   color:#000000;
   font-weight:850;
}	

.order_screen {
   font-size: 0.85rem;
   font-weight: normal;
}

.order_screen_text {
   font-size:0.85rem;
   line-height:0.75rem;	   
   text-decoration:none;
   font-weight:normal;
}	   
.order_screen_offer_text {
   font-size:0.85rem;
   line-height:0.75rem;	   
   text-decoration:italic;
   font-weight:normal;
}		  
.order_screen_heading {
   font-size:0.85rem;
   text-decoration:none;
   color:blue;
   font-weight:bold;
   padding-left:5px;
   padding-right:5px;
   padding-top:1px;
   padding-bottom:1px;		   
}
.content_area a:link, a:visited  {
   text-decoration:none;
}
.content_area a:hover {
   color: #000000;
   font-weight:650;
   text-decoration:none;
}

.buybutton, .soldoutbutton, .infobutton {
   font-size:1.2rem !important ;
   padding-left:0.3rem;
   padding-right:0.3rem;
   padding-top:0.2rem;
   padding-bottom:0.2rem;
   background: #f3bb01;
   color: black !important;
   /* dont let the button be split acrosss multiple lines */
   white-space: nowrap;
   margin-bottom: 0.5rem
   /* specify the border*/
   border:2px;
   border-style:solid;
   border-color:#847e83;
   webkit-border-radius: 10px; /* Safari prototype */
   moz-border-radius: 10px; /* Gecko browsers */
   border-radius: 10px; /* Everything else - limited support at the moment */
}
.buybutton:hover {
   background: #53760D;
}

.soldoutbutton {
   background: #cd5c5c;
   color: black;
   border-color:#847e83;
}
 .soldoutbutton:hover {
   background: #cd5c5c;
}
	
.infobutton {
   background: #f3bb01;
   color: black;
   border-color:#847e83;
		 
}
.infobutton:hover {
   background: #53760D;
}

/* Mobile: prevent tables from forcing horizontal scroll */
@media (max-width: 768px) {
  body { overflow-x: hidden; }

  /* Let layout tables shrink */
  table { 
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Give tables a “scroll container” only when needed */
  .table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Images must never overflow */
  img, .responsive-image {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Add comfortable side padding on mobile */
  .content_area, #main_content, .wrap {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 768px) {
  .top-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center; /* or flex-start */
  }

  .top-actions .pill,
  .top-actions select,
  .menu-toggle {
    font-size: 14px;
    padding: 8px 10px;
  }

  /* Phone number: don’t force a huge width */
  .top-actions a.pill[href^="tel:"] { white-space: nowrap; }
}

a.pill.buy-now-btn{
  background:var(--coral);
  color:#fff;
  border:1px solid rgba(0,0,0,.06);
}
a.pill.buy-now-btn:hover{ 
  color:#000;              /* turn text black */
  filter:brightness(.97);  /* keep subtle hover effect */
}
a.pill.buy-now-btn:focus{
  outline:3px solid rgba(201,162,39,.45);
  outline-offset:3px;
}

.coolaroo-pill:hover {
   background: inherit;
   color: inherit;
   box-shadow: none;
   transform: none;
}
.coolaroo-pill { pointer-events:none; }

@media (max-width: 640px){
  .top-actions{
    overflow-x: visible !important;
  }
}

.intro{
  max-width: var(--max);   /* comfortable reading width */
  margin: 0 auto;     /* center it */
  padding: 0 14px;    /* breathing room on phones */
}

/* ===========================
   MOBILE HEADER (2 lines)
   + hide Home icon
   =========================== */
@media (max-width: 520px){

  /* Force 2-line header:
     line 1 = brand, line 2 = actions */
  .topbar .wrap{
    flex-wrap: wrap;
  }
  .topbar .brand{
    flex: 1 1 100%;
    justify-content: flex-start;
    text-align: left;
    gap: 10px !important;
  }
  .topbar .top-actions{
    flex: 1 1 100%;
    flex-wrap: nowrap;         /* keep actions on one line */
    justify-content: center;   /* or space-between if you prefer */
    gap: 8px;
  }

  /* Make controls smaller so they fit */
  .topbar .pill,
  .topbar .menu-toggle{
    padding: 8px 10px;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  /* Hide the "home" pill on mobile (home exists in the menu anyway) */
  .topbar .top-actions a.pill[href^="/?wcm=MENU"]{
    display: none !important;
  }

  /* Stop language select blowing out the width */
  #language_select{
    width: 110px;
    max-width: 110px;
    padding: 6px 8px;
    font-size: 0.95rem;
  }
}

/* FIX: remove the legacy spacer between header and hero */
.clear{
   display:none !important;
   height:0 !important;
   margin:0 !important;
   padding:0 !important;
   line-height:0 !important;
}

/* Ensure the first content block starts immediately under the nav */
#main_wrap,
#main_content{
   margin:0 !important;
   padding:0 !important;
}

/* Sometimes the inner content_area gets top padding/margins from legacy rules */
#main_content > .content_area{
   margin:0 !important;
   padding:0 !important;
}

/* No extra gap after nav */
.nav{
   margin:0 !important;
}

/* ==========================================
   Constrain legacy content blocks only
   ========================================== */
@media (min-width: 980px){
   body:not(:has(main.page)) #main_wrap{
      width: 80% !important;
      max-width: 1180px !important;
      margin-left: auto !important;
      margin-right: auto !important;
   }

   body:not(:has(main.page)) #main_content,
   body:not(:has(main.page)) .content_area{
      width: 100% !important;
   }
}

/* ==========================================
   2603: keep ONLY topbar fixed
   nav stays normal / scrolls away
   ========================================== */

.topbar{
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 2000;
   border-bottom: 1px solid var(--line);
   box-shadow: 0 8px 20px rgba(15,23,42,.08);
}

/* Push everything down below the fixed topbar */
body{
   padding-top: 64px;
}

/* Old wrapper resets can stay */
#header_wrap{
   position: relative;
   z-index: 1000;
}


/* =========================================================
   catalogue PAGE LAYOUT
   ========================================================= */

.catalogue-shortcuts{
   max-width:1120px;
   margin:22px auto 34px;
   display:grid;
   grid-template-columns:repeat(4, minmax(0, 1fr));
   gap:18px;
}

.catalogue-shortcut-card{
   display:block;
   text-decoration:none;
   background:#fcfaf6;
   border:1px solid #e6ddd2;
   border-radius:20px;
   padding:18px 18px 16px;
   box-shadow:0 10px 26px rgba(0,0,0,.05);
   min-height:108px;
   transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.catalogue-shortcut-card:hover{
   transform:translateY(-1px);
   box-shadow:0 14px 30px rgba(0,0,0,.08);
   border-color:#d8ccbc;
}

.shortcut-label{
   display:block;
   font-size:13px;
   line-height:1.45;
   color:#6a7787;
   font-weight:700;
   margin-bottom:8px;
}

.shortcut-product{
   display:block;
   font-size:18px;
   line-height:1.3;
   font-weight:900;
   color:var(--ink);
}

.catalogue-list{
   max-width:1120px;
   margin:0 auto 36px;
}

.catalogue-card{
   background:#fcfaf6;
   border:1px solid #e6ddd2;
   border-radius:24px;
   box-shadow:0 14px 34px rgba(0,0,0,.06);
   padding:32px 36px 28px;
   margin:0 0 30px;
}

.catalogue-card-top{
   display:grid;
   grid-template-columns:320px minmax(0, 1fr);
   gap:42px;
   align-items:start;
   margin-bottom:22px;
}

.catalogue-media{
   text-align:left;
}

.catalogue-image{
   display:block;
   width:100%;
   max-width:300px;
   height:auto;
   margin:0 0 8px 0;
   border-radius:20px;
   background:#f7f2eb;
   padding:16px;
   border:1px solid #e7ddd2;
   box-shadow:inset 0 1px 0 rgba(255,255,255,.7);
}

.catalogue-colours{
   margin-top:2px;
   text-align:left;
}

.catalogue-colours-label{
   display:block;
   font-size:15px;
   font-weight:800;
   color:#243244;
   line-height:1.35;
   margin:0 0 4px 0;
}

.catalogue-colour{
   display:inline-block;
   margin:0 12px 0 0;
   font-size:13px;
   color:#334155;
   vertical-align:top;
   text-align:center;
}

.catalogue-colour img{
   display:block;
   margin:4px auto 0;
   border-radius:6px;
   border:1px solid #e2d7ca;
}

.catalogue-main{
   text-align:left;
   padding-top:6px;
}

.catalogue-ref{
   font-size:15px;
   line-height:1.5;
   color:#7b8797;
   font-weight:700;
   margin-bottom:12px;
   letter-spacing:.2px;
}

.catalogue-title{
   margin:0 0 12px;
   font-size:28px;
   line-height:1.22;
}

.catalogue-title a{
   text-decoration:none;
   color:var(--ink);
}

.catalogue-subtitle{
   font-size:19px;
   line-height:1.5;
   color:#425164;
   font-weight:700;
   margin-bottom:18px;
}

.catalogue-price-row{
   display:flex;
   align-items:center;
   gap:16px;
   flex-wrap:wrap;
   margin-bottom:20px;
}

.catalogue-price-old{
   font-size:20px;
   line-height:1.1;
   color:#9aa4b3;
   text-decoration:line-through;
   font-weight:700;
}

.catalogue-price-new{
   font-size:32px;
   line-height:1.1;
   color:var(--navy);
   font-weight:900;
}

.catalogue-cta-row{
   display:flex;
   align-items:center;
   gap:14px;
   flex-wrap:wrap;
   margin-top:6px;
}

.catalogue-ratings{
   border-top:1px solid #ece4da;
   border-bottom:1px solid #ece4da;
   padding:22px 0;
   margin:0 0 22px;
}

.catalogue-score-box{
   display:flex;
   align-items:center;
   gap:12px;
   flex-wrap:wrap;
   margin-bottom:16px;
}

.catalogue-score-label{
   font-size:14px;
   color:#6c7a8c;
   font-weight:700;
}

.catalogue-score-value{
   font-size:24px;
   color:var(--ink);
   font-weight:900;
}

.catalogue-rating-grid{
   display:grid;
   grid-template-columns:repeat(2, minmax(0, 1fr));
   gap:12px 24px;
}

.catalogue-rating-item{
   display:flex;
   justify-content:space-between;
   align-items:center;
   gap:14px;
   padding:10px 0;
   border-bottom:1px solid #f1ebe3;
}

.catalogue-rating-label{
   font-size:15px;
   line-height:1.45;
   color:#334155;
   font-weight:700;
}

.catalogue-rating-stars{
   font-size:18px;
   line-height:1;
   color:#f2b01e;
   white-space:nowrap;
}

.catalogue-text{
   text-align:left;
   font-size:16px;
   line-height:1.8;
   color:#1f2937;
   margin-top:8px;
}

.catalogue-text p{
   margin:0 0 14px;
}

.catalogue-text ul{
   margin:12px 0 0;
   padding-left:0;
   list-style:none;
}

.catalogue-text li{
   margin:6px 0;
}

/* =========================================================
   catalogue PAGE MOBILE
   ========================================================= */

@media (max-width: 900px){

  .catalogue-shortcuts{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:14px;
  }

  .catalogue-card{
    padding:22px 18px 20px;
    border-radius:20px;
  }

  .catalogue-card-top{
    grid-template-columns:1fr;
    gap:18px;
    margin-bottom:18px;
  }

  .catalogue-media{
    text-align:center;
  }

  .catalogue-image{
    max-width:240px;
  }

  .catalogue-colours{
    margin-top:14px;
  }

  .catalogue-colour{
    top:0;
    margin:0 8px 8px 0;
  }

  .catalogue-main{
    text-align:center;
    padding-top:0;
  }

  .catalogue-price-row,
  .catalogue-cta-row,
  .catalogue-score-box{
    justify-content:center;
  }

  .catalogue-rating-grid{
    grid-template-columns:1fr;
    gap:8px;
  }

  .catalogue-rating-item{
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
    padding:10px 0;
  }

  .catalogue-text{
    text-align:left;
  }
}

@media (max-width: 640px){

  .catalogue-shortcuts{
    grid-template-columns:1fr;
    margin:18px auto 26px;
  }

  .catalogue-shortcut-card{
    min-height:auto;
    padding:16px 16px 14px;
  }

  .catalogue-card{
    padding:18px 14px 16px;
    margin:0 0 20px;
  }

  .catalogue-title{
    font-size:22px;
  }

  .catalogue-subtitle{
    font-size:16px;
    margin-bottom:14px;
  }

  .catalogue-price-new{
    font-size:24px;
  }

  .catalogue-price-old{
    font-size:17px;
  }

  .catalogue-ratings{
    padding:16px 0;
    margin:0 0 16px;
  }

  .catalogue-cta-row{
    flex-direction:column;
    align-items:stretch;
  }

  .catalogue-cta-row .buybutton,
  .catalogue-cta-row .infobutton,
  .catalogue-cta-row .soldoutbutton{
    display:block;
    width:100%;
    text-align:center;
    margin:0;
  }

  .catalogue-text{
    font-size:15px;
    line-height:1.75;
  }
}
