:root {
  --bg: #0f1b3d;
  --bg-soft: #162548;
  --cream: #fff9f0;
  --gold: #f0b429;
  --ember: #c8102e;
  --ember-deep: #9b0c24;
  --ink: #0f1b3d;
  --muted: #5a6a8a;
  --card: rgba(255, 249, 240, 0.06);
  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-body: "Baloo 2", system-ui, sans-serif;
  --theme-primary: #c8102e;
  --theme-secondary: #0054a6;
  --theme-accent: #f0b429;
  --theme-ink: #0f1b3d;
  --theme-muted: #5a6a8a;
  --theme-bg-from: #fff9f0;
  --theme-bg-to: #ffe4c4;
  --theme-surface: #ffffff;
  --theme-announce-text: #fff7ed;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--theme-ink);
  background:
    radial-gradient(ellipse at top right, color-mix(in srgb, var(--theme-primary) 22%, transparent), transparent 45%),
    radial-gradient(ellipse at bottom left, color-mix(in srgb, var(--theme-accent) 18%, transparent), transparent 40%),
    linear-gradient(180deg, var(--theme-bg-from) 0%, color-mix(in srgb, var(--theme-bg-from) 70%, var(--theme-bg-to)) 45%, var(--theme-bg-to) 100%);
  min-height: 100vh;
}

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

.top-announce {
  background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary), var(--theme-primary));
  color: var(--theme-announce-text);
  text-align: center;
  padding: .55rem 1rem;
  font-size: .9rem;
  letter-spacing: .02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--theme-bg-from) 88%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--theme-ink) 12%, transparent);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding-top: .85rem;
  padding-bottom: .85rem;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--theme-ink);
  min-width: 0;
  flex: 1 1 auto;
  text-decoration: none;
}

.brand-logo {
  height: 56px;
  width: auto;
  max-width: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.8vw, 1.45rem);
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .45rem;
  flex: 0 0 auto;
  min-width: 0;
}

.site-nav {
  align-items: center;
  gap: 1.1rem;
  flex-wrap: nowrap;
}

.site-nav a {
  position: relative;
  font-weight: 500;
  color: var(--theme-ink);
  white-space: nowrap;
  transition: color .18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--theme-primary);
}

.site-nav a.is-active {
  color: var(--theme-primary);
  font-weight: 700;
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.35rem;
  height: 2px;
  border-radius: 999px;
  background: var(--theme-primary);
}

@media (min-width: 992px) {
  .header-bar {
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .brand {
    gap: .85rem;
    flex: 0 1 auto;
    max-width: min(360px, 34vw);
  }

  .brand-logo {
    height: 72px;
    max-width: 80px;
  }

  .header-actions {
    gap: .75rem;
  }

  .site-nav {
    gap: 1.35rem;
  }
}

@media (min-width: 1200px) {
  .brand {
    max-width: 420px;
  }

  .site-nav {
    gap: 1.6rem;
  }

  .header-actions {
    gap: 1rem;
  }
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--theme-primary), var(--theme-accent));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--theme-primary) 28%, transparent);
  flex-shrink: 0;
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  max-width: 280px;
}

.btn-enquiry,
.nav-toggle {
  border: 0;
  border-radius: 999px;
  padding: .65rem 1.2rem;
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--theme-primary) 28%, transparent);
}

.pamphlet-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 1.5px solid color-mix(in srgb, var(--theme-primary) 55%, transparent);
  border-radius: 999px;
  padding: .55rem 1rem;
  background: color-mix(in srgb, var(--theme-primary) 8%, #fff);
  color: var(--theme-primary) !important;
  font-weight: 600;
  font-size: .9rem;
  white-space: nowrap;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.pamphlet-btn:hover {
  background: color-mix(in srgb, var(--theme-primary) 16%, #fff);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--theme-primary) 18%, transparent);
}

.pamphlet-btn-mobile {
  justify-content: center;
  margin-top: .35rem;
  padding: .75rem 1.1rem;
}

.pamphlet-btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  justify-content: center;
  font-size: 1.15rem;
}

.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  color: var(--theme-announce-text);
  overflow: hidden;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--theme-ink) 25%, transparent), color-mix(in srgb, var(--theme-ink) 82%, transparent)),
    radial-gradient(circle at 70% 30%, color-mix(in srgb, var(--theme-accent) 35%, transparent), transparent 35%),
    linear-gradient(135deg, var(--theme-primary), var(--theme-secondary) 45%, var(--theme-ink));
}

.hero-has-slider {
  background: var(--theme-ink);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .9s ease, transform 6s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}

.hero-slide-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-has-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--theme-ink) 18%, transparent) 0%, color-mix(in srgb, var(--theme-ink) 78%, transparent) 100%),
    linear-gradient(90deg, color-mix(in srgb, var(--theme-ink) 55%, transparent) 0%, transparent 55%);
}

.hero-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--theme-ink) 45%, transparent);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  display: grid;
  place-items: center;
  backdrop-filter: blur(4px);
}

.hero-slider-prev {
  left: 1rem;
}

.hero-slider-next {
  right: 1rem;
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  gap: .45rem;
}

.hero-slider-dot {
  width: .65rem;
  height: .65rem;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, .45);
}

.hero-slider-dot.is-active {
  background: var(--theme-accent);
  width: 1.4rem;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 5rem 0 4rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  line-height: .95;
  margin: 0 0 1rem;
  max-width: 12ch;
  text-shadow: 0 10px 30px color-mix(in srgb, var(--theme-ink) 45%, transparent);
}

.hero p {
  max-width: 34rem;
  font-size: 1.1rem;
  opacity: .92;
}

.hero-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: opacity .35s ease;
    transform: none;
  }

  .hero-slide.is-active {
    transform: none;
  }
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .4);
  color: #fff;
  border-radius: 999px;
  padding: .65rem 1.2rem;
  background: transparent;
}

.section {
  padding: 4.5rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: .4rem;
}

.section-lead {
  color: var(--theme-muted);
  max-width: 36rem;
  margin-bottom: 2rem;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-item {
  padding: 1.4rem;
  border-radius: 1.2rem;
  background: color-mix(in srgb, var(--theme-surface) 70%, transparent);
  border: 1px solid color-mix(in srgb, var(--theme-ink) 8%, transparent);
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: .35rem;
}

.cat-grid,
.combo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.cat-card,
.combo-card {
  border-radius: 1.15rem;
  overflow: hidden;
  background: var(--theme-surface);
  border: 1px solid color-mix(in srgb, var(--theme-ink) 8%, transparent);
  transition: transform .25s ease, box-shadow .25s ease;
}

.cat-card:hover,
.combo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px color-mix(in srgb, var(--theme-ink) 12%, transparent);
}

.cat-card .visual,
.combo-card .visual {
  position: relative;
  aspect-ratio: 4/3;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--theme-primary) 85%, transparent), color-mix(in srgb, var(--theme-accent) 75%, transparent)),
    var(--theme-secondary);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.combo-discount-badge {
  position: absolute;
  top: .7rem;
  left: .7rem;
  z-index: 1;
  background: var(--theme-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: .28rem .55rem;
  border-radius: .45rem;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--theme-ink) 25%, transparent);
}

.cat-card .body,
.combo-card .body {
  padding: 1rem;
}

.combo-card .price {
  color: var(--theme-primary);
  font-weight: 700;
}

.combo-card .mrp {
  text-decoration: line-through;
  color: var(--muted);
  margin-left: .4rem;
  font-weight: 400;
}

.product-wrap {
  padding-bottom: 2rem;
}

/* Catalogue topbar: search, enquiry summary, category rail */
.catalog-topbar {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 1rem;
}

.catalog-search {
  position: relative;
  display: flex;
  align-items: center;
}

.catalog-search>i {
  position: absolute;
  left: .85rem;
  color: var(--theme-muted);
  pointer-events: none;
}

.catalog-search-input {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--theme-ink) 12%, transparent);
  border-radius: .8rem;
  background: var(--theme-surface);
  color: var(--theme-ink);
  font-family: var(--font-body);
  font-size: .95rem;
  padding: .7rem .9rem .7rem 2.4rem;
}

.catalog-search-input:focus {
  outline: 2px solid color-mix(in srgb, var(--theme-primary) 30%, transparent);
  outline-offset: 1px;
  border-color: color-mix(in srgb, var(--theme-primary) 45%, transparent);
}

.catalog-summary {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem .85rem;
  border-radius: .9rem;
  color: #fff;
  background:
    linear-gradient(105deg,
      var(--theme-ink) 0%,
      color-mix(in srgb, var(--theme-ink) 80%, var(--theme-secondary)) 100%);
  box-shadow: 0 10px 26px color-mix(in srgb, var(--theme-ink) 18%, transparent);
}

