/*
Theme Name: Devil's Dreamworld V3
Theme URI: https://devilsdreamworld.com
Author: Devil's Dreamworld
Author URI: https://devilsdreamworld.com
Description: Official Devil's Dreamworld WooCommerce theme — dark, editorial, occult-adjacent aesthetic.
Version: 3.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.1
License: Proprietary
Text Domain: ddv3
Tags: woocommerce, dark, custom-menu, custom-logo, featured-images, full-width-template, e-commerce
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* ---- Colour: ink canvas (warm near-black) ---- */
  --clr-bg:           #0b0a0d;
  --clr-surface:      #131119;
  --clr-surface-2:    #19161f;
  --clr-surface-3:    #221d2b;
  --clr-border:       rgba(236, 230, 220, 0.22);
  --clr-border-light: rgba(236, 230, 220, 0.35);

  /* ---- Colour: purple accent ---- */
  --clr-primary:      #8b5cf6;
  --clr-primary-dark: #6d28d9;
  --clr-primary-glow: rgba(139, 92, 246, 0.14);
  --clr-accent-deep:  #241640;

  /* ---- Colour: gold (star ratings only) ---- */
  --clr-accent:       #d6a53c;
  --clr-accent-dark:  #b8932a;

  /* ---- Colour: bone light editorial band ---- */
  --clr-bone:         #ece6dc;
  --clr-bone-2:       #ded6c8;
  --clr-bone-dim:     #a99f90;

  /* ---- Colour: text on ink ---- */
  --clr-text:         #f3efe7;
  --clr-text-muted:   #b3aabd;
  --clr-text-faint:   #7c7488;
  --clr-heading:      #f3efe7;
  --clr-white:        #f3efe7;

  /* ---- Colour: feedback ---- */
  --clr-success:      #4b9f6e;
  --clr-error:        #e5484d;
  --clr-warning:      #d6a53c;
  --clr-info:         #8b5cf6;
  --clr-blood:        #c0282d;

  /* ---- Typography: families ---- */
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-heading: 'Anton', 'Arial Narrow', sans-serif;
  --font-body:    'Hanken Grotesk', system-ui, sans-serif;
  --font-script:  'Kaushan Script', cursive;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;

  /* ---- Typography: size scale ---- */
  --fs-xs:    0.75rem;    /* 12px */
  --fs-sm:    0.875rem;   /* 14px */
  --fs-base:  1rem;       /* 16px */
  --fs-md:    1.125rem;   /* 18px */
  --fs-lg:    1.25rem;    /* 20px */
  --fs-xl:    1.5rem;     /* 24px */
  --fs-2xl:   1.875rem;   /* 30px */
  --fs-3xl:   2.25rem;    /* 36px */
  --fs-4xl:   3rem;       /* 48px */
  --fs-5xl:   clamp(2.5rem, 5vw, 4.5rem);

  /* ---- Typography: weights ---- */
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;
  --fw-black:    800;

  /* ---- Typography: leading ---- */
  --lh-display: 0.92;
  --lh-tight:   1.05;
  --lh-snug:    1.3;
  --lh-normal:  1.7;
  --lh-loose:   1.7;

  /* ---- Typography: tracking ---- */
  --ls-tight:   0.015em;
  --ls-normal:  0;
  --ls-wide:    0.05em;
  --ls-wider:   0.18em;
  --ls-widest:  0.26em;

  /* ---- Spacing (4px base) ---- */
  --sp-1:   0.25rem;
  --sp-2:   0.5rem;
  --sp-3:   0.75rem;
  --sp-4:   1rem;
  --sp-5:   1.25rem;
  --sp-6:   1.5rem;
  --sp-8:   2rem;
  --sp-10:  2.5rem;
  --sp-12:  3rem;
  --sp-16:  4rem;
  --sp-20:  5rem;
  --sp-24:  6rem;
  --sp-32:  8rem;

  /* ---- Layout ---- */
  --container-xs:    480px;
  --container-sm:    640px;
  --container-md:    768px;
  --container-lg:    1024px;
  --container-xl:    1280px;
  --container-2xl:   1340px;
  --container-pad:   clamp(1rem, 5vw, 2.5rem);
  --header-height:   212px;

  /* ---- Border radius ---- */
  --radius-sm:   3px;
  --radius-md:   6px;
  --radius-lg:   8px;
  --radius-xl:   12px;
  --radius-full: 9999px;

  /* ---- Shadows ---- */
  --shadow-sm:        0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md:        0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-lg:        0 10px 15px rgba(0, 0, 0, 0.3);
  --shadow-xl:        0 20px 25px rgba(0, 0, 0, 0.3);
  --shadow-card:      0 24px 50px -28px rgba(0, 0, 0, 0.7);
  --shadow-card-hover:0 40px 80px -32px rgba(0, 0, 0, 0.82);
  --shadow-glow:      0 0 0 3px rgba(139, 92, 246, 0.1);
  --shadow-glow-soft: 0 4px 15px rgba(139, 92, 246, 0.3);

  /* ---- Transitions ---- */
  --ease-out:   ease;
  --ease-in:    ease;
  --ease-inout: ease;
  --dur-fast:   150ms;
  --dur-base:   300ms;
  --dur-slow:   600ms;

  /* ---- Z-index ---- */
  --z-below:   -1;
  --z-base:     0;
  --z-raised:   10;
  --z-dropdown: 100;
  --z-sticky:   200;
  --z-overlay:  300;
  --z-modal:    400;
  --z-toast:    500;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--clr-text);
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-out);
}

a:hover { color: var(--clr-primary); }

ul, ol { list-style: none; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button { cursor: pointer; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-regular);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-tight);
  color: var(--clr-heading);
  text-transform: uppercase;
  margin: 0 0 1rem;
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); }
h6 { font-size: var(--fs-md); }

p { margin-bottom: var(--sp-4); }
p:last-child { margin-bottom: 0; }

::selection {
  background: var(--clr-primary);
  color: var(--clr-bone);
}

blockquote {
  border-left: 3px solid var(--clr-primary);
  padding: var(--sp-4) var(--sp-6);
  margin: var(--sp-6) 0;
  font-style: italic;
  font-family: var(--font-script);
  color: var(--clr-text-muted);
}

hr {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: var(--sp-8) 0;
}

code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--clr-surface-2);
  padding: 0.1em 0.4em;
  border-radius: var(--radius-sm);
  color: var(--clr-accent);
}

pre {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  overflow-x: auto;
}

pre code { background: none; padding: 0; }

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--clr-border);
  text-align: left;
}

th {
  font-weight: var(--fw-semibold);
  color: var(--clr-heading);
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container--wide  { max-width: var(--container-2xl); }
.container--narrow{ max-width: var(--container-md); }

.grid {
  display: grid;
  gap: var(--sp-6);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.flex--gap { gap: var(--sp-4); }

.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;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background var(--dur-base),
              color var(--dur-base),
              border-color var(--dur-base),
              transform var(--dur-base);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--clr-primary);
  color: var(--clr-bone);
  border-color: var(--clr-primary);
}
.btn--primary:hover {
  background: var(--clr-primary-dark);
  border-color: var(--clr-primary-dark);
  color: var(--clr-bone);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-soft);
}

.btn--secondary {
  background: transparent;
  color: var(--clr-text);
  border-color: var(--clr-border);
}
.btn--secondary:hover {
  background: rgba(236, 230, 220, 0.06);
  color: var(--clr-heading);
  border-color: var(--clr-bone);
}

.btn--accent {
  background: var(--clr-bone);
  color: var(--clr-bg);
  border-color: var(--clr-bone);
}
.btn--accent:hover {
  background: var(--clr-bone-2);
  border-color: var(--clr-bone-2);
  color: var(--clr-bg);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-text);
  border-color: var(--clr-border);
}
.btn--ghost:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-bone);
}

/* Outline: dark fill, bone border — for secondary CTAs on dark backgrounds */
.btn--outline {
  background: rgba(11, 10, 13, 0.6);
  color: var(--clr-bone);
  border-color: var(--clr-bone);
}
.btn--outline:hover {
  background: var(--clr-bone);
  color: var(--clr-bg);
  border-color: var(--clr-bone);
}

.btn--lg {
  padding: var(--sp-4) var(--sp-8);
  font-size: var(--fs-base);
}

.btn--sm {
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--fs-xs);
}

.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  margin-bottom: var(--sp-5);
}

.form-label {
  display: block;
  margin-bottom: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.form-control {
  display: block;
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-size: var(--fs-base);
  transition: border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
}

.form-control:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px var(--clr-primary-glow);
}

.form-control::placeholder { color: var(--clr-text-faint); }

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--clr-accent-deep);
  border-bottom: 1px solid rgba(139, 92, 246, 0.3);
  padding: 9px 0;
}

.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.announcement-bar__item {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-bone-dim);
}

.announcement-bar__item--bold {
  font-weight: var(--fw-bold);
  color: var(--clr-bone);
}

.announcement-bar__dot {
  color: var(--clr-primary);
  font-weight: var(--fw-bold);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(11, 10, 13, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
}

/* Utility row: icons pinned right */
.header-utility {
  border-bottom: 1px solid var(--clr-border);
}

.header-utility__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 44px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.header-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--clr-text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
}

.header-icon-btn:hover {
  color: var(--clr-text);
  background: rgba(236, 230, 220, 0.07);
}

.header-icon-btn svg { pointer-events: none; }

.header-cart { position: relative; }

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  background: var(--clr-primary);
  color: #fff;
  font-size: 10px;
  font-weight: var(--fw-bold);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Logo row */
.header-logo {
  padding: 20px 0 16px;
  text-align: center;
}

.header-logo__inner {
  display: flex;
  justify-content: center;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-heading);
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  line-height: 1;
  transition: opacity var(--dur-base);
}

.site-logo:hover { opacity: 0.85; color: var(--clr-heading); }

.site-logo img {
  max-height: 120px;
  width: auto;
  filter: drop-shadow(0 6px 24px rgba(139, 92, 246, 0.35));
}

/* Nav row */
.header-nav {
  border-top: 1px solid var(--clr-border);
}

.header-nav .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav__list li { position: relative; }

.primary-nav__list a {
  position: relative;
  display: block;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  transition: color var(--dur-base);
}

.primary-nav__list a::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--clr-primary);
  transition: right var(--dur-base);
}

.primary-nav__list a:hover,
.primary-nav__list .current-menu-item > a,
.primary-nav__list .current-page-ancestor > a {
  color: var(--clr-text);
}

.primary-nav__list a:hover::after,
.primary-nav__list .current-menu-item > a::after,
.primary-nav__list .current-page-ancestor > a::after {
  right: 18px;
}

/* Dropdowns */
.primary-nav__list .menu-item-has-children { position: relative; }

.primary-nav__list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--dur-base), transform var(--dur-base), visibility var(--dur-base);
  z-index: var(--z-dropdown);
  padding: var(--sp-2);
  list-style: none;
}

.primary-nav__list .menu-item-has-children:hover > .sub-menu,
.primary-nav__list .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-nav__list .sub-menu a {
  padding: var(--sp-2) var(--sp-3);
  display: block;
  color: var(--clr-text-muted);
  border-radius: var(--radius-sm);
}
.primary-nav__list .sub-menu a:hover { color: var(--clr-heading); }
.primary-nav__list .sub-menu a::after { display: none; }

/* Mobile hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  width: 38px;
  cursor: pointer;
  background: none;
  border: none;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform var(--dur-base), opacity var(--dur-base);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  margin-top: 0;
}

.site-footer__widgets {
  padding: var(--sp-16) 0 var(--sp-12);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
}

.footer-brand .site-logo {
  display: block;
  margin-bottom: var(--sp-4);
  font-size: var(--fs-lg);
}

.footer-brand p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-4);
}

.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-2); }

.footer-col a {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  transition: color var(--dur-fast);
}

.footer-col a:hover { color: var(--clr-text); }

.site-footer__bottom {
  padding: var(--sp-5) 0;
  border-top: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.footer-copy {
  font-size: var(--fs-xs);
  color: var(--clr-text-faint);
}

.footer-legal {
  display: flex;
  gap: var(--sp-4);
}

.footer-legal a {
  font-size: var(--fs-xs);
  color: var(--clr-text-faint);
}

.footer-legal a:hover { color: var(--clr-text-muted); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-bg);
}

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

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.45;
}

/* Gradient: dark left, fades to transparent right so image shows through */
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 10, 13, 0.92) 0%,
    rgba(11, 10, 13, 0.65) 45%,
    rgba(11, 10, 13, 0.1)  100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: var(--sp-24) 0;
}

.hero__content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Script eyebrow — Kaushan Script, purple, slight tilt */
.hero__eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: var(--fw-regular);
  letter-spacing: 0;
  text-transform: none;
  color: var(--clr-primary);
  margin-bottom: var(--sp-3);
  display: block;
  transform: rotate(-2deg);
  transform-origin: left center;
}

/* Anton display heading */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 130px);
  font-weight: var(--fw-regular);
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
  display: flex;
  flex-direction: column;
}

.hero__title-line1 {
  color: var(--clr-heading);
  display: block;
}

.hero__title-line2 {
  color: var(--clr-primary);
  display: block;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: var(--fw-regular);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-8);
  max-width: 480px;
  text-transform: none;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}

/* Trustpilot strip below CTAs */
.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.trust-logo {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-text-muted);
  letter-spacing: 0.05em;
}

.trust-stars {
  color: #00b67a; /* Trustpilot green */
  font-size: var(--fs-lg);
  letter-spacing: 2px;
}

.trust-score {
  font-size: var(--fs-xs);
  color: var(--clr-text-faint);
  letter-spacing: 0.05em;
}

/* Shared eyebrow used outside hero too */
.hero__eyebrow,
p.hero__eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--clr-primary);
  text-transform: none;
  letter-spacing: 0;
  font-weight: var(--fw-regular);
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: var(--sp-3);
}

.section-title {
  font-family: var(--font-heading);
  color: var(--clr-heading);
  margin-bottom: var(--sp-4);
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  max-width: 560px;
  margin-inline: auto;
  line-height: var(--lh-loose);
}

/* Ornamental divider */
.ornament {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  justify-content: center;
  margin: var(--sp-6) 0;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--clr-border-light));
}

.ornament::after {
  background: linear-gradient(to left, transparent, var(--clr-border-light));
}

.ornament-icon {
  color: var(--clr-primary);
  font-size: var(--fs-lg);
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-6);
}

.product-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--clr-primary);
}

.product-card__image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--clr-surface-2);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
  transition: filter var(--dur-slow), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-card:hover .product-card__image img {
  filter: none;
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  padding: var(--sp-1) var(--sp-3);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  z-index: 1;
}

.badge--sale   { background: var(--clr-blood);    color: var(--clr-bone); }
.badge--new    { background: var(--clr-primary);  color: var(--clr-bone); }
.badge--soldout{ background: var(--clr-surface-3); color: var(--clr-text-muted); }

.product-card__actions {
  position: absolute;
  bottom: var(--sp-3);
  right: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--dur-base), transform var(--dur-base);
}

.product-card:hover .product-card__actions {
  opacity: 1;
  transform: translateX(0);
}

.product-card__quick-view,
.product-card__wishlist {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text-muted);
  cursor: pointer;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}

.product-card__quick-view:hover,
.product-card__wishlist:hover {
  color: var(--clr-heading);
  border-color: var(--clr-border-light);
}

.product-card__body {
  padding: var(--sp-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__category {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: var(--sp-2);
  text-decoration: none;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-regular);
  color: var(--clr-heading);
  margin-bottom: var(--sp-3);
  line-height: var(--lh-tight);
  text-transform: uppercase;
  letter-spacing: var(--ls-tight);
  flex: 1;
}

.product-card__title a { color: inherit; }
.product-card__title a:hover { color: var(--clr-primary); }

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--clr-border);
}

.product-card__price {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-regular);
  color: var(--clr-text);
  letter-spacing: 0.02em;
}

.product-card__price del {
  font-size: var(--fs-sm);
  color: var(--clr-text-faint);
  font-weight: var(--fw-regular);
  margin-right: var(--sp-1);
}

/* ============================================================
   SHOP / ARCHIVE
   ============================================================ */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--sp-10);
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--sp-6));
}

.filter-panel {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  margin-bottom: var(--sp-4);
}

.filter-panel h3 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--clr-border);
}

.filter-list { display: flex; flex-direction: column; gap: var(--sp-2); }

.filter-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  cursor: pointer;
  transition: color var(--dur-fast);
}

.filter-item:hover { color: var(--clr-text); }

.filter-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid var(--clr-border-light);
  border-radius: 3px;
  background: var(--clr-surface-2);
  cursor: pointer;
  accent-color: var(--clr-primary);
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--clr-border);
}

.shop-count {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.shop-sort select {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: var(--sp-2) var(--sp-4);
  color: var(--clr-text);
  font-size: var(--fs-sm);
  cursor: pointer;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-12);
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  transition: all var(--dur-fast);
}

.page-link:hover { border-color: var(--clr-border-light); color: var(--clr-heading); }
.page-link.active { background: var(--clr-primary); border-color: var(--clr-primary); color: var(--clr-white); }

/* ============================================================
   SINGLE PRODUCT
   ============================================================ */
.single-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
  padding-top: var(--sp-10);
}

.product-gallery { position: sticky; top: calc(var(--header-height) + var(--sp-6)); }

.product-gallery__main {
  aspect-ratio: 1 / 1;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--sp-4);
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__thumbs {
  display: flex;
  gap: var(--sp-3);
}

.product-gallery__thumb {
  width: 80px;
  height: 80px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--dur-fast);
  flex-shrink: 0;
}

.product-gallery__thumb.active,
.product-gallery__thumb:hover { border-color: var(--clr-primary); }

