/* OXA GRACE — wholesale catalogue.
   Plain B2B styling: one sans face, small type, dense grids, no display serif.
   Reference: the gifting/giftezee template. */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --line: #e2e2e2;
  --paper: #f6f6f6;
  --card: #fff;
  --radius: 4px;
}

html {
  overflow-x: hidden;
  max-width: 100%
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

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

img {
  max-width: 100%
}

.product-image-fallback {
  object-fit: contain !important;
  padding: clamp(20px, 12%, 48px) !important;
  opacity: .32;
  filter: grayscale(1);
  background: #f5f5f5
}

.storefront-header+.site-header {
  display: none !important
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0)
}

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header,
.detail-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 0 clamp(16px, 3vw, 32px);
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 50
}

/* contain + auto width so the full wordmark shows whatever its aspect ratio.
   The old rule cropped a wide logo into a fixed 144x76 box with object-fit:cover. */
.brand img {
  display: block;
  height: 38px;
  width: auto;
  max-width: 230px;
  object-fit: contain
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px)
}

.site-header nav a {
  font-size: 13px;
  font-weight: 500;
  padding: 10px 0;
  color: var(--ink)
}

.site-header nav a:hover {
  color: var(--muted)
}

.site-header .clearance-link {
  border: 1px solid var(--ink);
  padding: 7px 13px;
  font-size: 12px
}

.site-header .kit-nav-link {
  font-weight: 600
}

.account-links {
  display: flex;
  gap: 14px;
  align-items: center
}

.account-links a {
  font-size: 12px;
  color: var(--muted)
}

.account-links a:hover {
  color: var(--ink)
}

.detail-header>a:last-child {
  font-size: 12px;
  color: var(--muted)
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0
}

/* Dropdown */
.nav-dropdown {
  position: relative
}

.nav-dropdown>a b {
  font-size: 10px;
  font-weight: 400
}

.nav-sub {
  position: absolute;
  top: 100%;
  left: -14px;
  min-width: 185px;
  padding: 8px 0;
  background: #fff;
  border: 1px solid var(--line);
  display: none;
  z-index: 60
}

.nav-dropdown:hover .nav-sub,
.nav-dropdown:focus-within .nav-sub {
  display: block
}

.site-header .nav-sub a {
  display: block;
  padding: 8px 16px;
  font-size: 13px
}

.site-header .nav-sub a:hover {
  background: var(--paper)
}

/* ── Home ───────────────────────────────────────────────────────────────── */
/* Banner. Uses an admin-uploaded image from the banners table when one exists;
   otherwise the plain variant below shows a dark strip with product thumbnails. */
.home-banner {
  display: block;
  background: #1a1a1a
}

.home-banner>a {
  display: block;
  position: relative
}

.home-banner>a>img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1774/887;
  object-fit: contain
}

.home-banner .home-banner-copy {
  position: absolute;
  left: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 28px);
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .55);
  max-width: 640px
}

.home-banner-copy strong {
  display: block;
  font-size: clamp(19px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.25
}

.home-banner-copy span {
  display: block;
  font-size: clamp(12px, 1.6vw, 14px);
  margin-top: 6px;
  opacity: .9
}

/* Fallback strip — no uploaded banner yet. */
.home-banner--plain {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: clamp(16px, 4vw, 40px);
  padding: clamp(22px, 4vw, 40px) clamp(16px, 3vw, 32px);
  color: #fff
}

.home-banner--plain .home-banner-copy {
  position: static;
  text-shadow: none;
  max-width: none
}

.home-banner-art {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px
}

.home-banner-art img {
  width: 100%;
  height: clamp(70px, 9vw, 110px);
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius);
  padding: 7px
}

.home-intro {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 26px clamp(16px, 3vw, 32px);
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: start
}

.home-intro h1 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 6px
}

.home-intro p {
  font-size: 14px;
  color: var(--muted);
  margin: 0
}

/* Four plain selling points — replaces the old testimonial block. */
.home-usp {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
  padding: 0
}

.home-usp li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 13px
}

.home-usp strong {
  display: block;
  font-size: 13px;
  font-weight: 600
}

.home-usp span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px
}

.home-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap
}

.home-actions a {
  border: 1px solid var(--ink);
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500
}

.home-actions .home-primary {
  background: var(--ink);
  color: #fff
}

.home-search {
  display: flex;
  max-width: 520px;
  margin-top: 16px;
  border: 1px solid var(--line);
  background: #fff
}

.home-search input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px
}

.home-search button {
  border: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  font-size: 13px;
  cursor: pointer
}

.home-section {
  padding: 24px clamp(16px, 3vw, 32px)
}

.home-section h2 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 14px
}

.home-range-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px
}

.home-range-grid a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  display: block
}

.home-range-grid a:hover {
  border-color: var(--ink)
}

.home-range-grid a>div {
  height: 150px;
  display: grid;
  place-items: center;
  overflow: hidden
}

.home-range-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.home-range-grid a>div span {
  font-size: 13px;
  color: #bbb
}

.home-range-grid h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 10px 0 3px
}

.home-range-grid p {
  font-size: 12px;
  color: var(--muted);
  margin: 0
}

.home-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px
}

.home-featured-grid a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px
}

.home-featured-grid a:hover {
  border-color: var(--ink)
}

.home-featured-grid a>div {
  height: 150px
}

.home-featured-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.home-featured-grid span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-top: 9px;
  line-height: 1.35
}

.home-featured-grid small {
  font-size: 11px;
  color: var(--muted)
}

/* Quote prompt strip. */
.home-cta {
  background: var(--ink);
  color: #fff;
  padding: 20px clamp(16px, 3vw, 32px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap
}

.home-cta strong {
  display: block;
  font-size: 16px;
  font-weight: 600
}

.home-cta span {
  display: block;
  font-size: 13px;
  opacity: .75;
  margin-top: 3px
}

.home-cta a {
  border: 1px solid #fff;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap
}

/* Plain facts block — no testimonials or review scores. */
.home-info {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px clamp(16px, 3vw, 32px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px
}

.home-info dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted)
}

.home-info dd {
  margin: 3px 0 0;
  font-size: 13px;
  font-weight: 500
}

/* ── Catalogue ──────────────────────────────────────────────────────────── */
.catalogue-page {
  padding: 20px clamp(16px, 3vw, 32px) 60px
}

.catalogue-head {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 18px
}

.catalogue-head>div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap
}

.catalogue-head h1 {
  font-size: 20px;
  font-weight: 600;
  margin: 0
}

.catalogue-head>div>span {
  font-size: 12px;
  color: var(--muted)
}

.catalogue-search {
  display: flex;
  max-width: 420px;
  margin-top: 14px;
  border: 1px solid var(--line);
  background: #fff
}

.catalogue-search input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 9px 11px;
  font-family: inherit;
  font-size: 14px
}

.catalogue-search button {
  border: 0;
  background: var(--ink);
  color: #fff;
  padding: 9px 16px;
  font-size: 12px;
  cursor: pointer
}

/* Filters — colour swatches + budget range. */
.catalogue-filters {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: 1.6fr 1fr auto;
  gap: clamp(16px, 3vw, 32px);
  align-items: start
}

.catalogue-filters fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0
}

.catalogue-filters legend {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  padding: 0;
  margin-bottom: 9px
}

/* Square swatches: the colour is the control, the name sits under it. */
.colour-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px
}

.colour-list label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  width: 46px
}

.colour-list input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0
}

.colour-list span {
  width: 26px;
  height: 26px;
  border-radius: 3px;
  background: var(--swatch);
  border: 1px solid rgba(0, 0, 0, .18);
  display: block
}

.colour-list small {
  font-size: 9px;
  line-height: 1.15;
  text-align: center;
  color: var(--muted)
}

.colour-list input:checked+span {
  outline: 2px solid var(--ink);
  outline-offset: 2px
}

.colour-list input:checked~small {
  color: var(--ink);
  font-weight: 600
}

.colour-list input:focus-visible+span {
  outline: 2px solid var(--ink);
  outline-offset: 2px
}

.budget-filter {
  min-width: 190px
}

.budget-values {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 6px
}

.budget-slider {
  position: relative;
  height: 26px
}

.budget-track {
  position: absolute;
  top: 11px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--line);
  border-radius: 2px
}

.budget-track span {
  position: absolute;
  height: 100%;
  background: var(--ink);
  border-radius: 2px
}

