/* ------------------------------------------------------------------
 * Shared site CSS.
 *
 * Branding is driven by CSS custom properties set per-site in the
 * <head> via partials/layout.php. This file should NOT hard-code any
 * brand colour or font.
 * ------------------------------------------------------------------ */

/* Reset + base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; line-height: 1.5; }
body {
  margin: 0;
  background: var(--brand-bg);
  color: var(--brand-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-primary); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.05; letter-spacing: -0.01em; margin: 0 0 0.4em; color: var(--brand-dark); }
h1 { font-size: clamp(2.4rem, 6vw, var(--scale-display, 5.5rem)); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }
code, .mono { font-family: var(--font-mono); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: 0.95em 1.4em; border-radius: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; line-height: 1;
  text-decoration: none; border: 2px solid transparent;
  transition: transform .08s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--brand-accent);
  color: var(--brand-dark);
}
.btn--primary:hover { filter: brightness(1.05); }
.btn--secondary {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--brand-dark);
}
.btn--secondary:hover { background: var(--brand-dark); color: var(--brand-primary-ink); }
.btn--ghost {
  background: transparent; color: var(--brand-primary); border-color: transparent; padding-left: 0; padding-right: 0;
}
.btn--block { display: flex; width: 100%; justify-content: center; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 30; background: var(--brand-bg); border-bottom: 1px solid var(--brand-border); }
.announce { background: var(--brand-primary); color: var(--brand-primary-ink); font-size: 14px; font-weight: 600; }
.announce__inner { display: flex; justify-content: center; align-items: center; gap: 24px; padding: 8px 24px; }
.announce__phone { color: var(--brand-accent); text-decoration: none; }
.announce__phone:hover { text-decoration: underline; }

.nav { padding: 14px 0; }
.nav__inner { display: flex; align-items: center; gap: 24px; }
.nav__brand img { max-height: 56px; width: auto; }
.nav__links { display: flex; gap: 8px; flex: 1; justify-content: center; }
.nav__link {
  padding: 8px 14px; border-radius: 6px; text-decoration: none;
  color: var(--brand-dark); font-weight: 600; font-size: 0.95rem;
}
.nav__link:hover { background: var(--brand-border); }
.nav__link.is-active { color: var(--brand-primary); }
.nav__cta {
  background: var(--brand-accent); color: var(--brand-dark);
  padding: 10px 16px; border-radius: 8px; font-weight: 700; text-decoration: none; font-size: 0.95rem;
}
.nav__cta:hover { filter: brightness(1.05); }
.nav__toggle { display: none; background: none; border: 0; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.nav__toggle span { width: 28px; height: 3px; background: var(--brand-dark); border-radius: 2px; }
.nav__mobile { display: none; flex-direction: column; padding: 16px 24px 24px; gap: 12px; }
.nav__mobile a { color: var(--brand-dark); text-decoration: none; font-weight: 600; font-size: 1.1rem; }
.nav__mobile .nav__cta { text-align: center; padding: 12px; }
.nav__phone-m { color: var(--brand-accent) !important; font-family: var(--font-mono); }
.nav__mobile-sub { padding-left: 14px; font-size: 0.95rem; color: var(--brand-muted) !important; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile[data-open="true"] { display: flex; }
}

/* Hero */
.hero { padding: 64px 0 80px; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 48px; align-items: start; }
.hero__eyebrow {
  font-family: var(--font-mono); font-size: 0.9rem; color: var(--brand-accent);
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1.2em;
}
.hero__sub { font-size: 1.15rem; color: var(--brand-muted); max-width: 56ch; margin: 1.4em 0 2em; }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.spec-card {
  background: var(--brand-primary); color: var(--brand-primary-ink);
  border-radius: 14px; padding: 28px; border: 1px solid var(--brand-border);
}
.spec-card__eyebrow { font-family: var(--font-mono); font-size: 14px; color: var(--brand-accent); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.spec-card__title { color: var(--brand-primary-ink); font-size: 1.6rem; margin-bottom: 14px; }
.spec-card__divider { border: 0; border-top: 1px solid color-mix(in srgb, var(--brand-primary-ink) 20%, transparent); margin: 12px 0; }
.spec-card__row { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 0; }
.spec-card__row dt { font-size: 0.95rem; opacity: 0.85; margin: 0; }
.spec-card__row dd { margin: 0; font-family: var(--font-mono); color: var(--brand-accent); font-size: 0.95rem; }
.spec-card__note { font-family: var(--font-mono); font-size: 12px; opacity: 0.7; margin: 4px 0 0; }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
}