.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info__category {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: var(--sp-3);
  text-decoration: none;
}

.product-info__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--fs-xl), 3vw, var(--fs-3xl));
  margin-bottom: var(--sp-4);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.stars { color: var(--clr-accent); font-size: var(--fs-sm); letter-spacing: 2px; }
.rating-count { font-size: var(--fs-sm); color: var(--clr-text-muted); }

.product-price {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-regular);
  letter-spacing: 0.02em;
  color: var(--clr-text);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--clr-border);
}

.product-price del {
  font-size: var(--fs-lg);
  font-weight: var(--fw-regular);
  color: var(--clr-text-faint);
  margin-right: var(--sp-2);
}

.product-price ins {
  text-decoration: none;
  color: var(--clr-primary);
}

.product-short-desc {
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-6);
}

.product-variations {
  margin-bottom: var(--sp-6);
}

.variation-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-text-muted);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}

.size-options, .color-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.size-option {
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--sp-3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-text-muted);
  cursor: pointer;
  transition: all var(--dur-fast);
}

.size-option:hover { border-color: var(--clr-border-light); color: var(--clr-text); }
.size-option.active { border-color: var(--clr-primary); color: var(--clr-primary); background: var(--clr-primary-glow); }
.size-option.unavailable { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }

.color-option {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--dur-fast);
  outline-offset: 3px;
}

.color-option.active,
.color-option:hover { border-color: var(--clr-text); }

.qty-atc {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.qty-btn {
  width: 44px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  cursor: pointer;
  background: var(--clr-surface-2);
  transition: color var(--dur-fast), background var(--dur-fast);
  font-size: var(--fs-lg);
  user-select: none;
}

.qty-btn:hover { color: var(--clr-heading); background: var(--clr-surface-3); }

.qty-input {
  width: 60px;
  height: 52px;
  text-align: center;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-heading);
  background: transparent;
  border: none;
  border-left: 1px solid var(--clr-border);
  border-right: 1px solid var(--clr-border);
}

.product-meta {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.product-meta span { color: var(--clr-text-faint); }
.product-meta a { color: var(--clr-text-muted); }
.product-meta a:hover { color: var(--clr-text); }

/* Product tabs */
.product-tabs {
  margin-top: var(--sp-16);
}

.tab-nav {
  display: flex;
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: var(--sp-8);
  gap: var(--sp-2);
}

.tab-btn {
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--clr-text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color var(--dur-fast), border-color var(--dur-fast);
  background: none;
}

.tab-btn:hover { color: var(--clr-text); }
.tab-btn.active { color: var(--clr-primary); border-bottom-color: var(--clr-primary); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ============================================================
   CART
   ============================================================ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--sp-10);
  align-items: start;
  padding-top: var(--sp-10);
}

.cart-items { display: flex; flex-direction: column; gap: var(--sp-4); }

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: var(--sp-5);
  align-items: center;
  padding: var(--sp-5);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
}

.cart-item__image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--clr-surface-2);
}

.cart-item__name {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--clr-heading);
  margin-bottom: var(--sp-1);
}

.cart-item__name a { color: inherit; }
.cart-item__name a:hover { color: var(--clr-primary); }

.cart-item__meta {
  font-size: var(--fs-sm);
  color: var(--clr-text-faint);
  margin-bottom: var(--sp-2);
}

.cart-item__remove {
  font-size: var(--fs-xs);
  color: var(--clr-text-faint);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  cursor: pointer;
  transition: color var(--dur-fast);
  background: none;
  border: none;
}

.cart-item__remove:hover { color: var(--clr-error); }

.cart-item__price-block { text-align: right; }

.cart-item__price {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-heading);
  margin-bottom: var(--sp-2);
}

.cart-summary {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  position: sticky;
  top: calc(var(--header-height) + var(--sp-6));
}

.cart-summary h3 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--clr-border);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.summary-row.total {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-heading);
  padding-top: var(--sp-4);
  margin-top: var(--sp-4);
  border-top: 1px solid var(--clr-border);
}

.coupon-field {
  display: flex;
  gap: var(--sp-2);
  margin: var(--sp-5) 0;
}

.coupon-field input {
  flex: 1;
  padding: var(--sp-2) var(--sp-3);
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-size: var(--fs-sm);
}

.coupon-field input:focus { border-color: var(--clr-primary); }

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--sp-10);
  align-items: start;
  padding-top: var(--sp-10);
}

.checkout-section {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--sp-8);
  margin-bottom: var(--sp-6);
}

.checkout-section h2 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--clr-border);
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.checkout-form-grid .full { grid-column: 1 / -1; }

.order-review {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  position: sticky;
  top: calc(var(--header-height) + var(--sp-6));
}

.order-review h3 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--clr-border);
}

.order-item {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--clr-border);
  align-items: center;
}

.order-item:last-child { border-bottom: none; }

.order-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--clr-surface-2);
  flex-shrink: 0;
}

.order-item__details { flex: 1; }
.order-item__name { font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--clr-heading); margin-bottom: 2px; }
.order-item__qty  { font-size: var(--fs-xs); color: var(--clr-text-faint); }
.order-item__price { font-weight: var(--fw-bold); color: var(--clr-heading); white-space: nowrap; }

.payment-methods { display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-6); }

.payment-method {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}

.payment-method:hover { border-color: var(--clr-border-light); }
.payment-method.selected { border-color: var(--clr-primary); background: var(--clr-primary-glow); }

.payment-method input[type="radio"] { accent-color: var(--clr-primary); }

/* ============================================================
   BLOG / ARCHIVE
   ============================================================ */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sp-12);
  align-items: start;
  padding-top: var(--sp-10);
}

.posts-list { display: flex; flex-direction: column; gap: var(--sp-8); }

.post-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-6);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--dur-base), border-color var(--dur-base);
}

.post-card:hover { box-shadow: var(--shadow-md); border-color: var(--clr-border-light); }

.post-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--clr-surface-2);
}

.post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow); }
.post-card:hover .post-card__image img { transform: scale(1.04); }

.post-card__body { padding: var(--sp-6); display: flex; flex-direction: column; }

.post-card__cats {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-3);
}

.post-cat {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--clr-primary);
  text-decoration: none;
}

.post-cat:hover { color: var(--clr-accent); }

.post-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-3);
  line-height: var(--lh-snug);
}

.post-card__title a { color: var(--clr-heading); }
.post-card__title a:hover { color: var(--clr-primary); }

.post-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  flex: 1;
  margin-bottom: var(--sp-4);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: var(--fs-xs);
  color: var(--clr-text-faint);
}

.post-author img {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  object-fit: cover;
  display: inline-block;
}

/* ============================================================
   SINGLE POST
   ============================================================ */
.single-post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--sp-12);
  padding-top: var(--sp-10);
}

.post-content-wrap { min-width: 0; }

.post-header {
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--clr-border);
}

.post-header .post-cats { margin-bottom: var(--sp-4); }

.post-header .post-title {
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  margin-bottom: var(--sp-6);
}

.post-hero-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-8);
  background: var(--clr-surface-2);
}

.entry-content {
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  color: var(--clr-text);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 { margin: var(--sp-8) 0 var(--sp-4); }

.entry-content p { margin-bottom: var(--sp-5); }

.entry-content ul,
.entry-content ol { margin: var(--sp-5) 0 var(--sp-5) var(--sp-6); list-style: revert; }

.entry-content li { margin-bottom: var(--sp-2); }

.entry-content img {
  border-radius: var(--radius-md);
  margin: var(--sp-8) 0;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--clr-border);
}

.tag {
  padding: var(--sp-1) var(--sp-3);
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: border-color var(--dur-fast), color var(--dur-fast);
}

.tag:hover { border-color: var(--clr-border-light); color: var(--clr-text); }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar-widget {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  margin-bottom: var(--sp-5);
}

.sidebar-widget h3 {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--clr-border);
}

.sidebar-widget ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.sidebar-widget a { font-size: var(--fs-sm); color: var(--clr-text-muted); }
.sidebar-widget a:hover { color: var(--clr-text); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  padding: var(--sp-20) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(36, 22, 64, 0.9) 0%, transparent 55%);
  pointer-events: none;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
  padding: var(--sp-16) 0;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-image-frame img { width: 100%; height: 100%; object-fit: cover; }

.about-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: inherit;
  pointer-events: none;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  padding: var(--sp-16) 0;
}

.value-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
}

.value-icon {
  font-size: var(--fs-3xl);
  margin-bottom: var(--sp-4);
  display: block;
}

.value-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
}

.value-card p { font-size: var(--fs-sm); color: var(--clr-text-muted); line-height: var(--lh-loose); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  padding: var(--sp-12) 0;
}

.contact-info h2 { font-size: var(--fs-2xl); margin-bottom: var(--sp-4); }
.contact-info p { color: var(--clr-text-muted); line-height: var(--lh-loose); margin-bottom: var(--sp-8); }

.contact-methods { display: flex; flex-direction: column; gap: var(--sp-5); }

.contact-method {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: var(--fs-lg);
}

.contact-method-text h4 { font-size: var(--fs-sm); font-weight: var(--fw-semibold); margin-bottom: 2px; }
.contact-method-text p  { font-size: var(--fs-sm); color: var(--clr-text-muted); margin: 0; }
.contact-method-text a  { color: var(--clr-text-muted); }
.contact-method-text a:hover { color: var(--clr-primary); }

.contact-form-wrap {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--sp-8);
}

/* ============================================================
   SEARCH RESULTS
   ============================================================ */
.search-header {
  padding: var(--sp-12) 0 var(--sp-8);
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: var(--sp-8);
}

.search-form-large {
  display: flex;
  gap: var(--sp-3);
  max-width: 600px;
  margin: var(--sp-6) 0;
}

.search-form-large input[type="search"] {
  flex: 1;
  padding: var(--sp-3) var(--sp-5);
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-size: var(--fs-base);
}

.search-form-large input:focus { border-color: var(--clr-primary); outline: none; }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-12) 0;
}

.error-404__code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: var(--fw-regular);
  line-height: var(--lh-display);
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-bone));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-4);
  text-transform: uppercase;
}

.error-404__title { font-size: var(--fs-2xl); margin-bottom: var(--sp-4); }
.error-404__text  { color: var(--clr-text-muted); max-width: 440px; margin-inline: auto; margin-bottom: var(--sp-8); }

/* ============================================================
   PAGE HERO (generic)
   ============================================================ */
.page-hero {
  padding: var(--sp-16) 0 var(--sp-12);
  text-align: center;
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: var(--sp-12);
  background: radial-gradient(120% 140% at 50% -20%, var(--clr-accent-deep) 0%, transparent 55%);
}

.page-hero__title { margin-bottom: var(--sp-3); }
.page-hero__subtitle { font-size: var(--fs-md); color: var(--clr-text-muted); }

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--clr-text-faint);
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
}

.breadcrumbs a { color: var(--clr-text-faint); }
.breadcrumbs a:hover { color: var(--clr-text-muted); }
.breadcrumbs .sep { color: var(--clr-border-light); }

/* ============================================================
   WOOCOMMERCE OVERRIDES
   ============================================================ */

/* Force WC to use our variables */
.woocommerce,
.woocommerce-page { color: var(--clr-text); }

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce #payment #place_order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-3) var(--sp-6);
  background: var(--clr-primary);
  color: var(--clr-bone) !important;
  border: 1px solid var(--clr-primary);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background var(--dur-base), box-shadow var(--dur-base), transform var(--dur-base);
  text-decoration: none;
  cursor: pointer;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce #payment #place_order:hover {
  background: var(--clr-primary-dark) !important;
  box-shadow: var(--shadow-glow-soft);
  color: var(--clr-bone) !important;
  transform: translateY(-2px);
}

.woocommerce a.button.alt,
.woocommerce button.button.alt { background: var(--clr-accent); border-color: var(--clr-accent); color: var(--clr-bg) !important; }
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover { background: var(--clr-accent-dark) !important; color: var(--clr-bg) !important; }

/* WC notices */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-sm);
  margin-bottom: var(--sp-5);
  font-size: var(--fs-sm);
  border: none;
  list-style: none;
}

.woocommerce-message { background: rgba(46,204,113,0.12); color: var(--clr-success); border-left: 3px solid var(--clr-success); }
.woocommerce-error   { background: rgba(231,76,60,0.12);  color: var(--clr-error);   border-left: 3px solid var(--clr-error); }
.woocommerce-info    { background: rgba(52,152,219,0.12); color: var(--clr-info);    border-left: 3px solid var(--clr-info); }

.woocommerce-message::before,
.woocommerce-error::before,
.woocommerce-info::before { display: none; }

/* WC form fields */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  background: var(--clr-surface-2) !important;
  border: 1px solid var(--clr-border) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--clr-text) !important;
  padding: var(--sp-3) var(--sp-4) !important;
  font-size: var(--fs-base) !important;
  transition: border-color var(--dur-fast);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  border-color: var(--clr-primary) !important;
  outline: none;
  box-shadow: 0 0 0 3px var(--clr-primary-glow) !important;
}

.woocommerce form .form-row label { color: var(--clr-text-muted) !important; font-size: var(--fs-sm) !important; }

/* WC product loop */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
  gap: var(--sp-6) !important;
  margin: 0 !important;
}

.woocommerce ul.products li.product {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--dur-base), box-shadow var(--dur-base), border-color var(--dur-base);
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--clr-primary);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg) !important;
  font-weight: var(--fw-regular) !important;
  text-transform: uppercase;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-tight);
  color: var(--clr-heading);
  padding: 0 var(--sp-5) var(--sp-2);
}

.woocommerce ul.products li.product .price {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  color: var(--clr-text);
  letter-spacing: 0.02em;
  padding: 0 var(--sp-5) var(--sp-4);
  display: block;
}

.woocommerce ul.products li.product .price del { color: var(--clr-text-faint); font-weight: var(--fw-regular); }

.woocommerce ul.products li.product img {
  margin: 0;
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
  filter: grayscale(1) contrast(1.04);
  transition: filter var(--dur-slow), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.woocommerce ul.products li.product:hover img {
  filter: none;
  transform: scale(1.05);
}

/* WC single product price */
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: var(--clr-heading); }

/* WC cart table */
.woocommerce table.shop_table {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border) !important;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.woocommerce table.shop_table th {
  background: var(--clr-surface-2);
  border: none !important;
  border-bottom: 1px solid var(--clr-border) !important;
  color: var(--clr-text-muted);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}

.woocommerce table.shop_table td {
  border: none !important;
  border-bottom: 1px solid var(--clr-border) !important;
  color: var(--clr-text);
  vertical-align: middle;
}

.woocommerce table.shop_table tbody tr:last-child td { border-bottom: none !important; }

/* WC checkout */
.woocommerce #customer_details { margin-bottom: 0; }
.woocommerce form.checkout .shop_table { margin-bottom: var(--sp-5); }
.woocommerce #payment { background: var(--clr-surface) !important; border-radius: var(--radius-md); }
.woocommerce #payment ul.payment_methods { border-color: var(--clr-border) !important; }
.woocommerce #payment ul.payment_methods li { color: var(--clr-text); }
.woocommerce #payment div.payment_box { background: var(--clr-surface-2) !important; color: var(--clr-text-muted); }
.woocommerce #payment div.payment_box::before { border-bottom-color: var(--clr-surface-2) !important; }

/* WC reviews */
.woocommerce #reviews #comments ol.commentlist li .comment-text {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  color: var(--clr-text);
}

/* WC breadcrumb */
.woocommerce .woocommerce-breadcrumb {
  color: var(--clr-text-faint);
  font-size: var(--fs-xs);
}

.woocommerce .woocommerce-breadcrumb a { color: var(--clr-text-faint); }
.woocommerce .woocommerce-breadcrumb a:hover { color: var(--clr-text-muted); }

/* WC result count / ordering */
.woocommerce-result-count { color: var(--clr-text-muted); font-size: var(--fs-sm); }

.woocommerce-ordering select {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--fs-sm);
}

/* WC quantity */
.woocommerce .quantity .qty {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  text-align: center;
  width: 72px;
  height: 48px;
  font-size: var(--fs-base);
}

/* WC tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  border-bottom: 1px solid var(--clr-border);
  padding: 0;
  margin: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before { border-bottom: none; }

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  border-radius: 0 !important;
  margin: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none; }

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  padding: var(--sp-3) var(--sp-5);
  display: block;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-bottom-color: var(--clr-primary) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--clr-primary); }

.woocommerce div.product .woocommerce-tabs .panel {
  margin: 0;
  padding: var(--sp-8) 0;
  background: transparent;
  border: none;
  color: var(--clr-text);
}

/* Related products */
.related.products { margin-top: var(--sp-16); }
.related.products h2,
.up-sells.products h2 {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--clr-border);
}

/* ============================================================
   FEATURES / HOMEPAGE SECTIONS
   ============================================================ */
.features-strip {
  padding: var(--sp-8) 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-surface);
}

.features-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  divide-x: 1px solid var(--clr-border);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0 var(--sp-4);
}

.feature-item:first-child { padding-left: 0; }
.feature-item:last-child { padding-right: 0; }

.feature-item + .feature-item { border-left: 1px solid var(--clr-border); }

.feature-icon { font-size: var(--fs-xl); flex-shrink: 0; }
.feature-item h4 { font-size: var(--fs-sm); font-weight: var(--fw-semibold); margin-bottom: 2px; }
.feature-item p  { font-size: var(--fs-xs); color: var(--clr-text-muted); margin: 0; }

/* Banner / promo */
.promo-banner {
  position: relative;
  padding: var(--sp-20) 0;
  overflow: hidden;
  text-align: center;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.promo-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-2xl), 5vw, var(--fs-4xl));
  position: relative;
  z-index: 1;
  margin-bottom: var(--sp-4);
}