.budget-range {
  position: absolute;
  top: 6px;
  left: 0;
  width: 100%;
  margin: 0;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  height: 14px
}

.budget-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: auto;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--ink);
  cursor: pointer
}

.budget-range::-moz-range-thumb {
  pointer-events: auto;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--ink);
  cursor: pointer
}

.filter-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: end
}

.filter-actions button {
  background: var(--ink);
  color: #fff;
  border: 0;
  padding: 9px 18px;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  border-radius: var(--radius)
}

.filter-actions a {
  font-size: 12px;
  color: var(--muted);
  text-align: center
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px;
  display: flex;
  flex-direction: column
}

.product-card:hover {
  border-color: var(--ink)
}

.product-image {
  height: 180px;
  background: #fff;
  display: block;
  position: relative;
  overflow: hidden
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.product-image small {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--ink);
  color: #fff;
  padding: 3px 6px;
  font-size: 10px
}

.no-image {
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 12px;
  color: #bbb
}

.product-info {
  padding-top: 10px;
  flex: 1
}

.product-info h2 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0
}

.product-price {
  font-size: 14px;
  font-weight: 600;
  margin-top: 7px
}

.product-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--line);
  margin-top: 10px;
  padding-top: 9px
}

.product-actions a {
  font-size: 12px;
  color: var(--muted)
}

.product-actions .add-quote {
  font-weight: 600;
  color: var(--ink)
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  font-size: 13px
}

.pagination a {
  border: 1px solid var(--line);
  background: #fff;
  padding: 7px 14px
}

.empty-state {
  text-align: center;
  padding: 60px 0
}

.empty-state h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 14px
}

.empty-state a {
  border-bottom: 1px solid var(--ink)
}

/* We Can Import enquiry */
.import-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 52px 24px 80px
}

.import-intro {
  max-width: 700px;
  margin-bottom: 30px
}

.import-intro h1 {
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 14px
}

.import-intro>p:last-child {
  font-size: 16px;
  color: var(--muted)
}

.import-card {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 48px)
}

.import-card h2 {
  font-size: 22px;
  margin-bottom: 8px
}

.import-card>div p {
  color: var(--muted)
}

.import-card ul {
  margin: 24px 0 0 20px;
  display: grid;
  gap: 10px
}

.import-card form {
  display: grid;
  gap: 15px
}

.import-card label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 600
}

.import-card input,
.import-card textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 11px 12px;
  font: inherit;
  background: #fff
}

.import-card textarea {
  resize: vertical
}

.import-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.import-card button {
  border: 0;
  background: #111;
  color: #fff;
  padding: 13px 18px;
  font: inherit;
  font-weight: 600;
  cursor: pointer
}

.import-flash {
  margin-bottom: 20px;
  padding: 12px 15px;
  border: 1px solid #b9e2c0;
  background: #eaf7ec;
  color: #1d6b2c
}

.import-flash.error {
  border-color: #f3bcbc;
  background: #fdeaea;
  color: #8c1c1c
}

@media(max-width:720px) {
  .import-card {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .import-form-row {
    grid-template-columns: 1fr
  }
}

/* ── Product detail ─────────────────────────────────────────────────────── */
.detail-page {
  padding: 20px clamp(16px, 3vw, 32px) 60px
}

.detail-crumb {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 50px);
  align-items: start
}

.detail-gallery {
  min-width: 0;
  overflow: hidden
}

.detail-main {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden
}

.detail-main img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  padding: 14px
}

.detail-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow: auto
}

.detail-thumbs button {
  width: 64px;
  height: 64px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 4px;
  cursor: pointer
}

.detail-thumbs button.active {
  border-color: var(--ink)
}

.detail-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.detail-info h1 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.3
}

.detail-description {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted)
}

.detail-meta {
  margin: 18px 0 0;
  border-top: 1px solid var(--line)
}

.detail-meta div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line)
}

.detail-meta dt {
  font-size: 12px;
  color: var(--muted)
}

.detail-meta dd {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  text-align: right
}

.detail-tax {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px
}

.detail-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap
}

.detail-actions a {
  border: 1px solid var(--ink);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500
}

.detail-actions .primary-action {
  background: var(--ink);
  color: #fff
}

.related-products {
  clear: both;
  width: 100%;
  margin: 50px 0 36px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  overflow: hidden
}

.related-products h2 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 14px
}

.related-products>.eyebrow {
  display: block;
  margin: 0 0 14px;
  line-height: 1.4
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch
}

.related-grid a {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  display: flex;
  flex-direction: column
}

.related-grid a:hover {
  border-color: var(--ink)
}

.related-grid a>div {
  height: 140px
}

.related-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.related-grid a>span {
  font-size: 13px;
  display: block;
  padding-top: 8px;
  line-height: 1.4;
  overflow-wrap: anywhere
}

/* ── Make Your Own Kit ──────────────────────────────────────────────────── */
.kit-page {
  padding: 20px clamp(16px, 3vw, 32px) 70px
}

.kit-intro {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px
}

.kit-intro h1 {
  font-size: 20px;
  font-weight: 600;
  margin: 0
}

.kit-intro h1 em {
  font-style: normal
}

.kit-intro p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 5px
}

.kit-intro .eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin: 0 0 4px
}

.kit-toolbar {
  display: grid;
  grid-template-columns: 1fr 130px auto auto;
  gap: 16px;
  align-items: end;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px
}

.kit-toolbar label {
  font-size: 12px;
  color: var(--muted)
}

.kit-toolbar input {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 10px;
  font-family: inherit;
  font-size: 14px;
  margin-top: 4px
}

.kit-sizes {
  display: flex;
  gap: 5px;
  flex-wrap: wrap
}

.kit-sizes button {
  border: 1px solid var(--line);
  background: #fff;
  padding: 7px 10px;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit
}

.kit-sizes button.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink)
}

/* Category tabs + grouped sections — the picker used to be one flat list. */
.kit-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 16px 0 4px
}

.kit-cats button {
  border: 1px solid var(--line);
  background: #fff;
  padding: 7px 12px;
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  border-radius: var(--radius);
  white-space: nowrap
}

.kit-cats button:hover {
  border-color: var(--ink)
}

.kit-cats button.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink)
}

.kit-group {
  padding-top: 18px
}

.kit-group h2 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px;
  display: flex;
  align-items: baseline;
  gap: 9px
}

.kit-group h2 span {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted)
}

.kit-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  padding-top: 12px
}

.kit-product {
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px
}

.kit-product>input {
  position: absolute;
  opacity: 0
}

.kit-product>div {
  height: 140px;
  position: relative
}

.kit-product img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.kit-product i {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: none;
  place-items: center;
  font-style: normal;
  font-size: 12px
}

.kit-product.selected {
  border-color: var(--ink)
}

.kit-product.selected i {
  display: grid
}

.kit-product strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-top: 8px;
  line-height: 1.35
}

.kit-product small {
  font-size: 11px;
  color: var(--muted)
}

.kit-submit {
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  z-index: 4
}

.kit-submit a {
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500
}

/* ── Downloads ──────────────────────────────────────────────────────────── */
.download-list {
  list-style: none;
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0
}

.download-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 15px
}

.download-list a:hover {
  border-color: var(--ink)
}

.download-list strong {
  font-size: 14px;
  font-weight: 500
}

.download-list span {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap
}

/* ── Quote ──────────────────────────────────────────────────────────────── */
.kit-result {
  padding: 20px clamp(16px, 3vw, 32px) 60px
}

.kit-result h1 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px
}

.kit-result .eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin: 0
}

.kit-result-items div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px
}

.kit-result-total {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 600
}

.quote-page {
  padding: 20px clamp(16px, 3vw, 32px) 70px;
  max-width: 1000px;
  margin: 0 auto
}

.quote-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin-bottom: 18px
}

.quote-head h1 {
  font-size: 20px;
  font-weight: 600;
  margin: 0
}

.quote-head span {
  font-size: 12px;
  color: var(--muted)
}

.quote-error {
  background: #fdeaea;
  border: 1px solid #f3bcbc;
  color: #8c1c1c;
  padding: 10px 13px;
  border-radius: var(--radius);
  font-size: 13px;
  margin-bottom: 16px
}

