/* Liverpool Blinds — clone styles */

/* Custom aliases so the original site's font-family names (e.g. `robotocondensedbold`,
   `robotoregular`) work verbatim — each maps to the matching Google Fonts file. */
@font-face {
  font-family: 'robotocondensedbold';
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/robotocondensed/v31/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpcBO5Xw.woff2') format('woff2');
}
@font-face {
  font-family: 'robotoregular';
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmUiAo.woff2') format('woff2');
}
@font-face {
  font-family: 'robotolight';
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuaabVmUiAo.woff2') format('woff2');
}
@font-face {
  font-family: 'robotoblack';
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuZtalmUiAo.woff2') format('woff2');
}
@font-face {
  font-family: 'robotobold';
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuYjalmUiAo.woff2') format('woff2');
}

/* ============ Design tokens ============ */
:root {
  --color-cyan: #18BECE;
  --color-cyan-dark: #0FA0AE;
  --color-cyan-darker: #0D8A96;
  --color-blue: #007AAB;
  --color-blue-light: #0085B4;
  --color-text: #262626;
  --color-text-muted: #6B7C82;
  --color-footer-bg: #262626;
  --color-footer-text: #FFFFFF;
  --color-card-grey: #EDEDED;
  --color-bg: #FFFFFF;
  --color-line: #D6DDDF;

  --font-body: 'Roboto', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-nav: 'Roboto Condensed', 'Roboto', system-ui, Arial, sans-serif;

  --container: 1300px;
  --topbar-h: 40px;
  --header-h: 100px;
  --nav-h: 56px;
  --footer-pad: 60px;

  /* Layer plan */
  --z-header: 100;
  --z-nav-backdrop: 190;
  --z-nav-drawer: 200;
  --z-modal: 300;
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ============ Layout ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ Top bar ============ */
.topbar {
  background: var(--color-blue);
  color: #fff;
  font-family: robotoregular;
  font-weight: normal;
  font-size: 12px;
  line-height: 1.2;
  transition: background 0.25s ease;
}
body.menu-open .topbar { background: #18bece; }
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--topbar-h);
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
}
.topbar a { color: #fff; }
.topbar .tb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar .tb-item img {
  width: auto;
  height: 14px;
  flex-shrink: 0;
  display: block;
}

/* ============ Header ============ */
.site-header {
  background: #fff;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo {
  display: block;
  width: 232px;
  height: 60px;
  background-image: url('/assets/images/logo.png');
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 232px auto;
}
.brand-logo--sm {
  width: 194px;
  height: 50px;
  background-size: 194px auto;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cyan);
  color: #fff;
  padding: 16px 28px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: background 0.18s ease;
}
.btn-cta:hover { background: var(--color-blue); }
.topbar .burger {
  display: none;
  background: none;
  border: 0;
  padding: 4px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.topbar .burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #000;
  margin: 4px auto;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.topbar .burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.topbar .burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.topbar .burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ============ Primary nav ============ */
.site-nav {
  background: #fff;
}
.site-nav .container > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.site-nav .container > ul > li {
  position: relative;
  text-align: center;
}
.site-nav .container > ul > li > a {
  display: block;
  padding: 12px 0;
  font-family: robotoregular;
  font-weight: normal;
  font-size: 17px;
  text-transform: uppercase;
  color: #333;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}
.site-nav .container > ul > li:hover > a,
.site-nav .container > ul > li.is-active > a {
  color: var(--color-blue-light);
}
.site-nav .has-children > a::after { content: none; }
.site-nav .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  min-width: 240px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  display: none;
  z-index: var(--z-nav-drawer);
}
.site-nav .has-children:hover > .submenu,
.site-nav .has-children:focus-within > .submenu {
  display: block;
}
.site-nav .submenu a {
  display: block;
  padding: 12px 20px;
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--color-text);
  text-align: center;
}
.site-nav .submenu a:hover { background: var(--color-cyan); color: #fff; }
.site-nav .submenu li.is-active > a { background: var(--color-cyan); color: #fff; }

/* ============ Page-title band ============ */
.page-title-band {
  background: var(--color-cyan);
  color: #fff;
  padding: 36px 24px;
  text-align: center;
}
.page-title-band h1 {
  margin: 0;
  font-family: robotobold;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============ Home hero slider ============ */
.hero-section {
  background: #000;
}
.hero-section .slider-wrapper {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.hero-section .theme-default .nivoSlider {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 700;
  box-shadow: none;
  overflow: hidden;
}
.hero-section .nivoSlider img.nivo-main-image,
.hero-section .nivoSlider > img {
  width: 100% !important;
  height: auto !important;
  max-width: 100%;
  left: 0 !important;
  top: 0 !important;
}
.hero-section .nivo-slice img,
.hero-section .nivo-box img {
  width: auto;
  max-width: none;
}

/* ============ Sections ============ */
.section { padding: 56px 0; }
.section--products { padding: 18px 0 40px; }
.container--wide { max-width: 1300px; }
.section-tagline {
  text-align: center;
  font-family: robotolight;
  font-weight: normal;
  font-size: 24px;
  color: var(--color-text);
  margin: 0 0 18px;
}

/* ============ Product-card grid (home) ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  text-align: center;
}
.product-card a { display: block; }
.product-card .img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.product-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card .label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: robotoblack;
  font-weight: normal;
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  z-index: 2;
}
.product-card .label::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}
.product-card:hover .label::before { opacity: 1; }
.product-card .product-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.product-card .product-list li {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text);
  padding: 0;
  line-height: 1.35;
}

/* ============ Why-band (blue, on home) ============ */
.why-band {
  background: var(--color-blue-light);
  color: #fff;
  padding: 64px 0 80px;
  text-align: center;
}
.why-band .eyebrow {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.why-band h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.1;
}
.why-band .intro {
  max-width: 880px;
  margin: 0 auto 40px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}
.why-card {
  background: #fff;
  color: var(--color-text);
  padding: 44px 36px 56px;
  text-align: center;
  font-family: var(--font-display);
}
.why-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  color: #000;
}
.why-card .icon svg { width: 100%; height: 100%; }
.why-card h3 {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
}
.why-card p { margin: 0 0 16px; font-size: 15px; line-height: 1.6; }

/* ============ Footer ============ */
.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 56px 0 24px;
  text-align: center;
}
.site-footer a { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.6fr 1.4fr 1fr;
  gap: 24px;
}
.footer-brand .abn {
  margin-top: 14px;
  font-size: 13px;
  color: #BFCBD0;
}
.footer-col h4 {
  margin: 0 0 16px;
  color: var(--color-cyan);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li { padding: 5px 0; }
.footer-col a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
}
.footer-col a:hover { color: var(--color-cyan); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 18px;
  font-size: 10px;
  color: #8FA0A6;
  text-align: left;
}

/* ============ Product page (inner) ============ */
.product-quicklinks {
  background: #fff;
  padding: 28px 0 12px;
}
.product-quicklinks .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  font-size: 13px;
  text-align: center;
}
.product-quicklinks .group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.product-quicklinks .group-title {
  color: var(--color-cyan);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.product-quicklinks a {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--color-text);
}
.product-quicklinks a:hover { color: var(--color-cyan); }

.product-intro {
  max-width: 1000px;
  margin: 0 auto;
  padding: 18px 24px 4px;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-text);
  text-align: center;
}

