/* ==========================================================================
   Tecovoo visual-system correction v9.0
   Product-led, editorial and responsive. Loaded after the hashed Vite bundles.
   The approved About composition is intentionally not re-authored here.
   ========================================================================== */

:root {
  --v9-container: 92rem;
  --v9-container-wide: 104rem;
  --v9-gutter: clamp(1.25rem, 3vw, 4.5rem);
  --v9-stage: #ffffff;
  --v9-page: #f7f4ee;
  --v9-panel: #fbfaf7;
  --v9-line: color-mix(in oklab, var(--color-primary) 11%, transparent);
  --v9-line-strong: color-mix(in oklab, var(--color-primary) 18%, transparent);
  --v9-shadow-card: 0 18px 44px -38px rgb(10 29 46 / 0.45);
  --v9-shadow-panel: 0 30px 78px -58px rgb(10 29 46 / 0.5);
}

/* Keep the approved About composition intact. Fluid containers and the
   larger editorial rhythm are deliberately scoped to the pages being repaired. */
.home .container,
.post-type-archive-tecovoo_product .container,
.single-tecovoo_product .container,
.page-template-default:not(.page-template-page-about) .contact-panels .container {
  max-width: var(--v9-container-wide);
  padding-inline: var(--v9-gutter);
}

.home .section,
.post-type-archive-tecovoo_product .section,
.single-tecovoo_product .section,
.contact-panels {
  padding-block: clamp(4.5rem, 6vw, 7.5rem);
}

.home .section__head,
.post-type-archive-tecovoo_product .section__head,
.single-tecovoo_product .section__head,
.contact-panels .section__head {
  margin-block-end: clamp(2rem, 3vw, 3.25rem);
}

.home .section__head h2,
.post-type-archive-tecovoo_product .section__head h2,
.single-tecovoo_product .section__head h2,
.contact-panels .section__head h2 {
  font-size: clamp(2rem, 1.55rem + 1.55vw, 3.5rem);
  line-height: 1.02;
}

.home .section__intro,
.post-type-archive-tecovoo_product .section__intro,
.single-tecovoo_product .section__intro,
.contact-panels .section__intro {
  max-width: 42ch;
  font-size: clamp(1rem, .95rem + .2vw, 1.12rem);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Header and footer authority
   -------------------------------------------------------------------------- */
.site-header__inner {
  min-height: clamp(4.75rem, 5vw, 5.5rem);
}

.brand__word {
  font-size: clamp(.9rem, .82rem + .22vw, 1.05rem);
  letter-spacing: .22em;
}

.site-nav__list {
  gap: clamp(1.5rem, 2.25vw, 2.75rem);
}

.site-nav__link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  font-size: .95rem;
  font-weight: 560;
}

.site-header__cta {
  min-height: 2.75rem;
  padding-inline: 1.15rem;
}

.site-footer {
  padding-block: clamp(4.5rem, 5.5vw, 6.75rem) 1.75rem;
}

.site-footer__grid {
  gap: clamp(2.5rem, 4vw, 5.5rem);
}

.site-footer__intro,
.site-footer__place,
.site-footer__col ul {
  font-size: .95rem;
}

.site-footer__intro {
  max-width: 38ch;
  line-height: 1.7;
}

.site-footer__col ul {
  gap: .72rem;
}

/* --------------------------------------------------------------------------
   Product media: complete image, stable scale, no blend mode and no crop.
   -------------------------------------------------------------------------- */
.card--product .card__media,
.preview__media,
.product__media-stage {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--v9-stage) !important;
  border: 0;
}

.card--product .card__media::before,
.card--product .card__media::after,
.preview__media::before,
.product__media-stage::before {
  display: none !important;
}

.card--product .card__image,
.preview__image,
.product__image {
  position: absolute !important;
  inset: 0 !important;
  margin: auto !important;
  inline-size: auto !important;
  block-size: auto !important;
  width: auto !important;
  height: auto !important;
  max-inline-size: var(--media-max-inline, 88%) !important;
  max-block-size: var(--media-max-block, 88%) !important;
  max-width: var(--media-max-inline, 88%) !important;
  max-height: var(--media-max-block, 88%) !important;
  padding: 0 !important;
  object-fit: contain !important;
  object-position: 50% var(--media-position-y, 50%) !important;
  background: transparent !important;
  border-radius: 0 !important;
  mix-blend-mode: normal !important;
  filter: none !important;
  scale: 1 !important;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.card--product .card__media,
.preview__media {
  aspect-ratio: 4 / 3;
  border-block-end: 1px solid var(--v9-line);
}

.product__media-stage {
  aspect-ratio: 1 / 1;
  min-height: clamp(24rem, 34vw, 38rem);
  border: 1px solid var(--v9-line);
  border-radius: 1.25rem;
}

.card__media.has-media-error::after,
.preview__media.has-media-error::after,
.product__media-stage.has-media-error::after {
  content: 'Product image unavailable';
  position: absolute;
  inset: auto 1rem 1rem;
  display: block !important;
  color: var(--color-text-muted);
  font-size: .75rem;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Product cards
   -------------------------------------------------------------------------- */
.card-grid--products {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 1.45vw, 1.5rem);
  align-items: stretch;
}

.card--product {
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--v9-stage);
  border: 1px solid var(--v9-line);
  border-radius: 1rem;
  box-shadow: var(--v9-shadow-card);
  transform: translateZ(0);
}

.card--product .card__media {
  flex: 0 0 auto;
}

.card--product .card__body {
  min-height: 12.5rem;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0;
  padding: clamp(1rem, 1.25vw, 1.35rem);
}

.card--product .card__kicker {
  min-height: 0;
  margin: 0 0 .45rem;
  color: var(--color-functional);
  font-size: .68rem;
  font-weight: 720;
  letter-spacing: .13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.card--product .card__title {
  font-size: clamp(1.03rem, .98rem + .22vw, 1.22rem);
  font-weight: 690;
  line-height: 1.16;
  letter-spacing: -.025em;
}

.card--product .card__model {
  margin-block-start: .35rem;
}

.card--product .card__features {
  min-height: 2.75rem;
  margin-block-start: .9rem;
  display: grid;
  gap: .4rem;
  color: color-mix(in oklab, var(--color-text) 76%, var(--color-surface));
  font-size: .86rem;
  line-height: 1.38;
}

.card--product .card__features li {
  display: flex;
  align-items: flex-start;
  gap: .48rem;
}

.card--product .card__features svg {
  flex: none;
  margin-block-start: .12rem;
}

.card--product .card__actions {
  margin-block-start: auto;
  padding-block-start: .95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  border-block-start: 1px solid var(--v9-line);
}

.card__product-link,
.card__enquiry-link {
  min-height: 2.6rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--color-primary);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}

.card__enquiry-link {
  color: var(--color-functional);
}