.promo-banner p {
  font-size: var(--fs-lg);
  color: var(--clr-text-muted);
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto var(--sp-8);
}

.promo-banner .btn { position: relative; z-index: 1; }

/* Newsletter */
.newsletter {
  padding: var(--sp-16) 0;
}

.newsletter__inner {
  max-width: var(--container-sm);
  margin-inline: auto;
  text-align: center;
}

.newsletter h2 { margin-bottom: var(--sp-4); }
.newsletter p  { color: var(--clr-text-muted); margin-bottom: var(--sp-6); }

.newsletter-form {
  display: flex;
  gap: var(--sp-3);
  max-width: 440px;
  margin-inline: auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: var(--sp-3) var(--sp-4);
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-size: var(--fs-base);
}

.newsletter-form input:focus { border-color: var(--clr-primary); outline: none; }

/* ============================================================
   HOMEPAGE SECTIONS
   ============================================================ */
.section-products,
.section-blog {
  padding: var(--sp-20) 0;
}

.section-cta {
  text-align: center;
  margin-top: var(--sp-10);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

.post-card__date {
  font-size: var(--fs-xs);
  color: var(--clr-text-faint);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

.post-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
  line-height: var(--lh-snug);
}

.post-card__title a { color: var(--clr-heading); }
.post-card__title a:hover { color: var(--clr-primary); }

.post-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-4);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--clr-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__placeholder span {
  color: var(--clr-text-faint);
  font-size: 3rem;
}

/* ============================================================
   COMMENTS
   ============================================================ */
.comments-area { margin-top: var(--sp-12); }

.comments-title {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--clr-border);
}

.comment-list { display: flex; flex-direction: column; gap: var(--sp-5); }

.comment {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
}

.comment-author img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.comment-meta { font-size: var(--fs-xs); color: var(--clr-text-faint); }
.comment-content p { font-size: var(--fs-sm); color: var(--clr-text-muted); margin: var(--sp-3) 0 0; }

#respond {
  margin-top: var(--sp-8);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--sp-8);
}

#respond h3 { margin-bottom: var(--sp-6); font-size: var(--fs-xl); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .shop-layout { grid-template-columns: 220px 1fr; }
  .site-footer__widgets { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .single-product-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .single-post-layout { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .features-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .order-review { position: static; }
  .cart-summary { position: static; }
}

@media (max-width: 768px) {
  /* Mobile nav: hide list, show toggle */
  .primary-nav__list { display: none; }
  .primary-nav__list.is-open {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 10, 13, 0.98);
    padding: 100px var(--sp-8) var(--sp-8);
    z-index: var(--z-overlay);
    overflow-y: auto;
  }
  .primary-nav__list.is-open a {
    font-size: var(--fs-xl);
    padding: var(--sp-5) 0;
    letter-spacing: 0.1em;
  }
  .menu-toggle { display: flex; }
  .header-nav .container { justify-content: flex-end; padding-block: 10px; }
  .announcement-bar__inner { gap: var(--sp-2); }
  .announcement-bar__dot { display: none; }
  .hero__content { max-width: 100%; }
  .hero__title { font-size: clamp(52px, 14vw, 90px); }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .post-card { grid-template-columns: 1fr; }
  .post-card__image { aspect-ratio: 16/9; }
  .site-footer__widgets { grid-template-columns: 1fr 1fr; }
  .checkout-form-grid { grid-template-columns: 1fr; }
  .about-image-frame { aspect-ratio: 3/2; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .site-footer__widgets { grid-template-columns: 1fr; }
  .features-strip__inner { grid-template-columns: 1fr; }
  .feature-item + .feature-item { border-left: none; border-top: 1px solid var(--clr-border); padding: var(--sp-4) 0; }
  .newsletter-form { flex-direction: column; }
  .hero__actions { flex-direction: column; }
  .qty-atc { flex-direction: column; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .site-footer, .sidebar, .header-actions { display: none !important; }
  body { background: white; color: black; }
  a { color: black; }
}

/* ============================================================
   DESIGN SYSTEM V2
   Scoped under body.v2 (added via functions.php body_class filter).
   Uses token aliases so no conflicts with legacy selectors above.
   ============================================================ */

:root {
  --ink:         #0b0a0d;
  --ink-2:       #131119;
  --ink-3:       #19161f;
  --ink-4:       #221d2b;
  --bone:        #ece6dc;
  --bone-2:      #ded6c8;
  --bone-dim:    #a99f90;
  --line:        rgba(236,230,220,.12);
  --line-2:      rgba(236,230,220,.22);
  --tx:          #f3efe7;
  --tx-2:        #b3aabd;
  --tx-3:        #7c7488;
  --accent:      #8b5cf6;
  --accent-2:    #a78bfa;
  --accent-3:    #6d28d9;
  --accent-deep: #241640;
  --accent-soft: rgba(139,92,246,.14);
  --gold:        #d6a53c;
  --green:       #4b9f6e;
  --line-ink:    rgba(11,10,13,.14);
  --crimson:     var(--accent-2);
  --shadow:      0 40px 80px -32px rgba(0,0,0,.82);
  --shadow-card: 0 24px 50px -28px rgba(0,0,0,.7);
  --shadow-glow: 0 0 0 1px rgba(139,92,246,.4), 0 16px 50px -16px rgba(139,92,246,.5);
  --r:           8px;
  --r-lg:        12px;
  --r-btn:       3px;
  --wrap:        1280px;
  --head-h:      212px;
  --announce-h:  40px;
  --font-sans:   'Hanken Grotesk', system-ui, sans-serif;
  --font-serif:  'Anton', sans-serif;
  --violet:      var(--accent);
  --violet-2:    var(--accent-2);
  --violet-deep: var(--accent-deep);
  --color-primary-border: rgba(139,92,246,.4);
}

/* ---- Layout */
.v2 .wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 40px;
}

/* ---- Typography helpers */
.v2 .display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .9;
  text-transform: uppercase;
}
.v2 .kicker {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 27px;
  color: var(--accent-2);
  transform: rotate(-2.5deg);
  margin-bottom: 12px;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
}

/* ---- Buttons (design names, separate from .btn-- above) */
.v2 .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  transition: background 200ms, color 200ms, border-color 200ms, transform 200ms;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.v2 .btn:hover { transform: translateY(-2px); }
.v2 .btn-primary { background: var(--accent); color: var(--bone); border-color: var(--accent); }
.v2 .btn-primary:hover { background: var(--accent-3); border-color: var(--accent-3); color: var(--bone); }
.v2 .btn-ghost { background: transparent; color: var(--tx); border-color: var(--line-2); }
.v2 .btn-ghost:hover { background: var(--accent); border-color: var(--accent); color: var(--bone); }
.v2 .btn-lg { padding: 19px 40px; font-size: 13px; }
.v2 .btn-block { width: 100%; justify-content: center; }

/* ---- Forms */
.v2 .fgroup { display: flex; flex-direction: column; }
.v2 .flabel {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tx-2);
}
.v2 .field {
  display: block;
  width: 100%;
  height: 54px;
  padding: 0 18px;
  background: rgba(236,230,220,.04);
  border: 1px solid var(--line-2);
  border-radius: var(--r-btn);
  color: var(--tx);
  font-size: 15px;
  font-family: var(--font-sans);
  transition: border-color 200ms;
}
.v2 .field:focus { border-color: var(--accent-2); outline: none; box-shadow: 0 0 0 3px var(--accent-soft); }
.v2 .field::placeholder { color: var(--tx-3); }
.v2 select.field { -webkit-appearance: none; cursor: pointer; }
.v2 textarea.field { height: auto; padding-top: 14px; padding-bottom: 14px; resize: vertical; min-height: 120px; }
.v2 .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- Reveal (greyscale → colour on hover) */
.v2 .reveal { overflow: hidden; position: relative; }
.v2 .reveal img { filter: grayscale(1) contrast(1.04); transition: filter 500ms, transform 500ms; }
.v2 .reveal:hover img { filter: none; transform: scale(1.05); }

/* ---- Fade-up scroll animation */
.v2 .fu { opacity: 0; transform: translateY(28px); transition: opacity 600ms, transform 600ms; }
.v2 .fu.in { opacity: 1; transform: none; }

/* ---- Tags */
.v2 .tag {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  padding: 6px 12px; border-radius: var(--r-btn);
  font-family: var(--font-sans); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  white-space: nowrap; pointer-events: none;
}
.v2 .tag.crimson { background: var(--accent-2); color: var(--bone); }
.v2 .tag.violet  { background: var(--ink); color: var(--bone); border: 1px solid var(--line-2); }
.v2 .tag.neutral { background: rgba(11,10,11,.7); color: var(--bone); backdrop-filter: blur(6px); }
.v2 .tag.green   { background: var(--green); color: #03150c; }
.v2 .tag.purple  { background: var(--accent); color: #fff; }

/* ---- Breadcrumb */
.v2 .crumb { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--tx-3); margin-bottom: 20px; }
.v2 .crumb a { color: var(--tx-3); text-decoration: none; }
.v2 .crumb a:hover { color: var(--accent-2); }

/* ---- Star ratings */
.v2 .pstars { color: var(--gold); font-size: 13px; letter-spacing: 2px; }

/* ============================================================
   PAGE HERO
   ============================================================ */
.v2 .page-hero {
  padding: calc(var(--head-h) + 88px) 0 76px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.v2 .page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, var(--accent-deep) 0%, transparent 70%);
  pointer-events: none;
}
.v2 .page-hero .wrap { position: relative; z-index: 2; }
.v2 .page-hero h1 { font-size: clamp(40px,6vw,80px); margin-bottom: 20px; }
.v2 .page-hero p { color: var(--tx-2); max-width: 520px; margin: 0 auto; font-size: 16px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.v2 .sec { padding-block: 110px; }
.v2 .sec-head { max-width: 660px; margin-bottom: 56px; }
.v2 .sec-head.center { text-align: center; margin-inline: auto; }
.v2 .sec-head h2 { font-size: clamp(32px,4vw,56px); margin-bottom: 16px; }
.v2 .sec-head p { color: var(--tx-2); }
.v2 .sec-head a { color: var(--accent-2); font-size: 13px; text-decoration: none; }
.v2 .band-bone { background: var(--bone); color: var(--ink); }
.v2 .band-bone h2,.v2 .band-bone h3,.v2 .band-bone h4 { color: var(--ink); }
.v2 .band-bone p { color: rgba(11,10,13,.7); }
.v2 .band-bone .kicker { color: var(--accent-3); }

/* ============================================================
   HERO (Homepage)
   ============================================================ */
.v2 .hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.v2 .hero-atmos {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 55% at 50% 28%, rgba(139,92,246,.14) 0%, transparent 68%),
    radial-gradient(90% 60% at 50% 118%, rgba(109,40,217,.16) 0%, transparent 62%),
    linear-gradient(180deg, #120e1b 0%, #0b0a0d 64%);
  pointer-events: none; z-index: 0;
}
.v2 .hero-atmos::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 220px 50px rgba(0,0,0,.62); }
.v2 .hero-photo {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: url('assets/img/hero-workbench.png') center 30% / cover no-repeat;
  opacity: .6;
}
.v2 .hero-photo::after { content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,10,13,.55) 0%, rgba(11,10,13,.32) 42%, rgba(11,10,13,.82) 100%),
    radial-gradient(80% 65% at 50% 42%, rgba(11,10,13,.1) 0%, rgba(11,10,13,.62) 100%);
}
.v2 .hero { padding: calc(var(--head-h) + 56px) 24px 90px; background: var(--ink); gap: 0; }
.v2 .hero-copy { position: relative; z-index: 3; max-width: 820px; display: flex; flex-direction: column; align-items: center; }
.v2 .hero h1 { font-size: clamp(54px,8vw,112px); margin-bottom: 24px; line-height: .9; }
.v2 .hero h1 em { color: var(--accent-2); display: block; font-style: normal; }
.v2 .hero-sub { font-size: 17px; color: var(--tx-2); max-width: 580px; margin: 0 auto 36px; }
.v2 .hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.v2 .hero-trust { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 13px; color: var(--tx-3); }

/* ============================================================
   USP STRIP
   ============================================================ */
.v2 .usp-strip { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.v2 .usp { display: flex; align-items: center; gap: 16px; padding: 32px 24px; border-right: 1px solid var(--line); }
.v2 .usp:last-child { border-right: none; }
.v2 .usp-ic { flex-shrink: 0; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--line-2); color: var(--accent-2); }
.v2 .usp b { display: block; font-size: 13px; font-weight: 700; color: var(--tx); margin-bottom: 3px; }
.v2 .usp span { font-size: 12px; color: var(--tx-3); }

/* ============================================================
   PRODUCT GRID + CARD
   ============================================================ */
/* product card — editorial (matches design handoff components.css) */
.v2 .pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.v2 .pcard { position: relative; background: var(--ink-3); display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color .35s, transform .35s; }
.v2 .pcard:hover { border-color: var(--line-2); }
.v2 .pcard-media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--ink-3); }
.v2 .pcard-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.v2 .pcard-quick { position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 3; background: var(--bone); color: var(--ink); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; padding: 13px; border: none; border-radius: var(--r-btn); cursor: pointer; opacity: 0; transform: translateY(10px); transition: opacity .35s, transform .35s; text-align: center; text-decoration: none; }
.v2 .pcard:hover .pcard-quick { opacity: 1; transform: translateY(0); }
.v2 .pcard-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 9px; }
.v2 .pcard-cat { font-size: 10.5px; text-transform: uppercase; letter-spacing: .18em; color: var(--accent-2); font-weight: 700; }
.v2 .pcard-name { font-family: var(--font-display); font-weight: 400; color: var(--bone); font-size: 20px; margin: 0; line-height: 1.05; text-transform: uppercase; letter-spacing: .015em; }
.v2 .pcard-name a { color: inherit; text-decoration: none; }
.v2 .pcard-name a:hover { color: var(--accent-2); }
.v2 .pcard-meta { display: flex; align-items: center; gap: 8px; }
.v2 .pcard-rev { font-size: 12px; color: var(--tx-3); }
.v2 .pcard-foot { margin-top: 8px; padding-top: 14px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.v2 .pcard-foot .price,
.v2 .pcard-foot .price .woocommerce-Price-amount,
.v2 .pcard-foot .price bdi,
.v2 .pcard-foot .price .woocommerce-Price-currencySymbol { font-family: var(--font-display); font-weight: 400; color: var(--bone); font-size: 22px; line-height: 1; letter-spacing: .02em; }
.v2 .pcard-foot .price del .woocommerce-Price-amount { color: var(--tx-3); font-size: 16px; }
.v2 .pcard-add { padding: 10px 16px; font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap; text-decoration: none; border-radius: var(--r-btn); border: 1px solid var(--line-2); background: transparent; color: var(--tx); transition: background .3s, border-color .3s, color .3s; display: inline-block; }
.v2 .pcard-add:hover { border-color: var(--bone); background: rgba(236,230,220,.06); color: var(--tx); }
/* Whole tile is clickable: stretch the product-name link across the card. */
.v2 .pcard-name a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
/* Keep the action buttons clickable above the stretched link (desktop). */
.v2 .pcard-add { position: relative; z-index: 2; }

/* ============================================================
   FEATURED GRID
   ============================================================ */
/* featured asymmetric (matches design handoff pages.css) */
.v2 .feat-grid { display: grid; grid-template-columns: 1.35fr 1fr; grid-auto-rows: auto; gap: 24px; }
.v2 .feat { position: relative; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: border-color .35s, transform .35s; background: var(--ink-3); }
.v2 .feat:hover { border-color: var(--line-2); transform: translateY(-4px); }
.v2 .feat-tall { grid-row: span 2; }
.v2 .feat-media { position: relative; flex: 1; min-height: 240px; overflow: hidden; }
.v2 .feat-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.v2 .feat-body { padding: 26px 28px; display: flex; flex-direction: column; gap: 16px; }
.v2 .feat-name { font-family: var(--font-display); font-weight: 400; color: var(--bone); font-size: 30px; margin: 6px 0 0; text-transform: uppercase; letter-spacing: .015em; line-height: 1; }
.v2 .feat-tall .feat-name { font-size: 46px; }
.v2 .feat-foot { display: flex; align-items: center; justify-content: space-between; }
.v2 .feat-foot .price,
.v2 .feat-foot .price .woocommerce-Price-amount,
.v2 .feat-foot .price bdi,
.v2 .feat-foot .price .woocommerce-Price-currencySymbol { font-family: var(--font-display); font-weight: 400; color: var(--bone); font-size: 22px; line-height: 1; letter-spacing: .02em; }
.v2 .feat-link { background: none; border: none; color: var(--tx); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; cursor: pointer; text-decoration: none; }
.v2 .feat-link:hover { color: var(--accent-2); }

/* ============================================================
   CATEGORY TILES
   ============================================================ */
/* categories (matches design handoff pages.css) */
.v2 .cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.v2 .cat-tile { position: relative; display: block; text-decoration: none; }
.v2 .cat-media { position: relative; aspect-ratio: 3/4; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--ink-3); }
.v2 .cat-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms; }
.v2 .cat-tile:hover .cat-media img { transform: scale(1.06); }
.v2 .cat-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(11,10,13,.85)); z-index: 2; }
.v2 .cat-label { position: absolute; left: 0; right: 0; bottom: 18px; z-index: 3; text-align: center; font-family: var(--font-display); font-size: 18px; text-transform: uppercase; letter-spacing: .04em; color: var(--bone); transition: color .3s; }
.v2 .cat-tile:hover .cat-label { color: var(--accent-2); }

/* ============================================================
   PROCESS BAND
   ============================================================ */