/* Trust strip */
.trust { background: var(--brand-surface, #fff); border-top: 1px solid var(--brand-border); border-bottom: 1px solid var(--brand-border); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 28px 0; }
.trust__item { display: flex; gap: 14px; align-items: flex-start; }
.trust__item h4 { margin: 0 0 4px; font-size: 0.95rem; color: var(--brand-dark); }
.trust__item p { margin: 0; font-size: 0.9rem; color: var(--brand-muted); }
.trust__icon { width: 36px; height: 36px; border-radius: 8px; background: var(--brand-primary); color: var(--brand-primary-ink); display: grid; place-items: center; flex-shrink: 0; font-family: var(--font-mono); font-weight: 700; }

@media (max-width: 760px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Categories */
.section { padding: 72px 0; }
.section__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; gap: 24px; }
.section__head h2 { margin: 0; }
.section__head .btn--ghost { color: var(--brand-primary); }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-card {
  display: block; background: var(--brand-surface, #fff); border: 1px solid var(--brand-border);
  border-radius: 12px; padding: 22px; text-decoration: none; color: var(--brand-dark);
  transition: border-color .12s ease, transform .12s ease;
}
.cat-card:hover { border-color: var(--brand-accent); transform: translateY(-2px); }
.cat-card h3 { margin: 0 0 6px; font-size: 1.15rem; }
.cat-card p { margin: 0; color: var(--brand-muted); font-size: 0.9rem; }
.cat-card__arrow { display: inline-block; margin-top: 14px; color: var(--brand-primary); font-weight: 700; }
@media (max-width: 880px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

/* Quote band */
.quote-band { background: var(--brand-primary); color: var(--brand-primary-ink); }
.quote-band__inner { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; padding: 56px 0; }
.quote-band h2 { color: var(--brand-primary-ink); margin: 0 0 8px; }
.quote-band p { margin: 0; opacity: 0.85; max-width: 50ch; }
.quote-band .btn--primary { background: var(--brand-accent); color: var(--brand-dark); }
@media (max-width: 760px) { .quote-band__inner { grid-template-columns: 1fr; } }

/* Footer */
.site-footer { background: var(--brand-dark); color: var(--brand-primary-ink); padding: 56px 0 24px; margin-top: 80px; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 32px; }
.site-footer__brand img { max-height: 50px; }
.site-footer__tagline { color: color-mix(in srgb, var(--brand-primary-ink) 70%, transparent); margin-top: 12px; max-width: 32ch; }
.site-footer h3 { color: var(--brand-primary-ink); font-size: 0.85rem; margin: 0 0 14px; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-body); }
.site-footer a { color: var(--brand-primary-ink); }
.site-footer__links { list-style: none; padding: 0; margin: 0; }
.site-footer__links li { margin-bottom: 8px; }
.site-footer__links a { color: color-mix(in srgb, var(--brand-primary-ink) 80%, transparent); text-decoration: none; font-size: 0.92rem; }
.site-footer__links a:hover { color: var(--brand-primary-ink); text-decoration: underline; }
.site-footer__areas-list { list-style: none; padding: 0; margin: 0 0 12px; columns: 2; column-gap: 14px; }
.site-footer__areas-list li { margin-bottom: 6px; break-inside: avoid; }
.site-footer__areas-list a { color: color-mix(in srgb, var(--brand-primary-ink) 80%, transparent); text-decoration: none; font-size: 0.9rem; }
.site-footer__areas-list a:hover { color: var(--brand-primary-ink); text-decoration: underline; }
.site-footer__hours { display: grid; grid-template-columns: max-content 1fr; gap: 4px 14px; margin: 12px 0 0; font-size: 0.85rem; }
.site-footer__hours dt { color: color-mix(in srgb, var(--brand-primary-ink) 60%, transparent); }
.site-footer__hours dd { margin: 0; }
.site-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 36px; padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--brand-primary-ink) 18%, transparent);
  color: color-mix(in srgb, var(--brand-primary-ink) 70%, transparent);
}
.site-footer__legal { display: flex; gap: 18px; }

@media (max-width: 1080px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px 24px; }
  .site-footer__col:first-child { grid-column: span 3; }
}
@media (max-width: 700px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__col:first-child { grid-column: span 2; }
  .site-footer__bottom { flex-direction: column; gap: 8px; }
}

/* Forms — used by quote.php and others */
.field { display: block; margin: 0 0 16px; }
.field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 6px; color: var(--brand-dark); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--brand-border);
  border-radius: 8px; background: #fff; font: inherit; color: var(--brand-text);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--brand-accent); outline-offset: 1px; border-color: var(--brand-accent); }