.product-image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 12px auto 24px;
  padding: 0 24px;
}
.product-single-image {
  max-width: 1100px;
  margin: 18px auto 80px;
  padding: 0 24px;
}
.product-single-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-slider-section {
  max-width: 1100px;
  margin: 18px auto 80px;
  padding: 0 24px;
}
.product-slider-section .theme-default .nivoSlider {
  position: relative;
  width: 100%;
  height: auto;
  box-shadow: none;
  overflow: hidden;
}
.product-slider-section .nivoSlider img.nivo-main-image,
.product-slider-section .nivoSlider > img {
  width: 100% !important;
  height: auto !important;
  max-width: 100%;
  left: 0 !important;
  top: 0 !important;
}
.product-slider-section .nivo-slice img,
.product-slider-section .nivo-box img {
  width: auto;
  max-width: none;
}
.product-image-row img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #E9EEF0;
}

.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto 120px;
  padding: 0 24px;
  text-align: center;
  font-family: robotoregular;
}
.product-spec-grid h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  color: #0093CC;
  margin: 0 0 10px;
}
.product-spec-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text);
}
.product-spec-grid ul li { margin: 0 0 4px; }
.product-spec-grid p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0 0 4px;
}

/* ============ About page ============ */
.about-headline {
  font-weight: 300;
  font-size: 22px;
  text-align: center;
  margin: 80px 0 60px;
  letter-spacing: 0.4px;
}
.about-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 24px;
  text-align: center;
}
.about-services .service {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-services .icon {
  width: 110px;
  height: 110px;
  display: block;
  margin: 0 auto 16px;
}
.about-services h3 {
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.6px;
  margin: 0 0 14px;
  color: var(--color-text);
}
.about-services p {
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  color: var(--color-text);
}
.about-body {
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}
.about-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 14px;
}
.about-body p {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.9;
  color: #888;
  margin: 0 0 22px;
}
.about-cta {
  max-width: 1200px;
  margin: 30px auto 80px;
  padding: 0 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.6;
  color: #888;
}
.about-cta p:last-child {
  font-size: 26px;
  line-height: 1.4;
  margin-top: 28px;
}
.about-cta a {
  color: var(--color-cyan);
  font-weight: 600;
}
.testimonial-card {
  color: #000;
  margin-bottom: 4px;
}
.testimonial-card summary {
  list-style: none;
  cursor: pointer;
  background: var(--color-cyan);
  padding: 22px 36px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.2px;
  transition: background 0.18s ease, color 0.18s ease;
}
.testimonial-card summary:hover {
  background: #000;
  color: #fff;
}
.testimonial-card summary::-webkit-details-marker { display: none; }
.testimonial-card .testimonial-body {
  background: #fff;
  padding: 18px 36px;
  text-align: center;
}
.testimonial-card .testimonial-body p {
  margin: 0;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: #000;
}
.testimonial-card .name,
.testimonial-card .location {
  font-weight: 400;
  letter-spacing: 0.2px;
}
.about-quote-cta {
  background: var(--color-cyan);
  color: #fff;
  text-align: center;
  padding: 30px 24px;
  font-size: 18px;
  margin: 60px auto 0;
}
.about-quote-cta a {
  font-weight: 700;
  text-decoration: underline;
}