.v2 .process { display: grid; grid-template-columns: repeat(5,1fr); }
.v2 .step { padding: 32px 24px; border-right: 1px solid rgba(11,10,13,.15); }
.v2 .step:last-child { border-right: none; }
.v2 .step-n { font-family: var(--font-display); font-size: 42px; color: var(--accent-3); line-height: 1; margin-bottom: 12px; }
.v2 .step h4 { font-family: var(--font-display); font-size: 15px; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; }
.v2 .step p { font-size: 13px; color: rgba(11,10,13,.65); line-height: 1.6; margin: 0; font-family: var(--font-sans); text-transform: none; }

/* ============================================================
   COMMISSION
   ============================================================ */
.v2 .commission { border-radius: var(--r-lg); background: linear-gradient(115deg, var(--accent-deep), var(--ink-2)); padding: 64px; overflow: hidden; }
.v2 .commission-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.v2 .commission-copy h2 { font-size: clamp(28px,3vw,44px); margin-bottom: 16px; }
.v2 .commission-copy p { color: var(--tx-2); margin-bottom: 0; }
.v2 .quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.v2 .quote-grid .full { grid-column: 1 / -1; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.v2 .tgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.v2 .tcard { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r); padding: 28px; }
.v2 .tcard-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.v2 .tcard-quote { font-size: 15px; color: var(--tx-2); line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.v2 .tcard-name { font-size: 13px; font-weight: 700; color: var(--tx); margin-bottom: 2px; }
.v2 .tcard-role { font-size: 12px; color: var(--tx-3); }

/* ============================================================
   NEWSLETTER BAND
   ============================================================ */
.v2 .news-band { text-align: center; }
.v2 .news-form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto 16px; }
.v2 .news-form .field { height: 52px; }
.v2 .news-fine { font-size: 12px; color: var(--tx-3); }

/* ============================================================
   SHOP BAR
   ============================================================ */
.v2 .shop-bar { display: flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--line); padding: 20px 0; margin-bottom: 40px; flex-wrap: wrap; }
.v2 .filters { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; }
.v2 .filter-btn { padding: 8px 16px; border: 1px solid var(--line-2); border-radius: var(--r-btn); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--tx-2); cursor: pointer; transition: background 200ms, color 200ms, border-color 200ms; text-decoration: none; display: inline-block; background: transparent; }
.v2 .filter-btn:hover,.v2 .filter-btn.active { background: var(--accent); border-color: var(--accent); color: var(--bone); }
.v2 .shop-sort { display: flex; align-items: center; gap: 10px; }
.v2 .shop-count { font-size: 13px; color: var(--tx-3); white-space: nowrap; }
.v2 .shop-select { height: 40px; padding: 0 14px; background: rgba(236,230,220,.04); border: 1px solid var(--line-2); border-radius: var(--r-btn); color: var(--tx); font-size: 13px; cursor: pointer; -webkit-appearance: none; }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.v2 .pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; padding-top: calc(var(--head-h) + 56px); padding-bottom: 80px; }
.v2 .pdp-gallery { position: sticky; top: calc(var(--head-h) + 24px); }
.v2 .pdp-main { position: relative; aspect-ratio: 4/5; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--ink-3); margin-bottom: 12px; }
.v2 .pdp-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.v2 .pdp-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 12px; }
.v2 .pdp-thumb { position: relative; aspect-ratio: 1/1; border-radius: var(--r-btn); overflow: hidden; border: 1px solid var(--line); cursor: pointer; }
.v2 .pdp-thumb:hover, .v2 .pdp-thumb.active { border-color: var(--accent-2); }
.v2 .pdp-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.v2 .pdp-info { padding-top: 0; }
.v2 .pdp-cat { font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: var(--accent-2); font-weight: 700; }
.v2 .pdp-info h1, .v2 .pdp h1 { font-size: clamp(38px, 5vw, 60px); margin: 12px 0 0; font-weight: 500; }
.v2 .pdp-meta { display: flex; align-items: center; gap: 12px; margin: 14px 0 0; }
.v2 .pdp-price { font-family: var(--font-display); font-weight: 400; color: var(--bone); font-size: 40px; margin: 22px 0; letter-spacing: .02em; line-height: 1; }
.v2 .pdp-price .woocommerce-Price-amount, .v2 .pdp-price bdi { font-family: var(--font-display); font-weight: 400; color: var(--bone); }
.v2 .pdp-blurb { color: var(--tx-2); font-size: 16px; line-height: 1.75; margin: 0; }
/* buy row — WooCommerce add-to-cart form styled to match the design */
.v2 .pdp-buy { display: flex; gap: 14px; align-items: stretch; margin: 28px 0; flex-wrap: wrap; }
.v2 .pdp-buy form.cart { display: flex; gap: 14px; align-items: stretch; flex-wrap: wrap; margin: 0; width: 100%; }
.v2 .pdp-buy .quantity { display: inline-flex; }
.v2 .pdp-buy .quantity input.qty { height: 54px; width: 84px; padding: 0 10px; text-align: center; background: rgba(236,230,220,.04); border: 1px solid var(--line-2); border-radius: var(--r-btn); color: var(--tx); font-size: 16px; font-family: var(--font-sans); }
.v2 .pdp-buy .single_add_to_cart_button { flex: 1; min-width: 200px; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-sans); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .18em; cursor: pointer; padding: 0 40px; height: 54px; border-radius: var(--r-btn); border: 1px solid transparent; background: var(--accent); color: var(--bone); transition: background .3s; }
.v2 .pdp-buy .single_add_to_cart_button:hover { background: var(--accent-2); }
/* PayPal express buttons sit on their own row below the add-to-cart form */
.v2 .pdp-buy .paypal-button-container, .v2 .pdp-buy .ppc-button-wrapper { flex: 0 0 100%; width: 100%; margin-top: 4px; }
.v2 .pdp-stock { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; color: var(--green); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.v2 .pdp-stock .dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.v2 .pdp-trust { display: flex; gap: 26px; flex-wrap: wrap; padding: 24px 0; margin-top: 10px; border-top: 1px solid var(--line); color: var(--tx-2); font-size: 13px; }
.v2 .pdp-trust span { display: inline-flex; align-items: center; gap: 8px; }
.v2 .pdp-desc { margin-top: 30px; }
.v2 .pdp-desc h3 { font-family: var(--font-serif); font-weight: 500; color: var(--bone); font-size: 26px; }
.v2 .pdp-desc p, .v2 .pdp-desc li { color: var(--tx-2); font-size: 15.5px; line-height: 1.8; }
/* PDP mobile — release sticky gallery, single column, full-width CTA */
@media (max-width: 980px) {
  .v2 .pdp { grid-template-columns: 1fr; gap: 32px; }
  .v2 .pdp-gallery { position: static; }
}
@media (max-width: 480px) {
  .v2 .pdp-buy form.cart { gap: 10px; }
  .v2 .pdp-buy .single_add_to_cart_button { flex: 1 1 100%; min-width: 0; }
  .v2 .pdp-thumbs { grid-template-columns: repeat(4, 1fr); }
  .v2 .pdp-trust { gap: 14px; }
}
/* Product reviews (social proof / CRO) */
.v2 .pdp-reviews { padding-bottom: 70px; }
.v2 .woocommerce-Reviews-title { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; letter-spacing: .015em; color: var(--bone); font-size: clamp(28px,4vw,40px); margin: 0 0 28px; }
.v2 .woocommerce-Reviews .commentlist { list-style: none; padding: 0; margin: 0 0 40px; display: flex; flex-direction: column; gap: 18px; }
.v2 .woocommerce-Reviews .commentlist li.review { border: 1px solid var(--line); border-radius: var(--r); padding: 24px 26px; }
.v2 .woocommerce-Reviews .comment_container { display: flex; gap: 16px; align-items: flex-start; }
.v2 .woocommerce-Reviews img.avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.v2 .woocommerce-Reviews .comment-text { flex: 1; min-width: 0; }
.v2 .woocommerce-Reviews .meta { color: var(--tx-3); font-size: 13px; margin: 6px 0 10px; }
.v2 .woocommerce-Reviews .woocommerce-review__author { color: var(--bone); font-weight: 700; }
.v2 .woocommerce-Reviews .description { color: var(--tx-2); font-size: 15px; line-height: 1.7; }
.v2 .woocommerce-Reviews .star-rating { color: var(--gold); font-size: 14px; }
.v2 .woocommerce-noreviews { color: var(--tx-2); font-size: 15px; margin: 0 0 28px; }
.v2 #review_form_wrapper { border: 1px solid var(--line); border-radius: var(--r); padding: 28px; }
.v2 .comment-reply-title { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .015em; color: var(--bone); font-size: 22px; display: block; margin-bottom: 18px; }
.v2 .comment-form label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--tx-2); margin-bottom: 8px; }
.v2 .comment-form p { margin: 0 0 16px; }
.v2 .comment-form input[type=text], .v2 .comment-form input[type=email], .v2 .comment-form input[type=url], .v2 .comment-form textarea { width: 100%; background: rgba(236,230,220,.04); border: 1px solid var(--line-2); border-radius: var(--r-btn); color: var(--tx); padding: 12px 14px; font-family: var(--font-sans); font-size: 15px; outline: none; box-sizing: border-box; }
.v2 .comment-form input:focus, .v2 .comment-form textarea:focus { border-color: var(--accent-2); box-shadow: 0 0 0 3px var(--accent-soft); }
.v2 .comment-form-rating .stars a { color: var(--gold); }
.v2 .comment-form-rating select { background: rgba(236,230,220,.04); border: 1px solid var(--line-2); color: var(--tx); border-radius: var(--r-btn); padding: 10px 12px; }
.v2 .comment-form .submit { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-sans); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .18em; cursor: pointer; padding: 16px 36px; border-radius: var(--r-btn); border: 1px solid transparent; background: var(--accent); color: var(--bone); transition: background .3s; }
.v2 .comment-form .submit:hover { background: var(--accent-2); }
/* Mobile sticky add-to-cart bar (CRO) */
.v2 .pdp-sticky { position: fixed; left: 0; right: 0; bottom: 0; z-index: 7000; display: none; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 18px calc(12px + env(safe-area-inset-bottom)); background: rgba(11,10,13,.96); backdrop-filter: blur(12px); border-top: 1px solid var(--line); transform: translateY(100%); transition: transform .3s; }
.v2 .pdp-sticky.show { transform: translateY(0); }
.v2 .pdp-sticky-info { display: flex; flex-direction: column; min-width: 0; }
.v2 .pdp-sticky-name { color: var(--bone); font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v2 .pdp-sticky-price { font-family: var(--font-display); color: var(--accent-2); font-size: 18px; line-height: 1.1; }
.v2 .pdp-sticky-price .woocommerce-Price-amount, .v2 .pdp-sticky-price bdi { font-family: var(--font-display); color: var(--accent-2); }
.v2 .pdp-sticky-add { white-space: nowrap; flex-shrink: 0; }
/* Checkout order-summary remove link */
.v2 #checkout-summary .co-remove { display: inline-block; margin-top: 5px; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--tx-3); text-decoration: none; transition: color .2s; }
.v2 #checkout-summary .co-remove:hover { color: var(--accent-2); }
/* Product FAQ accordion */
.v2 .pdp-faq .faq-list { max-width: 860px; }
.v2 .faq-item { border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 12px; padding: 0 22px; background: rgba(236,230,220,.02); }
.v2 .faq-item summary { list-style: none; cursor: pointer; padding: 18px 0; font-family: var(--font-serif); font-weight: 500; color: var(--bone); font-size: 17px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.v2 .faq-item summary::-webkit-details-marker { display: none; }
.v2 .faq-item summary::after { content: '+'; color: var(--accent-2); font-size: 22px; line-height: 1; flex-shrink: 0; }
.v2 .faq-item[open] summary::after { content: '\2212'; }
.v2 .faq-item p { color: var(--tx-2); font-size: 15px; line-height: 1.7; margin: 0; padding: 0 0 20px; }
/* Form honeypot (kept off-screen, NOT display:none, so bots still fill it) */
.v2 .ddv3-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
/* Form success / error feedback */
.v2 .form-success { border: 1px solid var(--accent); background: var(--accent-soft); color: var(--bone); border-radius: var(--r); padding: 22px 24px; font-size: 15px; line-height: 1.5; text-align: center; }
.v2 form.form-error .field { border-color: #e5484d; box-shadow: 0 0 0 3px rgba(229,72,77,.15); }
.v2 .form-msg { grid-column: 1 / -1; background: rgba(229,72,77,.1); border: 1px solid rgba(229,72,77,.4); color: #fca5a5; border-radius: var(--r-btn); padding: 12px 16px; font-size: 13.5px; margin-bottom: 14px; }
/* ============================================================
   CONTACT FORM 7 — skin to match the theme
   ============================================================ */
.v2 .wpcf7 { margin: 0; }
.v2 .wpcf7-form .fgroup { margin-bottom: 18px; }
.v2 .wpcf7-form-control-wrap { display: block; width: 100%; }
.v2 .wpcf7-form .field { margin: 0; }
.v2 .wpcf7-form textarea.field { height: 120px; min-height: 90px; resize: vertical; }
/* Native select dropdown options — dark bg + light text so they're readable */
.v2 select.field option,
.v2 select.field optgroup,
.v2 .field option { background-color: var(--ink-2); color: var(--tx); }
/* commission grid */
.v2 .quote-grid .full { grid-column: 1 / -1; }
.v2 .quote-grid .full .btn,
.v2 .quote-grid .full input.wpcf7-submit { width: 100%; }
/* newsletter inline */
.v2 .news-form .wpcf7-form-control-wrap { flex: 1; }
.v2 .news-form .btn,
.v2 .news-form input.wpcf7-submit { flex: none; white-space: nowrap; }
@media (max-width: 560px) {
  .v2 .news-form .wpcf7-form-control-wrap { flex: none; width: 100%; }
  .v2 .wpcf7-form .frow { grid-template-columns: 1fr; }
}
/* validation + response messages */
.v2 .wpcf7-not-valid-tip { color: #fca5a5; font-size: 12px; margin-top: 6px; }
.v2 .field.wpcf7-not-valid { border-color: #e5484d; box-shadow: 0 0 0 3px rgba(229,72,77,.15); }
.v2 .wpcf7-response-output { border: 1px solid var(--line-2) !important; border-radius: var(--r-btn); padding: 14px 18px !important; margin: 18px 0 0 !important; font-size: 14px; line-height: 1.5; color: var(--tx-2); }
.v2 .wpcf7 form.sent .wpcf7-response-output { border-color: var(--accent) !important; background: var(--accent-soft); color: var(--bone); }
.v2 .wpcf7 form.invalid .wpcf7-response-output,
.v2 .wpcf7 form.unaccepted .wpcf7-response-output,
.v2 .wpcf7 form.failed .wpcf7-response-output,
.v2 .wpcf7 form.spam .wpcf7-response-output { border-color: rgba(229,72,77,.5) !important; background: rgba(229,72,77,.1); color: #fca5a5; }
.v2 .wpcf7-spinner { background-color: var(--accent-2); }
/* honeypot fields stay off-screen */
.v2 .wpcf7 [class*="hp-"], .v2 .wpcf7 .wpcf7cf-hidden, .v2 .wpcf7 input[name^="hp-"] { position: absolute !important; left: -9999px !important; }
@media (max-width: 760px) { .v2 .pdp-sticky { display: flex; } }

/* ============================================================
   CART
   ============================================================ */
.v2 .cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; padding-top: 60px; padding-bottom: 80px; align-items: start; }
.v2 .ctable { width: 100%; border-collapse: collapse; }
.v2 .ctable thead th { padding: 0 0 14px; text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--tx-3); border-bottom: 1px solid var(--line); font-weight: 600; font-family: var(--font-sans); }
.v2 .ctable tbody tr { border-bottom: 1px solid var(--line); }
.v2 .ctable td { padding: 20px 10px 20px 0; vertical-align: middle; }
.v2 .ctable td:last-child { padding-right: 0; }
.v2 .citem-img a { display: block; width: 80px; }
.v2 .citem-img img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--r-btn); display: block; }
.v2 .citem-name { font-family: var(--font-display); font-size: 16px; text-transform: uppercase; color: var(--tx); margin-bottom: 4px; text-decoration: none; display: block; }
.v2 .citem-name:hover { color: var(--accent-2); }
.v2 .citem-meta { font-size: 13px; color: var(--tx-3); }
.v2 .citem-remove { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--tx-3); text-decoration: none; cursor: pointer; border: none; background: none; padding: 0; margin-top: 6px; display: inline-block; }
.v2 .citem-remove:hover { color: #e5484d; }
.v2 .qty-wrap { display: flex; align-items: center; border: 1px solid var(--line-2); border-radius: var(--r-btn); width: fit-content; overflow: hidden; }
.v2 .qty-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: none; background: none; color: var(--tx-2); cursor: pointer; font-size: 18px; line-height: 1; transition: background 200ms; }
.v2 .qty-btn:hover { background: rgba(236,230,220,.07); color: var(--tx); }
.v2 .qty-n { width: 44px; height: 36px; border: none; background: none; color: var(--tx); text-align: center; font-size: 14px; font-weight: 600; -moz-appearance: textfield; }
.v2 .qty-n::-webkit-outer-spin-button,.v2 .qty-n::-webkit-inner-spin-button { -webkit-appearance: none; }
.v2 .citem-total { font-family: var(--font-display); font-size: 18px; text-transform: uppercase; text-align: right; white-space: nowrap; }

/* ============================================================
   SUMMARY SIDEBAR
   ============================================================ */
.v2 .summary { border: 1px solid var(--line); border-radius: var(--r); padding: 32px; position: sticky; top: calc(var(--head-h) + 24px); }
.v2 .summary h3 { font-size: 16px; margin-bottom: 24px; letter-spacing: .1em; }
.v2 .summary-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--tx-2); }
.v2 .summary-row.total { font-family: var(--font-display); font-size: 20px; color: var(--tx); text-transform: uppercase; border-bottom: none; padding-top: 16px; }
.v2 .coupon-wrap { display: flex; gap: 8px; margin: 20px 0 24px; }
.v2 .coupon-wrap .field { height: 46px; }
.v2 .sitem-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.v2 .sitem-img { width: 52px; height: 52px; object-fit: cover; border-radius: var(--r-btn); flex-shrink: 0; }
.v2 .sitem-name { font-size: 13px; font-weight: 600; color: var(--tx); line-height: 1.4; margin-bottom: 3px; }
.v2 .sitem-meta { font-size: 12px; color: var(--tx-3); }
.v2 .sitem-price { font-size: 14px; font-weight: 700; color: var(--tx); margin-left: auto; white-space: nowrap; }