@media (hover: hover) and (pointer: fine) {
  .motion-ok .card--product:hover {
    transform: translateY(-4px);
    border-color: color-mix(in oklab, var(--color-functional) 28%, var(--v9-line));
    box-shadow: 0 26px 54px -38px rgb(10 29 46 / .52);
  }

  /* Product documentary images remain geometrically stable on hover. */
  .motion-ok .card--product:hover .card__image {
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   Home
   -------------------------------------------------------------------------- */
.home .hero__content-inner {
  max-width: min(42rem, 100%);
}

.home .hero__title {
  max-width: 10.5ch;
  font-size: clamp(2.75rem, 2rem + 3vw, 5.25rem);
  line-height: 1.02;
}

.home .hero__body {
  max-width: 44ch;
  font-size: clamp(1rem, .94rem + .26vw, 1.18rem);
  line-height: 1.62;
}

.home .hero__controls {
  min-height: 3.5rem;
  padding: .35rem;
}

.home .hero__nav {
  width: 3rem;
  height: 3rem;
}

.home .intro {
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.home .intro__text {
  max-width: 39rem;
}

.home .intro__title {
  font-size: clamp(2.15rem, 1.65rem + 1.65vw, 3.5rem);
  max-width: 13ch;
}

.home .intro__body {
  max-width: 48ch;
  font-size: clamp(1rem, .96rem + .18vw, 1.12rem);
  line-height: 1.68;
}

.home .intro__image {
  min-height: clamp(25rem, 32vw, 36rem);
  aspect-ratio: 5 / 4;
  border-radius: 1.2rem;
}

.home .category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home .category-card__link {
  min-height: 10.5rem;
  display: grid;
  grid-template-columns: 2.8rem minmax(0, 1fr) auto;
  align-items: start;
  gap: .9rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--v9-line);
  border-radius: .95rem;
  box-shadow: 0 14px 34px -34px rgb(10 29 46 / .45);
}

.home .category-card__index {
  color: var(--color-accent);
  font-size: .67rem;
  font-weight: 720;
  letter-spacing: .12em;
}

.home .category-card__content {
  min-width: 0;
  display: grid;
  gap: .35rem;
}

.home .category-card__icon {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  color: var(--color-functional);
  background: var(--color-accent-soft);
  border-radius: .72rem;
}

.home .category-card__title {
  color: var(--color-primary);
  font-size: 1.08rem;
  font-weight: 690;
  line-height: 1.2;
}

.home .category-card__desc {
  color: var(--color-text-muted);
  font-size: .86rem;
  line-height: 1.45;
}

.home .category-card__meta {
  color: var(--color-functional);
  font-size: .76rem;
  font-weight: 650;
}

.home .category-card__arrow {
  align-self: end;
}

.home .card-grid--featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home .card--product-featured .card__body {
  min-height: 12rem;
}

.home .proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--v9-line-strong);
}

.home .proof-item {
  min-height: 14rem;
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 1rem;
  padding: 2rem 1.5rem 2.25rem;
}

.home .proof-item + .proof-item {
  border-inline-start: 1px solid var(--v9-line-strong);
}

.home .proof-item__number {
  color: var(--color-accent);
  font-size: 1.6rem;
  font-weight: 660;
  line-height: 1;
}

.home .proof-item__title {
  font-size: 1.18rem;
  line-height: 1.28;
}

.home .proof-item__text {
  margin-block-start: .65rem;
  color: var(--color-text-muted);
  font-size: .93rem;
  line-height: 1.62;
}

.home .lifestyle__inner {
  grid-template-columns: minmax(0, 1.12fr) minmax(21rem, .88fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.home .lifestyle__image {
  min-height: clamp(24rem, 31vw, 35rem);
  aspect-ratio: 16 / 11;
  border-radius: 1.2rem;
}

.home .lifestyle__text h2 {
  max-width: 13ch;
  font-size: clamp(2.15rem, 1.65rem + 1.65vw, 3.45rem);
}

.home .preview--editorial {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  min-height: 31rem;
  padding: clamp(1rem, 1.7vw, 1.5rem);
  border: 1px solid var(--v9-line);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: var(--v9-shadow-panel);
}

.home .preview__media {
  min-height: 28rem;
  border: 0;
  border-radius: .95rem;
  background: #fff !important;
}

.home .preview__body {
  align-content: center;
  padding: clamp(.5rem, 1.3vw, 1.25rem);
}

.home .preview__title {
  font-size: clamp(2rem, 1.55rem + 1.45vw, 3rem);
}

.home .preview__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-block-start: 1.25rem;
  border-block: 1px solid var(--v9-line-strong);
}

.home .preview__metric {
  padding: .9rem 0;
}

.home .preview__metric:nth-child(even) {
  padding-inline-start: 1rem;
  border-inline-start: 1px solid var(--v9-line-strong);
}

.home .enquiry__inner {
  min-height: clamp(17rem, 20vw, 20rem);
  padding: clamp(2.25rem, 4vw, 4.5rem);
  border-radius: 1.3rem;
}

.home .enquiry__title {
  font-size: clamp(2rem, 1.55rem + 1.55vw, 3.2rem);
}

/* --------------------------------------------------------------------------
   Product archive
   -------------------------------------------------------------------------- */
.post-type-archive-tecovoo_product .page-head--catalogue {
  padding-block: clamp(5.5rem, 7.5vw, 8rem) clamp(3.25rem, 4vw, 4.5rem);
}

.post-type-archive-tecovoo_product .page-head__inner {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: end;
}

.post-type-archive-tecovoo_product .page-head__title {
  max-width: 11ch;
  font-size: clamp(3rem, 3.8vw, 5rem);
}

.post-type-archive-tecovoo_product .section--catalogue {
  padding-block: clamp(3rem, 4vw, 4.75rem) clamp(5.5rem, 7vw, 8rem);
}

.post-type-archive-tecovoo_product .catalogue {
  display: grid;
  grid-template-columns: minmax(17.5rem, 19rem) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 3vw, 3.5rem);
}

.post-type-archive-tecovoo_product .catalogue__filters {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.post-type-archive-tecovoo_product .filters {
  padding: 1.35rem;
  background: #fff;
  border: 1px solid var(--v9-line);
  border-radius: 1rem;
  box-shadow: var(--v9-shadow-card);
}

.post-type-archive-tecovoo_product .filters__row {
  gap: .9rem;
}

.post-type-archive-tecovoo_product .filters input,
.post-type-archive-tecovoo_product .filters select,
.post-type-archive-tecovoo_product .results-sort select {
  min-height: 3rem;
  border-color: var(--v9-line-strong);
  border-radius: .7rem;
  background-color: #fff;
}

.post-type-archive-tecovoo_product .results-toolbar {
  min-height: 3.25rem;
  margin-block-end: 1.35rem;
  padding-block-end: 1rem;
  border-block-end: 1px solid var(--v9-line-strong);
}

.post-type-archive-tecovoo_product .results__count strong {
  font-size: 1.15rem;
}

.post-type-archive-tecovoo_product .card-grid--products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-type-archive-tecovoo_product .card--product .card__body {
  min-height: 12.25rem;
}

.post-type-archive-tecovoo_product .pagination-wrap {
  margin-block-start: clamp(2.5rem, 4vw, 4rem);
}

.post-type-archive-tecovoo_product .page-numbers {
  min-width: 2.75rem;
  min-height: 2.75rem;
}

/* --------------------------------------------------------------------------
   Single product
   -------------------------------------------------------------------------- */
.single-tecovoo_product .page-head--product {
  min-height: 0;
  padding-block: calc(var(--header-height) + 1.25rem) 1.25rem;
}

.single-tecovoo_product .section--product {
  padding-block: clamp(3rem, 4.5vw, 5rem);
}

.single-tecovoo_product .product__layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(24rem, .95fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 7rem);
}

.single-tecovoo_product .product__media {
  min-width: 0;
}

.single-tecovoo_product .product__title {
  font-size: clamp(3rem, 4vw, 4.75rem);
  line-height: 1;
}

.single-tecovoo_product .product__features {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem 1.5rem;
}

.single-tecovoo_product .spec-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.single-tecovoo_product .spec-group {
  padding: 1.4rem;
  background: var(--v9-panel);
  border: 1px solid var(--v9-line);
  border-radius: .9rem;
}

.single-tecovoo_product .spec-table {
  font-size: .9rem;
}

.single-tecovoo_product .spec-table th,
.single-tecovoo_product .spec-table td {
  padding-block: .55rem;
}

.single-tecovoo_product .card-grid--related {
  max-width: 76rem;
}

.single-tecovoo_product .card-grid--related.card-grid--count-1 {
  grid-template-columns: minmax(17rem, 24rem);
}