/* ============ FAQ page ============ */
.faq-list {
  margin: 90px 0 60px;
}
.faq-item {
  color: #fff;
  margin: 0 0 4px;
  border: 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  font-size: 20px;
  font-weight: 400;
  background: var(--color-blue-light);
  transition: background 0.18s ease;
}
.faq-item summary:hover { background: #18bece; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .answer {
  background: #fff;
  color: var(--color-text);
  padding: 0;
  font-size: 14px;
  line-height: 1.7;
  border-top: 0;
}

/* ============ Contact page ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  max-width: 1100px;
  margin: 50px auto 70px;
  padding: 0 24px;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  margin: 0 0 16px;
}
.contact-info p { margin: 0 0 6px; font-size: 19px; line-height: 1.55; }
.contact-info .block { margin-bottom: 44px; }
.contact-info a { color: var(--color-text); }
.contact-info a:hover { color: var(--color-cyan); }

.enquiry-form h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  margin: 0 0 24px;
}
.enquiry-form .field { margin-bottom: 22px; }
.enquiry-form label {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}
.enquiry-form input[type="text"],
.enquiry-form input[type="email"],
.enquiry-form input[type="tel"],
.enquiry-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #C9D2D5;
  font-family: inherit;
  font-size: 17px;
  background: #fff;
}
.enquiry-form textarea { min-height: 160px; resize: vertical; }
.enquiry-form fieldset {
  border: 1px solid #C9D2D5;
  padding: 12px 18px 8px;
  margin: 0 0 22px;
}
.enquiry-form legend {
  padding: 0 6px;
  font-size: 18px;
  font-weight: 500;
}
.enquiry-form .check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 17px;
}
.enquiry-form button {
  width: 100%;
  background: #E5E7E8;
  color: var(--color-text);
  border: 0;
  padding: 18px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: background 0.18s;
}
.enquiry-form button:hover {
  background: var(--color-cyan);
  color: #fff;
}

/* hidden honeypot */
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ============ Thanks page ============ */
.thanks-block {
  max-width: 600px;
  margin: 80px auto;
  padding: 0 24px;
  text-align: center;
}
.thanks-block h2 {
  font-family: var(--font-display);
  font-size: 36px;
  margin: 0 0 16px;
}
.thanks-block p { font-size: 16px; line-height: 1.6; }
.thanks-block .btn-cta { margin-top: 28px; }