/* ============================================================
   CHECKOUT
   ============================================================ */
.v2 .checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; padding-top: 60px; padding-bottom: 80px; align-items: start; }
.v2 .checkout-block { border: 1px solid var(--line); border-radius: var(--r); padding: 30px; }
.v2 .checkout-block h3 { font-size: 14px; letter-spacing: .15em; margin-bottom: 24px; }
.v2 .pay-opt { display: flex; align-items: center; gap: 13px; padding: 16px 18px; border: 1px solid var(--line-2); border-radius: var(--r-btn); cursor: pointer; transition: border-color 200ms, background 200ms; margin-bottom: 10px; }
.v2 .pay-opt:last-child { margin-bottom: 0; }
.v2 .pay-opt.on { border-color: var(--accent-2); background: var(--accent-soft); }
.v2 .pay-opt input[type="radio"] { accent-color: var(--accent); }
.v2 .pay-opt label { cursor: pointer; font-size: 14px; font-weight: 600; color: var(--tx); }

/* ============================================================
   BLOG GRID + CARDS
   ============================================================ */
.v2 .blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
/* Blog/Projects card styling lives in the design-handoff pages.css block below
   (search ".v2 .bcard { ... background: none"). The old rules here were removed
   because they leaked text-transform:uppercase and a dark card background onto
   the design-correct cards. */
.v2 .bcard-media img { position: absolute; inset: 0; transition: transform 500ms; }
.v2 .bcard:hover .bcard-media img { transform: scale(1.04); }
.v2 .bmeta { font-size: 12px; color: var(--tx-3); margin-top: auto; padding-top: 16px; }

.v2 .bfeature { display: grid; grid-template-columns: 1.2fr 1fr; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 48px; }
.v2 .bfeature-media { position: relative; min-height: 380px; overflow: hidden; background: var(--ink-3); }
.v2 .bfeature-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms; }
.v2 .bfeature:hover .bfeature-media img { transform: scale(1.03); }
.v2 .bfeature-body { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.v2 .bfeature-body h2 { font-size: clamp(22px,2.5vw,34px); margin-bottom: 16px; }
.v2 .bfeature-body p { font-size: 15px; color: var(--tx-2); line-height: 1.7; margin-bottom: 28px; }
.v2 .bfeature-body .bmeta { padding-top: 0; margin-bottom: 20px; }

/* ============================================================
   SINGLE POST
   ============================================================ */
.v2 article.post { max-width: 780px; margin: 0 auto; padding-top: calc(var(--head-h) + 48px); padding-bottom: 80px; padding-inline: 20px; }
.v2 .post-hero { aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden; position: relative; margin-bottom: 48px; background: var(--ink-3); }
.v2 .post-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.v2 .post-head { margin-bottom: 32px; text-align: center; }
.v2 .post-head h1 { font-size: clamp(28px,4vw,54px); margin-bottom: 20px; }
.v2 .post-body { font-size: 17px; line-height: 1.8; color: var(--tx-2); }
.v2 .post-body h2,.v2 .post-body h3 { color: var(--tx); font-family: var(--font-sans); text-transform: none; margin: 2em 0 .75em; }
.v2 .post-body p { margin-bottom: 1.5em; }
.v2 .post-body img { border-radius: var(--r); margin: 2em 0; }
.v2 .post-body a { color: var(--accent-2); }
.v2 .post-body blockquote { border-left: 3px solid var(--accent); padding: 16px 24px; margin: 2em 0; font-family: var(--font-script); font-size: 22px; color: var(--tx-2); }
.v2 .post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; border-top: 1px solid var(--line); padding-top: 40px; margin-top: 56px; }
.v2 .pn-link { padding: 24px; border: 1px solid var(--line); border-radius: var(--r); text-decoration: none; transition: border-color 200ms; display: block; }
.v2 .pn-link:hover { border-color: var(--accent-2); }
.v2 .pn-link:last-child { text-align: right; }
.v2 .pn-dir { font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--tx-3); margin-bottom: 8px; }
.v2 .pn-title { font-family: var(--font-display); font-size: 16px; text-transform: uppercase; color: var(--tx); }
.v2 .comments { margin-top: 56px; border-top: 1px solid var(--line); padding-top: 40px; }
.v2 .comments h3 { font-size: 20px; margin-bottom: 32px; }
.v2 .cmt-list { list-style: none; margin: 0; padding: 0; }
.v2 .cmt { display: flex; gap: 16px; margin-bottom: 32px; }
.v2 .cmt-av { width: 44px; height: 44px; border-radius: 50%; background: var(--ink-3); flex-shrink: 0; overflow: hidden; }
.v2 .cmt-av img { width: 100%; height: 100%; object-fit: cover; }
.v2 .cmt-meta { font-size: 13px; color: var(--tx-3); margin-bottom: 8px; }
.v2 .cmt-meta strong { color: var(--tx); margin-right: 8px; font-weight: 600; }
.v2 .cmt-text { font-size: 15px; color: var(--tx-2); line-height: 1.7; }
.v2 .cmt-form { margin-top: 40px; }
.v2 .cmt-form h4 { font-size: 16px; margin-bottom: 24px; letter-spacing: .1em; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.v2 .about-stats { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.v2 .as { padding: 40px 32px; border-right: 1px solid var(--line); text-align: center; }
.v2 .as:last-child { border-right: none; }
.v2 .as-n { font-family: var(--font-display); font-size: 52px; color: var(--accent-2); line-height: 1; margin-bottom: 8px; }
.v2 .as p { font-size: 14px; color: var(--tx-2); margin: 0; }
.v2 .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.v2 .info-card { border: 1px solid var(--line); border-radius: var(--r); padding: 32px; }
.v2 .info-card h4 { font-size: 16px; margin-bottom: 12px; letter-spacing: .1em; }
.v2 .info-card p { font-size: 14px; color: var(--tx-2); line-height: 1.7; margin: 0; }
.v2 .about-quote { text-align: center; max-width: 880px; margin-inline: auto; }
.v2 .about-quote p { font-family: var(--font-script); font-size: clamp(22px,3vw,36px); color: var(--accent-2); line-height: 1.4; margin-bottom: 20px; text-transform: none; }
.v2 .about-quote cite { font-size: 14px; color: var(--ink-4); font-style: normal; }
.v2 .proc-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 48px; }
.v2 .proc-item { display: flex; gap: 26px; padding: 28px 32px; border: 1px solid rgba(11,10,13,.12); border-radius: var(--r); background: var(--bone); align-items: flex-start; }
.v2 .pn { font-family: var(--font-display); font-size: 30px; color: var(--accent-3); line-height: 1; flex-shrink: 0; min-width: 28px; }
.v2 .proc-item h4 { font-size: 16px; margin-bottom: 6px; color: var(--ink); font-family: var(--font-display); }
.v2 .proc-item p { font-size: 14px; color: rgba(11,10,13,.65); margin: 0; line-height: 1.6; font-family: var(--font-sans); text-transform: none; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.v2 .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.v2 .ci-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
.v2 .ci-ic { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--line-2); color: var(--accent-2); flex-shrink: 0; }
.v2 .ci-item h4 { font-size: 13px; letter-spacing: .1em; margin-bottom: 4px; color: var(--tx); }
.v2 .ci-item a,.v2 .ci-item p { font-size: 14px; color: var(--tx-2); margin: 0; text-decoration: none; }
.v2 .ci-item a:hover { color: var(--accent-2); }

/* ============================================================
   404 PAGE
   ============================================================ */
.v2 .e404 { padding: calc(var(--head-h) + 100px) 20px 110px; text-align: center; }
.v2 .big { font-family: var(--font-display); font-size: clamp(110px,22vw,260px); color: var(--accent); line-height: .85; display: block; margin-bottom: 16px; }
.v2 .e404 h1 { font-size: clamp(26px,4vw,48px); margin-bottom: 20px; }
.v2 .e404 p { color: var(--tx-2); max-width: 480px; margin: 0 auto 40px; font-size: 16px; }
.v2 .e404-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   TOAST
   ============================================================ */
.v2 .toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px); z-index: 9600;
  background: var(--bone); border: 1px solid var(--bone); color: var(--ink); padding: 15px 24px; border-radius: var(--r-btn);
  font-size: 13px; font-weight: 700; letter-spacing: .04em; box-shadow: 0 8px 32px rgba(0,0,0,.4); opacity: 0;
  transition: opacity .3s, transform .3s; pointer-events: none; white-space: nowrap; }
.v2 .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }

/* ============================================================
   WC NOTICES
   ============================================================ */
/* scroll-padding accounts for the fixed header so notices aren't hidden behind it */
html { scroll-padding-top: calc(var(--head-h) + var(--announce-h) + 20px); }
/* WC injects a notices-wrapper at body level — keep it out of the fixed-header zone */
body > .woocommerce-notices-wrapper { display: none !important; }
.v2 .woocommerce-notices-wrapper { max-width: var(--wrap); margin: 16px auto 0; padding-inline: 40px; }
.v2 .woocommerce-error li,.v2 .woocommerce-message,.v2 .woocommerce-info {
  list-style: none; border: 1px solid var(--line); background: var(--ink-2); border-radius: var(--r-btn); padding: 16px 20px; font-size: 14px; color: var(--tx-2); margin-bottom: 8px;
}
.v2 ul.woocommerce-error { padding: 0; }
.v2 .woocommerce-message { border-color: var(--green); }
.v2 .woocommerce-error li { border-color: #e5484d; }

/* ============================================================
   V2 RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .v2 .pgrid { grid-template-columns: repeat(3,1fr); }
  .v2 .feat-grid { grid-template-columns: 1fr 1fr; }
  .v2 .feat-tall { grid-row: auto; }
  .v2 .cat-grid { grid-template-columns: repeat(3,1fr); }
  .v2 .usp-strip { grid-template-columns: repeat(2,1fr); }
  .v2 .commission-inner { grid-template-columns: 1fr; }
  .v2 .tgrid { grid-template-columns: repeat(2,1fr); }
  .v2 .cart-layout,.v2 .checkout-layout { grid-template-columns: 1fr; }
  .v2 .summary { position: static; }
  .v2 .pdp { grid-template-columns: 1fr; }
  .v2 .about-stats { grid-template-columns: repeat(2,1fr); }
  .v2 .as:nth-child(2) { border-right: none; }
  .v2 .as:nth-child(3) { border-top: 1px solid var(--line); }
  .v2 .as:nth-child(4) { border-top: 1px solid var(--line); }
  .v2 .contact-grid { grid-template-columns: 1fr; }
  .v2 .bfeature { grid-template-columns: 1fr; }
  .v2 .bfeature-media { min-height: 260px; }
  .v2 .process { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  .v2 .wrap { padding-inline: 20px; }
  .v2 .sec { padding-block: 64px; }
  .v2 .pgrid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  /* Mobile/tablet tiles: hide buttons, whole card is tappable.
     .pcard-foot .pcard-add raises specificity above the .btn class the
     Add link also carries, so display:none actually wins. */
  .v2 .pcard-quick, .v2 .pcard-foot .pcard-add { display: none; }
  /* Long CTA text (e.g. Trustpilot) must wrap on mobile instead of overflowing.
     .reviews-cta .btn outranks the base .btn { white-space: nowrap } rule. */
  .v2 .reviews-cta .btn { white-space: normal; text-align: center; line-height: 1.4; padding: 15px 22px; letter-spacing: .08em; max-width: 100%; }
  .v2 .blog-grid { grid-template-columns: 1fr; }
  .v2 .tgrid { grid-template-columns: 1fr; }
  .v2 .about-grid { grid-template-columns: 1fr; }
  .v2 .feat-grid { grid-template-columns: 1fr; }
  .v2 .process { grid-template-columns: repeat(2,1fr); }
  .v2 .frow { grid-template-columns: 1fr; }
  .v2 .commission { padding: 40px 24px; }
  .v2 .post-nav { grid-template-columns: 1fr; }
  .v2 .usp-strip { grid-template-columns: 1fr; }
  .v2 .usp { border-right: none; border-bottom: 1px solid var(--line); }
  .v2 .usp:last-child { border-bottom: none; }
  .v2 .cat-grid { grid-template-columns: repeat(2,1fr); }
  .v2 .news-form { flex-direction: column; } .v2 .news-form .field { flex: none; width: 100%; height: 54px; }
}

@media (max-width: 480px) {
  .v2 .pgrid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .v2 .pcard-body { padding: 14px 14px 16px; gap: 6px; }
  .v2 .pcard-name { font-size: 16px; }
  .v2 .pcard-foot { margin-top: 4px; padding-top: 12px; }
  .v2 .pcard-foot .price, .v2 .pcard-foot .price bdi, .v2 .pcard-foot .price .woocommerce-Price-amount { font-size: 19px; }
  .v2 .cat-grid { grid-template-columns: repeat(2,1fr); }
  .v2 .hero-cta { flex-direction: column; align-items: center; }
  .v2 .e404-btns { flex-direction: column; align-items: center; }
}

/* ============================================================
   DESIGN SYSTEM — CHROME (from design handoff base.css)
   ============================================================ */