.single-tecovoo_product .card-grid--related.card-grid--count-2 {
  grid-template-columns: repeat(2, minmax(17rem, 24rem));
}

.single-tecovoo_product .card-grid--related.card-grid--count-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.single-tecovoo_product .enquiry-panel--product {
  padding-block: clamp(4.5rem, 6vw, 7rem);
  border-block-start: 1px solid var(--v9-line-strong);
}

.single-tecovoo_product .enquiry-panel__layout {
  grid-template-columns: minmax(18rem, .78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(3rem, 6vw, 7rem);
}

.single-tecovoo_product .enquiry-panel__context {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.single-tecovoo_product .enquiry-panel__content {
  padding: clamp(2rem, 3vw, 3rem);
  background: #fff;
  border: 1px solid var(--v9-line);
  border-radius: 1.15rem;
  box-shadow: var(--v9-shadow-panel);
}

/* --------------------------------------------------------------------------
   Contact — one form surface, not nested cards.
   -------------------------------------------------------------------------- */
.page-head--contact {
  padding-block: clamp(5rem, 7vw, 7rem) clamp(2.75rem, 4vw, 4rem);
}

.page-head--contact .page-head__title {
  max-width: 12ch;
  font-size: clamp(3rem, 4vw, 4.75rem);
}

.contact-panels {
  padding-block: clamp(3.5rem, 5vw, 5.5rem) clamp(5rem, 7vw, 7.5rem);
}

.contact-panels__grid {
  display: grid;
  grid-template-columns: minmax(18rem, .78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(3.5rem, 7vw, 8rem);
}

.contact-info {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.contact-info__title {
  max-width: 11ch;
  font-size: clamp(2.35rem, 3vw, 3.55rem);
}

.contact-info__lede {
  max-width: 38ch;
  font-size: 1rem;
  line-height: 1.72;
}

.contact-info__brief {
  margin-block: 2rem;
  border-block: 1px solid var(--v9-line-strong);
}

.contact-info__brief li {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: .85rem;
  padding-block: 1rem;
  border-block-end: 1px solid var(--v9-line);
}

.contact-info__brief li:last-child {
  border-block-end: 0;
}

.contact-form-panel {
  min-width: 0;
}

.contact-form-panel .enquiry-panel--embedded {
  padding: 0;
  background: transparent;
}

.contact-form-panel .enquiry-panel--embedded .enquiry-panel__content {
  width: 100%;
  padding: clamp(2rem, 3.5vw, 3.25rem);
  background: #fff;
  border: 1px solid var(--v9-line);
  border-radius: 1.15rem;
  box-shadow: var(--v9-shadow-panel);
}

.contact-form-panel .section__head {
  max-width: 42rem;
  margin-block-end: 1.5rem;
}

.contact-form-panel .enquiry-form__grid {
  gap: 1rem 1.15rem;
}

.contact-form-panel .field input,
.contact-form-panel .field select,
.contact-form-panel .field textarea {
  min-height: 3.25rem;
  border-color: var(--v9-line-strong);
  border-radius: .72rem;
  background: #fff;
}

.contact-form-panel .field textarea {
  min-height: 11rem;
}

.field--check {
  grid-template-columns: 1.25rem minmax(0, 1fr);
  align-items: start;
}

.field--check label {
  display: inline;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Responsive recomposition
   -------------------------------------------------------------------------- */
@media (min-width: 110rem) {
  .post-type-archive-tecovoo_product .card-grid--products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 89.99rem) {
  .home .card-grid--featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 79.99rem) {
  .home .intro,
  .home .lifestyle__inner,
  .home .preview--editorial,
  .single-tecovoo_product .product__layout,
  .single-tecovoo_product .enquiry-panel__layout,
  .contact-panels__grid {
    grid-template-columns: 1fr;
  }

  .home .intro__text,
  .home .lifestyle__text {
    max-width: 46rem;
  }

  .single-tecovoo_product .product__media-stage {
    min-height: clamp(23rem, 58vw, 34rem);
  }

  .single-tecovoo_product .enquiry-panel__context,
  .contact-info {
    position: static;
  }

  .post-type-archive-tecovoo_product .catalogue {
    grid-template-columns: 1fr;
  }

  .post-type-archive-tecovoo_product .catalogue__filters {
    display: none;
  }

  .post-type-archive-tecovoo_product .card-grid--products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 63.99rem) {
  .home .section,
  .post-type-archive-tecovoo_product .section,
  .single-tecovoo_product .section,
  .contact-panels {
    padding-block: clamp(3.5rem, 8vw, 5.5rem);
  }

  .section__head--split {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .home .proof-list {
    grid-template-columns: 1fr;
  }

  .home .proof-item {
    min-height: auto;
  }

  .home .proof-item + .proof-item {
    border-inline-start: 0;
    border-block-start: 1px solid var(--v9-line-strong);
  }

  .post-type-archive-tecovoo_product .page-head__inner {
    grid-template-columns: 1fr;
  }

  .post-type-archive-tecovoo_product .page-head__aside {
    display: none;
  }

  .post-type-archive-tecovoo_product .card-grid--products,
  .single-tecovoo_product .spec-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .single-tecovoo_product .product__features {
    grid-template-columns: 1fr;
  }

  .single-tecovoo_product .card-grid--related.card-grid--count-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 47.99rem) {
  .site-header__cta {
    display: none;
  }

  .home .hero__content {
    padding-block: 5rem 6rem;
  }

  .home .hero__controls {
    right: 1rem;
    bottom: 1rem;
  }

  .home .intro__image,
  .home .lifestyle__image {
    min-height: 20rem;
  }

  .home .category-grid,
  .home .card-grid--featured,
  .post-type-archive-tecovoo_product .card-grid--products,
  .single-tecovoo_product .spec-groups,
  .single-tecovoo_product .card-grid--related.card-grid--count-2,
  .single-tecovoo_product .card-grid--related.card-grid--count-3 {
    grid-template-columns: 1fr;
  }

  .home .card-grid--featured {
    display: grid;
  }

  .home .category-card__link {
    min-height: 9.5rem;
  }

  .home .preview__media {
    min-height: 22rem;
  }

  .home .preview__metrics {
    grid-template-columns: 1fr;
  }

  .home .preview__metric:nth-child(even) {
    padding-inline-start: 0;
    border-inline-start: 0;
    border-block-start: 1px solid var(--v9-line);
  }

  .card--product .card__body {
    min-height: auto;
  }

  .single-tecovoo_product .product__media-stage {
    min-height: 20rem;
  }

  .contact-form-panel .enquiry-panel--embedded .enquiry-panel__content,
  .single-tecovoo_product .enquiry-panel__content {
    padding: 1.25rem;
  }

  .enquiry-form__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .card--product,
  .card--product .card__image,
  .category-card__link,
  .section__link .icon {
    transition: none !important;
    transform: none !important;
  }
}

/* Homepage category-card balance */
.home .category-card__link{grid-template-columns:2.8rem minmax(0,1fr) 1.25rem}.home .category-card__content{align-self:stretch;grid-template-rows:auto auto minmax(3.75rem,1fr);height:100%}.home .category-card__desc{display:-webkit-box;min-block-size:3.75rem;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:3}.home .category-card__meta{align-self:end;margin-block-start:.15rem}.home .category-card__arrow{align-self:end;justify-self:end;margin-block-end:.1rem}@media(max-width:47.99rem){.home .category-card__content{grid-template-rows:auto auto auto auto}.home .category-card__desc{min-block-size:0;-webkit-line-clamp:4}}

/* ==========================================================================
   Tecovoo home / footer refinement 6.7.2
   - Place homepage support copy/action in a true right-hand editorial column.
   - Render social links in the Contact footer column as compact accessible pills.
   ========================================================================== */

@media (min-width: 64rem) {
  .home .section--categories .section__head--split,
  .home .section--tint .section__head--split,
  .home .section--proof .section__head--split,
  .home .section--preview .section__head--split {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 31rem);
    column-gap: clamp(4rem, 8vw, 11rem);
    align-items: end;
  }

  .home .section--categories .section__head--split > .section__intro,
  .home .section--proof .section__head--split > .section__intro,
  .home .section--preview .section__head--split > .section__intro,
  .home .section--tint .section__head--split > .section__link {
    inline-size: min(100%, 31rem);
    justify-self: end;
    margin-inline-start: auto;
  }

  .home .section--categories .section__head--split > .section__intro,
  .home .section--proof .section__head--split > .section__intro,
  .home .section--preview .section__head--split > .section__intro {
    text-align: start;
  }

  .home .section--tint .section__head--split > .section__link {
    justify-content: flex-end;
    align-self: end;
  }
}

@media (max-width: 63.99rem) {
  .home .section--categories .section__head--split > .section__intro,
  .home .section--proof .section__head--split > .section__intro,
  .home .section--preview .section__head--split > .section__intro,
  .home .section--tint .section__head--split > .section__link {
    inline-size: auto;
    justify-self: start;
    margin-inline-start: 0;
  }
}

.site-footer__social {
  margin-block-start: 1.35rem;
  padding-block-start: 1.1rem;
  border-block-start: 1px solid rgb(255 255 255 / 0.12);
}

.site-footer__social-label {
  margin: 0 0 .7rem;
  color: rgb(255 255 255 / 0.52);
  font-size: .7rem;
  font-weight: 680;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-footer__social-list {
  display: flex !important;
  flex-wrap: wrap;
  gap: .55rem !important;
}

.site-footer__social-list > li {
  display: block;
}

.site-footer__social-link {
  min-height: 2.55rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .48rem .72rem;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: .7rem;
  color: rgb(255 255 255 / 0.82) !important;
  background: rgb(255 255 255 / 0.035);
  font-size: .82rem;
  font-weight: 590;
  line-height: 1;
  text-decoration: none !important;
  transition:
    border-color var(--motion-duration-fast) linear,
    background-color var(--motion-duration-fast) linear,
    color var(--motion-duration-fast) linear,
    transform var(--motion-duration-fast) var(--motion-ease-enter);
}

.site-footer__social-link svg {
  inline-size: .9rem;
  block-size: .9rem;
  color: var(--color-accent);
}

.site-footer__social-link:hover {
  border-color: color-mix(in oklab, var(--color-functional) 70%, #fff 10%);
  background: rgb(255 255 255 / 0.07);
  color: #fff !important;
  transform: translateY(-1px);
}

.site-footer__social-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__social-link {
    transition: none;
  }

  .site-footer__social-link:hover {
    transform: none;
  }
}



/* --------------------------------------------------------------------------
   Homepage editorial heading alignment v6.7.3
   Supporting copy belongs to the far-right editorial column on desktop.
   -------------------------------------------------------------------------- */
@media (min-width: 64rem) {
  .home .section__head--home-meta-right {
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(1rem, 1.8vw, 2rem);
    align-items: end;
  }

  .home .section__head--home-meta-right > :first-child {
    grid-column: 1 / span 5;
    min-width: 0;
    max-width: 34rem;
  }

  .home .section__head--home-meta-right > .section__intro,
  .home .section__head--home-meta-right > .section__link {
    grid-column: 9 / -1;
    justify-self: stretch;
    width: 100%;
    max-width: 30rem;
    margin-inline-start: auto;
  }

  .home .section__head--home-meta-right > .section__intro {
    text-align: start;
  }

  .home .section__head--home-meta-right > .section__link {
    justify-content: flex-end;
    justify-self: end;
    width: auto;
    min-width: max-content;
  }
}

@media (min-width: 90rem) {
  .home .section__head--home-meta-right > :first-child {
    grid-column: 1 / span 4;
  }

  .home .section__head--home-meta-right > .section__intro,
  .home .section__head--home-meta-right > .section__link {
    grid-column: 10 / -1;
  }
}

/* Footer social links are sourced from the ACF social_links option repeater. */
.site-footer__social {
  display: grid;
  gap: .65rem;
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgb(255 255 255 / .12);
}

.site-footer__social-label {
  margin: 0;
  color: rgb(255 255 255 / .5);
  font-size: .7rem;
  font-weight: 680;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.site-footer__social-links {
  display: flex !important;
  flex-wrap: wrap;
  gap: .5rem .85rem !important;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__social-links li {
  margin: 0;
}

.site-footer__social-links a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  min-height: 2rem;
  color: rgb(255 255 255 / .78);
  font-size: .82rem;
  font-weight: 560;
  text-decoration: none;
  text-underline-offset: .22em;
}

.site-footer__social-links a:hover,
.site-footer__social-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.site-footer__social-links svg {
  flex: none;
  color: var(--color-accent);
}

/* ========================================================================== 
   Tecovoo homepage responsive system v6.7.4
   Purpose: remove medium-width desktop leakage, prevent card text overflow,
   restore readable component proportions, and keep the right-side editorial
   rail only where the viewport is genuinely wide enough to support it.
   ========================================================================== */

.home {
  --home-card-radius: 1rem;
  --home-card-line: color-mix(in oklab, var(--color-primary) 12%, transparent);
  --home-card-shadow: 0 18px 42px -38px rgb(10 29 46 / .42);
  --home-copy-width: 42ch;
}

.home .site-main,
.home .section,
.home .container,
.home .section__head,
.home .category-grid,
.home .card-grid--featured,
.home .proof-list,
.home .preview--editorial {
  min-inline-size: 0;
}

/* --------------------------------------------------------------------------
   Section heading system
   The far-right editorial rail is a desktop composition, not a tablet/mobile
   rule. Below 1280px the supporting copy returns to normal document flow.
   -------------------------------------------------------------------------- */
.home .section__head--home-meta-right {
  width: 100%;
  max-width: none;
}

.home .section__head--home-meta-right > :first-child,
.home .section__head--home-meta-right > .section__intro,
.home .section__head--home-meta-right > .section__link {
  min-width: 0;
}

.home .section__head--home-meta-right > .section__intro {
  max-width: var(--home-copy-width);
  color: var(--color-text-muted);
  font-size: clamp(.92rem, .89rem + .12vw, 1rem);
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.home .section__head--home-meta-right > .section__link {
  min-height: 2.75rem;
  align-items: center;
  font-size: .92rem;
  white-space: nowrap;
}

@media (max-width: 79.99rem) {
  .home .section__head--home-meta-right {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: .9rem !important;
    align-items: start !important;
  }

  .home .section__head--home-meta-right > :first-child,
  .home .section__head--home-meta-right > .section__intro,
  .home .section__head--home-meta-right > .section__link {
    grid-column: 1 !important;
    justify-self: start !important;
    width: auto !important;
    max-width: min(100%, var(--home-copy-width)) !important;
    margin-inline: 0 !important;
  }

  .home .section__head--home-meta-right > .section__link {
    justify-content: flex-start !important;
  }
}

@media (min-width: 80rem) {
  .home .section__head--home-meta-right {
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    column-gap: clamp(1rem, 1.8vw, 2rem) !important;
    align-items: end !important;
  }

  .home .section__head--home-meta-right > :first-child {
    grid-column: 1 / span 5 !important;
    max-width: 34rem;
  }

  .home .section__head--home-meta-right > .section__intro,
  .home .section__head--home-meta-right > .section__link {
    grid-column: 9 / -1 !important;
    justify-self: end !important;
    width: auto !important;
    max-width: 30rem !important;
    margin-inline-start: auto !important;
  }

  .home .section__head--home-meta-right > .section__intro {
    width: 100% !important;
  }

  .home .section__head--home-meta-right > .section__link {
    justify-content: flex-end !important;
  }
}

@media (min-width: 100rem) {
  .home .section__head--home-meta-right > :first-child {
    grid-column: 1 / span 4 !important;
  }

  .home .section__head--home-meta-right > .section__intro,
  .home .section__head--home-meta-right > .section__link {
    grid-column: 10 / -1 !important;
  }
}

/* --------------------------------------------------------------------------
   Category navigation
   No fixed-width text track; no description is allowed to force the card.
   -------------------------------------------------------------------------- */
.home .category-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: .9rem !important;
}

.home .category-card {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--home-card-radius);
}

.home .category-card__link {
  position: relative;
  display: grid !important;
  grid-template-columns: 2.45rem minmax(0, 1fr) 1.5rem !important;
  gap: .85rem !important;
  align-items: start !important;
  min-width: 0;
  min-height: 10.75rem !important;
  padding: 1.15rem !important;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--home-card-line);
  border-radius: var(--home-card-radius);
  box-shadow: var(--home-card-shadow);
}

.home .category-card__index,
.home .category-card__content,
.home .category-card__arrow {
  min-width: 0;
}

.home .category-card__content {
  display: grid !important;
  gap: .34rem !important;
  align-content: start;
  max-width: 100%;
  overflow: hidden;
}

.home .category-card__icon {
  width: 2.5rem !important;
  height: 2.5rem !important;
  margin: 0 0 .15rem !important;
  border-radius: .7rem;
}

.home .category-card__title,
.home .category-card__desc,
.home .category-card__meta {
  min-width: 0;
  max-width: 100% !important;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.home .category-card__title {
  font-size: clamp(1rem, .96rem + .16vw, 1.12rem) !important;
  line-height: 1.2 !important;
}

.home .category-card__desc {
  display: -webkit-box;
  min-height: 2.7em;
  margin: 0;
  overflow: hidden;
  color: var(--color-text-muted);
  font-size: .86rem !important;
  line-height: 1.48 !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.home .category-card__meta {
  align-self: end;
  margin-top: .15rem;
  font-size: .76rem !important;
  line-height: 1.35;
}

.home .category-card__arrow {
  align-self: end !important;
  justify-self: end;
}

@media (min-width: 36rem) {
  .home .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 80rem) {
  .home .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1rem !important;
  }

  .home .category-card__link {
    min-height: 11.25rem !important;
    padding: 1.25rem !important;
  }
}

@media (max-width: 35.99rem) {
  .home .category-card__link {
    min-height: 0 !important;
    grid-template-columns: 2.35rem minmax(0, 1fr) 1.35rem !important;
    padding: 1rem !important;
  }

  .home .category-card__desc {
    min-height: 0;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}

/* --------------------------------------------------------------------------
   Featured products
   Cards keep useful copy size instead of squeezing four desktop cards into a
   narrow viewport. Mobile becomes one high-quality product card per row.
   -------------------------------------------------------------------------- */
.home .card-grid--featured {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1rem !important;
}

.home .card-grid--featured > .card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--home-card-line);
  border-radius: var(--home-card-radius);
  box-shadow: var(--home-card-shadow);
}

.home .card-grid--featured .card__media {
  min-height: 0 !important;
  aspect-ratio: 4 / 3 !important;
  padding: clamp(1rem, 3vw, 1.5rem) !important;
  overflow: hidden;
  background: #fff !important;
}

.home .card-grid--featured .card__image {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}

.home .card-grid--featured .card__body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-width: 0;
  min-height: 12.25rem !important;
  padding: 1rem 1.05rem 1.1rem !important;
}

.home .card-grid--featured .card__kicker,
.home .card-grid--featured .card__title,
.home .card-grid--featured .card__features,
.home .card-grid--featured .card__features span,
.home .card-grid--featured .card__actions {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.home .card-grid--featured .card__title {
  font-size: 1rem !important;
  line-height: 1.22;
}

.home .card-grid--featured .card__features {
  overflow: hidden;
  font-size: .83rem;
  line-height: 1.45;
}

.home .card-grid--featured .card__actions {
  margin-top: .65rem;
}

@media (min-width: 36rem) {
  .home .card-grid--featured {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 80rem) {
  .home .card-grid--featured {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 35.99rem) {
  .home .card-grid--featured > .card {
    display: grid !important;
    grid-template-columns: minmax(8.5rem, .42fr) minmax(0, .58fr) !important;
  }

  .home .card-grid--featured .card__media {
    aspect-ratio: auto !important;
    min-height: 13rem !important;
    height: 100%;
    padding: .85rem !important;
    border-inline-end: 1px solid var(--home-card-line);
  }

  .home .card-grid--featured .card__body {
    min-height: 13rem !important;
    padding: .9rem !important;
  }

  .home .card-grid--featured .card__features {
    font-size: .78rem;
  }
}

/* --------------------------------------------------------------------------
   Proof points
   Three columns are reserved for wide desktop. At medium widths the content
   becomes a readable editorial list instead of three miniature columns.
   -------------------------------------------------------------------------- */
.home .proof-list {
  display: grid !important;
  grid-template-columns: 1fr !important;
  border-block: 1px solid var(--home-card-line);
}

.home .proof-item {
  display: grid !important;
  grid-template-columns: 2.6rem minmax(0, 1fr) !important;
  gap: 1rem !important;
  min-width: 0;
  min-height: 0 !important;
  padding: 1.35rem 0 !important;
  border-inline-start: 0 !important;
}

.home .proof-item + .proof-item {
  border-block-start: 1px solid var(--home-card-line) !important;
}

.home .proof-item__content,
.home .proof-item__title,
.home .proof-item__text {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.home .proof-item__title {
  font-size: 1rem !important;
  line-height: 1.3 !important;
}

.home .proof-item__text {
  max-width: 48ch !important;
  margin-top: .4rem !important;
  font-size: .88rem !important;
  line-height: 1.58 !important;
}

.home .proof-item__number {
  font-size: .74rem !important;
  letter-spacing: .14em;
}

@media (min-width: 80rem) {
  .home .proof-list {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .home .proof-item {
    grid-template-columns: 2.4rem minmax(0, 1fr) !important;
    padding: 1.65rem 1.35rem 1.8rem !important;
  }

  .home .proof-item:first-child {
    padding-inline-start: 0 !important;
  }

  .home .proof-item:last-child {
    padding-inline-end: 0 !important;
  }

  .home .proof-item + .proof-item {
    border-block-start: 0 !important;
    border-inline-start: 1px solid var(--home-card-line) !important;
  }
}

/* --------------------------------------------------------------------------
   Lifestyle and product preview
   Medium/mobile layouts use their available width rather than carrying large
   desktop minimum-heights into a single-column composition.
   -------------------------------------------------------------------------- */
@media (max-width: 79.99rem) {
  .home .intro,
  .home .lifestyle__inner,
  .home .preview--editorial {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: clamp(1.75rem, 5vw, 3rem) !important;
  }

  .home .intro__image,
  .home .lifestyle__image {
    min-height: 0 !important;
    aspect-ratio: 4 / 3 !important;
  }

  .home .lifestyle__text {
    max-width: 44rem;
  }

  .home .preview--editorial {
    min-height: 0 !important;
    padding: clamp(1rem, 3vw, 1.5rem) !important;
  }

  .home .preview--editorial .preview__media,
  .home .preview__media {
    min-height: 0 !important;
    aspect-ratio: 4 / 3 !important;
    padding: clamp(1rem, 3vw, 1.5rem) !important;
    background: #fff !important;
  }

  .home .preview--editorial .preview__image,
  .home .preview__image {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    padding: 5% !important;
    object-fit: contain !important;
    transform: none !important;
    scale: 1 !important;
  }

  .home .preview__body {
    min-width: 0;
    padding: .5rem !important;
  }

  .home .preview__features,
  .home .preview__metrics,
  .home .preview__actions {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 35.99rem) {
  .home .preview--editorial .preview__media,
  .home .preview__media {
    aspect-ratio: 1 / 1 !important;
  }

  .home .preview__metrics {
    grid-template-columns: 1fr !important;
  }

  .home .preview__metric:nth-child(even) {
    padding-inline-start: 0 !important;
    border-inline-start: 0 !important;
  }

  .home .preview__metric + .preview__metric {
    border-block-start: 1px solid var(--home-card-line);
  }

  .home .preview__actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .home .preview__actions .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   Vertical rhythm / interaction sizing
   -------------------------------------------------------------------------- */
@media (max-width: 79.99rem) {
  .home .section {
    padding-block: clamp(3.5rem, 7vw, 5rem) !important;
  }
}

@media (max-width: 35.99rem) {
  .home .section {
    padding-block: clamp(3rem, 10vw, 4rem) !important;
  }

  .home .section__head {
    margin-bottom: 1.75rem !important;
  }

  .home .section__head h2 {
    max-width: 14ch;
  }
}

/* --------------------------------------------------------------------------
   Header and footer breakpoint enforcement
   Prevent desktop navigation/footer columns from surviving into touch widths.
   -------------------------------------------------------------------------- */
@media (max-width: 63.99rem) {
  .home .site-nav {
    display: none !important;
  }

  .home .nav-toggle {
    display: inline-flex !important;
  }

  .home .site-header__cta {
    display: none !important;
  }

  .home .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 2rem 1.5rem !important;
  }

  .home .site-footer__brand,
  .home .site-footer__col,
  .home .site-footer__col ul,
  .home .site-footer__col li,
  .home .site-footer__col a {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 35.99rem) {
  .home .site-footer__grid {
    grid-template-columns: 1fr !important;
  }

  .home .site-footer__col {
    padding-block-start: 1.1rem;
    border-block-start: 1px solid rgb(255 255 255 / .1);
  }

  .home .site-footer__base {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home .category-card,
  .home .category-card__arrow,
  .home .card-grid--featured > .card {
    transition: none !important;
    transform: none !important;
  }
}


/* ==========================================================================
   Tecovoo — Mobile navigation refinement 6.7.8
   Stable override. Intended to be appended after tecovoo-refinement-v9.css.
   ========================================================================== */

@media (max-width: 63.99rem) {
  .nav-toggle {
    position: relative;
    z-index: 140;
    inline-size: 2.875rem;
    block-size: 2.875rem;
    min-inline-size: 2.875rem;
    min-block-size: 2.875rem;
    color: #fff;
    background: rgb(255 255 255 / .055);
    border: 1px solid rgb(255 255 255 / .19);
    border-radius: 999px;
    box-shadow: inset 0 1px rgb(255 255 255 / .06);
    backdrop-filter: blur(12px);
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    background: rgb(255 255 255 / .10);
    border-color: rgb(255 255 255 / .38);
  }

  .mobile-nav,
  .mobile-nav[popover] {
    position: fixed !important;
    inset: 0 !important;
    inline-size: 100% !important;
    block-size: 100dvh !important;
    max-inline-size: none !important;
    max-block-size: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    color: #fff;
    background: transparent !important;
    border: 0 !important;
  }

  .mobile-nav::backdrop {
    background: rgb(3 15 26 / .62) !important;
    backdrop-filter: blur(9px) saturate(.9);
  }

  .mobile-nav__scrim {
    position: absolute;
    inset: 0;
    background: rgb(3 15 26 / .62);
    backdrop-filter: blur(9px) saturate(.9);
  }

  .mobile-nav__panel {
    position: absolute !important;
    inset: 0 0 0 auto !important;
    display: grid !important;
    grid-template-rows: auto minmax(0, 1fr) auto !important;
    align-content: stretch !important;
    gap: 0 !important;
    inline-size: min(91vw, 25.5rem) !important;
    block-size: 100dvh !important;
    min-block-size: 100dvh !important;
    padding:
      max(1rem, env(safe-area-inset-top))
      clamp(1.15rem, 5vw, 1.65rem)
      max(1.15rem, env(safe-area-inset-bottom)) !important;
    overflow: hidden auto !important;
    background:
      radial-gradient(90% 42% at 105% -4%, rgb(15 128 119 / .32), transparent 70%),
      radial-gradient(85% 42% at 0% 105%, rgb(18 78 102 / .18), transparent 72%),
      linear-gradient(180deg, #0b2236 0%, #091c2d 58%, #081a2a 100%) !important;
    border-inline-start: 1px solid rgb(255 255 255 / .08);
    border-radius: 1.35rem 0 0 1.35rem;
    box-shadow: -30px 0 90px rgb(1 10 18 / .34);
    clip-path: none !important;
    transform: translateX(102%);
    opacity: 1 !important;
    transition: transform 420ms cubic-bezier(.22, 1, .36, 1) !important;
  }

  .mobile-nav:popover-open .mobile-nav__panel,
  .mobile-nav.is-open .mobile-nav__panel {
    transform: translateX(0);
  }

  @starting-style {
    .mobile-nav:popover-open .mobile-nav__panel {
      transform: translateX(102%);
    }
  }

  /* Supports the newer header markup when present. */
  .mobile-nav__head {
    display: flex !important;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    min-block-size: 5.1rem;
    padding: .15rem 0 1.15rem;
    border-block-end: 1px solid rgb(255 255 255 / .11);
  }

  .mobile-nav__eyebrow {
    margin: 0 0 .38rem !important;
    color: rgb(255 255 255 / .46) !important;
    font-size: .67rem !important;
    font-weight: 680 !important;
    letter-spacing: .18em !important;
    line-height: 1.2 !important;
    text-transform: uppercase;
  }

  .mobile-nav__title {
    margin: 0 !important;
    color: #fff !important;
    font-size: .92rem !important;
    font-weight: 720 !important;
    letter-spacing: .21em !important;
    line-height: 1.2 !important;
    text-transform: uppercase;
  }

  .mobile-nav__close {
    display: inline-grid !important;
    place-items: center;
    flex: 0 0 auto;
    inline-size: 2.85rem !important;
    block-size: 2.85rem !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #fff !important;
    background: rgb(255 255 255 / .055) !important;
    border: 1px solid rgb(255 255 255 / .18) !important;
    border-radius: 999px !important;
    box-shadow: inset 0 1px rgb(255 255 255 / .05);
    font-size: 1.45rem !important;
    line-height: 1 !important;
  }

  .mobile-nav__nav {
    display: grid !important;
    align-content: center !important;
    min-block-size: 0;
    padding-block: clamp(1.6rem, 6vh, 3rem) !important;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: none;
  }

  .mobile-nav__nav::-webkit-scrollbar {
    display: none;
  }

  .mobile-nav__list {
    display: grid !important;
    gap: .48rem !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .mobile-nav__item {
    min-inline-size: 0;
    overflow: visible !important;
  }

  .mobile-nav__link {
    position: relative;
    display: grid !important;
    grid-template-columns: 2rem minmax(0, 1fr) 1.8rem;
    align-items: center;
    gap: .72rem;
    min-inline-size: 0;
    min-block-size: 4.35rem;
    padding: .8rem .8rem .8rem .9rem !important;
    overflow: hidden;
    color: rgb(255 255 255 / .88) !important;
    background: transparent;
    border: 1px solid transparent;
    border-radius: .95rem;
    font-size: clamp(1.28rem, 5.1vw, 1.62rem) !important;
    font-weight: 610 !important;
    line-height: 1.05 !important;
    letter-spacing: -.025em !important;
    text-decoration: none !important;
    transform: translateY(18px) !important;
    opacity: 0 !important;
    transition:
      transform 420ms cubic-bezier(.22, 1, .36, 1),
      opacity 260ms linear,
      background-color 180ms ease,
      border-color 180ms ease,
      color 180ms ease !important;
  }

  .mobile-nav__link::after {
    content: '→';
    display: grid;
    place-items: center;
    inline-size: 1.8rem;
    block-size: 1.8rem;
    color: rgb(255 255 255 / .38);
    font-size: 1rem;
    font-weight: 400;
    transition: transform 180ms ease, color 180ms ease;
  }

  .mobile-nav:popover-open .mobile-nav__link,
  .mobile-nav.is-open .mobile-nav__link {
    transform: translateY(0) !important;
    opacity: 1 !important;
    transition-delay: calc(var(--i, 0) * 42ms + 95ms) !important;
  }

  .mobile-nav__link:hover,
  .mobile-nav__link:focus-visible,
  .mobile-nav__link[aria-current='page'] {
    color: #fff !important;
    background: rgb(255 255 255 / .055);
    border-color: rgb(255 255 255 / .10);
  }

  .mobile-nav__link:hover::after,
  .mobile-nav__link:focus-visible::after,
  .mobile-nav__link[aria-current='page']::after {
    color: #74ddd1;
    transform: translateX(3px);
  }

  .mobile-nav__link[aria-current='page'] {
    background:
      linear-gradient(90deg, rgb(14 136 126 / .18), rgb(255 255 255 / .035));
  }

  .mobile-nav__index {
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-start;
    margin: 0 !important;
    color: #d77b49 !important;
    font-size: .68rem !important;
    font-weight: 720 !important;
    letter-spacing: .08em !important;
    line-height: 1 !important;
    vertical-align: initial !important;
  }

  .mobile-nav__foot {
    display: grid !important;
    gap: .8rem !important;
    margin: 0 !important;
    padding: 1rem 0 0 !important;
    border-block-start: 1px solid rgb(255 255 255 / .11) !important;
    opacity: 0 !important;
    transform: translateY(14px) !important;
    transition:
      opacity 260ms linear,
      transform 420ms cubic-bezier(.22, 1, .36, 1) !important;
  }

  .mobile-nav:popover-open .mobile-nav__foot,
  .mobile-nav.is-open .mobile-nav__foot {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition-delay: 250ms !important;
  }

  .mobile-nav__foot .btn {
    inline-size: 100%;
    min-block-size: 3.7rem !important;
    justify-content: center;
    gap: .65rem;
    color: #fff;
    background: #0f8a80;
    border: 1px solid rgb(255 255 255 / .10);
    border-radius: .9rem;
    box-shadow: 0 14px 32px rgb(1 12 21 / .22);
    font-size: 1rem;
    font-weight: 690;
  }

  .mobile-nav__foot .btn:hover,
  .mobile-nav__foot .btn:focus-visible {
    background: #10978c;
  }

  .mobile-nav__meta {
    margin: 0 !important;
    color: rgb(255 255 255 / .48) !important;
    font-size: .76rem !important;
    line-height: 1.45;
    text-align: center;
  }

  .mobile-nav__meta a {
    color: rgb(255 255 255 / .72) !important;
    text-decoration: none;
  }

  html.nav-open,
  body.nav-open {
    overflow: hidden !important;
  }
}

@media (max-width: 26rem) {
  .mobile-nav__panel {
    inline-size: 94vw !important;
    padding-inline: 1rem !important;
    border-radius: 1rem 0 0 1rem;
  }

  .mobile-nav__nav {
    padding-block: 1.35rem !important;
  }

  .mobile-nav__link {
    min-block-size: 3.9rem;
    padding-block: .65rem !important;
    font-size: clamp(1.18rem, 6vw, 1.42rem) !important;
  }

  .mobile-nav__foot .btn {
    min-block-size: 3.45rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav__panel,
  .mobile-nav__link,
  .mobile-nav__foot,
  .mobile-nav__link::after {
    transition: none !important;
  }

  .mobile-nav:popover-open .mobile-nav__panel,
  .mobile-nav.is-open .mobile-nav__panel,
  .mobile-nav:popover-open .mobile-nav__link,
  .mobile-nav.is-open .mobile-nav__link,
  .mobile-nav:popover-open .mobile-nav__foot,
  .mobile-nav.is-open .mobile-nav__foot {
    transform: none !important;
    opacity: 1 !important;
  }
}



/* ========================================================================== 
   Tecovoo - Mobile navigation refinement 6.7.9
   Clean editorial mobile menu. No numbering, no decorative arrows.
   ========================================================================== */

@media (max-width: 63.99rem) {
  .mobile-nav,
  .mobile-nav[popover] {
    position: fixed !important;
    inset: 0 !important;
    inline-size: 100% !important;
    block-size: 100dvh !important;
    max-inline-size: none !important;
    max-block-size: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    color: #fff;
    background: transparent !important;
    border: 0 !important;
  }

  .mobile-nav::backdrop {
    background: rgb(2 12 21 / .68) !important;
    backdrop-filter: blur(10px) saturate(.86);
  }

  .mobile-nav__scrim {
    position: absolute;
    inset: 0;
    background: rgb(2 12 21 / .68);
    backdrop-filter: blur(10px) saturate(.86);
  }

  .mobile-nav__panel {
    position: absolute !important;
    inset: 0 0 0 auto !important;
    display: grid !important;
    grid-template-rows: auto minmax(0, 1fr) auto !important;
    inline-size: min(88vw, 23.5rem) !important;
    block-size: 100dvh !important;
    min-block-size: 100dvh !important;
    margin: 0 !important;
    padding:
      max(1rem, env(safe-area-inset-top))
      clamp(1.35rem, 5vw, 1.75rem)
      max(1.2rem, env(safe-area-inset-bottom)) !important;
    overflow: hidden !important;
    background:
      radial-gradient(80% 34% at 100% 0%, rgb(13 126 116 / .20), transparent 72%),
      linear-gradient(180deg, #0a2033 0%, #081b2b 100%) !important;
    border: 0 !important;
    border-inline-start: 1px solid rgb(255 255 255 / .08) !important;
    border-radius: 1.1rem 0 0 1.1rem !important;
    box-shadow: -28px 0 80px rgb(0 8 15 / .38) !important;
    clip-path: inset(0 0 0 10% round 1.1rem 0 0 1.1rem);
    opacity: 0;
    transform: translateX(7%);
    transition:
      clip-path 520ms cubic-bezier(.22, 1, .36, 1),
      transform 520ms cubic-bezier(.22, 1, .36, 1),
      opacity 180ms linear !important;
  }

  .mobile-nav:popover-open .mobile-nav__panel,
  .mobile-nav.is-open .mobile-nav__panel {
    clip-path: inset(0 0 0 0 round 1.1rem 0 0 1.1rem);
    opacity: 1;
    transform: translateX(0);
  }

  @starting-style {
    .mobile-nav:popover-open .mobile-nav__panel {
      clip-path: inset(0 0 0 12% round 1.1rem 0 0 1.1rem);
      opacity: 0;
      transform: translateX(8%);
    }
  }

  .mobile-nav__head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem !important;
    min-block-size: 4.5rem !important;
    padding: .1rem 0 1rem !important;
    border-block-end: 1px solid rgb(255 255 255 / .10) !important;
    opacity: 0;
    transform: translateY(-10px);
    transition:
      opacity 260ms ease 90ms,
      transform 420ms cubic-bezier(.22, 1, .36, 1) 90ms !important;
  }

  .mobile-nav:popover-open .mobile-nav__head,
  .mobile-nav.is-open .mobile-nav__head {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav__eyebrow {
    display: none !important;
  }

  .mobile-nav__title {
    margin: 0 !important;
    color: #fff !important;
    font-size: .86rem !important;
    font-weight: 760 !important;
    letter-spacing: .22em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
  }

  .mobile-nav__close {
    display: inline-grid !important;
    place-items: center !important;
    inline-size: 2.75rem !important;
    block-size: 2.75rem !important;
    min-inline-size: 2.75rem !important;
    min-block-size: 2.75rem !important;
    margin: 0 !important;
    padding: 0 !important;
    color: rgb(255 255 255 / .92) !important;
    background: transparent !important;
    border: 1px solid rgb(255 255 255 / .16) !important;
    border-radius: .8rem !important;
    box-shadow: none !important;
    transition:
      background-color 180ms ease,
      border-color 180ms ease,
      transform 220ms cubic-bezier(.22, 1, .36, 1) !important;
  }

  .mobile-nav__close:hover,
  .mobile-nav__close:focus-visible {
    background: rgb(255 255 255 / .07) !important;
    border-color: rgb(255 255 255 / .32) !important;
    transform: rotate(3deg) scale(1.02);
  }

  .mobile-nav__nav {
    display: grid !important;
    align-content: center !important;
    min-block-size: 0 !important;
    padding-block: clamp(1.5rem, 7vh, 3.5rem) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    scrollbar-width: none;
  }

  .mobile-nav__nav::-webkit-scrollbar {
    display: none;
  }

  .mobile-nav__list {
    display: grid !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .mobile-nav__item {
    min-inline-size: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-block-end: 1px solid rgb(255 255 255 / .085);
  }

  .mobile-nav__item:first-child {
    border-block-start: 1px solid rgb(255 255 255 / .085);
  }

  .mobile-nav__index {
    display: none !important;
  }

  .mobile-nav__link {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    inline-size: 100% !important;
    min-inline-size: 0 !important;
    min-block-size: clamp(4.25rem, 10.5vh, 5.45rem) !important;
    margin: 0 !important;
    padding: .9rem .15rem !important;
    overflow: hidden !important;
    color: rgb(255 255 255 / .88) !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    font-size: clamp(1.7rem, 7vw, 2.25rem) !important;
    font-weight: 620 !important;
    line-height: 1 !important;
    letter-spacing: -.035em !important;
    text-decoration: none !important;
    opacity: 0 !important;
    transform: translateY(22px) !important;
    filter: blur(5px);
    transition:
      color 180ms ease,
      opacity 300ms ease,
      transform 520ms cubic-bezier(.22, 1, .36, 1),
      filter 420ms ease !important;
  }

  .mobile-nav__link::before {
    content: '' !important;
    position: absolute !important;
    inset: auto auto .65rem 0 !important;
    inline-size: 2.1rem !important;
    block-size: 2px !important;
    background: #20a89b !important;
    border-radius: 999px !important;
    opacity: 0 !important;
    transform: scaleX(.2) !important;
    transform-origin: left center !important;
    transition:
      opacity 180ms ease,
      transform 300ms cubic-bezier(.22, 1, .36, 1) !important;
  }

  .mobile-nav__link::after {
    content: none !important;
    display: none !important;
  }

  .mobile-nav:popover-open .mobile-nav__link,
  .mobile-nav.is-open .mobile-nav__link {
    opacity: 1 !important;
    transform: translateY(0) !important;
    filter: blur(0) !important;
    transition-delay: calc(120ms + (var(--i, 0) * 55ms)) !important;
  }

  .mobile-nav__link:hover,
  .mobile-nav__link:focus-visible,
  .mobile-nav__link[aria-current='page'] {
    color: #fff !important;
    background: transparent !important;
  }

  .mobile-nav__link:hover::before,
  .mobile-nav__link:focus-visible::before,
  .mobile-nav__link[aria-current='page']::before {
    opacity: 1 !important;
    transform: scaleX(1) !important;
  }

  .mobile-nav__link[aria-current='page'] {
    color: #77e1d6 !important;
  }

  .mobile-nav__foot {
    display: grid !important;
    gap: .8rem !important;
    margin: 0 !important;
    padding: 1rem 0 0 !important;
    border-block-start: 1px solid rgb(255 255 255 / .10) !important;
    opacity: 0 !important;
    transform: translateY(16px) !important;
    transition:
      opacity 280ms ease 280ms,
      transform 480ms cubic-bezier(.22, 1, .36, 1) 280ms !important;
  }

  .mobile-nav:popover-open .mobile-nav__foot,
  .mobile-nav.is-open .mobile-nav__foot {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .mobile-nav__foot .btn {
    inline-size: 100% !important;
    min-block-size: 3.55rem !important;
    justify-content: center !important;
    gap: .65rem !important;
    color: #fff !important;
    background: linear-gradient(135deg, #118d82, #0d7f76) !important;
    border: 1px solid rgb(255 255 255 / .10) !important;
    border-radius: .85rem !important;
    box-shadow: 0 18px 44px rgb(0 9 16 / .26) !important;
    font-size: .96rem !important;
    font-weight: 680 !important;
    transition:
      transform 180ms ease,
      filter 180ms ease !important;
  }

  .mobile-nav__foot .btn:hover,
  .mobile-nav__foot .btn:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.06);
  }

  .mobile-nav__meta {
    margin: 0 !important;
    color: rgb(255 255 255 / .48) !important;
    font-size: .72rem !important;
    line-height: 1.45 !important;
    text-align: center !important;
  }

  .mobile-nav__meta a {
    color: inherit !important;
    text-decoration: none !important;
  }
}

@media (max-width: 27rem) {
  .mobile-nav__panel {
    inline-size: 92vw !important;
    padding-inline: 1.1rem !important;
  }

  .mobile-nav__link {
    min-block-size: 4.1rem !important;
    font-size: clamp(1.55rem, 8vw, 1.95rem) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav__panel,
  .mobile-nav__head,
  .mobile-nav__link,
  .mobile-nav__foot,
  .mobile-nav__close,
  .mobile-nav__link::before {
    transition: none !important;
    animation: none !important;
  }

  .mobile-nav__panel,
  .mobile-nav__head,
  .mobile-nav__link,
  .mobile-nav__foot {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }
}

/* ========================================================================== 
   v11 — continuous priority catalogue + integrated Australia footer mark
   ========================================================================== */
.card--product { overflow: hidden; }
.card--product .card__media { overflow: hidden; }
.card--product .card__image {
  scale: var(--media-user-scale, 1);
  transform-origin: center;
}

/*
 * The query, not the presentation layer, owns category ordering. Keeping one
 * uninterrupted grid removes the large blank bands created by short category
 * sections while preserving Air Coolers → Dishwashers → Washing Machines →
 * Refrigerators → remaining parent categories in query order.
 */
.catalogue-results-grid {
  margin: 0;
  align-items: stretch;
}

/*
 * Australia artwork is treated as a brand mark, not a boxed content image.
 * The bundled fallback has a transparent background, so it can sit directly
 * on the navy footer without the previous white tile.
 */
.site-footer__australia {
  width: fit-content;
  max-width: 100%;
  margin-top: .8rem;
  padding-top: .9rem;
  border-top: 1px solid rgb(255 255 255 / .09);
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}
.site-footer__australia-mark {
  width: clamp(4rem, 5.5vw, 5.25rem);
  aspect-ratio: 480 / 454;
  flex: none;
  display: grid;
  place-items: center;
}
.site-footer__australia-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 .55rem 1.2rem rgb(0 0 0 / .16));
}
.site-footer__australia-label {
  color: rgb(255 255 255 / .58);
  font-size: .69rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 39.99rem) {
  .site-footer__australia {
    margin-top: .65rem;
    padding-top: .75rem;
  }
  .site-footer__australia-mark { width: 4rem; }
}