.catalog-summary-icon {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  border-radius: .7rem;
  background: color-mix(in srgb, var(--theme-accent) 88%, #fff);
  color: var(--theme-ink);
  font-size: 1.1rem;
}

.catalog-summary-text {
  min-width: 0;
  flex: 1;
  line-height: 1.15;
}

.catalog-summary-text small {
  display: block;
  font-size: .72rem;
  color: color-mix(in srgb, #fff 78%, transparent);
}

.catalog-summary-text strong {
  font-size: 1.15rem;
  font-weight: 800;
}

.catalog-summary-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  flex-shrink: 0;
  border: 0;
  border-radius: .7rem;
  padding: .5rem .8rem;
  background: var(--theme-surface);
  color: var(--theme-ink);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 800;
  cursor: pointer;
}

.catalog-summary-count {
  display: inline-grid;
  place-items: center;
  min-width: 1.3rem;
  height: 1.3rem;
  padding: 0 .3rem;
  border-radius: 999px;
  background: var(--theme-primary);
  color: #fff;
  font-size: .72rem;
}

.catalog-summary.is-empty .catalog-summary-count {
  background: color-mix(in srgb, var(--theme-ink) 35%, transparent);
}

.catalog-rail {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: .2rem;
  margin-left: calc(var(--bs-gutter-x) * -.5);
  margin-right: calc(var(--bs-gutter-x) * -.5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  padding-right: calc(var(--bs-gutter-x) * .5);
}

.catalog-rail::-webkit-scrollbar {
  display: none;
}

.catalog-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  flex-shrink: 0;
  border: 1px solid color-mix(in srgb, var(--theme-ink) 12%, transparent);
  border-radius: .7rem;
  padding: .5rem .8rem;
  background: var(--theme-surface);
  color: var(--theme-ink);
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.catalog-chip i {
  color: var(--theme-primary);
}

.catalog-chip.is-active {
  background: var(--theme-primary);
  border-color: var(--theme-primary);
  color: #fff;
}

.catalog-chip.is-active i {
  color: #fff;
}

/* Category picking lives in the rail on mobile and in the sidebar on desktop. */
@media (min-width: 992px) {
  .catalog-rail {
    display: none;
  }
}

@media (max-width: 991px) {
  .filter-group-categories {
    display: none;
  }
}

.product-shell {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 1.25rem 1.5rem;
  align-items: start;
}

.product-filters {
  position: sticky;
  top: 5.5rem;
  background: var(--theme-surface);
  border: 1px solid color-mix(in srgb, var(--theme-ink) 8%, transparent);
  border-radius: 1.15rem;
  padding: 1.1rem 1rem 1.2rem;
  box-shadow: 0 10px 28px color-mix(in srgb, var(--theme-ink) 5%, transparent);
}

.product-filters-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: 1rem;
}

.product-filters-head-actions {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  flex-shrink: 0;
}

.product-filters-toggle {
  border: 1px solid color-mix(in srgb, var(--theme-ink) 14%, transparent);
  background: #fff;
  color: var(--theme-ink);
  border-radius: 999px;
  padding: .35rem .8rem;
  font-size: .82rem;
  font-weight: 700;
  font-family: var(--font-body);
}

.product-filters-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
}

.product-filters-clear {
  border: 0;
  background: transparent;
  color: var(--theme-primary);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
}

.filter-group+.filter-group {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid color-mix(in srgb, var(--theme-ink) 8%, transparent);
}

.filter-label {
  display: block;
  margin-bottom: .45rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--theme-muted);
}

.filter-input {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--theme-ink) 12%, transparent);
  border-radius: .7rem;
  padding: .55rem .75rem;
  font-family: var(--font-body);
  font-size: .92rem;
  background: color-mix(in srgb, var(--theme-bg-from) 70%, #fff);
  color: var(--theme-ink);
}

.filter-input:focus {
  outline: 2px solid color-mix(in srgb, var(--theme-primary) 35%, transparent);
  outline-offset: 1px;
  border-color: color-mix(in srgb, var(--theme-primary) 45%, transparent);
}

.filter-cat-list {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  max-height: min(48vh, 360px);
  overflow: auto;
  padding-right: .15rem;
}

.filter-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .65rem;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  border-radius: .65rem;
  padding: .55rem .65rem;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  color: var(--theme-ink);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.filter-cat:hover {
  background: color-mix(in srgb, var(--theme-bg-from) 80%, transparent);
}

.filter-cat.is-active {
  background: color-mix(in srgb, var(--theme-primary) 10%, #fff);
  color: var(--theme-primary);
}

.filter-cat-off {
  display: inline;
  margin-left: .25rem;
  font-style: normal;
  font-size: .75rem;
  color: var(--theme-primary);
  font-weight: 700;
}

.filter-count {
  flex-shrink: 0;
  min-width: 1.6rem;
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  color: var(--theme-muted);
  background: color-mix(in srgb, var(--theme-bg-to) 70%, #fff);
  border-radius: .45rem;
  padding: .12rem .35rem;
}

.filter-cat.is-active .filter-count {
  background: color-mix(in srgb, var(--theme-primary) 14%, #fff);
  color: var(--theme-primary);
}

.filter-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.filter-chip {
  border: 1px solid color-mix(in srgb, var(--theme-ink) 12%, transparent);
  background: transparent;
  color: var(--theme-ink);
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 600;
  border-radius: .55rem;
  padding: .4rem .7rem;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.filter-chip:hover {
  border-color: color-mix(in srgb, var(--theme-primary) 35%, transparent);
}

.filter-chip.is-active {
  background: color-mix(in srgb, var(--theme-primary) 12%, #fff);
  border-color: color-mix(in srgb, var(--theme-primary) 30%, transparent);
  color: var(--theme-primary);
}

.filter-check {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  margin: 0;
}

.filter-check input {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--theme-primary);
}

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

.product-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .85rem 1rem;
}

.product-result-meta {
  font-size: .92rem;
  font-weight: 600;
  color: var(--theme-muted);
}

.product-empty {
  padding: 1.5rem 1.2rem;
  border-radius: 1rem;
  background: color-mix(in srgb, var(--theme-surface) 85%, transparent);
  border: 1px dashed color-mix(in srgb, var(--theme-ink) 14%, transparent);
  color: var(--theme-muted);
  font-weight: 600;
  text-align: center;
}

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

  /* Collapsed by default at this width, so keep the closed state slim. */
  .product-filters {
    position: static;
    padding: .6rem .8rem;
    border-radius: .9rem;
  }

  .product-filters-head {
    margin-bottom: 0;
  }

  .product-filters-head h2 {
    font-size: 1rem;
  }

  #product-filters-body.show,
  #product-filters-body.collapsing {
    padding-top: .9rem;
  }

  .filter-cat-list {
    max-height: none;
  }
}

.layout-toggle {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  padding: .2rem;
  border-radius: .7rem;
  background: color-mix(in srgb, var(--theme-surface) 88%, var(--theme-bg-to));
  border: 1px solid color-mix(in srgb, var(--theme-ink) 10%, transparent);
  flex-shrink: 0;
}

.layout-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 0;
  background: transparent;
  color: var(--theme-muted);
  font-family: var(--font-body);
  font-size: .86rem;
  font-weight: 600;
  padding: .45rem .8rem;
  border-radius: .55rem;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.layout-btn:hover {
  color: var(--theme-ink);
}

.layout-btn.is-active {
  background: var(--theme-surface);
  color: var(--theme-primary);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--theme-ink) 8%, transparent);
}

.product-wrap[data-layout="list"] .product-cards {
  display: none !important;
}

.product-wrap[data-layout="cards"] .product-list-view {
  display: none !important;
}

/* Two-up on phones, then let the cards find their own width on bigger screens. */
.product-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
  padding: .55rem;
}

@media (min-width: 576px) {
  .product-cards {
    gap: .8rem;
    padding: .85rem;
  }
}

@media (min-width: 768px) {
  .product-cards {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    padding: 1rem 1.1rem 1.15rem;
  }
}

.category-block .product-list-view {
  padding: 0;
}

/* Compact product rows (mobile-first, expands into columns on desktop) */
.plist {
  display: flex;
  flex-direction: column;
}

.plist-head {
  display: none;
}

.plist-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto auto auto;
  grid-template-areas: "thumb info price qty total";
  align-items: center;
  gap: .5rem;
  padding: .55rem .6rem;
  background: var(--theme-surface);
  border-bottom: 1px solid color-mix(in srgb, var(--theme-ink) 8%, transparent);
}

.plist-row:last-child {
  border-bottom: 0;
}

.plist-row.is-oos {
  opacity: .6;
}

.plist-thumb {
  grid-area: thumb;
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: .5rem;
  background: color-mix(in srgb, var(--theme-bg-to) 45%, #fff);
}

.plist-info {
  grid-area: info;
  min-width: 0;
}

.plist-name {
  display: block;
  font-weight: 700;
  font-size: .8rem;
  line-height: 1.2;
  color: var(--theme-ink);
}

.plist-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .2rem .4rem;
  margin-top: .1rem;
  font-size: .66rem;
  color: var(--theme-muted);
}

.plist-meta em {
  font-style: normal;
  font-weight: 700;
}

.plist-oos {
  color: var(--theme-primary);
  font-weight: 700;
}