.v2 .grain { position: fixed; inset: 0; z-index: 9000; pointer-events: none; opacity: .04; mix-blend-mode: overlay; background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width%3D'160' height%3D'160'%3E%3Cfilter id%3D'n'%3E%3CfeTurbulence type%3D'fractalNoise' baseFrequency%3D'0.8' numOctaves%3D'2' stitchTiles%3D'stitch'%2F%3E%3C%2Ffilter%3E%3Crect width%3D'100%25' height%3D'100%25' filter%3D'url(%23n)' opacity%3D'0.4'%2F%3E%3C%2Fsvg%3E"); }
.v2 .vignette { position: fixed; inset: 0; z-index: 8999; pointer-events: none; box-shadow: inset 0 0 200px 30px rgba(0,0,0,.55); }
.v2 .display { font-family: var(--font-display); font-weight: 400; color: var(--tx); line-height: .9; letter-spacing: .005em; text-transform: uppercase; margin: 0; }
.v2 .kicker { font-family: var(--font-script); font-size: 27px; font-weight: 400; letter-spacing: 0; color: var(--accent-2); display: inline-block; transform: rotate(-2.5deg); line-height: 1; }
.v2 .kicker.center { display: block; text-align: center; }
.v2 .btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--font-sans); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .18em; cursor: pointer; padding: 16px 30px; border-radius: var(--r-btn); border: 1px solid transparent; white-space: nowrap; transition: background .3s, color .3s, border-color .3s, transform .3s; text-decoration: none; }
.v2 .btn-primary { background: var(--accent); color: var(--bone); border-color: var(--accent); }
.v2 .btn-primary:hover { background: var(--accent-2); border-color: var(--accent-2); transform: translateY(-2px); }
.v2 .btn-ghost { background: transparent; color: var(--tx); border-color: var(--line-2); }
.v2 .btn-ghost:hover { border-color: var(--bone); background: rgba(236,230,220,.06); }
.v2 .btn-lg { padding: 19px 40px; font-size: 13px; }
.v2 .btn-block { width: 100%; }
.v2 .field { width: 100%; height: 54px; padding: 0 16px; background: rgba(236,230,220,.04); border: 1px solid var(--line-2); border-radius: var(--r-btn); color: var(--tx); font-family: var(--font-sans); font-size: 15px; outline: none; transition: border-color .2s, box-shadow .2s; }
.v2 textarea.field { height: auto; padding: 14px 16px; resize: vertical; }
.v2 select.field { height: 54px; }
.v2 .field:focus { border-color: var(--accent-2); box-shadow: 0 0 0 3px var(--accent-soft); }
.v2 .field::placeholder { color: var(--tx-3); }
.v2 .flabel { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--tx-2); margin-bottom: 9px; }
.v2 .fgroup { margin-bottom: 18px; }
.v2 .reveal { overflow: hidden; }
.v2 .reveal img { filter: grayscale(1) contrast(1.04); transition: filter .6s, transform .8s cubic-bezier(.2,.7,.2,1); display: block; width: 100%; height: 100%; object-fit: cover; }
.v2 .reveal:hover img { filter: none; transform: scale(1.05); }
.v2 .fu { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.v2 .fu.in { opacity: 1; transform: none; }
.v2 .announce { position: fixed; top: 0; left: 0; right: 0; z-index: 8001; height: var(--announce-h); display: flex; align-items: center; justify-content: center; background: var(--accent-deep); color: var(--tx-2); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; padding: 0 16px; border-bottom: 1px solid var(--line); white-space: nowrap; }
.v2 .announce b { color: var(--bone); font-weight: 700; }
.v2 #head { position: fixed; top: var(--announce-h); left: 0; right: 0; z-index: 8000; display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 24px 40px 18px; transition: background .35s, border-color .35s, padding .35s, gap .35s; border-bottom: 1px solid transparent; }
.v2 #head.solid { background: rgba(11,10,13,.92); backdrop-filter: blur(16px); border-color: var(--line); padding: 12px 40px; gap: 8px; }
.v2 .brand { display: flex; flex-direction: column; align-items: center; line-height: 1; transition: transform .35s; text-decoration: none; }
.v2 .brand-crest { width: 124px; height: auto; display: block; transition: width .35s; filter: drop-shadow(0 6px 24px rgba(139,92,246,.35)); }
.v2 #head.solid .brand-crest { width: 64px; }
.v2 .nav { display: flex; gap: 36px; }
.v2 .nav a { position: relative; font-family: var(--font-sans); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: var(--tx-2); padding: 4px 0; transition: color .2s; text-decoration: none; }
.v2 .nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -3px; height: 2px; background: var(--accent); transition: right .3s; }
.v2 .nav a:hover, .v2 .nav a.active { color: var(--bone); }
.v2 .nav a:hover::after, .v2 .nav a.active::after { right: 0; }
.v2 .head-right { position: absolute; top: 24px; right: 40px; display: flex; align-items: center; gap: 6px; transition: top .35s; }
.v2 #head.solid .head-right { top: 14px; }
.v2 .icon-btn { position: relative; background: transparent; border: none; color: var(--bone); cursor: pointer; padding: 9px; display: flex; border-radius: var(--r-btn); transition: background .2s; text-decoration: none; }
.v2 .icon-btn:hover { background: rgba(236,230,220,.08); }
.v2 .cart-count { position: absolute; top: 2px; right: 2px; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 999px; background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.v2 .burger { position: absolute; top: 24px; left: 28px; display: none; transition: top .35s; background: none; border: none; color: var(--bone); cursor: pointer; }
.v2 #head.solid .burger { top: 14px; }
.v2 #mobile-menu { position: fixed; inset: 0; z-index: 8500; background: var(--ink); display: none; flex-direction: column; padding: 90px 40px 40px; }
.v2 #mobile-menu.open { display: flex; }
.v2 #mobile-menu a { font-family: var(--font-display); font-size: 34px; font-weight: 400; color: var(--tx); padding: 16px 0; border-bottom: 1px solid var(--line); text-decoration: none; text-transform: uppercase; display: block; }
.v2 #mobile-menu a:hover { color: var(--accent-2); }
.v2 #mobile-menu .mm-close { position: absolute; top: 26px; right: 30px; background: none; border: none; color: var(--bone); font-size: 26px; cursor: pointer; }
.v2 .foot { border-top: 1px solid var(--line); background: var(--ink-2); padding: 80px 0 40px; }
.v2 .foot .wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 40px; }
.v2 .foot-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 48px; }
.v2 .foot-brand p { color: var(--tx-2); font-size: 14px; max-width: 290px; margin: 16px 0 0; line-height: 1.7; }
.v2 .foot-logo { align-items: flex-start; }
.v2 .foot-logo .brand-crest { width: 96px; filter: none; }
.v2 .foot-col h5 { color: var(--bone); font-size: 12px; text-transform: uppercase; letter-spacing: .16em; margin: 0 0 18px; font-weight: 700; }
.v2 .foot-col a { display: block; color: var(--tx-2); font-size: 14px; padding: 6px 0; transition: color .2s; text-decoration: none; }
.v2 .foot-col a:hover { color: var(--bone); }
.v2 .foot-social { display: flex; gap: 12px; margin-top: 20px; }
.v2 .foot-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; transition: border-color .2s, background .2s; }
.v2 .foot-social a:hover { border-color: var(--accent-2); background: var(--accent-soft); }
.v2 .foot-social img { width: 17px; height: 17px; filter: invert(1); opacity: .75; }
.v2 .foot-bottom { margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; color: var(--tx-3); font-size: 12.5px; flex-wrap: wrap; }
.v2 .page-hero { position: relative; padding: calc(var(--head-h) + 88px) 0 76px; text-align: center; overflow: hidden; border-bottom: 1px solid var(--line); }
.v2 .page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 140% at 50% -20%, var(--accent-deep) 0%, transparent 55%); opacity: .9; }
.v2 .page-hero .wrap { position: relative; z-index: 2; }
.v2 .crumb { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--tx-3); margin-bottom: 20px; }
.v2 .crumb a { color: var(--tx-3); text-decoration: none; }
.v2 .crumb a:hover { color: var(--accent-2); }
.v2 .crumb .sep { margin: 0 9px; opacity: .5; }
.v2 .page-hero h1 { font-size: clamp(44px,7vw,82px); margin: 0; font-weight: 400; }
.v2 .page-hero p { color: var(--tx-2); font-size: 16px; max-width: 580px; margin: 20px auto 0; line-height: 1.7; }
.v2 #drawer { position: fixed; inset: 0; z-index: 9400; display: none; justify-content: flex-end; background: rgba(6,5,6,.6); backdrop-filter: blur(4px); }
.v2 #drawer.open { display: flex; }
.v2 .drawer-panel { width: min(450px,100%); height: 100%; background: var(--ink-2); border-left: 1px solid var(--line-2); display: flex; flex-direction: column; animation: drawerIn .4s ease; }
@keyframes drawerIn { from { transform: translateX(100%); } }
.v2 .drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; border-bottom: 1px solid var(--line); }
.v2 .drawer-head h3 { font-family: var(--font-display); font-weight: 400; color: var(--bone); font-size: 26px; margin: 0; text-transform: uppercase; }
.v2 .drawer-head button { background: none; border: none; color: var(--tx-2); font-size: 18px; cursor: pointer; }
.v2 #drawer-body { flex: 1; overflow: auto; padding: 8px 28px; }
.v2 .line { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.v2 .line-img { width: 72px; height: 90px; border-radius: var(--r-btn); overflow: hidden; flex: none; border: 1px solid var(--line); }
.v2 .line-img img { width: 100%; height: 100%; object-fit: cover; }
.v2 .line-mid { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.v2 .line-name { color: var(--bone); font-family: var(--font-display); font-size: 17px; font-weight: 400; text-transform: uppercase; }
.v2 .line-end { text-align: right; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; }
.v2 .line-price { color: var(--bone); font-weight: 700; font-size: 17px; }
.v2 .line-rm { background: none; border: none; color: var(--tx-3); font-size: 12px; text-transform: uppercase; cursor: pointer; text-decoration: none; padding: 6px 2px; }
.v2 .line-rm:hover { color: var(--accent-2); }
/* Drawer quantity stepper — touch-friendly. */
.v2 .line .qty { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: var(--r-btn); width: fit-content; overflow: hidden; }
.v2 .line .qty .dq-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: none; background: none; color: var(--tx-2); font-size: 20px; line-height: 1; cursor: pointer; transition: background .2s, color .2s; }
.v2 .line .qty .dq-btn:hover { background: rgba(236,230,220,.07); color: var(--tx); }
.v2 .line .qty .dq-btn:disabled { opacity: .45; cursor: default; }
.v2 .line .qty .dq-n { min-width: 34px; text-align: center; color: var(--tx); font-weight: 600; font-size: 15px; }
.v2 .drawer-empty { text-align: center; padding: 90px 20px; }
.v2 .drawer-empty-mark { font-size: 46px; color: var(--accent-2); }
.v2 .drawer-empty p { color: var(--tx-2); margin: 16px 0 24px; }
.v2 #drawer-foot { padding: 24px 28px; border-top: 1px solid var(--line); }
.v2 .drawer-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; }
.v2 .drawer-total span { color: var(--tx-2); text-transform: uppercase; letter-spacing: .1em; font-size: 12px; }
.v2 .drawer-total b { color: var(--bone); font-size: 28px; font-weight: 600; }
.v2 .drawer-note { text-align: center; color: var(--tx-3); font-size: 11.5px; margin-top: 14px; }
.v2 #modal { position: fixed; inset: 0; z-index: 9500; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(6,5,6,.82); backdrop-filter: blur(8px); }
.v2 #modal.open { display: flex; }
.v2 .modal-panel { position: relative; width: min(960px,100%); max-height: 90vh; overflow: auto; display: grid; grid-template-columns: 1fr 1fr; background: var(--ink-2); border: 1px solid var(--line-2); border-radius: var(--r-lg); box-shadow: var(--shadow); animation: modalIn .4s ease; }
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.98); } }
.v2 .modal-close { position: absolute; top: 16px; right: 16px; z-index: 5; width: 40px; height: 40px; border-radius: 50%; background: rgba(6,5,6,.55); border: 1px solid var(--line-2); color: var(--bone); font-size: 15px; cursor: pointer; }
.v2 .modal-media { position: relative; min-height: 360px; background: var(--ink-3); }
.v2 .modal-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.v2 .modal-info { padding: 46px 42px; }
.v2 .modal-name { font-size: 46px; margin: 8px 0 0; font-weight: 400; line-height: .95; }
.v2 .modal-price { font-family: var(--font-display); font-weight: 400; color: var(--bone); font-size: 30px; margin: 16px 0 0; letter-spacing: .02em; }
.v2 .modal-price .woocommerce-Price-amount, .v2 .modal-price bdi { font-family: var(--font-display); font-weight: 400; color: var(--bone); }
.v2 .modal-blurb { color: var(--tx-2); font-size: 14.5px; line-height: 1.7; margin: 14px 0 0; }
.v2 .modal-list { list-style: none; padding: 0; margin: 20px 0 0; }
.v2 .modal-list li { color: var(--tx-2); font-size: 13.5px; padding: 7px 0 7px 24px; position: relative; }
.v2 .modal-list li::before { content: ""; position: absolute; left: 0; top: 14px; width: 10px; height: 1px; background: var(--accent-2); }
.v2 .modal-cta { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
/* Full-colour product imagery on the single product page and Quick View popup
   (overrides the greyscale .reveal treatment used on grid cards) */
.v2 .pdp .reveal img,
.v2 .pdp-main img,
.v2 .pdp-thumb img,
.v2 .modal-media img { filter: none !important; }
@media (max-width: 860px) {
  .v2 #modal { padding: 14px; align-items: flex-end; }
  .v2 .modal-panel { grid-template-columns: 1fr; max-height: 92vh; }
  .v2 .modal-media { min-height: 0; aspect-ratio: 4/3; }
  .v2 .modal-info { padding: 26px 22px 24px; }
  .v2 .modal-name { font-size: 30px; }
  .v2 .modal-price { font-size: 24px; margin-top: 12px; }
  .v2 .modal-cta { flex-direction: column; }
  .v2 .modal-cta .btn { width: 100%; }
  .v2 .modal-close { top: 10px; right: 10px; width: 36px; height: 36px; }
}
@media (max-width: 940px) { .v2 #head { padding: 20px 24px 16px; } .v2 .nav { gap: 26px; } .v2 .head-right { right: 22px; } .v2 .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 760px) { .v2 #head { padding: 14px 18px; gap: 10px; } .v2 .nav { display: none; } .v2 .burger { display: flex; left: 14px; top: 18px; } .v2 .head-right { right: 14px; top: 18px; } .v2 .brand-crest { width: 76px; } .v2 #head.solid .brand-crest { width: 56px; } }
/* Mobile header is far shorter than desktop — correct the offset variable so
   page-hero / pdp / post / 404 top padding matches the real header height. */
@media (max-width: 760px) { :root { --head-h: 150px; } .v2 .page-hero { padding: calc(var(--head-h) + 40px) 0 52px; } .v2 .hero { padding-top: calc(var(--head-h) + 20px); } }

/* ============================================================
   PAGE LAYOUTS — from design handoff pages.css
   ============================================================ */

.v2 .sec { padding-block: 110px; }
.v2 .sec-head { max-width: 660px; margin-bottom: 56px; }
.v2 .sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.v2 .sec-head h2 { font-size: clamp(38px, 5.5vw, 64px); margin: 18px 0 0; font-weight: 500; }
.v2 .sec-head p { font-size: 16px; color: var(--tx-2); margin: 18px 0 0; line-height: 1.7; }
.v2 .band-bone { background: var(--bone); color: var(--ink); }
.v2 .band-bone .display, .v2 .band-bone h2, .v2 .band-bone h3, .v2 .band-bone h4 { color: var(--ink); }
.v2 .band-bone .sec-head p, .v2 .band-bone p { color: #54493c; }
.v2 .band-bone .kicker { color: var(--accent); }
.v2 .band-bone .step { background: transparent; border-color: #c9b89a; }
.v2 .band-bone .step-n { color: var(--accent); }
.v2 .band-bone .process { border-color: #c9b89a; }
.v2 .feat-grid { display: grid; grid-template-columns: 1.35fr 1fr; grid-auto-rows: auto; gap: 24px; }
.v2 .feat { position: relative; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: border-color .35s, transform .35s; background: var(--ink-3); }
.v2 .feat:hover { border-color: var(--line-2); transform: translateY(-4px); }
.v2 .feat-tall { grid-row: span 2; }
.v2 .feat-media { position: relative; flex: 1; min-height: 240px; }
.v2 .feat-body { padding: 26px 28px; display: flex; flex-direction: column; gap: 16px; }
.v2 .feat-name { font-family: var(--font-display); font-weight: 400; color: var(--bone); font-size: 30px; margin: 6px 0 0; text-transform: uppercase; letter-spacing: .015em; line-height: 1; }
.v2 .feat-tall .feat-name { font-size: 46px; }
.v2 .feat-foot { display: flex; align-items: center; justify-content: space-between; }
.v2 .feat-link { background: none; border: none; color: var(--tx); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; cursor: pointer; text-decoration: none; }
.v2 .feat-link:hover { color: var(--accent-2); }
.v2 .process { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.v2 .step { padding: 34px 24px; border-right: 1px solid var(--line); }
.v2 .step:last-child { border-right: none; }
.v2 .step-n { font-family: var(--font-serif); font-size: 42px; color: var(--accent-2); line-height: 1; font-weight: 500; }
.v2 .step h4 { font-family: var(--font-serif); font-weight: 500; font-size: 21px; margin: 16px 0 10px; }
.v2 .step p { font-size: 13.5px; margin: 0; line-height: 1.6; }
.v2 .commission { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-2); background: linear-gradient(115deg, var(--accent-deep), var(--ink-2) 62%); padding: 60px 56px; }
.v2 .commission::after { content: ""; position: absolute; right: -90px; top: -90px; width: 360px; height: 360px; background: radial-gradient(circle, var(--accent-soft), transparent 65%); filter: blur(10px); pointer-events: none; }
.v2 .commission:has(.commission-copy) { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.v2 .commission-copy { position: relative; z-index: 2; max-width: 520px; }
.v2 .commission-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; text-align: center; }
.v2 .commission h2 { font-size: clamp(32px, 4vw, 48px); margin: 16px 0 0; font-weight: 400; }
.v2 .commission p { font-size: 16px; color: var(--tx-2); margin: 16px 0 28px; line-height: 1.7; }
.v2 .commission-copy p { margin-bottom: 0; }
.v2 .quote-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.v2 .quote-grid .full { grid-column: 1 / -1; }
.v2 .tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.v2 .tcard { border: 1px solid var(--line); border-radius: var(--r); padding: 34px 30px; }
.v2 .tcard .tq { color: var(--tx-2); font-size: 15px; line-height: 1.65; font-family: var(--font-sans); font-weight: 400; margin: 14px 0 0; }
.v2 .tcard .ttitle { color: var(--bone); font-family: var(--font-display); font-weight: 400; font-size: 19px; letter-spacing: .02em; margin: 14px 0 0; }
.v2 .tcard .tby { margin-top: 26px; display: flex; align-items: center; gap: 13px; }
.v2 .tcard .tav { width: 42px; height: 42px; border-radius: 50%; background: var(--accent-deep); border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; color: var(--bone); font-weight: 700; font-size: 13px; }
.v2 .tcard .tby b { color: var(--bone); font-size: 14px; display: block; }
.v2 .tcard .tby span { color: var(--tx-3); font-size: 12px; }
.v2 .news-band { text-align: center; }
.v2 .news-form { display: flex; gap: 12px; max-width: 500px; margin: 30px auto 0; }
.v2 .news-form .field { flex: 1; }
.v2 .news-done { color: var(--accent-2); font-size: 17px; font-weight: 600; max-width: 500px; margin: 30px auto 0; }
.v2 .news-fine { font-size: 12px; color: var(--tx-3); margin-top: 18px; letter-spacing: .04em; }
.v2 .usp-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding-top: 64px; padding-bottom: 64px; border-bottom: 1px solid var(--line); }
.v2 .usp { display: flex; align-items: center; gap: 16px; }
.v2 .usp-ic { flex: none; width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; color: var(--accent-2); }
.v2 .usp b { display: block; color: var(--bone); font-size: 15px; font-weight: 700; letter-spacing: .01em; }
.v2 .usp > div span { display: block; color: var(--tx-3); font-size: 12.5px; margin-top: 3px; }
.v2 .cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.v2 .cat-tile { position: relative; display: block; text-decoration: none; }
.v2 .cat-media { position: relative; aspect-ratio: 3/4; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.v2 .cat-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(11,10,13,.85)); z-index: 2; }
.v2 .cat-label { position: absolute; left: 0; right: 0; bottom: 18px; z-index: 3; text-align: center; font-family: var(--font-display); font-size: 18px; text-transform: uppercase; letter-spacing: .04em; color: var(--bone); transition: color .3s; }
.v2 .cat-tile:hover .cat-label { color: var(--accent-2); }
.v2 .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.v2 .bcard { display: flex; flex-direction: column; text-decoration: none; background: none; overflow: visible; }
.v2 .bcard-media { position: relative; aspect-ratio: 3/2; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: block; }
.v2 .bcard-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.v2 .bcard-body { padding: 18px 0 0; }
.v2 .bcard-tag { font-size: 10.5px; text-transform: uppercase; letter-spacing: .18em; color: var(--accent-2); font-weight: 700; }
.v2 .bcard h3 { font-family: var(--font-serif); font-weight: 500; color: var(--bone); font-size: 25px; margin: 12px 0; line-height: 1.15; }
.v2 .bcard:hover h3 { color: var(--accent-2); }
.v2 .bcard p { color: var(--tx-2); font-size: 14px; line-height: 1.6; margin: 0; }
.v2 .bcard .bmeta { color: var(--tx-3); font-size: 12px; margin-top: 18px; text-transform: uppercase; letter-spacing: .08em; display: block; }
.v2 .bfeature { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 48px; text-decoration: none; }
.v2 .bfeature-media { position: relative; min-height: 360px; overflow: hidden; }
.v2 .bfeature-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.v2 .bfeature-body { padding: 50px 46px; display: flex; flex-direction: column; justify-content: center; }
.v2 .bfeature-body h2 { font-size: clamp(28px, 3.5vw, 46px); margin: 14px 0 16px; font-weight: 500; color: var(--bone); }
.v2 .bfeature:hover h2 { color: var(--accent-2); }
.v2 .bfeature-body p { color: var(--tx-2); font-size: 15px; line-height: 1.7; margin: 0 0 16px; }
.v2 .bfeature-body .bmeta { color: var(--tx-3); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.v2 .acct-layout { display: grid; grid-template-columns: 250px 1fr; gap: 36px; align-items: start; padding-top: 60px; }
.v2 .acct-nav { border: 1px solid var(--line); border-radius: var(--r); padding: 12px; position: sticky; top: calc(var(--head-h) + 24px); }
.v2 .acct-nav a { display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-radius: var(--r-btn); color: var(--tx-2); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; cursor: pointer; text-decoration: none; transition: background .2s, color .2s; }
.v2 .acct-nav a.on, .v2 .acct-nav a:hover { background: var(--accent-soft); color: var(--bone); }
.v2 .acct-panel { border: 1px solid var(--line); border-radius: var(--r); padding: 36px; }
.v2 .acct-panel h2 { font-family: var(--font-display); font-weight: 400; color: var(--bone); font-size: 32px; text-transform: uppercase; margin: 0 0 20px; }
.v2 .acct-panel h3 { font-family: var(--font-serif); font-weight: 500; color: var(--bone); font-size: 28px; margin: 0 0 8px; }
.v2 .acct-panel p { color: var(--tx-2); font-size: 15px; line-height: 1.7; }
.v2 .acct-panel a { color: var(--accent-2); }
.v2 .acct-panel .woocommerce-MyAccount-content table { width: 100%; border-collapse: collapse; }
.v2 .acct-panel .woocommerce-MyAccount-content table th { text-align: left; padding: 10px 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--tx-3); border-bottom: 1px solid var(--line); }
.v2 .acct-panel .woocommerce-MyAccount-content table td { padding: 16px 12px; border-bottom: 1px solid var(--line); vertical-align: middle; color: var(--tx-2); font-size: 14px; }
.v2 .acct-panel .woocommerce-MyAccount-content .woocommerce-button, .v2 .acct-panel .woocommerce-MyAccount-content .button { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-sans); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .15em; padding: 10px 20px; border-radius: var(--r-btn); border: 1px solid var(--line-2); background: transparent; color: var(--tx); text-decoration: none; transition: background .2s, border-color .2s; }
.v2 .acct-panel .woocommerce-MyAccount-content .woocommerce-button:hover, .v2 .acct-panel .woocommerce-MyAccount-content .button:hover { border-color: var(--bone); background: rgba(236,230,220,.08); }
.v2 .acct-panel .woocommerce-MyAccount-content form .form-row { margin-bottom: 16px; }
.v2 .acct-panel .woocommerce-MyAccount-content form label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--tx-2); margin-bottom: 8px; }
.v2 .acct-panel .woocommerce-MyAccount-content form input[type="text"],
.v2 .acct-panel .woocommerce-MyAccount-content form input[type="email"],
.v2 .acct-panel .woocommerce-MyAccount-content form input[type="password"],
.v2 .acct-panel .woocommerce-MyAccount-content form input[type="tel"],
.v2 .acct-panel .woocommerce-MyAccount-content form select,
.v2 .acct-panel .woocommerce-MyAccount-content form textarea { width: 100%; padding: 14px 16px; background: rgba(236,230,220,.04); border: 1px solid var(--line-2); border-radius: var(--r-btn); color: var(--tx); font-family: var(--font-sans); font-size: 15px; outline: none; transition: border-color .2s, box-shadow .2s; box-sizing: border-box; }
.v2 .acct-panel .woocommerce-MyAccount-content form input:focus,
.v2 .acct-panel .woocommerce-MyAccount-content form select:focus,
.v2 .acct-panel .woocommerce-MyAccount-content form textarea:focus { border-color: var(--accent-2); box-shadow: 0 0 0 3px var(--accent-soft); }
.v2 .acct-panel .woocommerce-MyAccount-content form .woocommerce-Button, .v2 .acct-panel .woocommerce-MyAccount-content form button[type="submit"] { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-sans); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .18em; cursor: pointer; padding: 16px 30px; border-radius: var(--r-btn); border: 1px solid transparent; background: var(--accent); color: var(--bone); transition: background .3s; margin-top: 8px; }
.v2 .acct-panel .woocommerce-MyAccount-content form .woocommerce-Button:hover, .v2 .acct-panel .woocommerce-MyAccount-content form button[type="submit"]:hover { background: var(--accent-2); }
.v2 .acct-panel .woocommerce-notices-wrapper .woocommerce-message, .v2 .acct-panel .woocommerce-notices-wrapper .woocommerce-error { border-radius: var(--r-btn); padding: 14px 18px; margin-bottom: 20px; font-size: 14px; }
.v2 .acct-panel .woocommerce-notices-wrapper .woocommerce-message { background: var(--accent-soft); border: 1px solid var(--accent); color: var(--bone); }
.v2 .acct-panel .woocommerce-notices-wrapper .woocommerce-error { background: rgba(220,38,38,.1); border: 1px solid rgba(220,38,38,.4); color: #fca5a5; }
/* My Account — saved addresses (billing / shipping) */
.v2 .acct-panel .woocommerce-Addresses { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 8px; }
.v2 .acct-panel .woocommerce-Address { border: 1px solid var(--line); border-radius: var(--r); padding: 26px 28px; margin: 0; float: none; width: auto; }
.v2 .acct-panel .woocommerce-Address-title { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 0 0 16px; }
.v2 .acct-panel .woocommerce-Address-title h3 { margin: 0; font-size: 20px; }
.v2 .acct-panel .woocommerce-Address-title .edit { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent-2); white-space: nowrap; }
.v2 .acct-panel .woocommerce-Address-title .edit:hover { color: var(--bone); }
.v2 .acct-panel .woocommerce-Address address { font-style: normal; color: var(--tx-2); font-size: 15px; line-height: 1.9; margin: 0; }
/* Order confirmation / view-order — customer billing & shipping addresses */
.v2 .woocommerce-customer-details .woocommerce-columns--addresses { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 28px 0 0; }
.v2 .woocommerce-customer-details .woocommerce-column { border: 1px solid var(--line); border-radius: var(--r); padding: 24px 26px; margin: 0; }
.v2 .woocommerce-customer-details .woocommerce-column__title { font-size: 18px; margin: 0 0 14px; }
.v2 .woocommerce-customer-details address { font-style: normal; color: var(--tx-2); font-size: 15px; line-height: 1.9; margin: 0; border: none; padding: 0; }
.v2 .woocommerce-customer-details .woocommerce-customer-details--phone,
.v2 .woocommerce-customer-details .woocommerce-customer-details--email { color: var(--tx-2); font-size: 14px; margin: 8px 0 0; }
@media (max-width: 680px) {
  .v2 .woocommerce-customer-details .woocommerce-columns--addresses { grid-template-columns: 1fr; }
}
/* My Account — Account Details password fieldset */
.v2 .acct-panel fieldset { border: 1px solid var(--line); border-radius: var(--r); padding: 22px 26px 8px; margin: 26px 0 22px; min-inline-size: auto; }
.v2 .acct-panel fieldset legend { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; letter-spacing: .015em; color: var(--bone); font-size: 18px; padding: 0 10px; margin-left: -4px; }
/* My Account — orders table collapses to cards on mobile */
@media (max-width: 600px) {
  .v2 .acct-panel .shop_table_responsive thead { display: none; }
  .v2 .acct-panel .shop_table_responsive tbody tr { display: block; border: 1px solid var(--line); border-radius: var(--r); padding: 6px 18px 10px; margin-bottom: 14px; }
  .v2 .acct-panel .shop_table_responsive tbody td { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: auto !important; padding: 11px 0; border-bottom: 1px solid var(--line); text-align: right; }
  .v2 .acct-panel .shop_table_responsive tbody td:last-child { border-bottom: none; }
  .v2 .acct-panel .shop_table_responsive tbody td::before { content: attr(data-title); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--tx-3); text-align: left; white-space: nowrap; }
  .v2 .acct-panel .shop_table_responsive tbody td.woocommerce-orders-table__cell-order-actions { flex-wrap: wrap; justify-content: flex-end; }
  .v2 .acct-panel .shop_table_responsive tbody td.woocommerce-orders-table__cell-order-actions::before { display: none; }
  .v2 .acct-panel .shop_table_responsive tbody td.woocommerce-orders-table__cell-order-actions .button { margin: 2px 0 0 8px; }
}
.v2 .acct-panel .woocommerce-MyAccount-content > p:first-child { margin-top: 0; }
@media (max-width: 980px) {
  .v2 .acct-panel .woocommerce-Addresses { grid-template-columns: 1fr; }
}
.v2 .acct-lede { color: var(--tx-2); font-size: 16px; margin: 0 0 28px; line-height: 1.6; }
.v2 .acct-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0 0 36px; }
.v2 .acct-card { border: 1px solid var(--line); border-radius: var(--r); padding: 22px 20px; }
.v2 .acct-card b { display: block; font-family: var(--font-display); font-weight: 400; color: var(--bone); font-size: 30px; line-height: 1; }
.v2 .acct-card span { display: block; color: var(--tx-3); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; margin-top: 8px; }
.v2 .order-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.v2 .order-row:last-child { border: none; }
.v2 .order-row .oid { color: var(--bone); font-weight: 600; }
.v2 .order-row .ostatus { font-size: 11px; padding: 5px 13px; border-radius: 999px; text-transform: uppercase; letter-spacing: .08em; background: var(--accent-soft); color: var(--accent-2); border: 1px solid var(--accent); }
.v2 .addr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 8px; }
.v2 .addr-card { border: 1px solid var(--line); border-radius: var(--r); padding: 24px 26px; }
.v2 .addr-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.v2 .addr-head h4 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; letter-spacing: .015em; color: var(--bone); font-size: 18px; margin: 0; }
.v2 .addr-card p { color: var(--tx-2); font-size: 15px; line-height: 1.7; margin: 0; }
.v2 .acct-login { display: flex; justify-content: center; padding: 20px 0 40px; }
.v2 .login-card { width: min(440px, 100%); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 44px 40px; text-align: center; background: var(--ink-2); }
.v2 .login-mark { font-size: 44px; color: var(--accent-2); }
.v2 .login-card h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; letter-spacing: .015em; color: var(--bone); font-size: 26px; margin: 14px 0 8px; }
.v2 .login-card > p { color: var(--tx-2); font-size: 15px; margin: 0 0 26px; }
.v2 .empty-state { text-align: center; padding: 80px 20px; }
.v2 .empty-state .mark { font-size: 54px; color: var(--accent-2); }
.v2 .empty-state p { color: var(--tx-2); font-size: 16px; margin: 18px 0 26px; }
.v2 .e404 { text-align: center; padding: calc(var(--head-h) + 100px) 20px 110px; }
.v2 .e404 .big { font-family: var(--font-serif); font-weight: 600; font-size: clamp(110px, 22vw, 260px); color: var(--accent); line-height: .9; }
.v2 .e404 h1 { font-size: clamp(30px, 4vw, 46px); margin: 0 0 16px; font-weight: 500; }
.v2 .e404 p { color: var(--tx-2); font-size: 16px; max-width: 460px; margin: 0 auto 30px; }
.v2 .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.v2 .about-stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.v2 .about-stats .as { padding: 30px 24px; border-right: 1px solid var(--line); }
.v2 .about-stats .as:last-child { border-right: none; }
.v2 .about-stats .as b { display: block; font-family: var(--font-display); font-weight: 400; color: var(--bone); font-size: 34px; line-height: 1; letter-spacing: .02em; }
.v2 .about-stats .as span { display: block; color: var(--tx-3); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; margin-top: 10px; }
.v2 .info-card { border: 1px solid var(--line); border-radius: var(--r); padding: 36px; }
.v2 .info-card h3 { font-family: var(--font-serif); font-weight: 500; color: var(--bone); font-size: 26px; margin: 0 0 12px; }
.v2 .info-card p { color: var(--tx-2); font-size: 16px; line-height: 1.7; margin: 0; }
.v2 .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.v2 .post { max-width: 780px; margin: 0 auto; padding-top: calc(var(--head-h) + 48px); }
.v2 .post-hero { position: relative; aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); margin: 26px 0 44px; }
.v2 .post-hero img { width: 100%; height: 100%; object-fit: cover; }
.v2 .post h1 { font-size: clamp(38px, 5.5vw, 62px); font-weight: 500; }
.v2 .post-body p, .v2 .post-body li { color: var(--tx-2); font-size: 16px; line-height: 1.9; margin: 0 0 24px; }
.v2 .post-body h2 { font-family: var(--font-serif); font-weight: 500; color: var(--bone); font-size: 34px; margin: 46px 0 18px; }
.v2 .post-body blockquote { border-left: 3px solid var(--accent); padding-left: 26px; margin: 34px 0; font-family: var(--font-script); font-size: 28px; color: var(--accent-2); line-height: 1.3; }
.v2 .post-body .image-placeholder { border: 2px dashed var(--line-2); border-radius: var(--r); padding: 30px 26px; text-align: center; color: var(--tx-3); font-size: 14px; font-style: italic; line-height: 1.6; margin: 0 0 26px; background: rgba(236,230,220,.02); }
.v2 .post-body .image-placeholder strong { color: var(--accent-2); font-style: normal; letter-spacing: .08em; text-transform: uppercase; font-size: 11px; display: block; margin-bottom: 6px; }
.v2 .post-body ul, .v2 .post-body ol { color: var(--tx-2); font-size: 16px; line-height: 1.9; margin: 0 0 24px; padding-left: 22px; }
.v2 .post-body h3 { font-family: var(--font-serif); font-weight: 500; color: var(--bone); font-size: 24px; margin: 34px 0 14px; }
.v2 .post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 56px 0 0; padding-top: 36px; border-top: 1px solid var(--line); }
.v2 .pn-link { display: flex; flex-direction: column; gap: 6px; padding: 20px 22px; border: 1px solid var(--line); border-radius: var(--r); transition: border-color .3s, background .3s; text-decoration: none; }
.v2 a.pn-link:hover { border-color: var(--accent); background: var(--accent-soft); }
.v2 .pn-link.next { text-align: right; align-items: flex-end; }
.v2 .pn-link.disabled { border-color: transparent; pointer-events: none; }
.v2 .pn-dir { font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--accent-2); font-weight: 700; }
.v2 .pn-title { font-family: var(--font-serif); font-weight: 400; text-transform: uppercase; letter-spacing: .015em; color: var(--bone); font-size: 18px; line-height: 1.1; }
@media (max-width: 980px) { .v2 .cart-layout, .v2 .checkout-layout, .v2 .acct-layout { grid-template-columns: 1fr; } .v2 .acct-nav { position: static; display: flex; flex-wrap: wrap; gap: 4px; } .v2 .acct-cards { grid-template-columns: 1fr; } .v2 .addr-grid { grid-template-columns: 1fr; } .v2 .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 940px) { .v2 .sec { padding-block: 72px; } .v2 .feat-grid { grid-template-columns: 1fr; } .v2 .feat-tall { grid-row: auto; } .v2 .process { grid-template-columns: repeat(2, 1fr); } .v2 .step { border-right: none; border-bottom: 1px solid var(--line); } .v2 .tgrid { grid-template-columns: 1fr; } .v2 .commission { padding: 40px 28px; } .v2 .commission:has(.commission-copy) { grid-template-columns: 1fr; gap: 28px; } .v2 .quote-grid { grid-template-columns: 1fr; } .v2 .bfeature { grid-template-columns: 1fr; } .v2 .contact-grid, .v2 .about-grid { grid-template-columns: 1fr; } .v2 .usp-strip { grid-template-columns: 1fr 1fr; gap: 24px; } .v2 .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .v2 .blog-grid { grid-template-columns: 1fr; } .v2 .news-form { flex-direction: column; } .v2 .news-form .field { flex: none; width: 100%; height: 54px; } .v2 .usp-strip { grid-template-columns: 1fr; gap: 18px; } .v2 .cat-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   COMMENTS — from design handoff pages.css
   ============================================================ */
.v2 .comments { margin: 64px 0 0; padding-top: 40px; border-top: 1px solid var(--line); }
.v2 .comments > h2 { display: flex; align-items: center; gap: 12px; margin: 0 0 28px; font-family: var(--font-display); font-weight: 400; color: var(--bone); text-transform: uppercase; }
.v2 .cmt-count { font-family: var(--font-sans); font-size: 14px; font-weight: 700; color: var(--accent-2); background: var(--accent-soft); border: 1px solid var(--accent); border-radius: 999px; padding: 2px 12px; }
.v2 .cmt-list { display: flex; flex-direction: column; gap: 22px; margin: 0 0 40px; }
.v2 .cmt-empty { color: var(--tx-3); font-size: 15px; padding: 24px 0; }
.v2 .cmt { display: flex; gap: 16px; }
.v2 .cmt-av { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--accent-deep); border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; color: var(--accent-2); font-weight: 700; font-size: 14px; }
.v2 .cmt-main { flex: 1; }
.v2 .cmt-head { display: flex; align-items: baseline; gap: 10px; }
.v2 .cmt-head b { color: var(--bone); font-size: 15px; }
.v2 .cmt-head span { color: var(--tx-3); font-size: 12px; }
.v2 .cmt-main p { color: var(--tx-2); font-size: 15px; line-height: 1.6; margin: 6px 0 0; }
.v2 .cmt-form { display: flex; flex-direction: column; gap: 14px; padding: 26px; border: 1px solid var(--line); border-radius: var(--r); }
.v2 .cmt-form .btn { align-self: flex-start; }
.v2 .cmt-form .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .v2 .cmt-form .frow { grid-template-columns: 1fr; } }

