/* ==========================================================================
   ViaLib — design tokens (matched 1:1 to the Lovable mockup's Tailwind theme)
   ========================================================================== */
:root {
  --font-sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Sora", ui-sans-serif, system-ui, sans-serif;

  --background: oklch(1 0 0);
  --foreground: oklch(0.21 0.035 262);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.21 0.035 262);
  --primary: oklch(0.55 0.13 190);
  --primary-foreground: oklch(0.99 0.005 190);
  --muted: oklch(0.972 0.005 250);
  --muted-foreground: oklch(0.52 0.025 257);
  --accent: oklch(0.955 0.02 190);
  --accent-foreground: oklch(0.35 0.09 195);
  --border: oklch(0.922 0.008 255);

  --navy: oklch(0.24 0.045 262);
  --navy-foreground: oklch(0.97 0.006 250);
  --brand: oklch(0.55 0.13 190);
  --brand-soft: oklch(0.72 0.1 188);
  --surface: oklch(0.978 0.004 250);

  --radius: 0.5rem;
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --radius-2xl: calc(var(--radius) + 8px);
  --radius-full: 9999px;

  --shadow-card: 0 1px 2px oklch(0.24 0.045 262 / 0.06), 0 8px 24px oklch(0.24 0.045 262 / 0.06);
  --shadow-lift: 0 12px 40px oklch(0.24 0.045 262 / 0.14);

  --max-width: 80rem; /* 1280px, matches Tailwind's max-w-7xl */
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 600;
}
p { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 16px; }

:focus-visible {
  outline: 2px solid #0056b3;
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  border-radius: var(--radius);
  background-color: var(--navy);
  color: var(--navy-foreground);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3rem;
  padding: 0 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--brand);
  color: var(--primary-foreground);
}
.btn-primary:hover { opacity: 0.92; }
.btn-outline-light {
  border-color: rgba(255,255,255,0.4);
  background: transparent;
  color: var(--navy-foreground);
}
.btn-outline-light:hover { background: var(--navy-foreground); color: var(--navy); }
.btn-outline {
  border-color: var(--border);
  background: transparent;
  color: var(--foreground);
}
.btn-outline:hover { background: var(--muted); }
.btn-light {
  background: var(--background);
  color: var(--navy);
}
.btn-light:hover { background: rgba(255,255,255,0.9); }
.btn-block { width: 100%; }
.btn-sm { height: 2.75rem; padding: 0 1.25rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header { position: sticky; top: 0; z-index: 50; }

.audience-bar {
  background: var(--navy);
  color: var(--navy-foreground);
}
.audience-bar .container {
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.audience-switch {
  display: flex;
  gap: 0.25rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  padding: 0.25rem;
}
.audience-switch button {
  border: 0;
  background: transparent;
  border-radius: var(--radius-full);
  padding: 0.375rem 1.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.audience-switch button:hover { color: var(--navy-foreground); }
.audience-switch button[aria-selected="true"] {
  background: var(--brand);
  color: var(--primary-foreground);
}

.header-main {
  border-bottom: 1px solid var(--border);
  background: var(--background);
}
.header-main .container {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.header-left { display: flex; align-items: center; gap: 1rem; }

.menu-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-weight: 600;
  background: var(--background);
}
.menu-trigger:hover { background: var(--muted); }

.site-logo {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.site-logo .accent { color: var(--brand); }

.header-search { position: relative; margin-left: auto; margin-right: auto; width: 100%; max-width: 36rem; display: none; }
.header-search input {
  height: 3rem;
  width: 100%;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0 1rem 0 2.75rem;
}
.header-search svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--muted-foreground); pointer-events: none; }

.header-icons { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.header-icons a { border-radius: var(--radius-full); padding: 0.625rem; display: flex; }
.header-icons a:hover { background: var(--muted); }
.header-icons .cart-count {
  position: relative;
}
.header-icons .cart-count::after {
  content: attr(data-count);
  position: absolute;
  top: -2px; right: -2px;
  background: var(--brand);
  color: var(--primary-foreground);
  font-size: 0.625rem;
  font-weight: 700;
  border-radius: 999px;
  min-width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}
.header-icons .cart-count[data-count="0"]::after { display: none; }

.header-search-mobile { display: block; padding: 0 1rem 1rem; }
.header-search-mobile .header-search { display: block; max-width: none; }

@media (min-width: 768px) {
  .header-search { display: block; }
  .header-search-mobile { display: none; }
}

/* Off-canvas nav (product menu) */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
}
.nav-drawer[aria-hidden="false"] { visibility: visible; }
.nav-drawer-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.nav-drawer[aria-hidden="false"] .nav-drawer-backdrop { opacity: 1; }
.nav-drawer-panel {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: min(340px, 88vw);
  background: var(--background);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
}
.nav-drawer[aria-hidden="false"] .nav-drawer-panel { transform: translateX(0); }
.nav-drawer-header { padding: 2rem 1.5rem 1rem; }
.nav-drawer-header p {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.nav-drawer nav { display: flex; flex-direction: column; padding-bottom: 2rem; }
.nav-drawer nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
}
.nav-drawer nav a:hover { background: var(--muted); }
.nav-drawer .nav-cta {
  margin: 1rem 1rem 0;
  display: flex; align-items: center; gap: 0.75rem;
  border-radius: 0.5rem;
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 1rem;
  font-weight: 600;
}
.nav-drawer .nav-shop-all {
  margin: 0.75rem 1rem 0;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.875rem;
  text-align: center;
  font-weight: 600;
}
.nav-drawer-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  border: 0; background: transparent; padding: 0.5rem;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; }
.hero-media {
  height: 68vh; max-height: 660px; min-height: 420px;
  width: 100%; object-fit: cover;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); }