.plist-price {
  grid-area: price;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.15;
  white-space: nowrap;
  font-size: .78rem;
}

.plist-qty {
  grid-area: qty;
  justify-self: start;
}

.plist-total {
  grid-area: total;
  justify-self: end;
  min-width: 2.6rem;
  text-align: right;
  color: var(--theme-primary);
  font-weight: 800;
  font-size: .8rem;
  white-space: nowrap;
}

.plist-dash {
  color: var(--theme-muted);
}

/* Stepper has to stay thumb-friendly while fitting a single-line row. */
.plist-qty .qty-stepper {
  padding: .1rem;
  border-radius: .55rem;
}

.plist-qty .qty-stepper-btn,
.plist-qty .qty-stepper button {
  width: 1.75rem;
  min-width: 1.75rem;
  height: 1.75rem;
  border-radius: .42rem;
  font-size: .9rem;
}

.plist-qty .qty-input {
  width: 2rem;
  min-width: 2rem;
  height: 1.75rem;
}

/* On the narrowest phones the code, unit and both prices cannot share a line.
   Drop the struck-through MRP rather than truncate the product code; the saving
   is still shown on the product cards and the detail page. */
@media (max-width: 374.98px) {
  .plist-price .price-mrp {
    display: none;
  }
}

/* Foldable outer screens: give up the unit too so the code stays readable. */
@media (max-width: 319.98px) {
  .plist-meta>span {
    display: none;
  }
}

@media (min-width: 768px) {
  .plist-head {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 8rem 8.5rem 6rem;
    gap: .75rem;
    padding: .6rem 1rem;
    background: color-mix(in srgb, var(--theme-bg-from) 80%, var(--theme-accent));
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--theme-muted);
  }

  .plist-head-product {
    grid-column: 2;
  }

  .plist-head-price,
  .plist-head-total {
    text-align: right;
  }

  .plist-row {
    grid-template-columns: 56px minmax(0, 1fr) 8rem 8.5rem 6rem;
    grid-template-areas: "thumb info price qty total";
    gap: .75rem;
    padding: .7rem 1rem;
  }

  .plist-thumb {
    width: 56px;
    height: 56px;
  }

  .plist-name {
    font-size: .95rem;
  }

  .plist-meta {
    font-size: .78rem;
  }

  .plist-price {
    flex-direction: row;
    align-items: baseline;
    gap: .4rem;
    font-size: .95rem;
  }

  .plist-qty {
    justify-self: center;
  }

  .plist-qty .qty-stepper-btn,
  .plist-qty .qty-stepper button {
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }

  .plist-qty .qty-input {
    width: 2.4rem;
    min-width: 2.4rem;
    height: 2rem;
  }

  .plist-total {
    font-size: .98rem;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--theme-surface);
  border: 1px solid color-mix(in srgb, var(--theme-ink) 8%, transparent);
  border-radius: 1.1rem;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px color-mix(in srgb, var(--theme-ink) 10%, transparent);
}

.product-card.is-oos {
  opacity: .55;
}

.product-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f3e7da;
  overflow: hidden;
}

@media (min-width: 768px) {
  .product-card-media {
    aspect-ratio: 1 / 1;
  }
}

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

.product-card-media .product-tag {
  position: absolute;
  top: .65rem;
  left: .65rem;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: .6rem .65rem .7rem;
  flex: 1;
}

.product-card-code {
  font-size: .68rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--theme-muted);
}

.product-card-title {
  font-family: var(--font-display);
  font-size: .95rem;
  line-height: 1.2;
  margin: 0;
}

.product-card-unit {
  font-size: .72rem;
  color: var(--theme-muted);
}

.product-card-pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .2rem .4rem;
  margin-top: .1rem;
  font-size: .85rem;
}

/* Narrow two-up cards cannot fit the stepper and the total side by side. */
.product-card-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: .4rem;
  margin-top: auto;
  padding-top: .5rem;
}

.product-card-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .35rem;
  font-size: .72rem;
}

.product-card-total strong {
  font-size: .9rem;
  color: var(--theme-primary);
}

@media (min-width: 768px) {
  .product-card-body {
    gap: .35rem;
    padding: .95rem 1rem 1.05rem;
  }

  .product-card-code {
    font-size: .78rem;
  }

  .product-card-title {
    font-size: 1.2rem;
    line-height: 1.25;
  }

  .product-card-unit {
    font-size: .86rem;
  }

  .product-card-pricing {
    gap: .4rem .55rem;
    margin-top: .15rem;
    font-size: 1rem;
  }

  .product-card-actions {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: .75rem;
    padding-top: .55rem;
  }

  .product-card-total {
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: .15rem;
    font-size: .75rem;
  }

  .product-card-total strong {
    font-size: .95rem;
  }
}

.product-thumb {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: .55rem;
  background: #f3e7da;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  padding: .15rem .55rem;
  border-radius: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.product-tag-offer {
  background: color-mix(in srgb, var(--theme-primary) 14%, #fff);
  color: var(--theme-primary);
}

.product-tag-new {
  background: #dcfce7;
  color: #166534;
}

.cart-icon-btn {
  position: relative;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
  box-shadow: 0 10px 22px color-mix(in srgb, var(--theme-primary) 28%, transparent);
  transition: transform .2s ease;
}

.cart-icon-btn:hover {
  transform: translateY(-1px);
}

.cart-icon-btn.has-items {
  animation: cartPulse .35s ease;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.cart-count.is-visible {
  display: inline-flex;
}

@keyframes cartPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

.cart-drawer {
  width: min(420px, 100%) !important;
  height: 100%;
}

.cart-drawer .offcanvas-header {
  flex-shrink: 0;
}

.cart-drawer .offcanvas-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  padding: 0;
}

.cart-items {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 1rem;
  background: color-mix(in srgb, var(--theme-bg-from) 90%, #fff);
  -webkit-overflow-scrolling: touch;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #5c3b2e;
}

.cart-empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fbbf24, transparent 40%),
    linear-gradient(145deg, #b91c1c, #9a3412);
  opacity: .85;
}

.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: .85rem;
  padding: .85rem;
  margin-bottom: .75rem;
  background: #fff;
  border: 1px solid rgba(122, 48, 24, 0.1);
  border-radius: 1rem;
}

.cart-line-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: .75rem;
  background: #f3e7da;
}

.cart-line-top,
.cart-line-bottom {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  align-items: flex-start;
}

.cart-line-bottom {
  align-items: center;
  margin-top: .65rem;
}

.cart-line-name {
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.25;
  color: #2a1210;
}

.cart-line-meta {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .15rem;
}

.cart-remove {
  border: 0;
  background: transparent;
  color: #9a3412;
  font-size: 1.3rem;
  line-height: 1;
  padding: 0 .2rem;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: color-mix(in srgb, var(--theme-surface) 90%, var(--theme-accent));
  border-radius: .75rem;
  padding: .15rem;
  border: 1px solid color-mix(in srgb, var(--theme-ink) 12%, transparent);
  vertical-align: middle;
}

.qty-stepper-btn,
.qty-stepper button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: .6rem;
  background: var(--theme-ink);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}

.qty-stepper-btn:hover,
.qty-stepper button:hover {
  background: var(--theme-primary);
}

.qty-stepper-btn:active,
.qty-stepper button:active {
  transform: scale(.96);
}

.qty-stepper span,
.qty-input {
  width: 2.6rem;
  min-width: 2.6rem;
  height: 32px;
  margin: 0;
  border: 0;
  background: transparent;
  text-align: center;
  font-weight: 700;
  font-size: .95rem;
  color: var(--theme-ink);
  -moz-appearance: textfield;
  appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-card-qty {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  /* Without this the number input's intrinsic width blows out the card. */
  min-width: 0;
}

/* On phones the stepper spans the card, so the "Qty" caption is redundant. */
.product-card-qty-label {
  display: none;
  font-size: .75rem;
  font-weight: 600;
  color: var(--theme-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.product-card-qty .qty-stepper {
  width: 100%;
  justify-content: space-between;
}

.product-card-qty .qty-stepper-btn,
.product-card-qty .qty-stepper button {
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
}

.product-card-qty .qty-input {
  width: 2.2rem;
  min-width: 2.2rem;
  height: 2rem;
}

@media (min-width: 768px) {
  .product-card-qty-label {
    display: block;
  }

  .product-card-qty .qty-stepper {
    width: auto;
    justify-content: flex-start;
  }

  .product-card-qty .qty-stepper-btn,
  .product-card-qty .qty-stepper button {
    width: 2.2rem;
    min-width: 2.2rem;
    height: 2.2rem;
  }

  .product-card-qty .qty-input {
    width: 2.6rem;
    min-width: 2.6rem;
    height: 2.2rem;
  }
}

.cart-line-price {
  text-align: right;
}

.cart-drawer-footer {
  flex-shrink: 0;
  background: #fff;
  position: sticky;
  bottom: 0;
  z-index: 2;
  box-shadow: 0 -8px 24px color-mix(in srgb, var(--theme-ink) 8%, transparent);
}

#enquiryModal .modal-dialog {
  max-height: calc(100vh - 1.5rem);
  margin: .75rem auto;
}

#enquiryModal .enquiry-modal-form.modal-content {
  max-height: calc(100vh - 1.5rem);
  overflow: hidden;
}

#enquiryModal .modal-header,
#enquiryModal .enquiry-modal-footer {
  flex-shrink: 0;
}