.quote-saved {
  background: #eaf7ec;
  border: 1px solid #b9e2c0;
  color: #1d6b2c;
  padding: 10px 13px;
  border-radius: var(--radius);
  font-size: 13px;
  margin-bottom: 16px
}

.quote-cart {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px
}

.quote-table,
.pi-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px
}

.quote-table th,
.pi-table th {
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  font-weight: 500;
  padding: 0 8px 8px;
  border-bottom: 1px solid var(--line)
}

.quote-table td,
.pi-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle
}

.quote-table .num,
.pi-table .num {
  text-align: right
}

.quote-table td strong {
  display: block;
  font-weight: 500
}

.quote-table td small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px
}

.quote-table input[type=number] {
  width: 66px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 8px;
  font-family: inherit;
  font-size: 14px;
  text-align: right
}

.quote-table tfoot td {
  border-bottom: 0;
  padding: 6px 8px
}

.quote-table tfoot .pi-grand td,
.pi-table tfoot .pi-grand td {
  font-weight: 600;
  font-size: 15px;
  border-top: 1px solid var(--ink);
  padding-top: 10px
}

.quote-cart-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line)
}

.quote-cart-actions button {
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: var(--radius);
  padding: 9px 16px;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer
}

.quote-cart-actions a {
  font-size: 12px;
  color: var(--muted)
}

/* PI builder */
.pi-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 20px
}

.pi-form h2 {
  font-size: 16px;
  font-weight: 600;
  margin: 0
}

.pi-sub {
  font-size: 13px;
  color: var(--muted);
  margin: 3px 0 14px
}

.pi-mode-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px
}

.pi-mode-tab {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 13px;
  cursor: pointer;
  display: block
}

.pi-mode-tab input {
  position: absolute;
  opacity: 0
}

.pi-mode-tab strong {
  display: block;
  font-size: 13px;
  font-weight: 600
}

.pi-mode-tab small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px
}

.pi-mode-tab.active,
.pi-mode-tab:has(input:checked) {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink)
}

.pi-margin {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 230px
}

.pi-margin input {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
  font-family: inherit;
  font-size: 14px;
  margin-top: 4px
}

.pi-margin small {
  display: block;
  margin-top: 4px;
  font-size: 11px
}

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

.pi-fields label {
  font-size: 12px;
  color: var(--muted)
}

.pi-fields .pi-wide {
  grid-column: 1/-1
}

.pi-fields input,
.pi-fields textarea {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
  font-family: inherit;
  font-size: 14px;
  margin-top: 4px;
  color: var(--ink)
}

.pi-form .detail-actions {
  margin-top: 16px
}

.pi-form button.primary-action {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  border-radius: var(--radius)
}

/* Generated PI document */
.pi-doc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 4vw, 36px)
}

.pi-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 16px;
  flex-wrap: wrap
}

.pi-logo {
  height: 44px;
  width: auto;
  max-width: 240px;
  object-fit: contain
}

.pi-head p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.6
}

.pi-meta {
  text-align: right
}

.pi-meta h1 {
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 8px
}

.pi-meta dl {
  display: grid;
  gap: 3px
}

.pi-meta dl div {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  font-size: 12px
}

.pi-meta dt {
  color: var(--muted)
}

.pi-meta dd {
  margin: 0;
  font-weight: 500
}

.pi-parties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 18px 0
}

.pi-parties h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 6px
}

.pi-parties p {
  font-size: 13px;
  line-height: 1.65;
  margin: 0
}

.pi-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.6
}

.pi-thumb {
  width: 56px
}

.pi-thumb img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  display: block
}

@media(max-width:640px) {
  .pi-fields {
    grid-template-columns: 1fr
  }

  .pi-mode-tabs {
    grid-template-columns: 1fr
  }

  .pi-parties {
    grid-template-columns: 1fr
  }

  .quote-table,
  .pi-table {
    font-size: 13px
  }
}

/* Print: the PI alone, no chrome. */
@media print {

  .no-print,
  .site-header,
  .detail-header,
  footer,
  .pi-form,
  .quote-cart-actions {
    display: none !important
  }

  body {
    background: #fff
  }

  .quote-page {
    padding: 0;
    max-width: none
  }

  .pi-doc {
    border: 0;
    padding: 0
  }

  /* Keep product thumbnails in the printed/PDF invoice. */
  .pi-thumb img {
    width: 42px;
    height: 42px;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact
  }

  .pi-table {
    page-break-inside: auto
  }

  .pi-table tr {
    page-break-inside: avoid
  }

  .pi-table thead {
    display: table-header-group
  }
}