.field textarea { min-height: 120px; }
.field__hint { color: var(--brand-muted); font-size: 0.85rem; margin-top: 4px; }
.field--error label { color: var(--brand-alert); }
.field--error input, .field--error textarea, .field--error select { border-color: var(--brand-alert); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-success {
  border: 1px solid var(--brand-primary); border-radius: 8px; padding: 18px;
  background: color-mix(in srgb, var(--brand-primary) 5%, var(--brand-bg));
}
.form-error {
  border: 1px solid var(--brand-alert); border-radius: 8px; padding: 12px;
  background: color-mix(in srgb, var(--brand-alert) 8%, var(--brand-bg));
  color: var(--brand-alert); margin-bottom: 16px;
}

/* Page intro */
.page-intro { padding: 56px 0 16px; }
.page-intro h1 { margin: 0 0 12px; }
.page-intro p { color: var(--brand-muted); max-width: 60ch; font-size: 1.1rem; }

/* Local area grid (used on /delivery/{slug} + /fencing/{slug}) */
.local-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 48px; align-items: start; }
.local-grid__main h2 { margin: 0 0 12px; }
.local-grid__main p { color: var(--brand-muted); font-size: 1.05rem; line-height: 1.7; max-width: 60ch; }
.local-grid__side {
  background: var(--brand-surface, #fff); border: 1px solid var(--brand-border);
  border-radius: 12px; padding: 24px; position: sticky; top: 110px;
}
.local-grid__side h3 { margin: 0 0 12px; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--brand-muted); font-family: var(--font-body); }
.local-neighbourhoods { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
.local-neighbourhoods li {
  padding: 6px 0;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--brand-dark);
  border-bottom: 1px solid var(--brand-border);
}
.local-faq { background: var(--brand-surface, #fff); border-left: 4px solid var(--brand-accent); padding: 16px 20px; margin-top: 24px; border-radius: 0 8px 8px 0; }
.local-faq h3 { margin: 0 0 6px; font-size: 1rem; font-family: var(--font-body); }
.local-faq p { margin: 0; color: var(--brand-muted); font-size: 0.95rem; }
@media (max-width: 960px) {
  .local-grid { grid-template-columns: 1fr; }
  .local-grid__side { position: static; }
}

/* FAQ details */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq {
  background: var(--brand-surface, #fff); border: 1px solid var(--brand-border);
  border-radius: 10px; padding: 4px 18px;
}
.faq summary {
  cursor: pointer; font-weight: 600; padding: 14px 0; list-style: none;
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-family: var(--font-mono); font-size: 1.4rem; color: var(--brand-accent);
  flex-shrink: 0; transition: transform .15s ease;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq > div { padding: 0 0 16px; color: var(--brand-muted); }
.faq > div p:last-child { margin: 0; }

/* Services pages */
.service-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 48px; align-items: start; }
.service-grid__left h2 { margin: 0 0 16px; }
.service-grid__form { background: var(--brand-surface, #fff); border: 1px solid var(--brand-border); border-radius: 14px; padding: 28px; position: sticky; top: 110px; }
.service-grid__form h2 { font-size: 1.15rem; margin: 0 0 16px; }
.service-bullets { list-style: none; padding: 0; margin: 0; }
.service-bullets li {
  position: relative; padding: 10px 0 10px 32px; border-bottom: 1px solid var(--brand-border);
}
.service-bullets li:last-child { border-bottom: 0; }
.service-bullets li::before {
  content: '✓'; position: absolute; left: 0; top: 10px;
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--brand-accent); color: var(--brand-dark);
  font-weight: 700; font-size: 13px; display: grid; place-items: center;
}
.service-steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.service-steps li { position: relative; padding: 6px 0 18px 56px; counter-increment: step; }
.service-steps li::before {
  content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: 4px;
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--brand-primary); color: var(--brand-primary-ink);
  font-family: var(--font-mono); font-weight: 700; font-size: 0.9rem;
  display: grid; place-items: center;
}
@media (max-width: 1000px) { .service-grid { grid-template-columns: 1fr; } .service-grid__form { position: static; } }

/* Area chips */
.area-chips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.area-chip {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 18px; border-radius: 10px; text-decoration: none;
  background: var(--brand-surface, #fff); border: 1px solid var(--brand-border);
  color: var(--brand-dark);
  transition: border-color .12s ease, transform .12s ease;
}
.area-chip:hover { border-color: var(--brand-accent); transform: translateY(-2px); }
.area-chip strong { font-size: 1.05rem; }
.area-chip span { font-size: 0.85rem; color: var(--brand-muted); }
@media (max-width: 880px) { .area-chips { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .area-chips { grid-template-columns: 1fr; } }

.site-footer__areas-list { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 18px; }
.site-footer__areas-list li { margin-bottom: 6px; }
.site-footer__areas-list a { color: color-mix(in srgb, var(--brand-primary-ink) 80%, transparent); }
.site-footer__areas-list a:hover { color: var(--brand-primary-ink); }

/* Shop list */
.shop-filter { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 28px; padding: 0; border-bottom: 1px solid var(--brand-border); padding-bottom: 12px; }
.shop-filter a { padding: 8px 14px; border-radius: 999px; text-decoration: none; color: var(--brand-muted); font-weight: 600; font-size: 0.9rem; }
.shop-filter a:hover { color: var(--brand-text); background: var(--brand-border); }
.shop-filter a.is-active { background: var(--brand-primary); color: var(--brand-primary-ink); }
.shop-section { margin: 40px 0 56px; }
.shop-section > h2 { margin-bottom: 18px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card {
  display: flex; flex-direction: column; background: var(--brand-surface, #fff); border: 1px solid var(--brand-border);
  border-radius: 10px; padding: 0; overflow: hidden; text-decoration: none; color: var(--brand-dark);
  transition: border-color .12s ease, transform .12s ease;
}
.product-card:hover { border-color: var(--brand-accent); transform: translateY(-2px); }
.product-card__image { aspect-ratio: 4 / 3; overflow: hidden; background: var(--brand-bg); }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.product-card:hover .product-card__image img { transform: scale(1.04); }
.product-card__title { margin: 14px 16px 4px; font-size: 1rem; line-height: 1.25; font-weight: 700; color: var(--brand-text); font-family: var(--font-body); }
.product-card__size { margin: 0 16px 12px; color: var(--brand-muted); font-size: 0.85rem; }
.product-card__price { margin: 0 16px 16px; font-family: var(--font-mono); font-weight: 700; font-size: 1.15rem; color: var(--brand-primary); }
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (max-width: 700px)  { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
/* Stay 2-up on phone — never collapse to 1 col */
@media (max-width: 460px)  { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } .product-card { padding: 8px; } .product-card__title { font-size: 0.92rem; line-height: 1.3; margin: 6px 0 4px; } .product-card__size { font-size: 0.78rem; } .product-card__price { font-size: 0.95rem; } }

/* Product page */
.product-page { padding: 48px 0 64px; }
.product-page__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 48px; }
.product-page__media {
  background: var(--brand-bg); border: 1px solid var(--brand-border); color: var(--brand-primary-ink);
  border-radius: 14px; aspect-ratio: 4 / 3; display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.product-page__image { width: 100%; height: 100%; object-fit: cover; }
.product-page__image-fallback { text-align: center; padding: 24px; background: var(--brand-primary); width:100%; height:100%; display:grid; place-items:center; }
.product-page__image-fallback .eyebrow { display:block; margin-bottom: 12px; color: var(--brand-accent); }
.product-page__image-fallback strong { font-family: var(--font-mono); font-size: 1.4rem; color: var(--brand-primary-ink); }
.product-page__detail h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 8px 0 12px; }
.product-page__price { font-family: var(--font-mono); font-size: 2rem; font-weight: 700; color: var(--brand-primary); margin: 0 0 24px; }
.product-page__desc { color: var(--brand-muted); font-size: 1.05rem; margin: 0 0 24px; }
.spec { display: grid; grid-template-columns: max-content 1fr; gap: 8px 24px; margin: 0 0 28px; padding: 16px 0; border-top: 1px solid var(--brand-border); border-bottom: 1px solid var(--brand-border); }
.spec div { display: contents; }
.spec dt { font-weight: 600; color: var(--brand-muted); }
.spec dd { margin: 0; }
.product-page__buy { display: flex; gap: 12px; align-items: end; padding: 16px; background: var(--brand-surface, #fff); border: 1px solid var(--brand-border); border-radius: 12px; margin-bottom: 16px; }
.product-page__qty { display: flex; flex-direction: column; gap: 4px; }
.product-page__qty span { font-size: 0.85rem; font-weight: 600; color: var(--brand-muted); }
.product-page__qty input { width: 96px; padding: 11px 12px; border: 1px solid var(--brand-border); border-radius: 8px; font: inherit; font-family: var(--font-mono); font-weight: 700; font-size: 1.05rem; text-align: center; }
.product-page__buy .btn { flex: 1; }
.product-page__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 600px) { .product-page__buy { flex-direction: column; align-items: stretch; } .product-page__qty input { width: 100%; } }
@media (max-width: 880px) { .product-page__grid { grid-template-columns: 1fr; } }

/* Utilities */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; }
.muted { color: var(--brand-muted); }
.eyebrow { font-family: var(--font-mono); font-size: 0.9rem; color: var(--brand-accent); text-transform: uppercase; letter-spacing: 0.05em; }

/* ─── v2 OVERRIDES — UX rework: contrast, mobile-first, sticky CTA, dropdowns, dropzone ─── */

/* 1. Announcement bar — fix contrast (gold on red was too dim). Use cream text + bg-emphasized phone pill. */
.announce { background: var(--brand-primary); color: var(--brand-primary-ink); }
.announce__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 0; font-size: 0.92rem; }
.announce__msg { color: var(--brand-primary-ink); opacity: 0.95; }
.announce__phone {
  color: var(--brand-dark, #0A0A0A) !important;
  background: var(--brand-primary-ink);
  padding: 4px 10px; border-radius: 6px;
  font-weight: 700; text-decoration: none; white-space: nowrap;
}
.announce__phone:hover { background: var(--brand-accent); }

/* 2. Header dual CTAs (Call us + Get a quote) on desktop, hidden on mobile (sticky bar handles mobile) */
.nav__ctas { display: flex; align-items: center; gap: 10px; }
.nav__call {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: var(--brand-surface, #fff);
  color: var(--brand-dark) !important;
  border: 1.5px solid var(--brand-border);
  border-radius: 8px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; white-space: nowrap;
}
.nav__call:hover { border-color: var(--brand-primary); }
.nav__cta {
  background: var(--brand-primary);
  color: var(--brand-primary-ink);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.nav__cta:hover { filter: brightness(1.08); }
@media (max-width: 1024px) { .nav__call-num { display: none; } .nav__call { padding: 10px 12px; } }
@media (max-width: 880px) { .nav__ctas { display: none; } }

/* 3. Dropdown nav (desktop) */
.nav__group { position: relative; }
.nav__link--has-menu { display: inline-flex; align-items: center; gap: 4px; }
.nav__dropdown {
  position: absolute; top: 100%; left: 0;
  background: var(--brand-surface, #fff);
  border: 1px solid var(--brand-border);
  border-radius: 10px;
  min-width: 240px;
  padding: 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity .14s ease, transform .14s ease;
  z-index: 50;
}
.nav__dropdown a {
  display: block; padding: 9px 12px; border-radius: 6px;
  color: var(--brand-dark); text-decoration: none; font-weight: 500; font-size: 0.95rem;
}
.nav__dropdown a:hover { background: var(--brand-bg); color: var(--brand-primary); }
.nav__dropdown-all { border-top: 1px solid var(--brand-border); margin-top: 6px; padding-top: 12px !important; font-weight: 700 !important; }
.nav__group:hover .nav__dropdown,
.nav__group:focus-within .nav__dropdown {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
@media (max-width: 880px) { .nav__group { display: none; } .nav__dropdown { display: none; } .nav__links { display: none; } }

/* 4. Mobile nav (hamburger) — turn nav__mobile <details> into accordion */
.nav__mobile { padding: 12px 16px 24px; background: var(--brand-surface, #fff); border-top: 1px solid var(--brand-border); }
.nav__mobile a { display: block; padding: 12px 4px; color: var(--brand-dark); text-decoration: none; font-size: 1.05rem; border-bottom: 1px solid var(--brand-border); }
.nav__mobile details { border-bottom: 1px solid var(--brand-border); padding: 0; }
.nav__mobile details summary { padding: 14px 4px; font-weight: 700; cursor: pointer; list-style: none; font-size: 1.05rem; }
.nav__mobile details summary::after { content: '▾'; float: right; }
.nav__mobile details[open] summary::after { content: '▴'; }
.nav__mobile details a { padding: 10px 16px; font-size: 0.98rem; border-bottom: none; opacity: 0.85; }
.nav__mobile details a:last-child { padding-bottom: 14px; }
.nav__toggle { display: none; }
@media (max-width: 880px) { .nav__toggle { display: inline-flex; flex-direction: column; gap: 4px; padding: 10px; background: none; border: 1px solid var(--brand-border); border-radius: 8px; cursor: pointer; } .nav__toggle span { display: block; width: 22px; height: 2px; background: var(--brand-dark); } }

/* 5. Sticky mobile CTA bar (bottom) — mobile only */
.m-cta { display: none; }
@media (max-width: 880px) {
  .m-cta {
    display: flex; gap: 8px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    padding: 10px 12px env(safe-area-inset-bottom, 10px);
    background: var(--brand-surface, #fff);
    border-top: 1px solid var(--brand-border);
    box-shadow: 0 -6px 16px rgba(0,0,0,0.08);
  }
  .m-cta__call, .m-cta__quote {
    flex: 1;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 14px 10px;
    border-radius: 10px;
    font-weight: 700; font-size: 1rem;
    text-decoration: none;
    min-height: 48px;
  }
  .m-cta__call {
    background: var(--brand-surface, #fff);
    color: var(--brand-dark);
    border: 1.5px solid var(--brand-primary);
  }
  .m-cta__quote {
    background: var(--brand-primary);
    color: var(--brand-primary-ink);
  }
  body { padding-bottom: 80px; }
}

/* 6. Mini quote form (homepage spec card) */
.mini-quote { display: grid; gap: 10px; margin-top: 14px; }
.mini-quote__row { display: block; }
.mini-quote__row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mini-quote input, .mini-quote select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
  color: var(--brand-primary-ink);
  font: inherit; font-size: 1rem;
}
.mini-quote input::placeholder, .mini-quote select { color: rgba(255,255,255,0.75); }
.mini-quote input:focus, .mini-quote select:focus { outline: none; border-color: var(--brand-accent); background: rgba(255,255,255,0.18); }
.mini-quote select option { color: var(--brand-dark); }
.mini-quote__btn {
  background: var(--brand-accent);
  color: var(--brand-dark) !important;
  font-weight: 700;
  padding: 14px 18px;
  border: none; border-radius: 10px;
  cursor: pointer;
  font-size: 1.05rem;
  margin-top: 4px;
}
.mini-quote__btn:hover { filter: brightness(1.1); }
.spec-card__sub { color: rgba(255,255,255,0.85); margin: 4px 0 10px; }

/* 7. Dropzone (quote form file upload) */
.dropzone {
  border: 2px dashed var(--brand-border);
  background: var(--brand-bg);
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.dropzone:hover, .dropzone:focus, .dropzone.is-over {
  border-color: var(--brand-primary);
  background: var(--brand-surface, #fff);
  outline: none;
}
.dropzone__inner strong { color: var(--brand-dark); }
.dropzone__btn {
  background: none; border: none; padding: 0;
  color: var(--brand-primary); font-weight: 700; cursor: pointer;
  text-decoration: underline;
  font-size: 1rem;
}
.dropzone__preview { list-style: none; margin: 12px 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 8px; }
.dropzone__preview li {
  position: relative;
  background: var(--brand-surface, #fff);
  border: 1px solid var(--brand-border);
  border-radius: 8px;
  padding: 6px;
  font-size: 0.75rem;
  text-align: center;
  word-break: break-all;
  min-height: 80px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.dropzone__preview img, .dropzone__preview video {
  width: 100%; height: 60px; object-fit: cover; border-radius: 4px; margin-bottom: 4px;
}
.dropzone__preview .drop-x {
  position: absolute; top: 2px; right: 2px;
  background: var(--brand-primary); color: #fff;
  width: 18px; height: 18px; border-radius: 50%;
  border: none; font-size: 12px; cursor: pointer;
  display: grid; place-items: center;
}

/* 8. Hero & spec card — mobile pass */
@media (max-width: 880px) {
  .hero { padding: 28px 0 8px; }
  .hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); margin-bottom: 12px; line-height: 1.15; }
  .hero__eyebrow { font-size: 0.78rem; }
  .hero__sub { font-size: 0.96rem; margin: 8px 0 14px; }
  .hero__grid { grid-template-columns: 1fr; gap: 16px; }
  .hero__ctas { gap: 8px; }
  .hero__ctas .btn { padding: 12px 16px; font-size: 0.98rem; }
  .spec-card { padding: 18px 16px; border-radius: 14px; }
  .spec-card__title { font-size: 1.3rem; }
  .spec-card__eyebrow { font-size: 0.7rem; }
}

/* 9. Section spacing — tighter on mobile */
@media (max-width: 880px) {
  .section { padding: 32px 0; }
  .container { padding-left: 16px; padding-right: 16px; }
  .section__head { flex-direction: column; align-items: flex-start; gap: 8px; }
  h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cat-card { padding: 14px; }
  .cat-card h3 { font-size: 1rem; }
  .cat-card p { font-size: 0.85rem; }
  .trust { padding: 24px 0; }
  .trust__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .trust__item { gap: 8px; }
  .trust__item h4 { font-size: 0.95rem; }
  .trust__item p { font-size: 0.85rem; }
}

/* 10. Footer mobile — collapse columns */
@media (max-width: 880px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .site-footer__col:first-child { grid-column: 1 / -1; }
  .site-footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 520px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* 11. Footer collection address details element */
.site-footer__yard summary { cursor: pointer; font-weight: 600; padding: 8px 0; color: var(--brand-muted); font-size: 0.9rem; list-style: none; }
.site-footer__yard summary::-webkit-details-marker { display: none; }
.site-footer__yard summary::after { content: ' ▾'; }
.site-footer__yard[open] summary::after { content: ' ▴'; }
.site-footer__yard address { font-style: normal; color: var(--brand-muted); font-size: 0.9rem; margin: 6px 0 10px; }
.site-footer__phone { font-size: 1.1rem; font-weight: 700; }
.site-footer__contact { margin: 0 0 12px; line-height: 1.6; }

/* v2.1 — quote form additions */
.field--check { margin-top: 4px; }
.check { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; }
.check input { margin-top: 4px; width: 18px; height: 18px; flex-shrink: 0; }
.check span { font-size: 0.92rem; line-height: 1.45; color: var(--brand-text); }

/* v2.2 — policy pages + delivery zones */
.zones { width: 100%; border-collapse: collapse; margin: 20px 0; }
.zones th, .zones td { padding: 12px; text-align: left; border-bottom: 1px solid var(--brand-border); vertical-align: top; }
.zones th { background: var(--brand-bg); font-weight: 700; color: var(--brand-dark); }
.zones td:nth-child(2) { white-space: nowrap; }
@media (max-width: 600px) {
  .zones th, .zones td { padding: 9px 6px; font-size: 0.92rem; }
}

/* Contact-page collection address details */
.contact-address summary { cursor: pointer; padding: 8px 0; list-style: none; color: var(--brand-muted); font-size: 0.95rem; }
.contact-address summary::-webkit-details-marker { display: none; }
.contact-address summary::after { content: ' (show / hide) ▾'; font-weight: 500; font-size: 0.85rem; }
.contact-address[open] summary::after { content: ' ▴'; }

/* Footer socials */
.site-footer__socials { display: flex; gap: 10px; margin-top: 12px; }
.site-footer__socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); color: var(--brand-primary-ink);
  text-decoration: none; font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.12);
}
.site-footer__socials a:hover { background: rgba(255,255,255,0.16); }

/* v3 — cart drawer + postcode strip + cart icons */

/* Cart icon in header */
.nav__cart {
  position: relative;
  background: var(--brand-surface, #fff);
  border: 1.5px solid var(--brand-border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 1.05rem;
  cursor: pointer;
  white-space: nowrap;
  color: var(--brand-dark);
}
.nav__cart:hover { border-color: var(--brand-primary); }
.nav__cart-count {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-primary);
  color: var(--brand-primary-ink);
  font-weight: 700; font-size: 0.78rem;
  min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 10px;
  position: absolute; top: -6px; right: -6px;
}

/* Mobile sticky CTA — adjust to fit cart button */
@media (max-width: 880px) {
  .m-cta { display: grid; grid-template-columns: 56px 1fr 1.4fr; gap: 8px; }
  .m-cta__cart {
    background: var(--brand-surface, #fff);
    color: var(--brand-dark);
    border: 1.5px solid var(--brand-border);
    border-radius: 10px;
    font-size: 1.2rem; padding: 0;
    position: relative;
    cursor: pointer;
    min-height: 48px;
  }
  .m-cta__cart-count {
    position: absolute; top: -6px; right: -6px;
    background: var(--brand-primary); color: var(--brand-primary-ink);
    font-weight: 700; font-size: 0.7rem;
    min-width: 18px; height: 18px; padding: 0 4px;
    border-radius: 9px;
    display: inline-flex; align-items: center; justify-content: center;
  }
}

/* Cart drawer */
.cart-drawer { position: fixed; inset: 0; z-index: 200; }
.cart-drawer[hidden] { display: none !important; }
.cart-drawer__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0; transition: opacity .2s ease;
}
.cart-drawer.is-open .cart-drawer__backdrop { opacity: 1; }
.cart-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 440px;
  background: var(--brand-surface, #fff);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .25s ease;
  box-shadow: -10px 0 30px rgba(0,0,0,0.18);
}
.cart-drawer.is-open .cart-drawer__panel { transform: translateX(0); }
.cart-drawer__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; border-bottom: 1px solid var(--brand-border);
}
.cart-drawer__head h2 { margin: 0; font-size: 1.2rem; }
.cart-drawer__close {
  background: none; border: 0; cursor: pointer; font-size: 1.6rem;
  width: 36px; height: 36px; border-radius: 6px;
  color: var(--brand-muted);
}
.cart-drawer__close:hover { background: var(--brand-bg); color: var(--brand-dark); }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cart-drawer__empty { color: var(--brand-muted); padding: 32px 0; text-align: center; }
.cart-drawer__items { list-style: none; padding: 0; margin: 0; }
.cart-drawer__item {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--brand-border);
  align-items: center;
}
.cart-drawer__item img { width: 56px; height: 56px; object-fit: cover; border-radius: 6px; background: var(--brand-bg); }
.cart-drawer__item-name { font-weight: 600; font-size: 0.95rem; margin: 0 0 4px; }
.cart-drawer__item-price { color: var(--brand-muted); font-family: var(--font-mono); font-size: 0.85rem; }
.cart-drawer__qty { display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.cart-drawer__qty button {
  width: 28px; height: 28px;
  background: var(--brand-bg); border: 1px solid var(--brand-border);
  border-radius: 6px; cursor: pointer; font-weight: 700; line-height: 1;
}
.cart-drawer__qty button:hover { background: var(--brand-primary); color: var(--brand-primary-ink); }
.cart-drawer__qty input { width: 44px; height: 28px; text-align: center; border: 1px solid var(--brand-border); border-radius: 6px; font: inherit; font-family: var(--font-mono); }
.cart-drawer__line-total { font-weight: 700; font-family: var(--font-mono); white-space: nowrap; }
.cart-drawer__remove {
  background: none; border: 0; cursor: pointer;
  color: var(--brand-muted); font-size: 0.85rem;
  padding: 4px 0;
}
.cart-drawer__remove:hover { color: var(--brand-primary); text-decoration: underline; }
.cart-drawer__foot {
  border-top: 1px solid var(--brand-border);
  padding: 16px 20px env(safe-area-inset-bottom, 16px);
  background: var(--brand-bg);
}
.cart-drawer__totals { margin: 0 0 12px; }
.cart-drawer__row { display: flex; justify-content: space-between; padding: 4px 0; }
.cart-drawer__row dt, .cart-drawer__row dd { margin: 0; }
.cart-drawer__row--total { font-size: 1.15rem; font-weight: 700; border-top: 1px solid var(--brand-border); padding-top: 8px; margin-top: 4px; }
.cart-drawer__note { color: var(--brand-muted); font-size: 0.8rem; font-weight: 400; }
.cart-drawer__continue {
  background: none; border: 0; cursor: pointer;
  color: var(--brand-muted); padding: 8px;
  display: block; width: 100%; text-align: center;
  font-size: 0.92rem; margin-top: 8px;
}
.cart-drawer__continue:hover { color: var(--brand-primary); }

/* Postcode capture strip */
.pc-strip {
  position: fixed; left: 0; right: 0;
  bottom: 80px;
  z-index: 70;
  background: var(--brand-dark, #0A0A0A);
  color: var(--brand-primary-ink, #fff);
  padding: 12px 16px env(safe-area-inset-bottom, 12px);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  animation: pc-slide-up .35s ease;
}
.pc-strip[hidden] { display: none !important; }
@keyframes pc-slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
.pc-strip__form, .pc-strip__confirm {
  display: flex; gap: 10px; align-items: center;
  max-width: 880px; margin: 0 auto;
  flex-wrap: wrap;
}
.pc-strip__msg { flex: 1; font-size: 0.95rem; min-width: 200px; }
.pc-strip__form input {
  padding: 10px 14px;
  border-radius: 8px;
  border: 0;
  font: inherit; font-size: 1rem;
  width: 140px;
  background: var(--brand-primary-ink, #fff);
  color: var(--brand-dark);
}
.pc-strip__go {
  background: var(--brand-accent);
  color: var(--brand-dark);
  padding: 10px 18px;
  border-radius: 8px; border: 0;
  font-weight: 700; cursor: pointer;
}
.pc-strip__close {
  background: none; border: 0;
  color: var(--brand-primary-ink); font-size: 1.6rem;
  width: 36px; height: 36px; cursor: pointer;
  opacity: 0.7;
}
.pc-strip__close:hover { opacity: 1; }
.pc-strip__confirm a { color: var(--brand-accent); text-decoration: underline; }
@media (max-width: 880px) {
  .pc-strip { bottom: 70px; padding: 10px 12px; }
  .pc-strip__msg { font-size: 0.88rem; min-width: 100%; margin-bottom: 4px; }
  .pc-strip__form input { width: 100%; flex: 1; }
}

/* Add-to-cart button on product cards */
.product-card { position: relative; }
.product-card__add {
  position: absolute; bottom: 8px; right: 8px;
  background: var(--brand-primary); color: var(--brand-primary-ink);
  width: 32px; height: 32px;
  border: 0; border-radius: 8px;
  font-size: 1.2rem; font-weight: 700; line-height: 1;
  cursor: pointer; opacity: 0.95;
  z-index: 2;
}
.product-card__add:hover { opacity: 1; transform: scale(1.05); }
.product-card__add:disabled { opacity: 0.5; cursor: default; }
@media (max-width: 460px) {
  .product-card__add { width: 28px; height: 28px; font-size: 1rem; bottom: 6px; right: 6px; }
}

/* v3.1 — cart page styles */
.cart-page__empty { text-align: center; padding: 48px 16px; color: var(--brand-muted); }
.cart-page__empty .btn { margin-top: 12px; }
.cart-page__items { list-style: none; padding: 0; margin: 0 0 24px; border-top: 1px solid var(--brand-border); }
.cart-page__item {
  display: grid; grid-template-columns: 72px 1fr auto; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--brand-border);
  align-items: center;
}
.cart-page__item img, .cart-page__placeholder {
  width: 72px; height: 72px; object-fit: cover; border-radius: 8px;
  background: var(--brand-bg);
}
.cart-page__name { font-weight: 600; margin: 0 0 4px; }
.cart-page__unit { color: var(--brand-muted); font-size: 0.92rem; margin: 0; font-family: var(--font-mono); }
.cart-page__line { font-weight: 700; font-size: 1.05rem; font-family: var(--font-mono); margin: 0; }
.cart-page__totals { background: var(--brand-bg); border-radius: 12px; padding: 16px 18px; margin: 24px 0 18px; }
@media (max-width: 540px) {
  .cart-page__item { grid-template-columns: 56px 1fr auto; gap: 10px; }
  .cart-page__item img, .cart-page__placeholder { width: 56px; height: 56px; }
}

/* v3.1 — cart page styles */
.cart-page__empty { text-align: center; padding: 48px 16px; color: var(--brand-muted); }
.cart-page__empty .btn { margin-top: 12px; }
.cart-page__items { list-style: none; padding: 0; margin: 0 0 24px; border-top: 1px solid var(--brand-border); }
.cart-page__item {
  display: grid; grid-template-columns: 72px 1fr auto; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--brand-border);
  align-items: center;
}
.cart-page__item img, .cart-page__placeholder {
  width: 72px; height: 72px; object-fit: cover; border-radius: 8px;
  background: var(--brand-bg);
}
.cart-page__name { font-weight: 600; margin: 0 0 4px; }
.cart-page__unit { color: var(--brand-muted); font-size: 0.92rem; margin: 0; font-family: var(--font-mono); }
.cart-page__line { font-weight: 700; font-size: 1.05rem; font-family: var(--font-mono); margin: 0; }
.cart-page__totals { background: var(--brand-bg); border-radius: 12px; padding: 16px 18px; margin: 24px 0 18px; }
@media (max-width: 540px) {
  .cart-page__item { grid-template-columns: 56px 1fr auto; gap: 10px; }
  .cart-page__item img, .cart-page__placeholder { width: 56px; height: 56px; }
}

/* v3.2 — product page buy buttons */
.product-page__buybtns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; flex: 1; }
.product-page__buybtns .btn { padding: 14px 16px; font-size: 1rem; min-height: 48px; }
@media (max-width: 600px) {
  .product-page__buy { flex-direction: column; align-items: stretch; }
  .product-page__buybtns { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* v3.3 — method toggle buttons (delivery / collect) */
.method-toggle {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 6px;
}
.method-toggle__btn {
  background: var(--brand-surface, #fff);
  border: 2px solid var(--brand-border);
  border-radius: 12px;
  padding: 16px 14px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color .15s ease, background .15s ease;
}
.method-toggle__btn:hover { border-color: var(--brand-primary); }
.method-toggle__btn.is-active {
  border-color: var(--brand-primary);
  background: var(--brand-bg);
  box-shadow: inset 0 0 0 1px var(--brand-primary);
}
.method-toggle__btn.is-disabled,
.method-toggle__btn:disabled {
  opacity: 0.5; cursor: not-allowed; background: var(--brand-bg);
}
.method-toggle__title { font-weight: 700; font-size: 1.05rem; color: var(--brand-dark); }
.method-toggle__sub { font-size: 0.85rem; color: var(--brand-muted); }
@media (max-width: 500px) {
  .method-toggle { grid-template-columns: 1fr; gap: 8px; }
}

/* v3.4 — trading-name disclaimer */
.site-footer__disclaimer { display: block; margin-top: 4px; opacity: 0.75; font-size: 0.78rem; }