#enquiryModal .modal-body {
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#enquiryModal .enquiry-modal-footer {
  position: sticky;
  bottom: 0;
  z-index: 5;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 -8px 20px rgba(0, 0, 0, .06);
}

#enquiryModal .enquiry-preview-list {
  max-height: min(28vh, 240px);
  overflow-y: auto;
  padding-right: .15rem;
  -webkit-overflow-scrolling: touch;
}

.cart-grand-text {
  color: var(--theme-primary);
  font-size: 1.15rem;
}

.continue-link {
  color: #7c2d12;
}

.enquiry-preview-list {
  display: grid;
  gap: .6rem;
}

.enquiry-preview-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: .7rem;
  align-items: center;
  padding: .55rem;
  border-radius: .7rem;
  background: #fff7ed;
}

.enquiry-preview-row img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: .5rem;
}

.category-block {
  margin-bottom: 2rem;
  background: color-mix(in srgb, var(--theme-surface) 92%, transparent);
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--theme-ink) 10%, transparent);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--theme-ink) 6%, transparent);
}

.category-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem 1rem;
  flex-wrap: wrap;
  padding: .95rem 1.2rem;
  background:
    linear-gradient(105deg,
      var(--theme-ink) 0%,
      color-mix(in srgb, var(--theme-ink) 82%, var(--theme-secondary)) 72%,
      color-mix(in srgb, var(--theme-ink) 70%, var(--theme-primary)) 100%);
  color: #fff;
  border-bottom: 3px solid var(--theme-accent);
}

.category-block-head h2 {
  margin: 0;
  padding: 0;
  background: none;
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-transform: uppercase;
}

.category-block-head h2 i {
  color: var(--theme-accent);
}

.category-block-head-actions {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}

.category-view-all {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  min-height: 2rem;
  border: 0;
  background: transparent;
  color: color-mix(in srgb, #fff 88%, transparent);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 800;
  padding: .25rem .1rem .25rem .35rem;
  cursor: pointer;
}

.category-view-all:hover {
  color: #fff;
}

/* Alternate the section header accent like the reference layout. */
.category-block:nth-child(even) .category-block-head {
  background:
    linear-gradient(105deg,
      color-mix(in srgb, var(--theme-primary) 88%, #000) 0%,
      var(--theme-primary) 72%,
      color-mix(in srgb, var(--theme-primary) 70%, var(--theme-accent)) 100%);
}

.category-discount-badge {
  display: inline-flex;
  align-items: center;
  padding: .28rem .75rem;
  border-radius: .55rem;
  background: color-mix(in srgb, var(--theme-accent) 92%, #fff);
  color: var(--theme-ink);
  border: 0;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .03em;
  white-space: nowrap;
}

.price-offer {
  color: var(--theme-primary);
  font-weight: 700;
}

.price-mrp {
  color: var(--theme-muted);
  text-decoration: line-through;
  font-size: .85rem;
}

.product-discount-pct {
  display: inline-flex;
  align-items: center;
  padding: .2rem .55rem;
  border-radius: .45rem;
  background: color-mix(in srgb, var(--theme-primary) 12%, #fff);
  color: var(--theme-primary);
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-footer {
  background: linear-gradient(180deg, var(--theme-ink), color-mix(in srgb, var(--theme-ink) 85%, #000));
  color: color-mix(in srgb, var(--theme-announce-text) 85%, transparent);
  margin-top: 2rem;
}

.site-footer a {
  color: var(--theme-accent);
}

/* Give footer links a finger-sized hit area on touch screens. */
@media (max-width: 767px) {
  .site-footer a {
    display: inline-block;
    padding-block: .3rem;
  }

  .page-breadcrumb a {
    display: inline-block;
    padding-block: .25rem;
  }
}

.disclaimer {
  font-size: .85rem;
  line-height: 1.5;
  padding: 1rem;
  border-radius: .8rem;
  background: rgba(255, 255, 255, .05);
}

.page-hero {
  padding: 2.6rem 0 1.1rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.page-breadcrumb a {
  color: var(--theme-primary);
  font-weight: 700;
}

.content-card {
  background: color-mix(in srgb, var(--theme-surface) 85%, transparent);
  border-radius: 1.2rem;
  padding: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--theme-ink) 8%, transparent);
  color: var(--theme-ink);
  line-height: 1.7;
}

.content-card-page {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--theme-ink) 8%, transparent);
}

.content-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 1.75rem 0 .75rem;
  color: var(--theme-ink);
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card ul {
  padding-left: 1.2rem;
  margin: 0 0 1rem;
}

.content-card li+li {
  margin-top: .35rem;
}

.content-card a {
  color: var(--theme-primary);
  font-weight: 600;
}

.content-card:has(.contact-map) {
  display: flex;
  flex-direction: column;
}

/* About Us */
.about-hero {
  position: relative;
  min-height: min(72vh, 560px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.about-hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--theme-ink) 18%, transparent) 0%, color-mix(in srgb, var(--theme-ink) 84%, transparent) 100%),
    radial-gradient(circle at 78% 22%, color-mix(in srgb, var(--theme-accent) 42%, transparent), transparent 34%),
    linear-gradient(135deg, var(--theme-primary), var(--theme-secondary) 48%, var(--theme-ink));
  transform: scale(1.02);
  animation: aboutHeroDrift 12s ease-in-out infinite alternate;
}

.about-hero-inner {
  padding: 5.5rem 0 3.2rem;
  max-width: 760px;
  animation: aboutRise .7s ease both;
}

.about-hero-brand {
  margin: 0 0 .55rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--theme-accent);
  text-shadow: 0 8px 24px color-mix(in srgb, var(--theme-ink) 40%, transparent);
}

.about-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .88);
}

.about-hero-lead {
  margin: .85rem 0 0;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 249, 240, .88);
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.4rem;
}

.about-story-section {
  padding-top: 2.5rem;
}

.about-story {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 1.5rem;
  align-items: start;
  animation: aboutRise .75s ease .08s both;
}

.about-story-copy h2,
.about-points-head h2,
.about-cta h2 {
  font-family: var(--font-display);
  margin: 0 0 .75rem;
  letter-spacing: -.02em;
}

.about-story-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.about-story-body {
  color: var(--theme-ink);
  line-height: 1.75;
  font-size: 1.05rem;
}

.about-story-body p {
  margin: 0 0 1rem;
}

.about-story-body p:last-child {
  margin-bottom: 0;
}

.about-story-aside {
  padding: 1.4rem 1.3rem;
  border-radius: 1.25rem;
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--theme-ink) 92%, #000), color-mix(in srgb, var(--theme-secondary) 55%, var(--theme-ink)));
  color: #fff7ed;
  box-shadow: 0 18px 40px color-mix(in srgb, var(--theme-ink) 16%, transparent);
}

.about-story-logo {
  display: block;
  width: auto;
  max-width: 88px;
  max-height: 88px;
  margin: 0 0 1rem;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .35));
}

.about-story-aside-title {
  margin: 0 0 .45rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--theme-accent);
}

.about-story-aside-text {
  margin: 0 0 .45rem;
  color: rgba(255, 247, 237, .82);
  line-height: 1.5;
}

.about-story-aside-text a {
  display: inline-block;
  padding-block: .25rem;
  color: #fff;
  font-weight: 700;
}

.about-points-head {
  max-width: 36rem;
  margin-bottom: 1.4rem;
}

.about-points-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.about-points-head p {
  margin: 0;
  color: var(--theme-muted);
}

.about-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-point {
  padding: 1.2rem 1.1rem 1.25rem;
  border-radius: 1.1rem;
  background: color-mix(in srgb, var(--theme-surface) 92%, transparent);
  border: 1px solid color-mix(in srgb, var(--theme-ink) 8%, transparent);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--theme-ink) 6%, transparent);
  animation: aboutRise .7s ease both;
}

.about-point:nth-child(2) {
  animation-delay: .06s;
}

.about-point:nth-child(3) {
  animation-delay: .12s;
}

.about-point:nth-child(4) {
  animation-delay: .18s;
}

.about-point-icon {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: .85rem;
  border-radius: .8rem;
  background: color-mix(in srgb, var(--theme-primary) 12%, #fff);
  color: var(--theme-primary);
  font-size: 1.15rem;
}

.about-point h3 {
  margin: 0 0 .4rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
}

.about-point p {
  margin: 0;
  color: var(--theme-muted);
  line-height: 1.5;
  font-size: .95rem;
}

.about-cta {
  margin: 0 0 2rem;
  padding: 2.4rem 0;
  background:
    radial-gradient(480px 180px at 90% 0%, color-mix(in srgb, var(--theme-accent) 35%, transparent), transparent 55%),
    linear-gradient(135deg, var(--theme-ink), color-mix(in srgb, var(--theme-secondary) 40%, var(--theme-ink)));
  color: #fff;
}

.about-cta-inner {
  max-width: 40rem;
  animation: aboutRise .7s ease both;
}

.about-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  color: #fff;
}