/* ── Login ──────────────────────────────────────────────────────────────── */
.login-brand {
  padding: 18px clamp(16px, 3vw, 32px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #fff
}

.login-brand img {
  height: 38px;
  width: auto;
  max-width: 230px;
  object-fit: contain
}

.login-brand a:last-child {
  font-size: 12px;
  color: var(--muted)
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
footer {
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--ink);
  padding: 24px clamp(16px, 3vw, 32px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}

footer img {
  height: 34px;
  width: auto;
  max-width: 200px;
  object-fit: contain
}

footer p {
  margin: 0;
  font-size: 13px;
  color: var(--muted)
}

.footer-center {
  text-align: center
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 7px
}

.social-links a {
  font-size: 12px;
  color: var(--muted)
}

.social-links a:hover {
  color: var(--ink)
}

footer>span {
  font-size: 12px;
  color: var(--muted)
}

/* Generic small-caps label used on a few pages. */
.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin: 0 0 6px
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media(max-width:820px) {
  .menu-toggle {
    display: block;
    order: 3
  }

  .site-header nav {
    position: fixed;
    inset: 64px 0 auto;
    background: #fff;
    padding: 12px 16px 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    gap: 0
  }

  .site-header nav.open {
    display: flex
  }

  .site-header nav a {
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px
  }

  .nav-dropdown {
    width: 100%
  }

  .nav-sub {
    position: static;
    display: block;
    border: 0;
    padding: 0 0 6px 14px
  }

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

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

  .detail-main {
    height: auto;
    aspect-ratio: 1/1
  }

  .kit-toolbar {
    grid-template-columns: 1fr 1fr
  }

  .home-intro {
    grid-template-columns: 1fr
  }

  .home-banner--plain {
    grid-template-columns: 1fr
  }

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

  footer {
    flex-direction: column;
    text-align: center
  }

  .footer-center {
    order: -1
  }
}

@media(max-width:520px) {
  .account-links a:not(:last-child) {
    display: none
  }

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

  .product-image {
    height: 130px
  }

  .kit-toolbar {
    grid-template-columns: 1fr
  }

  .home-usp {
    grid-template-columns: 1fr
  }

  .home-banner-art {
    grid-template-columns: repeat(4, 1fr);
    gap: 7px
  }

  .related-products {
    margin-top: 34px;
    margin-bottom: 26px
  }

  .related-grid {
    gap: 9px
  }

  .related-grid a>div {
    height: 120px
  }
}

/* ── Monochrome storefront homepage ───────────────────────────────────── */
.home-page {
  --ink: #050505;
  --muted: #666;
  --line: #dedede;
  --paper: #f5f5f5;
  --card: #fff;
  background: #f5f5f5
}

.home-page .site-header {
  display: block;
  min-height: 0;
  padding: 0;
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 0
}

.header-main {
  height: 62px;
  max-width: 1180px;
  margin: auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 22px
}

.header-main .brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-right: auto
}

.header-main .brand img {
  height: 38px
}

.header-main .brand span {
  font-size: 11px;
  color: #777;
  border-left: 1px solid #ddd;
  padding-left: 15px;
  white-space: nowrap
}

.header-contact {
  display: flex;
  gap: 14px;
  align-items: center
}

.header-contact a {
  font-size: 11px;
  font-weight: 600;
  color: #333
}

.home-page .account-links {
  gap: 7px
}

.home-page .account-links a {
  font-size: 11px;
  padding: 7px 10px
}

.home-page .account-links .login-button {
  background: #050505;
  color: #fff;
  border-radius: 3px;
  padding-inline: 15px
}

.header-nav {
  height: 42px;
  background: #050505;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 18px
}

.header-nav>nav {
  max-width: 930px;
  width: 100%;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0
}

.home-page .header-nav nav>a,
.home-page .header-nav .nav-dropdown>a {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 13px 13px;
  white-space: nowrap
}

.home-page .header-nav nav>a:hover,
.home-page .header-nav .nav-dropdown>a:hover {
  background: #252525;
  color: #fff
}

.home-page .site-header .clearance-link {
  border: 0;
  background: #fff;
  color: #050505;
  padding: 7px 11px;
  margin-left: 4px
}

.home-page .nav-sub {
  top: 100%;
  left: 0;
  border-color: #222;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .14)
}

.home-page .site-header .nav-sub a {
  color: #111;
  padding: 9px 15px
}

.nav-search {
  max-width: 240px;
  width: 100%;
  margin-right: auto
}

.nav-search input {
  width: 100%;
  height: 28px;
  border: 0;
  border-radius: 16px;
  background: #292929;
  color: #fff;
  padding: 0 14px;
  font: inherit;
  font-size: 10px;
  outline: 0
}

.nav-search input::placeholder {
  color: #aaa
}

.home-page main {
  max-width: 1180px;
  margin: 0 auto;
  background: #f5f5f5;
  min-height: 80vh
}

.home-page .home-banner {
  margin: 0 calc((1180px - 100vw)/2);
  background: #0a0a0a
}

.home-page .home-banner>a>img {
  height: auto;
  aspect-ratio: 1774/887;
  object-fit: contain;
  object-position: center
}

.home-page .home-bottle-hero {
  position: relative;
  background: #eee
}

.home-page .home-bottle-hero>img {
  width: 100%;
  object-fit: cover;
  object-position: center
}

.home-page .home-bottle-hero .home-banner-copy {
  left: max(24px, calc((100vw - 1144px)/2));
  bottom: 50%;
  transform: translateY(50%);
  color: #111;
  text-shadow: none
}

.home-page .home-bottle-hero .home-banner-copy strong {
  font-size: clamp(27px, 3.8vw, 50px);
  line-height: 1.05;
  letter-spacing: -.035em;
  text-transform: uppercase
}

.home-page .home-bottle-hero .home-banner-copy span {
  font-size: clamp(11px, 1.2vw, 14px);
  margin-top: 13px;
  color: #555
}

.home-page .home-bottle-hero .home-banner-copy a {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 18px;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-shadow: none
}

.home-page .home-banner--plain {
  min-height: 330px;
  padding: 38px max(24px, calc((100vw - 1144px)/2));
  grid-template-columns: .9fr 1.1fr;
  background: linear-gradient(115deg, #000 0%, #181818 55%, #080808 100%)
}

.home-page .home-banner--plain .home-banner-copy strong {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -.04em;
  max-width: 650px
}

.home-page .home-banner--plain .home-banner-copy span {
  font-size: 13px;
  margin-top: 14px;
  letter-spacing: .04em
}

.home-page .home-banner-art {
  gap: 12px;
  transform: none;
  align-items: center
}

.home-page .home-banner-art img {
  height: clamp(105px, 13vw, 175px);
  border-radius: 7px;
  border: 1px solid #444
}

.home-intro {
  margin: 0;
  background: #fff;
  padding: 20px 22px;
  grid-template-columns: 1.3fr 1fr;
  gap: 25px;
  border: 1px solid #e5e5e5;
  border-top: 0
}

.home-intro h1 {
  font-size: 19px;
  color: #050505
}

.home-intro p {
  font-size: 12px
}

.home-search {
  margin-top: 12px
}

.home-actions {
  margin-top: 11px;
  gap: 7px
}

.home-actions a {
  padding: 7px 11px;
  font-size: 11px
}

.home-usp {
  gap: 7px
}

.home-usp li {
  padding: 8px 10px;
  border-radius: 3px
}

.home-usp strong {
  font-size: 11px
}

.home-usp span {
  font-size: 10px
}

.budget-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin: 22px 0 12px;
  padding: 16px 18px
}

.budget-box>strong {
  font-size: 12px;
  display: block;
  margin-bottom: 9px
}

.budget-box form {
  display: flex;
  align-items: end;
  gap: 10px
}

.budget-box label {
  display: grid;
  gap: 4px;
  font-size: 10px;
  color: #555
}

.budget-box input {
  width: 115px;
  height: 30px;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  padding: 0 9px;
  font: inherit
}

.budget-box button {
  height: 30px;
  border: 0;
  border-radius: 16px;
  background: #050505;
  color: #fff;
  padding: 0 19px;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer
}

.home-section {
  padding: 17px 0
}

.section-title {
  border-bottom: 1px solid #ddd;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px
}

.home-section .section-title h2 {
  font-size: 15px;
  margin: 0;
  padding-bottom: 7px
}

.section-title>a {
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #555
}

.home-featured-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 12px
}

.home-featured-grid>a {
  border-radius: 7px;
  padding: 8px;
  min-width: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04)
}

.home-featured-grid a>div {
  height: 190px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  background: #f9f9f9
}

.home-featured-grid img {
  transition: .25s
}

.home-featured-grid a:hover img {
  transform: scale(1.02)
}

.home-featured-grid a>div b {
  position: absolute;
  top: 7px;
  left: 7px;
  background: #050505;
  color: #fff;
  border-radius: 10px;
  padding: 3px 7px;
  font-size: 8px
}

.home-featured-grid span {
  font-size: 11px;
  font-weight: 600;
  min-height: 38px
}

.home-featured-grid small {
  font-size: 9px;
  line-height: 1.35;
  display: block;
  color: #777
}

.home-featured-grid em {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 7px;
  border-radius: 3px;
  background: #eee;
  color: #111;
  font-size: 9px;
  font-style: normal;
  font-weight: 600
}

.home-featured-grid .price-badges {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 6px;
  align-items: baseline
}

.home-featured-grid .pbadge {
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3
}

.home-featured-grid .pbadge-active {
  background: #111;
  color: #fff
}

.home-featured-grid .pbadge-mrp-cut {
  font-size: 9.5px;
  color: #888;
  text-decoration: line-through
}

.home-featured-grid .pbadge-por {
  background: #f0f0f0;
  color: #555;
  font-style: italic
}

.gadgets-coming-soon {
  background: #fafafa;
  border: 1px dashed #d6d6d6;
  border-radius: 8px;
  padding: 36px 20px;
  text-align: center;
  color: #444
}

.gadgets-coming-soon h3 {
  font-size: 16px;
  margin: 0 0 6px;
  color: #111;
  font-weight: 600
}

.gadgets-coming-soon p {
  font-size: 12px;
  color: #777;
  margin: 0 auto 16px;
  max-width: 480px;
  line-height: 1.5
}

.gadgets-coming-soon a {
  display: inline-block;
  padding: 8px 18px;
  background: #111;
  color: #fff;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: .2s
}

.gadgets-coming-soon a:hover {
  background: #333
}

.category-section {
  padding-bottom: 38px
}

.home-range-grid {
  grid-template-columns: repeat(8, 1fr);
  gap: 9px
}

.home-range-grid a {
  padding: 7px;
  border-radius: 6px;
  text-align: center;
  min-width: 0;
  box-shadow: 0 2px 7px rgba(0, 0, 0, .06)
}

.home-range-grid a>div {
  height: 80px
}

.home-range-grid h3 {
  font-size: 10px;
  margin: 6px 0 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.home-range-grid p {
  font-size: 8px
}

.home-cta {
  margin: 0 calc((1180px - 100vw)/2);
  padding: 24px max(24px, calc((100vw - 1144px)/2));
  background: #080808
}

.home-info {
  margin: 0 calc((1180px - 100vw)/2);
  padding: 25px max(24px, calc((100vw - 1144px)/2));
  background: #eee
}

.site-footer {
  background: #e9e9e9;
  border-top: 1px solid #d8d8d8;
  padding: 40px max(24px, calc((100vw - 1440px)/2)) 20px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 440px) minmax(180px, 240px);
  align-items: start;
  column-gap: clamp(40px, 7vw, 120px);
  row-gap: 32px;
  color: #111
}

.site-footer .footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px
}

.site-footer .footer-brand-block img {
  height: 38px;
  width: auto;
  max-width: 220px;
  margin-bottom: 5px
}

.site-footer .footer-brand-block strong {
  font-size: 12px
}

.site-footer .footer-brand-block p {
  font-size: 11px;
  line-height: 1.6;
  color: #666;
  margin: 4px 0
}

.site-footer .footer-brand-block a {
  font-size: 11px;
  font-weight: 600;
  color: #111
}

.site-footer .footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 180px;
  padding-top: 2px
}