/* ============================================================
   WOOCOMMERCE CLASSIC CHECKOUT FIELDS — skin to .field / .flabel
   ============================================================ */

.v2 .woocommerce-checkout .form-row label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--tx-2); margin-bottom: 9px; }
.v2 .woocommerce-checkout .form-row label .required { color: var(--accent-2); }
.v2 .woocommerce-checkout .form-row input[type="text"],
.v2 .woocommerce-checkout .form-row input[type="email"],
.v2 .woocommerce-checkout .form-row input[type="tel"],
.v2 .woocommerce-checkout .form-row input[type="password"],
.v2 .woocommerce-checkout .form-row select,
.v2 .woocommerce-checkout .form-row textarea {
  width: 100%; height: 54px; padding: 0 16px;
  background: rgba(236,230,220,.04); border: 1px solid var(--line-2);
  border-radius: var(--r-btn); color: var(--tx); font-family: var(--font-sans);
  font-size: 15px; outline: none; transition: border-color .2s, box-shadow .2s; box-sizing: border-box;
}
.v2 .woocommerce-checkout .form-row textarea { height: auto; padding: 14px 16px; }
.v2 .woocommerce-checkout .form-row input:focus,
.v2 .woocommerce-checkout .form-row select:focus,
.v2 .woocommerce-checkout .form-row textarea:focus { border-color: var(--accent-2); box-shadow: 0 0 0 3px var(--accent-soft); }
.v2 .woocommerce-checkout .form-row input::placeholder { color: var(--tx-3); }
.v2 .woocommerce-checkout .col2-set { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .v2 .woocommerce-checkout .col2-set { grid-template-columns: 1fr; } }
/* Hide WooCommerce's auto "Billing details" heading — our blocks supply headings */
.v2 .checkout-form .woocommerce-billing-fields > h3,
.v2 .checkout-form .woocommerce-shipping-fields > h3:first-child:not(#ship-to-different-address) { display: none; }
/* select2 country/state dropdowns — skin to match .field (WC select2 CSS is disabled site-wide) */
.v2 .select2-container { width: 100% !important; }
.v2 .select2-container--default .select2-selection--single { height: 54px; background: rgba(236,230,220,.04); border: 1px solid var(--line-2); border-radius: var(--r-btn); display: flex; align-items: center; outline: none; }
.v2 .select2-container--default .select2-selection--single .select2-selection__rendered { color: var(--tx); line-height: 52px; padding: 0 16px; font-size: 15px; }
.v2 .select2-container--default .select2-selection--single .select2-selection__placeholder { color: var(--tx-3); }
.v2 .select2-container--default .select2-selection--single .select2-selection__arrow { height: 52px; right: 12px; }
.v2 .select2-container--default .select2-selection--single .select2-selection__arrow b { border-color: var(--tx-3) transparent transparent transparent; }
.v2 .select2-container--open .select2-selection--single .select2-selection__arrow b { border-color: transparent transparent var(--tx-3) transparent; }
.v2 .select2-container--default.select2-container--focus .select2-selection--single,
.v2 .select2-container--default.select2-container--open .select2-selection--single { border-color: var(--accent-2); box-shadow: 0 0 0 3px var(--accent-soft); }
.v2 .select2-dropdown { background: var(--ink-2); border: 1px solid var(--line-2); border-radius: var(--r-btn); color: var(--tx); overflow: hidden; }
.v2 .select2-container--default .select2-results__option { color: var(--tx-2); font-size: 14px; padding: 10px 14px; }
.v2 .select2-container--default .select2-results__option--highlighted[aria-selected] { background: var(--accent); color: var(--bone); }
.v2 .select2-container--default .select2-results__option[aria-selected=true] { background: var(--accent-soft); color: var(--tx); }
.v2 .select2-container--default .select2-search--dropdown { padding: 8px; }
.v2 .select2-container--default .select2-search--dropdown .select2-search__field { background: rgba(236,230,220,.04); border: 1px solid var(--line-2); border-radius: var(--r-btn); color: var(--tx); padding: 8px 12px; outline: none; }

/* Payment section — gateway radios + expanded card panel */
.v2 #payment { background: none; border-radius: 0; }
.v2 #payment > .payment_methods { list-style: none; padding: 0; margin: 0 0 20px; }
/* top-level gateway option: block so the expanded box drops BELOW the label */
.v2 #payment > .payment_methods > li { display: block; padding: 16px 18px; border: 1px solid var(--line-2); border-radius: var(--r-btn); margin-bottom: 10px; cursor: pointer; transition: border-color .2s, background .2s; }
.v2 #payment > .payment_methods > li:has(> input:checked) { border-color: var(--accent-2); background: var(--accent-soft); }
.v2 #payment > .payment_methods > li > input[type="radio"] { accent-color: var(--accent); margin-right: 10px; vertical-align: middle; }
.v2 #payment > .payment_methods > li > label { display: inline-flex; align-items: center; gap: 10px; color: var(--tx); font-size: 14px; font-weight: 600; cursor: pointer; margin: 0; text-transform: none; letter-spacing: normal; }
.v2 #payment > .payment_methods > li > label img { height: 22px; width: auto; }
/* expanded payment box (WooPayments card form, PayPal note) — full width, below label */
.v2 #payment .payment_box { display: block; width: 100%; margin: 16px 0 0; padding: 16px; background: rgba(236,230,220,.03); border: 1px solid var(--line); border-radius: var(--r-btn); color: var(--tx-2); font-size: 13.5px; line-height: 1.6; }
.v2 #payment .payment_box::before { display: none; }
.v2 #payment .payment_box p { margin: 0 0 12px; }
.v2 #payment .payment_box a { color: var(--accent-2); text-decoration: underline; }
.v2 #payment .payment_box fieldset { border: none; padding: 0; margin: 0; min-inline-size: auto; }
.v2 #payment .testmode-info { font-size: 12.5px; color: var(--tx-3); }
.v2 #payment .testmode-info .js-woopayments-copy-test-number { background: none; border: none; color: var(--tx); font-weight: 700; cursor: pointer; padding: 0; }
/* Stripe/WooPayments card element mount point */
.v2 #payment .wcpay-upe-element, .v2 #payment .wc-payment-form .wcpay-upe-element { background: rgba(236,230,220,.05); border: 1px solid var(--line-2); border-radius: var(--r-btn); padding: 14px 16px; margin: 4px 0 14px; min-height: 44px; }
/* saved cards list */
.v2 #payment .woocommerce-SavedPaymentMethods { list-style: none; padding: 0; margin: 0 0 12px; }
.v2 #payment .woocommerce-SavedPaymentMethods li { display: flex; align-items: center; gap: 10px; padding: 13px 15px; border: 1px solid var(--line-2); border-radius: var(--r-btn); margin-bottom: 8px; color: var(--tx); font-size: 14px; cursor: pointer; }
.v2 #payment .woocommerce-SavedPaymentMethods li:has(input:checked) { border-color: var(--accent-2); background: var(--accent-soft); }
.v2 #payment .woocommerce-SavedPaymentMethods li input[type="radio"] { accent-color: var(--accent); }
.v2 #payment .woocommerce-SavedPaymentMethods li label { margin: 0; text-transform: none; letter-spacing: normal; font-weight: 500; color: var(--tx); font-size: 14px; }
.v2 #payment .woocommerce-SavedPaymentMethods-saveNew { display: flex; align-items: center; gap: 10px; margin: 4px 0 0; }
.v2 #payment .woocommerce-SavedPaymentMethods-saveNew label { display: inline; margin: 0; text-transform: none; letter-spacing: normal; font-weight: 400; font-size: 13px; color: var(--tx-2); }
.v2 #payment .place-order { padding: 0; }
.v2 #payment .woocommerce-privacy-policy-text p { font-size: 12.5px; color: var(--tx-3); line-height: 1.6; margin: 8px 0 16px; }
.v2 #payment .woocommerce-privacy-policy-text a { color: var(--accent-2); }
.v2 #payment #place_order {
  display: flex; align-items: center; justify-content: center; width: 100%;
  font-family: var(--font-sans); font-weight: 700; font-size: 12px; text-transform: uppercase;
  letter-spacing: .18em; cursor: pointer; padding: 19px 40px; border-radius: var(--r-btn);
  border: 1px solid transparent; background: var(--accent); color: var(--bone);
  transition: background .3s; margin-top: 12px;
}
.v2 #payment #place_order:hover { background: var(--accent-2); }