.about-cta p {
  margin: 0;
  color: rgba(255, 249, 240, .82);
}

.about-cta .about-hero-actions {
  margin-top: 1.2rem;
}

.about-cta .btn-ghost {
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
}

@keyframes aboutRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutHeroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.06) translate3d(-1.2%, 1%, 0);
  }
}

@media (max-width: 991px) {
  .about-story {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .about-hero {
    min-height: 58vh;
  }

  .about-hero-inner {
    padding: 4.2rem 0 2.4rem;
  }

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

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.contact-info-card {
  background: var(--theme-surface);
  border: 1px solid color-mix(in srgb, var(--theme-ink) 8%, transparent);
  border-radius: 1rem;
  padding: 1.1rem 1.2rem;
}

.contact-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--theme-muted);
  margin-bottom: .35rem;
}

.contact-info-card a {
  display: inline-block;
  padding-block: .25rem;
  color: var(--theme-primary);
  font-weight: 600;
}

.contact-map {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  min-height: 420px;
  height: clamp(420px, 52vh, 560px);
  background: #e8e0d6;
  flex: 1 1 auto;
}

.contact-map iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
}

.contact-map-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem;
  margin-top: 1rem;
}

.contact-map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .55rem 1.15rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.contact-map-btn-outline {
  border: 1px solid color-mix(in srgb, var(--theme-ink) 22%, transparent);
  background: var(--theme-surface);
  color: var(--theme-ink);
}

.contact-map-btn-outline:hover {
  border-color: var(--theme-primary);
  color: var(--theme-primary);
}

.contact-map-btn-solid {
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
  color: #fff;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--theme-primary) 24%, transparent);
}

.contact-map-btn-solid:hover {
  transform: translateY(-1px);
  color: #fff;
}

@media (max-width: 991px) {
  .contact-map {
    min-height: 360px;
    height: 420px;
  }

  .contact-map iframe {
    min-height: 360px;
  }
}

.contact-form-card .form-control {
  border-radius: .7rem;
  border-color: color-mix(in srgb, var(--theme-muted) 35%, #fff);
}

@media (max-width: 991px) {
  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .feature-strip {
    grid-template-columns: 1fr;
  }

}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.gallery-card {
  margin: 0;
  background: color-mix(in srgb, var(--theme-surface) 88%, transparent);
  border: 1px solid color-mix(in srgb, var(--theme-ink) 8%, transparent);
  border-radius: 1.1rem;
  overflow: hidden;
}

.gallery-media {
  display: block;
  aspect-ratio: 16 / 10;
  background: color-mix(in srgb, var(--theme-ink) 6%, transparent);
  overflow: hidden;
}

.gallery-media-button {
  width: 100%;
  padding: 0;
  border: 0;
  cursor: zoom-in;
}

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

.gallery-media-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.gallery-media-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-muted, #6b7280);
  font-size: .9rem;
}

.gallery-card figcaption {
  padding: .85rem 1rem 1rem;
  font-size: .95rem;
  color: var(--theme-ink);
}

/* Global mobile / responsive hardening */
img,
video,
iframe {
  max-width: 100%;
}

.content-card img,
.about-story-body img,
.blog-body img,
.post-body img {
  height: auto;
  border-radius: .75rem;
}

.content-card,
.about-story-body,
.blog-body,
.post-body,
.site-footer {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.content-card table,
.about-story-body table,
.blog-body table,
.post-body table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .9rem;
}

.nav-toggle-bars {
  width: 1.15rem;
  height: .78rem;
  display: inline-block;
  background:
    linear-gradient(#fff, #fff) 0 0 / 100% 2px no-repeat,
    linear-gradient(#fff, #fff) 0 50% / 100% 2px no-repeat,
    linear-gradient(#fff, #fff) 0 100% / 100% 2px no-repeat;
}

#mobileNav .offcanvas-body a {
  display: block;
  padding: .7rem .2rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  color: var(--theme-ink);
}

#mobileNav .offcanvas-body a.is-active {
  color: var(--theme-primary);
  padding-left: .55rem;
  border-left: 3px solid var(--theme-primary);
}

.top-announce {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.site-header {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.cart-drawer-footer,
.enquiry-modal-footer,
.offcanvas {
  padding-bottom: max(.75rem, env(safe-area-inset-bottom));
}

@media (max-width: 991px) {
  .brand-logo {
    height: 44px;
    max-width: 52px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: .95rem;
    border-radius: 12px;
  }

  .brand-text strong {
    font-size: clamp(.92rem, 3.6vw, 1.15rem);
  }

  .header-actions {
    gap: .35rem;
  }

  .pamphlet-btn-icon,
  .cart-icon-btn {
    width: 40px;
    height: 40px;
  }

  .section {
    padding: 2.6rem 0;
  }

  .page-hero {
    padding: 1.8rem 0 .85rem;
  }

  .hero {
    min-height: min(78vh, 640px);
  }

  .hero-inner {
    padding: 4.2rem 0 5.2rem;
  }

  .hero-has-slider .hero-inner {
    padding-bottom: 5.6rem;
  }

  .hero-slider-btn {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.2rem;
  }

  .hero-slider-dots {
    bottom: .85rem;
  }

  .filter-input,
  .qty-input,
  .form-control,
  .form-select,
  .catalog-search-input,
  .filter-input {
    font-size: 16px !important;
  }

  .filter-cat-list {
    max-height: 220px;
    overflow: auto;
  }

  .layout-btn {
    padding: .45rem .7rem;
    font-size: .82rem;
  }

  .product-card-actions {
    flex-wrap: wrap;
    gap: .65rem;
  }

  .qty-stepper-btn,
  .qty-stepper button {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .nav-toggle-label {
    font-size: .82rem;
  }
}

@media (max-width: 575px) {
  .header-bar {
    gap: .5rem;
    padding-top: .7rem;
    padding-bottom: .7rem;
  }

  .brand {
    gap: .45rem;
  }

  .brand-text strong {
    max-width: 46vw;
  }

  .nav-toggle {
    padding: .5rem .65rem;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
    max-width: 14ch;
  }

  .hero-slider-btn {
    display: none;
  }

  .hero-actions .btn-enquiry,
  .hero-actions .btn-ghost,
  .about-hero-actions .btn-enquiry,
  .about-hero-actions .btn-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

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

  .nav-toggle-label {
    display: none;
  }

  .nav-toggle {
    padding: .55rem .7rem;
  }

  .contact-map iframe,
  .contact-map {
    min-height: 260px;
    height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .about-hero-media,
  .about-point,
  .about-story,
  .about-hero-inner,
  .about-cta-inner {
    animation: none !important;
  }
}

/* Home V2: compact, image-led storefront */
.home-v2 {
  background: color-mix(in srgb, var(--theme-bg-from) 94%, #fff);
}

.home-v2-hero {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 24%, color-mix(in srgb, var(--theme-accent) 38%, transparent), transparent 28%),
    linear-gradient(130deg, var(--theme-secondary), var(--theme-ink));
}

.home-v2-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5, 13, 38, .9) 0%, rgba(5, 13, 38, .56) 45%, rgba(5, 13, 38, .12) 78%);
}

.home-v2-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.home-v2-kicker {
  display: inline-block;
  margin-bottom: .7rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--theme-accent);
}

.home-v2-hero h1 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: .88;
  text-shadow: 0 10px 30px rgba(0, 0, 0, .28);
}

.home-v2-hero h1 span {
  color: var(--theme-accent);
}

.home-v2-hero p {
  max-width: 34rem;
  margin: 1.1rem 0 0;
  font-size: 1.05rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, .9);
}

.home-v2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.4rem;
}

.home-v2-hero-actions a {
  min-width: 180px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: .45rem;
}

.home-v2-hero .hero-slider-dots {
  z-index: 3;
}

.home-v2-trust {
  position: relative;
  z-index: 4;
  margin-top: -2rem;
}

.home-v2-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--theme-ink) 8%, transparent);
  border-radius: 1.15rem;
  background: var(--theme-surface);
  box-shadow: 0 16px 38px color-mix(in srgb, var(--theme-ink) 12%, transparent);
}

.home-v2-trust-item {
  min-width: 0;
  padding: 1.25rem .8rem;
  text-align: center;
  border-right: 1px solid color-mix(in srgb, var(--theme-ink) 8%, transparent);
}

.home-v2-trust-item:last-child {
  border-right: 0;
}

.home-v2-trust-item i {
  display: block;
  margin-bottom: .45rem;
  color: var(--theme-primary);
  font-size: 1.65rem;
}

.home-v2-trust-item strong,
.home-v2-trust-item span {
  display: block;
}