.site-footer .footer-links strong {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px
}

.site-footer .footer-links a {
  font-size: 11px;
  color: #555
}

.site-footer .footer-links a:hover {
  color: #000
}

.footer-newsletter {
  max-width: 360px
}

.footer-newsletter>strong {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .05em
}

.footer-newsletter p {
  margin: 8px 0 12px;
  color: #666;
  font-size: 12px
}

.footer-newsletter form {
  display: flex
}

.footer-newsletter input {
  min-width: 0;
  flex: 1;
  border: 1px solid #bbb;
  padding: 11px
}

.footer-newsletter button {
  border: 1px solid #111;
  background: #111;
  color: #fff;
  padding: 11px 15px;
  font-weight: 600
}

.footer-newsletter small {
  display: block;
  margin-top: 8px;
  color: #49734e
}

.site-footer .footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid #d5d5d5;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px
}

.site-footer .footer-bottom>span {
  font-size: 10px;
  color: #777
}

.site-footer .social-links {
  margin: 0
}

.site-footer .social-links a {
  font-size: 10px;
  color: #555
}

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

  .site-footer .footer-links {
    grid-column: 1/-1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 24px
  }
}

@media(max-width:1200px) {
  .home-page main {
    padding-inline: 18px
  }

  .home-page .home-banner,
  .home-cta,
  .home-info {
    margin-left: -18px;
    margin-right: -18px
  }

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

@media(max-width:820px) {
  .header-main {
    height: 58px
  }

  .header-contact,
  .header-main .brand span {
    display: none
  }

  .home-page .menu-toggle {
    display: block;
    order: 5
  }

  .header-nav {
    height: auto;
    display: block;
    padding: 0
  }

  .home-page .header-nav nav {
    position: fixed;
    inset: 58px 0 auto;
    padding: 10px 18px 18px;
    background: #080808;
    display: none
  }

  .home-page .header-nav nav.open {
    display: flex
  }

  .home-page .header-nav nav>a,
  .home-page .header-nav .nav-dropdown>a {
    padding: 10px 0;
    border-color: #333
  }

  .home-page .nav-sub {
    background: #161616
  }

  .home-page .site-header .nav-sub a {
    color: #ddd
  }

  .nav-search {
    display: none
  }

  .home-page .home-banner--plain {
    min-height: 280px
  }

  .home-intro {
    grid-template-columns: 1fr
  }

  .home-featured-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .home-range-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

@media(max-width:560px) {
  .home-page main {
    padding-inline: 10px
  }

  .home-page .home-banner,
  .home-cta,
  .home-info {
    margin-left: -10px;
    margin-right: -10px
  }

  .home-page .account-links>a:first-child {
    display: none
  }

  .home-page .home-banner--plain {
    grid-template-columns: 1fr;
    min-height: 310px;
    padding: 25px 18px
  }

  .home-page .home-banner-art {
    grid-template-columns: repeat(4, 1fr)
  }

  .home-page .home-banner-art img {
    height: 78px
  }

  .home-intro {
    padding: 16px 13px
  }

  .home-usp {
    grid-template-columns: 1fr 1fr
  }

  .budget-box form {
    flex-wrap: wrap
  }

  .budget-box input {
    width: 105px
  }

  .home-featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px
  }

  .home-featured-grid a>div {
    height: 155px
  }

  .home-range-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 30px 20px 18px;
    text-align: left
  }

  .site-footer .footer-links {
    align-items: flex-start
  }

  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start
  }

  .home-page .home-bottle-hero>img {
    height: 310px;
    object-position: 66% center
  }

  .home-page .home-bottle-hero .home-banner-copy {
    left: 18px;
    max-width: 52%
  }

  .home-page .home-bottle-hero .home-banner-copy strong {
    font-size: 23px
  }

  .home-page .home-bottle-hero .home-banner-copy span {
    font-size: 10px
  }

  .home-page .home-bottle-hero .home-banner-copy a {
    margin-top: 14px;
    padding: 8px 11px
  }
}

/* Reference-style storefront header */
.storefront-header {
  position: relative;
  display: block;
  min-height: 0;
  padding: 0;
  background: #fff;
  border-bottom: 0
}

.utility-bar {
  height: 38px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e4e4e4
}

.utility-bar>div {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%
}

.utility-bar a {
  font-size: 12px;
  font-weight: 600;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative
}

.utility-bar a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 1px;
  background: #111
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px
}

.social-icons a {
  display: grid !important;
  place-items: center;
  width: 27px;
  height: 27px !important;
  border: 1px solid #d1d1d1;
  border-radius: 50%;
  color: #111;
  transition: background .2s, color .2s, border-color .2s
}

.social-icons a:hover {
  background: #111;
  color: #fff;
  border-color: #111
}

.social-icons svg {
  width: 14px;
  height: 14px;
  fill: currentColor
}

.social-icons svg.social-outline {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round
}

.social-icons svg.social-outline .youtube-play {
  fill: currentColor;
  stroke: none
}

.utility-bar .social-icons {
  height: 100%
}

.utility-bar .social-icons a::after {
  display: none !important
}

.site-footer .footer-brand-block .social-icons {
  flex-direction: row;
  gap: 9px;
  margin: 3px 0 8px
}

.site-footer .footer-brand-block .social-icons a {
  width: 30px;
  height: 30px !important;
  color: #111
}

.site-footer .footer-brand-block .social-icons svg {
  width: 15px;
  height: 15px
}

.promo-bar {
  height: 50px;
  background: #8a8a89;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 600
}

.promo-marquee {
  display: flex;
  align-items: center;
  gap: 42px;
  width: max-content;
  min-width: max-content;
  white-space: nowrap;
  animation: promo-scroll 24s linear infinite
}

.promo-marquee span {
  min-width: max-content
}

.promo-marquee i {
  font-style: normal;
  opacity: .65
}

@keyframes promo-scroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@media(prefers-reduced-motion:reduce) {
  .promo-marquee {
    animation: none;
    justify-content: center;
    width: 100%
  }

  .promo-marquee>*:nth-child(n+7) {
    display: none
  }
}

.home-five-section {
  padding-top: 42px
}

.home-five-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px
}

.home-five-grid>a {
  min-width: 0
}

.home-five-grid>a>div {
  height: 230px;
  background: #f5f5f5;
  overflow: hidden;
  border: 1px solid #e3e3e3
}

.home-five-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .25s
}

.home-five-grid a:hover img {
  transform: scale(1.025)
}

.home-five-grid strong {
  display: block;
  margin-top: 11px;
  font-size: 14px
}

.home-five-grid small {
  display: block;
  margin-top: 4px;
  color: #777
}

@media(max-width:900px) {
  .home-five-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:560px) {
  .home-five-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .home-five-grid>a>div {
    height: 180px
  }
}

.home-benefits {
  margin: 44px calc((1180px - 100vw)/2) 8px;
  padding: 55px max(28px, calc((100vw - 1480px)/2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #102f50;
  color: #fff
}

.home-benefits article {
  min-height: 340px;
  padding: 0 35px;
  text-align: center;
  border-right: 1px solid rgba(200, 158, 76, .35);
  display: flex;
  flex-direction: column;
  align-items: center
}

.home-benefits article:last-child {
  border-right: 0
}

.benefit-icon {
  width: 102px;
  height: 102px;
  border: 2px solid #d1a148;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #d1a148;
  box-shadow: 0 0 20px rgba(209, 161, 72, .18)
}

.benefit-icon svg {
  width: 45px;
  height: 45px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.home-benefits article>i {
  width: 78px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d1a148, transparent);
  margin: 27px 0 20px;
  position: relative
}

.home-benefits article>i::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d1a148;
  left: calc(50% - 3px);
  top: -3px
}

.home-benefits h2 {
  font-family: Georgia, serif;
  font-size: clamp(25px, 2.2vw, 36px);
  font-style: italic;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #fff
}

.home-benefits p {
  margin: 0;
  color: #b8c3cf;
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.55
}

@media(max-width:1000px) {
  .home-benefits {
    grid-template-columns: 1fr 1fr;
    padding: 40px 18px
  }

  .home-benefits article {
    border-bottom: 1px solid rgba(200, 158, 76, .35);
    min-height: 315px;
    padding: 25px
  }

  .home-benefits article:nth-child(2) {
    border-right: 0
  }

  .home-benefits article:nth-child(n+3) {
    border-bottom: 0
  }
}

@media(max-width:580px) {
  .home-benefits {
    grid-template-columns: 1fr;
    margin-left: -10px;
    margin-right: -10px
  }

  .home-benefits article {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(200, 158, 76, .35) !important
  }

  .home-benefits article:last-child {
    border-bottom: 0 !important
  }
}

.storefront-header .header-main {
  height: 148px;
  max-width: none;
  padding: 0 42px;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(360px, 2fr) minmax(230px, 1fr);
  gap: 30px
}

.header-search {
  display: flex;
  width: min(100%, 390px);
  height: 42px;
  border-bottom: 1px solid #bbb;
  align-items: center
}

.header-search input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 8px 4px;
  background: transparent;
  font: inherit;
  font-size: 15px;
  letter-spacing: .08em
}