/* ============ Indoor blinds parent page ============ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 50px auto 70px;
  padding: 0 24px;
}
.category-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: #000;
}
.category-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0.85;
}
.category-card:hover img { transform: scale(1.05); opacity: 1; }
.category-card .name {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(0,0,0,0.30);
}

/* ============ Mobile burger drawer ============ */
.nav-backdrop {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: var(--z-nav-backdrop);
  display: none;
}
.nav-backdrop.is-open { display: block; }
.mobile-drawer {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  max-height: 0;
  background: #fff;
  z-index: var(--z-nav-drawer);
  transition: max-height 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.mobile-drawer.is-open {
  max-height: calc(100vh - var(--topbar-h));
  padding: 12px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.mobile-drawer nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-drawer nav > ul > li {
  border-bottom: 1px solid #fff;
}
.mobile-drawer nav > ul > li > a {
  display: block;
  padding: 10px 8px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #000;
  background: #0085B4;
  text-align: center;
}
.mobile-drawer nav > ul > li.is-active > a { background: #18bece; }
.mobile-drawer nav .submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
}
.mobile-drawer nav .submenu a {
  display: block;
  padding: 8px 8px 8px 50%;
  font-size: 12px;
  color: #000;
  text-align: left;
}
.mobile-drawer nav .submenu li.is-active > a { background: #18bece; }

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .site-nav { display: none; }
  .topbar .burger { display: block; }
  .site-header .container { gap: 12px; }
  .btn-cta { padding: 12px 18px; font-size: 12px; }
  .brand-logo {
    width: 186px;
    height: 48px;
    background-size: 186px auto;
  }

  .product-grid,
  .product-image-row,
  .product-spec-grid,
  .why-cards,
  .about-services,
  .category-grid {
    grid-template-columns: 1fr;
  }
  .about-body { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .page-title-band h1 { font-size: 28px; }
  .why-band h2 { font-size: 32px; }
  .section { padding: 36px 0; }
}

@media (max-width: 600px) {
  .topbar { font-size: 11px; }
  .topbar .container {
    justify-content: space-around;
    gap: 8px;
    padding: 6px 12px;
  }
  .topbar .tb-item { font-size: 11px; }
  .topbar .tb-item[aria-label="Hours"] { display: none; }
  .site-header .container { padding: 12px 16px; }
  .site-header .btn-cta { display: none; }
  .product-quicklinks { display: none; }
  .product-image-row.is-mobile-hidden { display: none; }
  .product-spec-grid .spec-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: #E9EEF0;
    margin: 0 0 18px;
    display: block;
  }
  .footer-grid { grid-template-columns: 1fr; }

  /* tighter typography on mobile */
  body { font-size: 13px; }
  .page-title-band h1 { font-size: 22px; letter-spacing: 0.6px; }
  .product-intro { font-size: 14px; }
  .product-spec-grid h3 { font-size: 20px; margin: 0 0 8px; }
  .product-spec-grid p,
  .product-spec-grid ul { font-size: 13px; }
  .section-tagline { font-size: 18px; }
  .why-band h2 { font-size: 26px; }
  .why-band .intro { font-size: 13px; }
  .why-band .eyebrow { font-size: 12px; }
  .why-card h3 { font-size: 20px; }
  .why-card p { font-size: 13px; }
  .about-headline { font-size: 16px; margin: 40px 0 28px; }
  .about-services { grid-template-columns: 1fr; gap: 18px; }
  .about-services .service {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-column-gap: 14px;
    align-items: center;
    text-align: center;
  }
  .about-services .icon {
    width: 80px;
    height: 80px;
    margin: 0;
    grid-row: span 2;
  }
  .about-services h3 { grid-column: 2; font-size: 13px; margin: 0 0 6px; }
  .about-services p { grid-column: 2; font-size: 12px; }
  .about-body h2 { font-size: 18px; }
  .about-body p { font-size: 14px; line-height: 1.7; }
  .about-cta { font-size: 14px; }
  .about-cta p:last-child { font-size: 18px; margin-top: 16px; }
  .about-testimonials {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 14px;
    row-gap: 8px;
  }
  .about-testimonials h2 { grid-column: 1 / -1; }
  .testimonial-card { display: contents; margin: 0; }
  .testimonial-card summary {
    grid-column: 1;
    padding: 0;
    width: 48px;
    height: 48px;
    background: var(--color-cyan);
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .testimonial-card summary::before { content: "+"; }
  .testimonial-card summary > * { display: none; }
  .testimonial-card[open] summary { background: #000; }
  .testimonial-card .testimonial-body {
    grid-column: 2;
    grid-row: 2 / -1;
    background: transparent;
    padding: 0;
    text-align: left;
  }
  .testimonial-card .testimonial-body p { color: var(--color-text); font-size: 13px; }
  .testimonial-card:not([open]) .testimonial-body { display: none; }
  .contact-info h2 { font-size: 20px; margin: 0 0 6px; }
  .contact-info p { font-size: 12px; margin: 0 0 2px; line-height: 1.35; }
  .contact-info .block { margin-bottom: 18px; }
  .enquiry-form h2 { font-size: 20px; margin: 0 0 12px; }
  .enquiry-form .field { margin-bottom: 10px; }
  .enquiry-form label { font-size: 12px; margin-bottom: 3px; }
  .enquiry-form legend,
  .enquiry-form .check { font-size: 12px; }
  .enquiry-form button { font-size: 13px; padding: 12px; }
  .enquiry-form fieldset { padding: 6px 12px 2px; margin: 0 0 10px; }
  .enquiry-form .check { padding: 2px 0; gap: 6px; }
  .enquiry-form input[type="text"],
  .enquiry-form input[type="email"],
  .enquiry-form input[type="tel"],
  .enquiry-form textarea { font-size: 12px; padding: 7px 10px; }
  .enquiry-form textarea { min-height: 90px; }
  .faq-item summary { padding: 14px 18px; font-size: 14px; }
  .footer-col h4 { font-size: 12px; }
  .footer-col a { font-size: 12px; }
  .footer-brand .abn { font-size: 11px; }
  .footer-brand { grid-column: auto; }

  /* tighter section widths on mobile */
  .container,
  .container--wide,
  .about-services,
  .about-body,
  .about-cta,
  .product-quicklinks .container,
  .product-intro,
  .product-image-row,
  .product-spec-grid,
  .product-single-image,
  .product-slider-section,
  .contact-grid,
  .why-band .container {
    max-width: 92%;
    padding-left: 14px;
    padding-right: 14px;
  }
  .faq-list { margin-left: 14px; margin-right: 14px; }
}