.home-v2-trust-item strong {
  font-size: .92rem;
}

.home-v2-trust-item span {
  margin: .2rem auto 0;
  max-width: 19ch;
  color: var(--theme-muted);
  font-size: .76rem;
  line-height: 1.3;
}

.home-v2-section {
  padding: 3.2rem 0 0;
}

.home-v2-section:last-child {
  padding-bottom: 3.2rem;
}

.home-v2-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.home-v2-section-heading h2,
.home-v2-combo-banner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4vw, 2.25rem);
}

.home-v2-section-heading h2 i {
  color: var(--theme-accent);
}

.home-v2-section-heading>a {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  flex-shrink: 0;
  min-height: 2rem;
  color: var(--theme-primary);
  font-size: .88rem;
  font-weight: 800;
}

.home-v2-category-rail {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: .85rem;
}

.home-v2-category-card {
  min-width: 0;
  padding: .7rem;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--theme-ink) 8%, transparent);
  border-radius: 1rem;
  background: var(--theme-surface);
  box-shadow: 0 7px 20px color-mix(in srgb, var(--theme-ink) 7%, transparent);
  transition: transform .2s ease, box-shadow .2s ease;
}

.home-v2-category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--theme-ink) 12%, transparent);
}

.home-v2-category-image {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: .5rem;
  border-radius: .75rem;
  background: color-mix(in srgb, var(--theme-bg-to) 45%, #fff);
}

.home-v2-category-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .3rem;
}

.home-v2-category-image>i {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--theme-primary);
  font-size: 2.4rem;
  background:
    radial-gradient(circle at 50% 40%, color-mix(in srgb, var(--theme-accent) 30%, transparent), transparent 48%),
    color-mix(in srgb, var(--theme-bg-to) 35%, #fff);
}

.home-v2-category-card strong {
  display: block;
  overflow: hidden;
  color: var(--theme-ink);
  font-size: .85rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-v2-combo-banner {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 2rem;
  overflow: hidden;
  border-radius: 1.2rem;
  color: #fff;
  background:
    radial-gradient(circle at 18% 110%, color-mix(in srgb, var(--theme-accent) 85%, transparent), transparent 34%),
    linear-gradient(110deg, var(--theme-primary), var(--theme-secondary) 62%, var(--theme-ink));
}

.home-v2-combo-banner span {
  display: block;
  margin-bottom: .25rem;
  color: color-mix(in srgb, var(--theme-accent) 82%, #fff);
  font-size: .85rem;
}

.home-v2-combo-banner i {
  color: var(--theme-accent);
  font-size: clamp(3.2rem, 8vw, 6rem);
  transform: rotate(7deg);
}

.home-v2-combo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.home-v2-combo-card {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--theme-ink) 8%, transparent);
  border-radius: 1.1rem;
  background: var(--theme-surface);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--theme-ink) 8%, transparent);
}

.home-v2-combo-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: color-mix(in srgb, var(--theme-bg-to) 45%, #fff);
}

.home-v2-combo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-v2-combo-image>i {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--theme-accent);
  font-size: 4.5rem;
  background:
    radial-gradient(circle at 50% 55%, color-mix(in srgb, var(--theme-primary) 42%, transparent), transparent 34%),
    linear-gradient(135deg, var(--theme-ink), var(--theme-secondary));
}

.home-v2-combo-image span {
  position: absolute;
  top: .65rem;
  left: .65rem;
  padding: .3rem .6rem;
  border-radius: 999px;
  color: #fff;
  background: var(--theme-primary);
  font-size: .72rem;
  font-weight: 800;
}

.home-v2-combo-body {
  padding: 1rem;
}

.home-v2-combo-body small {
  color: var(--theme-muted);
}

.home-v2-combo-body h3 {
  margin: .2rem 0 .55rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.home-v2-combo-price {
  display: flex;
  align-items: baseline;
  gap: .55rem;
}

.home-v2-combo-price strong {
  color: var(--theme-primary);
  font-size: 1.15rem;
}

.home-v2-combo-price del {
  color: var(--theme-muted);
  font-size: .82rem;
}

.home-v2-combo-body .btn-enquiry {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  margin-top: .8rem;
}

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

.home-v2-update-grid a {
  padding: 1rem;
  border: 1px solid color-mix(in srgb, var(--theme-ink) 8%, transparent);
  border-radius: 1rem;
  background: var(--theme-surface);
}

.home-v2-update-grid strong,
.home-v2-update-grid span {
  display: block;
}

.home-v2-update-grid span {
  margin-top: .3rem;
  color: var(--theme-muted);
  font-size: .86rem;
}

.home-v2-product-table {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--theme-ink) 8%, transparent);
  border-radius: 1rem;
  background: var(--theme-surface);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--theme-ink) 6%, transparent);
}

.home-v2-plist {
  margin: 0;
}

.home-v2-plist-cat+.home-v2-plist-cat {
  border-top: 1px solid color-mix(in srgb, var(--theme-ink) 8%, transparent);
}

.home-v2-plist-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .7rem .85rem;
  background:
    linear-gradient(105deg,
      var(--theme-ink) 0%,
      color-mix(in srgb, var(--theme-ink) 78%, var(--theme-secondary)) 100%);
  color: #fff;
}