.hero-content { position: absolute; inset: 0; display: flex; align-items: center; }
.hero-content .container { width: 100%; }
.hero-text { max-width: 36rem; color: var(--navy-foreground); }
.hero-text h1 { font-size: 2.25rem; line-height: 1.08; }
.hero-text p { margin-top: 1.5rem; max-width: 28rem; font-size: 1rem; color: rgba(255,255,255,0.9); }
.hero-text .btn { margin-top: 2.25rem; }
@media (min-width: 768px) { .hero-text h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-text h1 { font-size: 3.75rem; } }

.hero-audience-panel { display: none; }
.hero-audience-panel.is-active { display: block; }

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trust-bar { border-bottom: 1px solid var(--border); background: var(--surface); }
.trust-bar .container {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  padding-top: 1.5rem; padding-bottom: 1.5rem;
}
.trust-item { display: flex; align-items: center; gap: 0.75rem; }
.trust-item svg { color: var(--brand); flex-shrink: 0; }
.trust-item span { font-size: 1rem; color: var(--muted-foreground); }
@media (min-width: 640px) { .trust-bar .container { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .trust-bar .container { grid-template-columns: repeat(4, 1fr); } }

/* ==========================================================================
   TECH ASSIST banner
   ========================================================================== */
.tech-assist { background: var(--navy); color: var(--navy-foreground); padding: 4rem 0; }
.tech-assist .container {
  display: flex; flex-direction: column; gap: 2rem;
  align-items: flex-start;
}
.tech-assist-copy { max-width: 42rem; }
.tech-assist-copy .eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--brand-soft);
}
.tech-assist-copy h2 { margin-top: 0.75rem; font-size: 1.5rem; line-height: 1.3; }
.tech-assist-copy p { margin-top: 1rem; font-size: 1rem; color: rgba(255,255,255,0.8); }
.tech-assist-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
@media (min-width: 768px) {
  .tech-assist .container { flex-direction: row; align-items: center; justify-content: space-between; }
  .tech-assist-copy h2 { font-size: 1.875rem; }
}

/* ==========================================================================
   Category grid
   ========================================================================== */
.section { padding: 3.5rem 0; }
.section h2 { font-size: 1.5rem; }
@media (min-width: 768px) { .section h2 { font-size: 1.875rem; } }

.category-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .category-grid { grid-template-columns: repeat(3, 1fr); } }