.header-search button {
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transform: rotate(-20deg)
}

.brand-stack {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px
}

.storefront-header .brand {
  margin: 0;
  display: block
}

.storefront-header .brand img {
  height: 58px;
  max-width: 360px
}

.brand-links {
  display: flex !important;
  position: static !important;
  padding: 0 !important;
  border: 0 !important;
  gap: clamp(28px, 5vw, 74px) !important;
  background: transparent !important
}

.brand-links a {
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 0 !important;
  border: 0 !important;
  white-space: nowrap
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 34px
}

.header-actions a {
  min-width: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: #111
}

.header-actions span {
  font-size: 21px;
  height: 25px;
  line-height: 25px
}

.header-actions .cart-icon {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible
}

.header-actions .action-icon {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible
}

.storefront-header .header-nav {
  height: 52px;
  background: #fff;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 0 28px
}

.storefront-header .header-nav>nav {
  max-width: none;
  margin: 0;
  justify-content: space-between;
  height: 100%
}

.storefront-header .header-nav nav>a,
.storefront-header .header-nav .nav-dropdown>a {
  color: #111;
  font-size: 13px;
  font-weight: 600;
  padding: 16px 12px;
  white-space: nowrap;
  line-height: 1.2
}

.storefront-header .header-nav nav>a:hover,
.storefront-header .header-nav .nav-dropdown>a:hover {
  background: #f3f3f3;
  color: #111
}

.storefront-header .sale-link {
  color: #9b5b2f !important
}

.storefront-header .budget-nav .nav-sub {
  min-width: 265px
}

.storefront-header .budget-nav .nav-sub a {
  padding: 11px 16px;
  border-bottom: 1px solid #eee;
  white-space: normal
}

.storefront-header .budget-nav .nav-sub a:last-child {
  border-bottom: 0
}

.storefront-header .others-nav .nav-sub {
  min-width: 230px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12)
}

.storefront-header .others-nav .nav-sub a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 17px;
  color: #111;
  border-bottom: 1px solid #e5e5e5
}

.storefront-header .others-nav .nav-sub a:last-child {
  border-bottom: 0
}

.storefront-header .others-nav .nav-sub a:hover {
  background: #f2f2f2;
  color: #111
}

.storefront-header .others-nav .nav-sub span {
  width: 20px;
  text-align: center
}

/* Catalogue sidebar */
.catalogue-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 34px;
  align-items: start
}

.category-sidebar {
  position: sticky;
  top: 84px;
  min-width: 0
}

.filter-toggle {
  border: 0;
  border-radius: 40px;
  background: #5d5b60;
  color: #fff;
  min-width: 188px;
  height: 56px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  font: inherit;
  font-size: 16px;
  cursor: pointer
}

.filter-toggle span {
  font-size: 24px;
  font-weight: 300;
  transform: rotate(90deg)
}

.filter-toggle b {
  font-weight: 500;
  white-space: nowrap
}

.clear-filters {
  display: inline-block;
  margin: 24px 0 50px;
  font-size: 15px;
  font-style: italic;
  border-bottom: 1px solid #9b5b2f;
  padding-bottom: 3px
}

.filter-panel h2 {
  font-size: 21px;
  margin-bottom: 26px
}

.category-list {
  display: flex;
  flex-direction: column;
  align-items: stretch !important;
  gap: 0 !important;
  margin-bottom: 38px
}

.site-header+.catalogue-page .category-list {
  position: static
}

.category-list a {
  display: block;
  padding: 8px 14px !important;
  border: 0 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.35
}

.category-list a.active {
  font-weight: 600 !important;
  background: #f0efed;
  border-left: 3px solid #9b5b2f !important
}

.category-tree {
  position: relative
}

.category-tree>a {
  padding-right: 42px !important
}

.category-arrow {
  position: absolute;
  right: 4px;
  top: 3px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  transition: transform .2s
}

.category-tree.open>.category-arrow {
  transform: rotate(180deg)
}

.category-sublist {
  display: none;
  padding: 3px 0 10px 16px
}

.category-tree.open>.category-sublist {
  display: block
}

.category-sublist a {
  font-size: 13px !important;
  color: #666;
  padding: 7px 12px !important
}

.category-sublist a.active {
  color: #111;
  background: #f5f3f1;
  border-left: 2px solid #9b5b2f !important
}

.catalogue-filters {
  display: flex;
  flex-direction: column;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 26px 0 0;
  margin: 0;
  gap: 28px;
  background: transparent
}

.catalogue-filters>fieldset:first-of-type {
  display: none
}

.catalogue-filters legend {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0
}

.catalogue-filters .colour-list {
  justify-content: flex-start
}

.filter-actions {
  align-self: stretch
}

.filter-actions button {
  width: 100%;
  border-radius: 30px
}

.category-sidebar.filters-hidden .filter-panel,
.category-sidebar.filters-hidden .clear-filters {
  display: none
}

.category-sidebar.filters-hidden {
  position: static
}

.category-sidebar.filters-hidden+.catalogue-results {
  grid-column: 2/-1
}

@media(max-width:900px) {
  .utility-bar {
    padding: 0 18px
  }

  .utility-bar>div:first-child a:not(.active) {
    display: none
  }

  .storefront-header .header-main {
    height: 82px;
    padding: 0 18px;
    display: flex
  }

  .header-search,
  .header-actions a:nth-child(2) {
    display: none
  }

  .brand-links {
    display: none !important
  }

  .storefront-header .brand img {
    height: 44px
  }

  .brand-stack {
    margin-right: auto
  }

  .header-actions {
    gap: 10px
  }

  .storefront-header .menu-toggle {
    display: block
  }

  .storefront-header .header-nav {
    height: 0;
    border: 0;
    padding: 0
  }

  .storefront-header .header-nav nav {
    inset: 170px 0 auto;
    background: #fff;
    padding: 12px 18px 20px
  }

  .storefront-header .header-nav nav>a,
  .storefront-header .header-nav .nav-dropdown>a {
    color: #111;
    padding: 11px 0
  }

  .catalogue-layout {
    grid-template-columns: 1fr
  }

  .category-sidebar {
    position: static
  }

  .filter-toggle {
    height: 48px
  }

  .clear-filters {
    margin: 18px 0 25px
  }

  .category-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 24px
  }

  .category-sidebar.filters-hidden+.catalogue-results {
    grid-column: auto
  }
}

@media(max-width:560px) {
  .utility-bar>div:last-child a:first-child {
    display: none
  }

  .promo-bar {
    height: 42px;
    font-size: 11px
  }

  .header-actions a {
    font-size: 9px
  }

  .category-list {
    grid-template-columns: 1fr
  }
}

/* Editable company story pages */
.story-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 42px 90px
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(280px, 42%) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center
}

.story-image {
  min-height: 520px;
  background: #f2f0ed;
  overflow: hidden
}

.story-image>img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover
}

.story-image--placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 45px;
  text-align: center
}

.story-image--placeholder>img {
  width: min(90%, 300px);
  height: auto;
  min-height: 0;
  object-fit: contain
}

.story-image--placeholder span {
  max-width: 300px;
  margin-top: 30px;
  color: #777;
  font-size: 12px;
  line-height: 1.6
}

.story-copy .eyebrow {
  margin: 0 0 16px;
  color: #9b5b2f;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 12px;
  font-weight: 600
}

.story-copy h1 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.05;
  margin: 0 0 30px
}

.story-copy p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.85;
  color: #414141;
  margin: 0 0 20px
}

.sitemap-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 65px 35px 90px
}