.home-v2-plist-cat:nth-child(even) .home-v2-plist-cat-head {
  background:
    linear-gradient(105deg,
      color-mix(in srgb, var(--theme-primary) 88%, #000) 0%,
      var(--theme-primary) 72%,
      color-mix(in srgb, var(--theme-primary) 70%, var(--theme-accent)) 100%);
}

.home-v2-plist-cat-head strong {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.home-v2-plist-cat-head strong i {
  color: var(--theme-accent);
}

.home-v2-plist-cat-head a {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  min-height: 2rem;
  color: color-mix(in srgb, #fff 88%, transparent);
  font-size: .74rem;
  font-weight: 800;
}

.home-v2-plist-cat-head a:hover {
  color: #fff;
}

.home-v2-plist .plist-row:last-child {
  border-bottom: 0;
}

@media (max-width: 575.98px) {
  .home-v2-product-table {
    border-radius: .85rem;
  }

  .home-v2-plist-cat-head {
    padding: .6rem .7rem;
  }

  .home-v2-plist-cat-head strong {
    font-size: .78rem;
  }
}

/* Enquiry drawer refresh */
.cart-drawer .offcanvas-header {
  gap: .75rem;
}

.cart-drawer .offcanvas-header>div {
  min-width: 0;
  flex: 1;
}

.cart-back-btn,
.cart-clear-btn {
  border: 0;
  background: transparent;
}

.cart-back-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  border-radius: 999px;
  color: var(--theme-ink);
  font-size: 1.2rem;
}

.cart-clear-btn {
  flex: 0 0 auto;
  padding: .45rem .65rem;
  color: var(--theme-primary);
  font-size: .8rem;
  font-weight: 800;
}

.cart-remove i {
  font-size: 1rem;
}

.price-mrp {
  color: var(--theme-muted);
  font-size: .74rem;
  text-decoration: line-through;
}

.cart-line-save {
  color: #15803d;
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .55rem;
  color: var(--theme-ink);
}

.cart-summary-row span {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

.cart-summary-row i {
  width: 1.4rem;
  color: var(--theme-primary);
  text-align: center;
}

.cart-summary-total {
  margin: .65rem -.25rem 0;
  padding: .75rem .25rem 0;
  border-top: 1px solid color-mix(in srgb, var(--theme-ink) 9%, transparent);
  font-size: 1.12rem;
  font-weight: 800;
}

.cart-whatsapp-note {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: .9rem 0;
  padding: .75rem;
  border: 1px solid rgba(22, 163, 74, .16);
  border-radius: .8rem;
  background: #f0fdf4;
  color: #254132;
  font-size: .75rem;
  line-height: 1.25;
}

.cart-whatsapp-note>i {
  color: #16a34a;
  font-size: 1.75rem;
}

.cart-drawer-footer .btn-enquiry {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 48px;
}

.continue-shopping-link {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .5rem;
  border: 1px solid color-mix(in srgb, var(--theme-ink) 22%, transparent);
  border-radius: .7rem;
  color: var(--theme-ink);
  font-size: .84rem;
  font-weight: 700;
}

@media (max-width: 991px) {
  .brand-text small {
    max-width: 42vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-toggle,
  .cart-icon-btn {
    border-radius: 999px;
  }

  .home-v2-hero {
    min-height: 430px;
  }

  .home-v2-hero-content {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

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

  .cart-drawer {
    width: 100% !important;
    max-width: 100%;
  }

  .cart-drawer .offcanvas-header {
    min-height: 70px;
    padding-top: max(.7rem, env(safe-area-inset-top));
    padding-bottom: .7rem;
    background: #fff;
  }

  .cart-drawer .offcanvas-title {
    font-size: 1.12rem;
  }

  .cart-items {
    padding: .7rem;
  }

  .cart-line {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: .75rem;
    padding: .75rem;
    border-radius: .85rem;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--theme-ink) 6%, transparent);
  }

  .cart-line-img {
    width: 84px;
    height: 96px;
    object-fit: contain;
  }

  .cart-drawer-footer {
    max-height: 44vh;
    overflow-y: auto;
    padding: .75rem !important;
  }
}

@media (max-width: 575px) {
  .top-announce {
    padding: .42rem .75rem;
    font-size: .68rem;
    line-height: 1.25;
  }

  .header-bar {
    padding-top: .55rem;
    padding-bottom: .55rem;
  }

  .brand-logo {
    height: 42px;
    max-width: 46px;
  }

  .brand-text strong {
    max-width: 48vw;
    color: var(--theme-primary);
    font-size: .96rem;
  }

  .brand-text small {
    max-width: 48vw;
    font-size: .64rem;
  }

  .home-v2 {
    padding-bottom: .5rem;
  }

  .home-v2-hero {
    min-height: 285px;
    margin: .65rem .7rem 0;
    border-radius: .9rem;
  }

  .home-v2-hero::after {
    background: linear-gradient(90deg, rgba(5, 13, 38, .9), rgba(5, 13, 38, .42) 72%, rgba(5, 13, 38, .1));
  }

  .home-v2-hero .hero-slide {
    background-position: center;
  }

  .home-v2-hero-content {
    padding: 1.6rem 1.35rem 2.2rem;
  }

  .home-v2-kicker {
    margin-bottom: .35rem;
    font-size: .55rem;
  }

  .home-v2-hero h1 {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: .9;
  }

  .home-v2-hero p {
    max-width: 23ch;
    margin-top: .6rem;
    font-size: .68rem;
    line-height: 1.3;
  }

  .home-v2-hero-actions {
    max-width: 160px;
    display: grid;
    gap: .45rem;
    margin-top: .8rem;
  }

  .home-v2-hero-actions a {
    width: 100%;
    min-width: 0;
    padding: .48rem .65rem;
    font-size: .68rem;
  }

  .home-v2-hero .hero-slider-dots {
    bottom: .55rem;
  }

  .home-v2-trust {
    margin-top: .75rem;
  }

  .home-v2-trust-grid {
    border-radius: .8rem;
  }

  .home-v2-trust-item {
    padding: .75rem .25rem;
  }

  .home-v2-trust-item i {
    margin-bottom: .3rem;
    font-size: 1.25rem;
  }

  .home-v2-trust-item strong {
    font-size: .62rem;
    line-height: 1.1;
  }

  .home-v2-trust-item span {
    display: none;
  }

  .home-v2-section {
    padding-top: 1.45rem;
  }

  .home-v2-section-heading {
    margin-bottom: .65rem;
  }

  .home-v2-section-heading h2,
  .home-v2-combo-banner h2 {
    font-size: 1.15rem;
  }

  .home-v2-section-heading>a {
    font-size: .7rem;
  }

  .home-v2-category-rail {
    display: flex;
    gap: .55rem;
    margin-left: calc(var(--bs-gutter-x) * -.5);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    padding: .15rem calc(var(--bs-gutter-x) * .5) .55rem;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .home-v2-category-rail::-webkit-scrollbar {
    display: none;
  }

  .home-v2-category-card {
    width: 84px;
    min-width: 84px;
    padding: .4rem;
    border-radius: .7rem;
    scroll-snap-align: start;
  }

  .home-v2-category-image {
    margin-bottom: .35rem;
    border-radius: .55rem;
  }

  .home-v2-category-card strong {
    font-size: .66rem;
  }

  .home-v2-combo-banner {
    min-height: 82px;
    padding: .85rem 1rem;
    border-radius: .8rem;
  }

  .home-v2-combo-banner span {
    font-size: .58rem;
  }

  .home-v2-combo-banner i {
    font-size: 3rem;
  }

  .home-v2-combo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
  }

  .home-v2-combo-card {
    border-radius: .75rem;
  }

  .home-v2-combo-body {
    padding: .65rem;
  }

  .home-v2-combo-body h3 {
    font-size: .84rem;
    line-height: 1.15;
  }

  .home-v2-combo-price {
    gap: .3rem;
    flex-wrap: wrap;
  }

  .home-v2-combo-price strong {
    font-size: .9rem;
  }

  .home-v2-combo-price del {
    font-size: .65rem;
  }

  .home-v2-combo-body .btn-enquiry {
    min-height: 38px;
    padding: .45rem;
    font-size: .7rem;
  }

  .cart-line-name {
    font-size: .82rem;
  }

  .cart-line-meta {
    font-size: .68rem;
  }

  .cart-line-bottom {
    align-items: flex-end;
    gap: .35rem;
  }

  .cart-line .qty-stepper-btn,
  .cart-line .qty-stepper button {
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
  }

  .cart-line .qty-input {
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
  }

  .price-offer {
    font-size: .88rem;
  }

  .cart-summary-row {
    margin-bottom: .4rem;
    font-size: .86rem;
  }

  .cart-summary-total {
    font-size: 1rem;
  }

  .cart-whatsapp-note {
    margin: .65rem 0;
  }
}

/* Mobile-first inner page system */
.page-hero-compact {
  position: relative;
  padding: 1.25rem 0 1rem;
  overflow: hidden;
}

.page-hero-compact::after {
  content: "";
  position: absolute;
  width: 9rem;
  height: 9rem;
  right: -4.5rem;
  bottom: -5rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--theme-primary) 10%, transparent);
  pointer-events: none;
}

.page-hero-compact .container {
  position: relative;
  z-index: 1;
}

.page-hero-kicker,
.card-kicker {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: .45rem;
  color: var(--theme-primary);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-hero-compact h1 {
  max-width: 16ch;
  margin: 0 0 .45rem;
  font-size: clamp(1.9rem, 9vw, 2.6rem);
  line-height: 1.05;
}

.page-hero-compact .section-lead {
  max-width: 38rem;
  margin-bottom: 0;
  font-size: .95rem;
  line-height: 1.55;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: .35rem;
  overflow: hidden;
  white-space: nowrap;
  color: var(--theme-muted);
}

.page-breadcrumb span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-content-section {
  padding: .75rem 0 2rem;
}

.reading-container {
  max-width: 860px;
}

.content-card {
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--theme-ink) 5%, transparent);
}

.content-card h2 {
  font-size: 1.2rem;
  line-height: 1.25;
}

.content-card h3 {
  font-size: 1.05rem;
}

.content-card p,
.content-card li {
  font-size: .94rem;
}

.content-card blockquote {
  margin: 1rem 0;
  padding: .8rem 1rem;
  border-left: 3px solid var(--theme-primary);
  border-radius: 0 .65rem .65rem 0;
  background: color-mix(in srgb, var(--theme-primary) 6%, var(--theme-surface));
}

.empty-state {
  display: grid;
  justify-items: center;
  gap: .45rem;
  padding: 2.5rem 1rem;
  border: 1px dashed color-mix(in srgb, var(--theme-ink) 18%, transparent);
  border-radius: 1rem;
  background: color-mix(in srgb, var(--theme-surface) 85%, transparent);
  text-align: center;
}

.empty-state-icon {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1rem;
  background: color-mix(in srgb, var(--theme-primary) 10%, var(--theme-surface));
  color: var(--theme-primary);
  font-size: 1.5rem;
}

.empty-state h2 {
  margin: .35rem 0 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.empty-state p {
  max-width: 30rem;
  margin: 0;
  color: var(--theme-muted);
}

/* Blog index and article */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}

.blog-card {
  min-width: 0;
}

.blog-card>a {
  display: grid;
  grid-template-columns: 6.25rem minmax(0, 1fr);
  min-height: 8.5rem;
  height: 100%;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--theme-ink) 8%, transparent);
  border-radius: 1rem;
  background: var(--theme-surface);
  color: var(--theme-ink);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--theme-ink) 6%, transparent);
  transition: transform .2s ease, box-shadow .2s ease;
}

.blog-card-media {
  display: grid;
  place-items: center;
  min-height: 100%;
  overflow: hidden;
  background: linear-gradient(145deg, var(--theme-ink), var(--theme-primary));
  color: var(--theme-accent);
  font-size: 2rem;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: .75rem;
}

.blog-card-date {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-bottom: .3rem;
  color: var(--theme-muted);
  font-size: .68rem;
}

.blog-card-body>strong {
  display: -webkit-box;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: .98rem;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-card-excerpt {
  display: none;
  color: var(--theme-muted);
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  min-height: 1.9rem;
  margin-top: auto;
  color: var(--theme-primary);
  font-size: .74rem;
  font-weight: 800;
}

.post-date {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--theme-muted);
  font-size: .82rem;
}

.post-card {
  padding: 0;
  overflow: hidden;
}

.post-cover {
  display: block;
  width: 100%;
  max-height: 420px;
  margin: 0;
  border-radius: 0 !important;
  object-fit: cover;
}

.post-excerpt,
.post-body {
  margin-inline: 1rem;
}