.category-card {
  display: block;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.category-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.category-card .icon {
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  background: var(--accent);
  color: var(--accent-foreground);
}
.category-card h3 { margin-top: 1.5rem; font-size: 1.125rem; }
.category-card p { margin-top: 0.25rem; font-size: 1rem; color: var(--muted-foreground); }
.category-card .explore {
  margin-top: 1.25rem;
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 1rem; font-weight: 600; color: var(--brand);
}
.section-cta { margin-top: 2.5rem; display: flex; justify-content: center; }

/* ==========================================================================
   Product cards / carousel
   ========================================================================== */
.product-section { background: var(--surface); padding: 4rem 0; }
.product-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.product-section-head h2 { max-width: 32rem; font-size: 1.5rem; }
@media (min-width: 768px) { .product-section-head h2 { font-size: 1.875rem; } }
.carousel-arrows { display: none; gap: 0.5rem; }
@media (min-width: 768px) { .carousel-arrows { display: flex; } }
.carousel-arrows button {
  border-radius: var(--radius-full); border: 1px solid var(--border);
  background: var(--background); padding: 0.75rem;
}
.carousel-arrows button:hover { background: var(--muted); }

.product-scroller {
  margin-top: 2rem;
  display: flex; gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.product-scroller::-webkit-scrollbar { display: none; }

.product-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .product-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1280px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  flex-shrink: 0; width: 300px;
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius-2xl);
  padding: 1.25rem;
  transition: box-shadow 0.15s ease;
}
.product-grid .product-card { width: auto; }
.product-card:hover { box-shadow: var(--shadow-card); }
.product-card .image-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--border);
}
.product-card .image-wrap img { width: 100%; height: 100%; object-fit: contain; }
.product-card .badge-tech {
  position: absolute; top: 0.75rem; left: 0.75rem; z-index: 1;
  border-radius: var(--radius-full);
  background: var(--accent); color: var(--accent-foreground);
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem; font-weight: 600;
}
.product-card .brand {
  margin-top: 1.25rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted-foreground);
}
.product-card h3 { margin-top: 0.375rem; font-size: 1rem; line-height: 1.35; }
.product-card .specs { margin-top: 0.75rem; font-size: 1rem; color: var(--muted-foreground); }
.product-card .specs li { display: flex; gap: 0.5rem; }
.product-card .price {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.125rem; font-weight: 600; color: var(--navy);
}
.product-card .price .vat { margin-left: 0.25rem; font-size: 0.875rem; font-weight: 400; color: var(--muted-foreground); }
.product-card .btn { margin-top: 1.25rem; }

/* ==========================================================================
   Split banners
   ========================================================================== */
.split-banners { padding: 4rem 0; }
.split-banners .container { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .split-banners .container { grid-template-columns: 1fr 1fr; } }
.split-banner {
  position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: var(--radius-2xl);
}
.split-banner img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.split-banner:hover img { transform: scale(1.05); }
.split-banner .scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.15) 60%); }
.split-banner .copy { position: absolute; left: 2rem; right: 2rem; bottom: 2rem; color: var(--navy-foreground); }
.split-banner .copy h3 { font-size: 1.5rem; }
.split-banner .copy p { margin-top: 0.5rem; max-width: 22rem; color: rgba(255,255,255,0.85); }
.split-banner .copy .btn { margin-top: 1.5rem; }

/* ==========================================================================
   Consulting section
   ========================================================================== */
.consulting { padding: 0 0 5rem; }
.consulting .inner {
  display: grid; grid-template-columns: 1fr; align-items: center; gap: 2.5rem;
  overflow: hidden; border-radius: var(--radius-2xl); background: var(--surface);
}
.consulting img { height: 100%; max-height: 420px; width: 100%; object-fit: cover; }
.consulting .copy { padding: 2.5rem 2rem; }
.consulting .copy .eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand); }
.consulting .copy h2 { margin-top: 1rem; font-size: 1.5rem; }
.consulting .copy p { margin-top: 1rem; font-size: 1rem; line-height: 1.6; color: var(--muted-foreground); }
.consulting .copy .btn { margin-top: 2rem; }
@media (min-width: 768px) { .consulting .inner { grid-template-columns: 1fr 1fr; } .consulting .copy h2 { font-size: 1.875rem; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy); color: var(--navy-foreground); }
.footer-main { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 0; }
@media (min-width: 768px) { .footer-main { grid-template-columns: repeat(4, 1fr); } }
.footer-brand .site-logo { font-size: 1.125rem; }
.footer-brand p { margin-top: 1rem; max-width: 20rem; font-size: 1rem; color: rgba(255,255,255,0.7); }
.footer-address { margin-top: 1.25rem; font-size: 1rem; color: rgba(255,255,255,0.7); }
.footer-address p { margin: 0.15rem 0; }
.footer-address a:hover { color: var(--navy-foreground); }
.footer-social { margin-top: 1.5rem; display: flex; gap: 0.75rem; }
.footer-social a { border-radius: var(--radius-full); background: rgba(255,255,255,0.1); padding: 0.625rem; }
.footer-social a:hover { background: rgba(255,255,255,0.2); }