.sitemap-page h1 {
  font-size: 44px
}

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

.sitemap-grid section {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 28px;
  border: 1px solid #ddd
}

.sitemap-grid h2 {
  margin: 0 0 8px
}

.sitemap-grid a {
  color: #555
}

.site-content-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px
}

.site-content-form {
  border: 1px solid #dde1e8;
  border-radius: 12px;
  padding: 22px
}

.site-content-form h3 {
  margin-top: 0
}

.site-content-form textarea {
  width: 100%;
  resize: vertical
}

.site-content-admin-preview {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px
}

@media(max-width:760px) {
  .story-page {
    padding: 35px 18px 60px
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .story-image,
  .story-image>img {
    min-height: 380px
  }

  .sitemap-grid,
  .site-content-admin-grid {
    grid-template-columns: 1fr
  }
}

/* Keep every Site Content page editor visually distinct in the admin. */
.site-content-admin-grid {
  grid-template-columns: 1fr;
  gap: 32px
}

.site-content-form {
  border-left: 5px solid #9b5b2f;
  padding: 26px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(20, 30, 50, .06)
}

.site-content-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: -4px 0 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e3e6eb
}

.site-content-form-head h3 {
  margin: 0;
  font-size: 22px
}

.site-content-form-head span {
  padding: 5px 9px;
  border-radius: 999px;
  background: #f1f3f6;
  color: #697180;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase
}

/* Reviews and lead management */
.home-reviews {
  padding: 58px 0
}

.home-reviews .section-title h2 {
  margin-top: 5px;
  font-size: 30px
}

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

.review-grid article {
  padding: 28px;
  background: #f6f5f3;
  border: 1px solid #e5e2de
}

.review-stars {
  color: #a76938;
  letter-spacing: .12em
}

.review-grid blockquote {
  margin: 17px 0 22px;
  font-size: 16px;
  line-height: 1.7;
  color: #333
}

.review-grid footer {
  display: flex;
  flex-direction: column;
  gap: 3px
}

.review-grid footer span {
  font-size: 12px;
  color: #777
}

.review-admin-list {
  display: grid;
  gap: 10px;
  margin-top: 24px
}

.review-admin-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid #ddd;
  border-radius: 9px;
  padding: 16px
}

.review-admin-item.off {
  opacity: .55
}

.review-admin-item p {
  margin: 7px 0 0
}

.lead-list {
  display: grid;
  gap: 12px
}

.lead-card {
  border: 1px solid #dfe2e7;
  border-radius: 10px
}

.lead-card>summary {
  cursor: pointer;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px
}

.lead-card>summary span {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.lead-card>summary small {
  color: var(--muted)
}

.lead-status {
  font-size: 11px;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 20px;
  background: #eef0f3
}

.status-won {
  background: #dff5e4;
  color: #197333
}

.status-lost {
  background: #fde3e3;
  color: #9d2525
}

.status-qualified,
.status-quoted {
  background: #fff0cb;
  color: #7c5800
}

.lead-body {
  border-top: 1px solid #e6e6e6;
  padding: 18px
}

.lead-contact,
.lead-inline {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px
}

.lead-contact a {
  font-weight: 600
}

.lead-inline select {
  max-width: 260px
}

.lead-remarks {
  display: grid;
  gap: 8px;
  margin: 18px 0
}

.lead-remarks p {
  margin: 0;
  padding: 10px;
  background: #f5f6f8;
  border-radius: 7px
}

.lead-remark-form {
  display: flex;
  gap: 10px
}

.lead-remark-form textarea {
  flex: 1;
  min-width: 220px
}

.lead-remark-form button,
.lead-inline button {
  white-space: nowrap
}

@media(max-width:760px) {
  .review-grid {
    grid-template-columns: 1fr
  }

  .review-admin-item,
  .lead-remark-form {
    flex-direction: column
  }
}

/* Homepage contact cards */
.home-benefits {
  background: #080808
}

.home-contact-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  padding: 70px 0 82px
}

.home-contact-card {
  min-height: 225px;
  border: 1px solid #dfe2df;
  background: #fff;
  padding: 30px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: #3d514a;
  transition: transform .2s, border-color .2s, box-shadow .2s
}

.home-contact-card:hover {
  transform: translateY(-3px);
  border-color: #d4aa58;
  box-shadow: 0 12px 28px rgba(38, 48, 44, .08)
}

.contact-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff6df;
  color: #c49332;
  margin-bottom: 23px
}

.contact-card-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round
}

.home-contact-card strong {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 12px
}

.home-contact-card small {
  font-size: 13px;
  line-height: 1.65;
  color: #78837f;
  overflow-wrap: anywhere
}

@media(max-width:1000px) {
  .home-contact-cards {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:620px) {
  .home-contact-cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 40px 0
  }

  .home-contact-card {
    min-height: 190px;
    padding: 22px 12px
  }

  .home-contact-cards .home-contact-card:last-child {
    grid-column: 1/-1
  }
}

.home-contact-cards {
  margin-left: calc((1180px - 100vw)/2);
  margin-right: calc((1180px - 100vw)/2);
  padding-left: max(24px, calc((100vw - 1760px)/2));
  padding-right: max(24px, calc((100vw - 1760px)/2));
  background: #080808
}

.home-contact-card {
  background: #111;
  border-color: #353535;
  color: #fff
}

.home-contact-card:hover {
  border-color: #d4aa58;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .35)
}

.home-contact-card small {
  color: #b5b5b5
}

.contact-card-icon {
  background: #211b10
}

@media(max-width:1200px) {
  .home-contact-cards {
    margin-left: -18px;
    margin-right: -18px
  }
}

@media(max-width:560px) {
  .home-contact-cards {
    margin-left: -10px;
    margin-right: -10px
  }
}

/* Compact light-grey treatment requested for benefits and contact panels */
.home-benefits {
  margin-top: 32px;
  padding-top: 30px;
  padding-bottom: 30px;
  background: #e7e7e7;
  color: #111
}

.home-benefits article {
  min-height: 225px;
  padding: 0 24px;
  border-color: #bcbcbc
}

.benefit-icon {
  width: 68px;
  height: 68px;
  box-shadow: none
}

.benefit-icon svg {
  width: 31px;
  height: 31px
}

.home-benefits article>i {
  margin: 16px 0 12px;
  width: 58px
}

.home-benefits h2 {
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.15;
  color: #111;
  margin-bottom: 11px
}

.home-benefits p {
  font-family: inherit;
  font-size: 13px;
  line-height: 1.45;
  color: #555
}

.home-contact-cards {
  gap: 14px;
  padding-top: 36px;
  padding-bottom: 40px;
  background: #e7e7e7
}

.home-contact-card {
  min-height: 170px;
  padding: 21px 14px;
  background: #f3f3f3;
  border-color: #c8c8c8;
  color: #111
}

.home-contact-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, .1)
}

.contact-card-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  background: #fff1cf
}

.contact-card-icon svg {
  width: 21px;
  height: 21px
}

.home-contact-card strong {
  font-size: 16px;
  margin-bottom: 8px
}

.home-contact-card small {
  font-size: 12px;
  line-height: 1.45;
  color: #555
}

.home-contact-cards .contact-card-icon {
  color: #111;
  background: transparent
}

/* Full-width homepage value panel and category-aware budget search */
.home-intro {
  display: block
}

.home-intro .home-usp {
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr))
}

.budget-box form {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: end;
  gap: 26px
}

.budget-amounts {
  display: flex;
  align-items: end;
  gap: 10px
}

.home-budget-categories {
  border: 0;
  min-width: 0
}

.home-budget-categories legend {
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 600;
  color: #555
}

.home-budget-categories label {
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 5px;
  margin: 4px 19px 4px 0;
  color: #222;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap
}

.home-budget-categories input {
  width: 14px;
  height: 14px;
  padding: 0;
  accent-color: #111
}

@media(max-width:800px) {
  .home-intro .home-usp {
    grid-template-columns: 1fr 1fr
  }

  .budget-box form {
    grid-template-columns: 1fr
  }

  .home-budget-categories label {
    margin-right: 12px
  }
}

@media(max-width:480px) {
  .home-intro .home-usp {
    grid-template-columns: 1fr
  }

  .budget-amounts {
    flex-wrap: wrap
  }
}

/* About Us mega menu */
.company-nav {
  position: relative
}