/* WC checkout notices */
.v2 .woocommerce-error, .v2 .woocommerce-message, .v2 .woocommerce-info { list-style: none; padding: 14px 18px; border-radius: var(--r-btn); margin-bottom: 20px; font-size: 14px; }
.v2 .woocommerce-error { background: rgba(220,38,38,.1); border: 1px solid rgba(220,38,38,.4); color: #fca5a5; }
.v2 .woocommerce-message { background: var(--accent-soft); border: 1px solid var(--accent); color: var(--bone); }
.v2 .woocommerce-info { background: var(--accent-soft); border: 1px solid var(--accent); color: var(--bone); }

/* ============================================================
   WOOCOMMERCE BLOCK CHECKOUT — skin to match design
   ============================================================ */
.v2 .wp-block-woocommerce-checkout,
.v2 .wc-block-checkout { color: var(--tx-2); }

/* Layout: two-column like design's .checkout-layout */
.v2 .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-fields-block { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
@media (max-width: 860px) { .v2 .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-fields-block { grid-template-columns: 1fr; } }

/* Section headings */
.v2 .wc-block-components-title,
.v2 .wp-block-woocommerce-checkout h2,
.v2 .wp-block-woocommerce-checkout h3,
.v2 .wc-block-checkout__sidebar h2,
.v2 .wc-block-checkout__sidebar h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 18px;
  margin: 0 0 18px;
}

/* Step/section wrappers */
.v2 .wc-block-components-checkout-step,
.v2 .wp-block-woocommerce-checkout-contact-information-block,
.v2 .wp-block-woocommerce-checkout-shipping-address-block,
.v2 .wp-block-woocommerce-checkout-billing-address-block,
.v2 .wp-block-woocommerce-checkout-shipping-methods-block,
.v2 .wp-block-woocommerce-checkout-payment-block {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 30px;
  margin-bottom: 20px;
  background: var(--ink-2);
}

/* Fields */
.v2 .wc-block-components-text-input input,
.v2 .wc-block-components-select select,
.v2 .wp-block-woocommerce-checkout input[type="text"],
.v2 .wp-block-woocommerce-checkout input[type="email"],
.v2 .wp-block-woocommerce-checkout input[type="tel"],
.v2 .wp-block-woocommerce-checkout select {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  background: rgba(236,230,220,.04);
  border: 1px solid var(--line-2);
  border-radius: var(--r-btn);
  color: var(--tx);
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.v2 .wc-block-components-text-input input:focus,
.v2 .wc-block-components-select select:focus,
.v2 .wp-block-woocommerce-checkout input:focus,
.v2 .wp-block-woocommerce-checkout select:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.v2 .wc-block-components-label,
.v2 .wp-block-woocommerce-checkout label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--tx-2);
  margin-bottom: 8px;
}

/* Checkout submit button */
.v2 .wc-block-components-checkout-place-order-button,
.v2 .wc-block-components-button.wc-block-checkout__place-order {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  cursor: pointer;
  padding: 19px 40px;
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--bone);
  transition: background .3s;
  margin-top: 20px;
}
.v2 .wc-block-components-checkout-place-order-button:hover,
.v2 .wc-block-components-button.wc-block-checkout__place-order:hover { background: var(--accent-2); }

/* Order summary sidebar */
.v2 .wc-block-checkout__sidebar,
.v2 .wp-block-woocommerce-checkout-order-summary-block {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px;
  background: var(--ink-2);
  position: sticky;
  top: calc(var(--head-h) + 24px);
}

/* Express checkout section */
.v2 .wc-block-components-express-payment-continue-rule,
.v2 .wc-block-components-express-payment__title { color: var(--tx-3); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }

/* Shipping options */
.v2 .wc-block-components-radio-control__option { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--tx-2); font-size: 14px; }
.v2 .wc-block-components-radio-control__option:last-child { border-bottom: none; }
.v2 .wc-block-components-radio-control__input { accent-color: var(--accent); }

/* Payment options */
.v2 .wc-block-components-payment-method-label { color: var(--tx); font-size: 14px; }

/* Notices */
.v2 .wc-block-components-notice-banner { background: var(--accent-soft); border: 1px solid var(--accent); border-radius: var(--r-btn); padding: 14px 18px; margin-bottom: 20px; color: var(--bone); font-size: 14px; }
.v2 .wc-block-components-notice-banner.is-error { background: rgba(220,38,38,.1); border-color: rgba(220,38,38,.4); color: #fca5a5; }

/* Footer legal links row */
.v2 .foot-legal { display: flex; flex-wrap: wrap; gap: 18px; }
.v2 .foot-legal a { color: var(--tx-3); text-decoration: none; transition: color .2s; }
.v2 .foot-legal a:hover { color: var(--accent-2); }

/* Hide the floating reCAPTCHA badge (it clashes with the chat bubble);
   the required disclosure is shown under each form instead. */
.grecaptcha-badge { visibility: hidden; }
/* The "wrapper grows to fill" rule was wrongly trapped in @media(max-width:480px),
   so on desktop the email field shrank to its default size and the spare space
   collected on the right, making the centred row look left-shifted. Restore
   flex-grow on the wrapper above the mobile-stacked breakpoint. */
@media (min-width: 561px) {
  .v2 .news-form .wpcf7-form-control-wrap { flex: 1 1 auto; min-width: 0; }
}
/* CF7's loading spinner is a flex child of the single-row newsletter form, so it
   adds an empty slot on the right that throws off the centring. Take it out of
   the flow (the form submits fine without a visible spinner here). */
.v2 .news-form .wpcf7-spinner { display: none; }
/* Whole payment-method box is clickable (JS selects the radio). */
.v2 #payment .wc_payment_method,
.v2 #payment .payment_methods > li { cursor: pointer; }
.v2 #payment .wc_payment_method a,
.v2 #payment .payment_methods .payment_box { cursor: auto; }
/* Express checkout (Google/Apple Pay) block at the bottom of the checkout form.
   WooPayments outputs [button][separator]; reverse so the "OR" sits ABOVE the
   button, and wrap the button in a bordered box like the other payment options. */
/* WooPayments wraps the button + OR separator in .wcpay-express-checkout-wrapper.
   Reverse the WRAPPER's children so the OR sits ABOVE the button, and put the
   bordered box on just the button element so OR stays outside, above it. */
.v2 .wcpay-express-checkout-wrapper { display: flex; flex-direction: column-reverse; }
.v2 #wcpay-express-checkout-button-separator {
	margin: 24px 0 16px !important;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .12em;
	font-size: 12px;
	color: var(--tx-3);
}
/* Empty until JS injects the button — hide so there's no empty bordered box. */
.v2 #wcpay-express-checkout-element:empty { display: none; }
.v2 #wcpay-express-checkout-element {
	border: 1px solid var(--line-2);
	border-radius: var(--r-btn);
	padding: 30px;
}
.v2 p.cf7-recaptcha-note { margin-top: 14px; font-size: 11px; line-height: 1.5; color: var(--tx-3); text-align: center; max-width: 420px; margin-left: auto; margin-right: auto; }
.v2 .cf7-recaptcha-note a { color: var(--tx-2); text-decoration: underline; }
.v2 .cf7-recaptcha-note a:hover { color: var(--accent-2); }

/* Whole Featured tile is clickable: stretch the Shop Now link across the card. */
.v2 .feat-link::after { content: ""; position: absolute; inset: 0; z-index: 1; }

/* ============================================================
   Featured Nightmares — 2 columns on mobile (placed last so it
   overrides the earlier 1-column mobile rules).
   ============================================================ */
@media (max-width: 768px) {
  .v2 .feat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .v2 .feat-tall { grid-row: auto; }
  .v2 .feat-media { min-height: 170px; }
  .v2 .feat-body { padding: 14px 14px 16px; gap: 10px; }
  .v2 .feat-name { font-size: 19px; }
  .v2 .feat-tall .feat-name { font-size: 22px; }
  .v2 .feat-foot { flex-wrap: wrap; gap: 8px; }
  .v2 .feat-foot .price, .v2 .feat-foot .price bdi, .v2 .feat-foot .price .woocommerce-Price-amount { font-size: 19px; }
  /* Hide the visible 'Shop Now' label on mobile; the stretched ::after keeps
     the whole tile tappable. */
  .v2 .feat-link { font-size: 0; }
}