.footer-nav h2 { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-nav ul { margin-top: 1.25rem; }
.footer-nav li { margin-bottom: 0.75rem; font-size: 1rem; color: rgba(255,255,255,0.7); }
.footer-nav a:hover { color: var(--navy-foreground); }

.footer-newsletter h2 { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-newsletter p { margin-top: 1.25rem; font-size: 1rem; color: rgba(255,255,255,0.7); }
.footer-newsletter form { margin-top: 1.25rem; }
.newsletter-row { display: flex; gap: 0.5rem; }
.newsletter-row input[type="email"] {
  height: 2.75rem; flex: 1; border-radius: 0.375rem;
  border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1);
  color: var(--navy-foreground); padding: 0 0.75rem;
}
.newsletter-row input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-row .btn { height: 2.75rem; padding: 0 1.25rem; flex-shrink: 0; }
.newsletter-consent { margin-top: 0.75rem; display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.newsletter-consent input { margin-top: 0.2rem; }
.newsletter-consent a { text-decoration: underline; }
.newsletter-success { margin-top: 0.75rem; font-size: 0.875rem; color: var(--brand-soft); }
.footer-badges { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.footer-badges a { border: 1px solid rgba(255,255,255,0.2); border-radius: 0.25rem; padding: 0.5rem 0.75rem; font-size: 0.875rem; }
.footer-badges a:hover { background: rgba(255,255,255,0.1); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom .container {
  display: flex; flex-direction: column; gap: 1rem;
  padding-top: 1.5rem; padding-bottom: 1.5rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-legal a:hover { color: var(--navy-foreground); }
.footer-payments { display: flex; gap: 0.5rem; }
.footer-payments span { border: 1px solid rgba(255,255,255,0.2); border-radius: 0.25rem; padding: 0.25rem 0.625rem; font-size: 0.75rem; }
@media (min-width: 768px) { .footer-bottom .container { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ==========================================================================
   Cookie consent
   ========================================================================== */
.cookie-consent {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 90;
  max-width: 640px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lift);
  padding: 1.25rem 1.5rem;
  display: none;
}
.cookie-consent.is-visible { display: flex; flex-direction: column; gap: 1rem; }
.cookie-consent p { font-size: 0.9375rem; color: var(--muted-foreground); }
.cookie-consent a { text-decoration: underline; color: var(--foreground); }
.cookie-consent-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ==========================================================================
   WooCommerce — light touch overrides so shop/category/product/cart pages
   inherit the same design system instead of the WC default stylesheet look
   ========================================================================== */
.woocommerce { font-family: var(--font-sans); }
.woocommerce ul.products { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin: 2rem 0 0; }
@media (min-width: 640px) { .woocommerce ul.products { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1280px) { .woocommerce ul.products { grid-template-columns: repeat(3, 1fr); } }
.woocommerce ul.products li.product {
  list-style: none; border: 1px solid var(--border); border-radius: var(--radius-2xl);
  padding: 1.25rem; background: var(--card);
}
.woocommerce ul.products li.product img { border-radius: var(--radius-xl); aspect-ratio: 1/1; object-fit: contain; background: #fff; border: 1px solid var(--border); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--font-display); font-size: 1rem; margin-top: 1rem; }
.woocommerce ul.products li.product .price { font-family: var(--font-display); color: var(--navy); font-weight: 600; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce #respond input#submit, .woocommerce a.added_to_cart {
  border-radius: var(--radius-full) !important;
  background: var(--brand) !important;
  color: var(--primary-foreground) !important;
  font-weight: 600 !important;
  border: 0 !important;
  padding: 0.75rem 1.5rem !important;
}
.woocommerce a.button:hover, .woocommerce button.button:hover { opacity: 0.92; }
.woocommerce nav.woocommerce-pagination ul { border: 0; }
.woocommerce span.onsale {
  background: var(--accent) !important; color: var(--accent-foreground) !important;
  border-radius: var(--radius-full);
}
.woocommerce-breadcrumb { padding: 0.75rem 0; color: var(--muted-foreground); }
.page-header-band { background: var(--surface); border-bottom: 1px solid var(--border); }
.page-header-band .container { padding: 0.75rem 0; }
.archive-title-block { padding: 2.5rem 0 1.5rem; }
.archive-title-block h1 { font-size: 1.875rem; }
@media (min-width: 768px) { .archive-title-block h1 { font-size: 2.25rem; } }
.archive-title-block .archive-description { margin-top: 1rem; max-width: 48rem; color: var(--muted-foreground); line-height: 1.6; }

/* main content spacing wrapper for non-front pages */
.site-main { padding-bottom: 2rem; }