.post-excerpt {
  margin-top: 1rem;
  padding: .85rem;
  border-radius: .75rem;
  background: color-mix(in srgb, var(--theme-accent) 13%, var(--theme-surface));
  color: var(--theme-ink);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
}

.post-body {
  padding-bottom: 1rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  min-height: 2.75rem;
  margin-top: .75rem;
  color: var(--theme-primary);
  font-weight: 800;
}

/* Gallery */
.gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
}

.gallery-card {
  position: relative;
  border-radius: .85rem;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--theme-ink) 6%, transparent);
}

.gallery-media {
  aspect-ratio: 1 / 1;
}

.gallery-type-badge {
  position: absolute;
  z-index: 2;
  top: .45rem;
  left: .45rem;
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--theme-ink) 80%, transparent);
  color: #fff;
  font-size: .8rem;
  pointer-events: none;
}

.gallery-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .4rem;
  padding: .65rem .7rem;
  font-size: .78rem;
  font-weight: 700;
}

.gallery-card figcaption span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gallery-card figcaption i {
  flex-shrink: 0;
  color: var(--theme-primary);
}

/* Contact and forms */
.contact-info-grid {
  grid-template-columns: 1fr;
  gap: .65rem;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: .8rem;
  min-width: 0;
  padding: .8rem;
  border-radius: .9rem;
  box-shadow: 0 7px 18px color-mix(in srgb, var(--theme-ink) 5%, transparent);
}

.contact-info-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  border-radius: .8rem;
  background: color-mix(in srgb, var(--theme-primary) 10%, var(--theme-surface));
  color: var(--theme-primary);
  font-size: 1.15rem;
}

.contact-info-icon-whatsapp {
  background: color-mix(in srgb, #25d366 13%, var(--theme-surface));
  color: #128c45;
}

.contact-info-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-info-copy a,
.contact-info-copy>span:not(.contact-label) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-label {
  margin: 0;
  font-size: .67rem;
}

.contact-form-card .form-control,
.enquiry-modal-form .form-control,
.enquiry-modal-form .form-select {
  min-height: 3rem;
  border-radius: .75rem;
}

.contact-form-card textarea.form-control,
.enquiry-modal-form textarea.form-control {
  min-height: 7.5rem;
}

.contact-form-card .form-label {
  margin-bottom: .35rem;
  font-size: .86rem;
  font-weight: 700;
}

.contact-form-card .btn-enquiry {
  width: 100%;
  justify-content: center;
  min-height: 3rem;
}

.contact-map {
  min-height: 260px;
  height: 260px;
}

.contact-map-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem;
}

/* Enquiry confirmation */
.thank-you-section {
  min-height: 68vh;
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

.thank-you-card {
  max-width: 720px;
  margin: auto;
  padding: 1.25rem;
  text-align: center;
}

.thank-you-icon {
  display: grid;
  place-items: center;
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: color-mix(in srgb, #25d366 14%, var(--theme-surface));
  color: #128c45;
  font-size: 2rem;
}

.thank-you-card h1 {
  margin-bottom: .65rem;
  font-family: var(--font-display);
}

.thank-you-note {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin: 1rem 0;
  padding: .85rem;
  border-radius: .8rem;
  background: color-mix(in srgb, var(--theme-accent) 13%, var(--theme-surface));
  text-align: left;
}

.thank-you-note i {
  color: var(--theme-primary);
  font-size: 1.1rem;
}

.thank-you-note p,
.thank-you-email {
  margin: 0;
  font-size: .9rem;
}

.thank-you-email {
  color: var(--theme-muted);
}

.thank-you-actions {
  display: grid;
  gap: .6rem;
  margin-top: 1.25rem;
}

.thank-you-actions .btn-enquiry,
.thank-you-actions .btn-ghost {
  width: 100%;
  min-height: 3rem;
  justify-content: center;
}

.btn-ghost-dark {
  border-color: color-mix(in srgb, var(--theme-ink) 25%, transparent);
  color: var(--theme-ink);
}

/* Keep the About hero purposeful on phones instead of reserving most of a viewport. */
.about-hero {
  min-height: auto;
}

.about-hero-inner {
  padding: 3rem 0 2.4rem;
}

@media (min-width: 576px) {
  .page-hero-compact {
    padding: 1.8rem 0 1.3rem;
  }

  .page-content-section {
    padding: 1rem 0 3rem;
  }

  .content-card {
    padding: 1.4rem;
  }

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

  .blog-card>a {
    display: flex;
    flex-direction: column;
  }

  .blog-card-media {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .blog-card-body {
    flex: 1;
    padding: 1rem;
  }

  .blog-card-body>strong {
    font-size: 1.1rem;
  }

  .blog-card-excerpt {
    display: -webkit-box;
    overflow: hidden;
    margin-top: .4rem;
    font-size: .88rem;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .gallery-grid {
    gap: 1rem;
  }

  .gallery-media {
    aspect-ratio: 16 / 10;
  }

  .contact-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-info-card {
    align-items: flex-start;
  }

  .contact-map-actions,
  .thank-you-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thank-you-card {
    padding: 2rem;
  }
}

@media (min-width: 992px) {
  .about-hero {
    min-height: min(72vh, 560px);
  }

  .about-hero-inner {
    padding: 5.5rem 0 3.2rem;
  }

  .page-hero-compact {
    padding: 2.3rem 0 1.5rem;
  }

  .page-hero-compact h1 {
    font-size: clamp(2.5rem, 4vw, 3.4rem);
  }

  .page-hero-compact .section-lead {
    font-size: 1.05rem;
  }

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

  .blog-card>a:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px color-mix(in srgb, var(--theme-ink) 10%, transparent);
  }

  .post-excerpt,
  .post-body {
    margin-inline: 2rem;
  }

  .post-excerpt {
    margin-top: 1.5rem;
  }

  .post-body {
    padding-bottom: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-card {
    border-radius: 1.1rem;
  }
}

/* High-impact mobile polish from layout/design audits */
@media (max-width: 767.98px) {

  /* Stepper moves up beside the name instead of taking its own row, and its
     height absorbs a two-line name for free. Price, code and line total share
     the second line, so a row costs two text lines instead of four. */
  .plist-row {
    grid-template-columns: 40px minmax(0, 1fr) auto auto;
    grid-template-areas:
      "thumb name name  qty"
      "thumb meta price total";
    gap: 0 .3rem;
    padding: .35rem .5rem;
  }

  .plist-info {
    display: contents;
  }

  .plist-thumb {
    width: 40px;
    height: 40px;
    border-radius: .45rem;
  }

  .plist-name {
    grid-area: name;
    font-size: .78rem;
  }

  .plist-meta {
    grid-area: meta;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
    margin-top: 0;
    gap: .1rem .28rem;
    font-size: .6rem;
  }

  .plist-meta>* {
    flex: 0 0 auto;
  }

  .plist-price {
    grid-area: price;
    flex-direction: row;
    align-items: baseline;
    justify-self: end;
    gap: .22rem;
    font-size: .66rem;
  }

  .plist-qty {
    grid-area: qty;
    justify-self: end;
  }

  .plist-total {
    grid-area: total;
    justify-self: end;
    min-width: 0;
    font-size: .72rem;
  }

  .plist-qty .qty-stepper {
    width: auto;
    padding: .05rem;
  }

  .plist-qty .qty-stepper-btn,
  .plist-qty .qty-stepper button {
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }

  .plist-qty .qty-input {
    width: 1.85rem;
    min-width: 1.85rem;
    height: 2rem;
    font-size: .9rem;
  }

  .catalog-summary {
    position: sticky;
    top: 4.4rem;
    z-index: 90;
  }

  .cart-drawer-footer {
    max-height: none;
    overflow: visible;
  }

  .cart-whatsapp-note {
    display: none;
  }

  .contact-map {
    min-height: 200px;
    height: 200px;
  }
}

@media (max-width: 575.98px) {
  .top-announce {
    font-size: .78rem;
    line-height: 1.35;
    padding: .5rem .8rem;
  }

  .home-v2-kicker {
    font-size: .72rem;
  }

  .home-v2-hero p {
    max-width: 34ch;
    font-size: .9rem;
    line-height: 1.4;
  }

  .home-v2-hero-actions {
    max-width: none;
    width: 100%;
    display: grid;
    gap: .55rem;
  }

  .home-v2-hero-actions a {
    width: 100%;
    min-height: 2.75rem;
    padding: .65rem 1rem;
    font-size: .9rem;
    justify-content: center;
  }

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

  .home-v2-trust-item {
    padding: .8rem .55rem;
  }

  .home-v2-trust-item strong {
    font-size: .78rem;
    line-height: 1.2;
  }

  .home-v2-trust-item span {
    display: block;
    margin-top: .2rem;
    font-size: .68rem;
    color: var(--theme-muted);
  }

  .home-v2-section-heading h2,
  .home-v2-combo-banner h2 {
    font-size: 1.25rem;
  }

  .home-v2-section-heading>a {
    font-size: .78rem;
  }

  .catalog-summary {
    top: 3.9rem;
  }
}