.company-nav>a {
  display: flex;
  align-items: center;
  gap: 5px
}

.about-mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  width: min(620px, calc(100vw - 32px));
  padding: 16px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .16);
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  transform: none;
  z-index: 90
}

.company-nav:hover .about-mega-menu,
.company-nav:focus-within .about-mega-menu,
.company-nav.submenu-open .about-mega-menu {
  display: grid
}

.site-header .about-mega-menu>a {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 11px 13px;
  border: 0;
  color: #111;
  text-align: left
}

.site-header .about-mega-menu>a:hover {
  background: #f5f5f5;
  color: #111
}

.about-menu-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-menu-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.about-mega-menu strong,
.about-mega-menu small {
  display: block
}

.about-mega-menu strong {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25
}

.about-mega-menu small {
  margin-top: 2px;
  color: #777;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3
}

@media(max-width:900px) {
  .company-nav {
    width: 100%
  }

  .about-mega-menu {
    right: auto;
    left: 50%;
    width: min(560px, calc(100vw - 24px));
    grid-template-columns: 1fr 1fr;
    transform: translateX(-50%)
  }

  .site-header .about-mega-menu>a {
    padding: 9px
  }
}

@media(max-width:600px) {
  .about-mega-menu {
    position: fixed;
    top: 165px;
    max-height: calc(100vh - 180px);
    overflow: auto;
    grid-template-columns: 1fr;
    transform: translateX(-50%)
  }

  .about-mega-menu small {
    display: none
  }
}

.story-copy h1[id],
.story-copy h2[id] {
  scroll-margin-top: 190px
}

.story-copy h2 {
  margin: 38px 0 14px;
  font-size: 27px;
  line-height: 1.25
}

/* Become a Distributor */
.distributor-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 32px 85px;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr);
  gap: clamp(45px, 7vw, 95px);
  align-items: start
}

.distributor-intro {
  position: sticky;
  top: 205px;
  padding: 46px;
  background: #090909;
  color: #fff
}

.distributor-intro .eyebrow {
  color: #bbb
}

.distributor-intro h1 {
  margin: 8px 0 20px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02
}

.distributor-intro>p:not(.eyebrow) {
  color: #ccc;
  font-size: 16px;
  line-height: 1.75
}

.distributor-intro ul {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none
}

.distributor-intro li {
  padding-left: 26px;
  position: relative;
  color: #eee
}

.distributor-intro li::before {
  content: '✓';
  position: absolute;
  left: 0
}

.distributor-form-card {
  padding: 38px;
  border: 1px solid #d8d8d8;
  background: #fff;
  box-shadow: 0 16px 45px rgba(0, 0, 0, .07)
}

.distributor-form-card h2 {
  margin: 3px 0 8px;
  font-size: 29px
}

.distributor-form-card>div>p:last-child {
  color: #666
}

.distributor-form-card form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px
}

.distributor-form-card label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 600
}

.distributor-form-card label small {
  font-weight: 400;
  color: #777
}

.distributor-form-card input,
.distributor-form-card textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 2px;
  background: #fff;
  padding: 13px 14px;
  font: inherit;
  outline: 0
}

.distributor-form-card input:focus,
.distributor-form-card textarea:focus {
  border-color: #111;
  box-shadow: 0 0 0 1px #111
}

.distributor-form-card textarea {
  resize: vertical
}

.distributor-form-card .full {
  grid-column: 1/-1
}

.distributor-form-card button {
  min-height: 48px;
  border: 0;
  background: #090909;
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer
}

.distributor-form-card button:hover {
  background: #292929
}

.distributor-flash {
  margin-top: 22px;
  padding: 13px 15px;
  border: 1px solid
}

.distributor-flash.is-success {
  border-color: #398456;
  background: #edf8f1;
  color: #24633c
}

.distributor-flash.is-error {
  border-color: #bd4b4b;
  background: #fff0f0;
  color: #8d2929
}

@media(max-width:850px) {
  .distributor-page {
    grid-template-columns: 1fr;
    padding: 28px 18px 60px;
    gap: 24px
  }

  .distributor-intro {
    position: static;
    padding: 30px
  }

  .distributor-form-card {
    padding: 25px
  }
}

@media(max-width:540px) {
  .distributor-form-card form {
    grid-template-columns: 1fr
  }

  .distributor-form-card .full {
    grid-column: auto
  }
}

@media(max-width:1000px) {
  .home-benefits article {
    min-height: 220px
  }
}

@media(max-width:620px) {
  .home-benefits article {
    min-height: 205px
  }

  .home-benefits h2 {
    font-size: 21px
  }

  .home-contact-card {
    min-height: 160px
  }
}

/* Moving benefits row between Drinkware and Gadgets */
.promo-bar {
  background: #080808
}

.home-benefits {
  display: block;
  overflow: hidden;
  margin-top: 28px;
  margin-bottom: 6px;
  padding: 17px 0;
  background: #e7e7e7
}

.home-benefits-track {
  display: flex;
  width: max-content;
  animation: benefit-scroll 28s linear infinite
}

.home-benefits article {
  box-sizing: border-box;
  flex: 0 0 310px;
  min-height: 84px;
  padding: 8px 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  text-align: left;
  border-right: 1px solid #bcbcbc;
  border-bottom: 0
}

.home-benefits article>i {
  display: none
}

.benefit-icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  margin: 0;
  border-color: #111;
  color: #111
}

.benefit-icon svg {
  width: 27px;
  height: 27px
}

.home-benefits article>div {
  min-width: 0
}

.home-benefits h2 {
  margin: 0 0 5px;
  color: #111;
  font-family: inherit;
  font-size: 16px;
  font-style: normal;
  line-height: 1.2
}

.home-benefits p {
  margin: 0;
  color: #555;
  font-size: 11px;
  line-height: 1.4
}

@keyframes benefit-scroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@media(prefers-reduced-motion:reduce) {
  .home-benefits-track {
    animation: none
  }
}

@media(max-width:900px) {
  .storefront-header .header-nav nav {
    display: none;
    flex-direction: column;
    align-items: stretch
  }

  .storefront-header .header-nav nav.open {
    display: flex
  }

  .home-benefits article {
    flex-basis: 270px;
    padding-inline: 18px
  }
}

@media(max-width:900px) {

  .storefront-header .nav-dropdown>.nav-sub,
  .storefront-header .company-nav>.about-mega-menu {
    display: none !important
  }

  .storefront-header .nav-dropdown.submenu-open>.nav-sub,
  .storefront-header .company-nav.submenu-open>.about-mega-menu {
    display: block !important
  }

  .storefront-header .company-nav.submenu-open>.about-mega-menu {
    position: static;
    width: 100%;
    max-height: none;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid #111;
    margin: 0 0 8px;
    padding: 5px 0 5px 12px;
    overflow: visible
  }

  .storefront-header .header-nav nav,
  .home-page .storefront-header .header-nav nav {
    height: auto;
    max-height: calc(100vh - 145px);
    overflow-y: auto;
    justify-content: flex-start;
    gap: 0;
    padding: 8px 20px 18px;
    background: #fff
  }

  .storefront-header .header-nav .nav-dropdown,
  .storefront-header .header-nav nav>a {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid #e5e5e5
  }

  .storefront-header .header-nav nav>a,
  .storefront-header .header-nav .nav-dropdown>a,
  .home-page .storefront-header .header-nav nav>a,
  .home-page .storefront-header .header-nav .nav-dropdown>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 2px;
    color: #111;
    background: #fff;
    border: 0;
    font-size: 15px
  }

  .storefront-header .header-nav .nav-sub,
  .home-page .storefront-header .header-nav .nav-sub {
    position: static;
    width: 100%;
    min-width: 0;
    margin: 0 0 8px;
    padding: 2px 0 5px 15px;
    background: #f6f6f6;
    border: 0;
    box-shadow: none
  }

  .storefront-header .header-nav .nav-sub a,
  .home-page .storefront-header .header-nav .nav-sub a {
    padding: 10px 12px;
    color: #333;
    background: transparent;
    border-bottom: 1px solid #ddd;
    font-size: 14px
  }

  .storefront-header .header-nav .nav-sub a:last-child {
    border-bottom: 0
  }

  .storefront-header .about-mega-menu {
    background: #f6f6f6
  }

  .storefront-header .about-mega-menu>a {
    padding: 10px 8px
  }
}