/* ============================================================================
   GRAVIA HEAVY MACHINERY — Design System
   Theme: Custom WooCommerce (no page builder)
   ============================================================================ */

/* ── 1. Design Tokens ──────────────────────────────────────────────────────── */

:root {
  /* Colors */
  --gv-black:         #090909;
  --gv-surface-1:     #111111;
  --gv-surface-2:     #191919;
  --gv-surface-3:     #242424;
  --gv-border:        rgba(255, 255, 255, 0.07);
  --gv-border-warm:   rgba(255, 255, 255, 0.12);
  --gv-orange:        #E8720C;
  --gv-orange-dark:   #c5600a;
  --gv-orange-light:  #f08030;
  --gv-orange-glow:   rgba(232, 114, 12, 0.15);
  --gv-orange-muted:  rgba(232, 114, 12, 0.08);

  /* Text */
  --gv-text:          #f0ece7;
  --gv-text-dim:      rgba(240, 236, 231, 0.55);
  --gv-text-muted:    rgba(240, 236, 231, 0.28);

  /* Typography */
  --gv-font-display:  'Montserrat', sans-serif;
  --gv-font-body:     'Poppins', sans-serif;
  --gv-font-cta:      'Barlow Condensed', sans-serif;

  /* Layout */
  --gv-container:     1340px;
  --gv-container-pad: clamp(20px, 5vw, 60px);
  --gv-gap:           clamp(16px, 3vw, 32px);
  --gv-radius:        4px;

  /* Header */
  --gv-header-h:      76px;

  /* Transitions */
  --gv-ease:          0.22s ease;
  --gv-ease-out:      0.3s cubic-bezier(0.2, 0, 0.2, 1);
}

/* ── 2. Reset ──────────────────────────────────────────────────────────────── */

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

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

body {
  background-color: var(--gv-black);
  color: var(--gv-text);
  font-family: var(--gv-font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

input, textarea, select {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--gv-font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--gv-text);
}

/* ── 3. Layout Utilities ───────────────────────────────────────────────────── */

.gv-container {
  width: 100%;
  max-width: var(--gv-container);
  margin-inline: auto;
  padding-inline: var(--gv-container-pad);
}

.gv-site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.gv-main {
  flex: 1;
  padding-top: var(--gv-header-h); /* offset for fixed header */
}

/* ── 4. Typography Scale ───────────────────────────────────────────────────── */

.gv-display {
  font-family: var(--gv-font-display);
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.0;
  text-transform: uppercase;
}

.gv-title {
  font-family: var(--gv-font-display);
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.gv-label {
  font-family: var(--gv-font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gv-orange);
}

/* ── 5. Buttons ────────────────────────────────────────────────────────────── */

.gv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--gv-font-cta);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--gv-radius);
  padding: 12px 28px;
  line-height: 1;
  white-space: nowrap;
  transition: background var(--gv-ease), color var(--gv-ease), border-color var(--gv-ease), box-shadow var(--gv-ease);
  cursor: pointer;
  text-decoration: none;
}

.gv-btn--orange {
  background: var(--gv-orange);
  color: #fff;
  border: 1px solid var(--gv-orange);
}
.gv-btn--orange:hover {
  background: var(--gv-orange-dark);
  border-color: var(--gv-orange-dark);
  box-shadow: 0 6px 24px rgba(232, 114, 12, 0.3);
  color: #fff;
}

.gv-btn--ghost {
  background: transparent;
  color: var(--gv-text);
  border: 1px solid var(--gv-border-warm);
}
.gv-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.gv-btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.gv-btn--outline:hover {
  border-color: var(--gv-orange);
  color: var(--gv-orange);
}

.gv-btn--primary {
  background: var(--gv-orange);
  color: #fff;
  border: 1px solid var(--gv-orange);
}
.gv-btn--primary:hover {
  background: var(--gv-orange-dark);
  border-color: var(--gv-orange-dark);
  box-shadow: 0 6px 24px rgba(232, 114, 12, 0.3);
  color: #fff;
}

/* ── 6. Header ─────────────────────────────────────────────────────────────── */

.gv-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--gv-header-h);
  background: rgba(9, 9, 9, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gv-border);
  transition: background var(--gv-ease), box-shadow var(--gv-ease);
}

.gv-header.is-scrolled {
  background: rgba(9, 9, 9, 0.99);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.gv-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
}

/* Logo */
.gv-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Header logo — scoped to header only */
.gv-header__logo img,
.gv-header__logo img.custom-logo {
  height: 40px;
  max-height: 40px;
  width: auto !important;
  display: block;
}

/* Footer logo — explicit override so header rule never bleeds in */
.gv-footer__logo img,
.gv-footer__logo img.custom-logo {
  height: 48px;
  max-height: 48px;
  width: auto !important;
  display: block;
  opacity: 0.9;
}

.gv-header__logo-text {
  font-family: var(--gv-font-display);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--gv-text);
  text-transform: uppercase;
  line-height: 1;
  display: flex;
  flex-direction: column;
}

.gv-header__logo-mark {
  color: var(--gv-orange);
}

.gv-header__logo-text small {
  font-size: 8px;
  letter-spacing: 3px;
  color: var(--gv-text-muted);
  font-weight: 600;
  margin-top: 3px;
}

/* Primary nav */
.gv-nav {
  flex: 1;
  display: flex;
  align-items: center;
}

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

.gv-nav__list .menu-item > a {
  display: block;
  padding: 8px 14px;
  font-family: var(--gv-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gv-text-dim);
  text-decoration: none;
  border-radius: 3px;
  transition: color var(--gv-ease), background var(--gv-ease);
  white-space: nowrap;
}

.gv-nav__list .menu-item > a:hover,
.gv-nav__list .current-menu-item > a,
.gv-nav__list .current-menu-ancestor > a {
  color: var(--gv-text);
  background: rgba(255, 255, 255, 0.05);
}

.gv-nav__list .current-menu-item > a {
  color: var(--gv-orange);
  background: var(--gv-orange-muted);
}

/* Header actions */
.gv-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.gv-header__phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--gv-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gv-text-dim);
  text-decoration: none;
  transition: color var(--gv-ease);
  white-space: nowrap;
}

.gv-header__phone:hover {
  color: var(--gv-text);
}

.gv-header__phone svg {
  color: var(--gv-orange);
  flex-shrink: 0;
}

.gv-header__cta {
  padding: 10px 22px;
  font-size: 12px;
}

/* ── 7. Hamburger / Mobile Menu ────────────────────────────────────────────── */

.gv-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  padding: 8px;
  border-radius: var(--gv-radius);
  transition: background var(--gv-ease);
}

.gv-hamburger:hover {
  background: rgba(255, 255, 255, 0.06);
}

.gv-hamburger__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gv-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

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

/* Mobile nav overlay */
.gv-mobile-nav {
  display: none;
  position: fixed;
  inset: var(--gv-header-h) 0 0 0;
  z-index: 999;
  background: rgba(9, 9, 9, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gv-mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gv-mobile-nav__inner {
  display: flex;
  flex-direction: column;
  padding: 32px var(--gv-container-pad) 48px;
  min-height: 100%;
  gap: 12px;
}

.gv-mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gv-mobile-nav__list .menu-item {
  border-bottom: 1px solid var(--gv-border);
}

.gv-mobile-nav__list .menu-item > a {
  display: block;
  padding: 18px 0;
  font-family: var(--gv-font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gv-text);
  text-decoration: none;
  transition: color var(--gv-ease);
}

.gv-mobile-nav__list .menu-item > a:hover,
.gv-mobile-nav__list .current-menu-item > a {
  color: var(--gv-orange);
}

.gv-mobile-nav__footer {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gv-mobile-nav__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--gv-font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--gv-text-dim);
  text-decoration: none;
}

/* ── 8. Footer ─────────────────────────────────────────────────────────────── */

.gv-footer {
  background: var(--gv-surface-1);
  border-top: 1px solid var(--gv-border);
}

.gv-footer__accent-line {
  height: 3px;
  background: linear-gradient(90deg, var(--gv-orange) 0%, var(--gv-orange-light) 40%, transparent 100%);
}

.gv-footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.gv-footer__logo {
  display: inline-block;
  margin-bottom: 16px;
}

/* img rules now consolidated in the header/footer logo section above */

.gv-footer__logo-text {
  font-family: var(--gv-font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gv-text);
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.gv-footer__logo-text small {
  font-size: 7px;
  letter-spacing: 3px;
  color: var(--gv-text-muted);
  font-weight: 600;
  margin-top: 4px;
}

.gv-footer__tagline {
  font-size: 13px;
  color: var(--gv-text-dim);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.gv-footer__social {
  display: flex;
  gap: 10px;
}

.gv-footer__social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--gv-radius);
  border: 1px solid var(--gv-border);
  color: var(--gv-text-dim);
  transition: color var(--gv-ease), border-color var(--gv-ease), background var(--gv-ease);
}

.gv-footer__social-link:hover {
  color: var(--gv-orange);
  border-color: rgba(232, 114, 12, 0.3);
  background: var(--gv-orange-muted);
}

.gv-footer__heading {
  font-family: var(--gv-font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gv-orange);
  margin-bottom: 20px;
}

.gv-footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gv-footer__nav li a {
  font-size: 13px;
  color: var(--gv-text-dim);
  text-decoration: none;
  padding: 5px 0;
  display: block;
  transition: color var(--gv-ease);
}

.gv-footer__nav li a:hover {
  color: var(--gv-text);
}

.gv-footer__contact-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gv-footer__contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gv-text-dim);
}

.gv-footer__contact-list li svg {
  color: var(--gv-orange);
  flex-shrink: 0;
}

.gv-footer__contact-list li a {
  color: var(--gv-text-dim);
  text-decoration: none;
  transition: color var(--gv-ease);
}

.gv-footer__contact-list li a:hover {
  color: var(--gv-orange);
}

.gv-footer__cta {
  width: 100%;
  justify-content: center;
}

.gv-footer__bottom {
  border-top: 1px solid var(--gv-border);
}

.gv-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.gv-footer__copy {
  font-size: 12px;
  color: var(--gv-text-muted);
}

.gv-footer__legal {
  font-size: 11px;
  color: var(--gv-text-muted);
  letter-spacing: 0.3px;
}

/* ── 9. Page Sections ──────────────────────────────────────────────────────── */

/* Generic section spacing */
.gv-section {
  padding-top: clamp(60px, 8vw, 120px);
  padding-bottom: clamp(60px, 8vw, 120px);
}

.gv-section--sm {
  padding-top: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(40px, 5vw, 72px);
}

/* Section heading block */
.gv-section-head {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.gv-section-head--center {
  text-align: center;
}

.gv-section-head .gv-label {
  display: block;
  margin-bottom: 14px;
}

.gv-section-head__title {
  font-family: var(--gv-font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--gv-text);
}

.gv-section-head__sub {
  font-size: 15px;
  color: var(--gv-text-dim);
  margin-top: 16px;
  max-width: 540px;
  line-height: 1.7;
}

.gv-section-head--center .gv-section-head__sub {
  margin-inline: auto;
}

/* Horizontal divider */
.gv-divider {
  height: 1px;
  background: var(--gv-border);
  border: none;
  margin: 0;
}

/* Orange accent line */
.gv-accent-line {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gv-orange);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ── 10. Product Cards (Archive / Loop) ────────────────────────────────────── */

/* WooCommerce injects .products ul — we override the grid here */
.gv-products-grid,
ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--gv-gap);
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Individual product card */
.gv-card,
ul.products li.product {
  background: var(--gv-surface-1);
  border: 1px solid var(--gv-border);
  border-radius: var(--gv-radius);
  overflow: hidden;
  transition: border-color var(--gv-ease), transform var(--gv-ease), box-shadow var(--gv-ease);
  display: flex;
  flex-direction: column;
}

.gv-card:hover,
ul.products li.product:hover {
  border-color: rgba(232, 114, 12, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Card image */
.gv-card__image,
ul.products li.product .woocommerce-loop-product__link > img,
ul.products li.product .attachment-woocommerce_thumbnail {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gv-card:hover .gv-card__image,
ul.products li.product:hover .attachment-woocommerce_thumbnail {
  transform: scale(1.03);
}

/* Card image wrapper clips the zoom */
.gv-card__image-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gv-surface-2);
}

ul.products li.product .woocommerce-loop-product__link {
  overflow: hidden;
  display: block;
}

/* Card body */
.gv-card__body,
ul.products li.product .woocommerce-loop-product__title-wrap {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Card taxonomy badge (crane type) */
.gv-card__badge {
  display: inline-block;
  font-family: var(--gv-font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gv-orange);
  background: var(--gv-orange-muted);
  border: 1px solid rgba(232, 114, 12, 0.15);
  border-radius: 2px;
  padding: 4px 8px;
  align-self: flex-start;
}

/* Card title */
.gv-card__title,
ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--gv-font-display);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  color: var(--gv-text);
  line-height: 1.25;
}

/* Card meta row */
.gv-card__meta {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}

.gv-card__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--gv-text-muted);
}

.gv-card__meta-item svg {
  color: var(--gv-orange);
  opacity: 0.7;
  flex-shrink: 0;
}

/* Card CTA */
.gv-card__cta {
  margin-top: auto;
  padding: 16px 20px 20px;
}

.gv-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--gv-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gv-text-dim);
  text-decoration: none;
  padding: 12px 16px;
  border: 1px solid var(--gv-border);
  border-radius: var(--gv-radius);
  transition: color var(--gv-ease), border-color var(--gv-ease), background var(--gv-ease);
}

.gv-card__link:hover {
  color: var(--gv-orange);
  border-color: rgba(232, 114, 12, 0.3);
  background: var(--gv-orange-muted);
}

.gv-card__link svg {
  transition: transform var(--gv-ease);
}

.gv-card__link:hover svg {
  transform: translateX(4px);
}

/* ── 11. Archive Page ──────────────────────────────────────────────────────── */

.gv-archive-header {
  background: var(--gv-surface-1);
  border-bottom: 1px solid var(--gv-border);
  padding: 48px 0 40px;
}

.gv-archive-header__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.gv-archive-header__label {
  display: block;
  font-family: var(--gv-font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gv-orange);
  margin-bottom: 10px;
}

.gv-archive-header__title {
  font-family: var(--gv-font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--gv-text);
}

.gv-archive-header__count {
  font-size: 13px;
  color: var(--gv-text-muted);
  font-family: var(--gv-font-body);
  flex-shrink: 0;
  align-self: flex-end;
  padding-bottom: 6px;
}

.gv-archive-header__count strong {
  color: var(--gv-orange);
}

/* Archive content */
.gv-archive-content {
  padding-top: 40px;
  padding-bottom: 80px;
}

/* ── 12. WooCommerce Notices ───────────────────────────────────────────────── */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top: 3px solid var(--gv-orange) !important;
  background: var(--gv-surface-1) !important;
  color: var(--gv-text) !important;
  padding: 16px 20px !important;
  border-radius: var(--gv-radius) !important;
  margin-bottom: 24px;
}

/* ── 13. Pagination ────────────────────────────────────────────────────────── */

.gv-pagination,
.woocommerce-pagination {
  display: flex;
  justify-content: center;
  padding: 48px 0 24px;
}

.gv-pagination .nav-links,
.gv-pagination ul,
.woocommerce-pagination ul {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gv-pagination .nav-links a,
.gv-pagination .nav-links span,
.gv-pagination ul li a,
.gv-pagination ul li span,
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 8px;
  border-radius: var(--gv-radius);
  border: 1px solid var(--gv-border);
  font-family: var(--gv-font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gv-text-muted);
  text-decoration: none;
  transition: all var(--gv-ease);
}

.gv-pagination .nav-links a:hover,
.gv-pagination ul li a:hover,
.woocommerce-pagination ul li a:hover {
  border-color: var(--gv-orange);
  color: var(--gv-orange);
  background: var(--gv-orange-muted);
}

/* Active / current page — solid orange, bold, larger */
.gv-pagination .nav-links span.current,
.gv-pagination ul li span.current,
.woocommerce-pagination ul li span.current {
  border-color: var(--gv-orange);
  background: var(--gv-orange);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  min-width: 48px;
  height: 48px;
  box-shadow: 0 4px 14px rgba(232, 114, 12, 0.35);
}

/* Prev / next arrows */
.gv-pagination .nav-links a.prev,
.gv-pagination .nav-links a.next,
.gv-pagination .nav-links a.page-numbers.prev,
.gv-pagination .nav-links a.page-numbers.next {
  font-size: 18px;
  letter-spacing: 0;
}

/* Dots between page numbers */
.gv-pagination .nav-links span.dots {
  border: none;
  background: none;
  color: var(--gv-text-muted);
  letter-spacing: 2px;
}

/* ── Infinite scroll ─────────────────────────────────────────────────────── */

.gv-load-sentinel {
  height: 1px;
  width: 100%;
  display: block;
}

.gv-load-more-spinner {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 40px 0;
  color: var(--gv-text-muted);
  font-family: var(--gv-font-body);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.gv-load-more-spinner::before {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid var(--gv-border);
  border-top-color: var(--gv-orange);
  border-radius: 50%;
  animation: gv-spin 0.75s linear infinite;
  flex-shrink: 0;
}

.gv-load-more-spinner.is-visible {
  display: flex;
}

@keyframes gv-spin {
  to { transform: rotate(360deg); }
}

.gv-load-end {
  text-align: center;
  padding: 32px 0;
  color: var(--gv-text-dim);
  font-size: 12px;
  font-family: var(--gv-font-cta);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── 14. Breadcrumbs ───────────────────────────────────────────────────────── */

.gv-breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid var(--gv-border);
  background: var(--gv-surface-1);
}

.gv-breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.gv-breadcrumb__item,
.gv-breadcrumb__sep {
  font-family: var(--gv-font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gv-text-muted);
}

.gv-breadcrumb__item a {
  color: var(--gv-text-muted);
  text-decoration: none;
  transition: color var(--gv-ease);
}

.gv-breadcrumb__item a:hover {
  color: var(--gv-orange);
}

.gv-breadcrumb__item--current {
  color: var(--gv-text-dim);
}

.gv-breadcrumb__sep {
  color: var(--gv-text-muted);
  opacity: 0.4;
}

/* ── 15. Generic page ──────────────────────────────────────────────────────── */

.gv-main--fallback {
  padding-top: calc(var(--gv-header-h) + 60px);
  padding-bottom: 80px;
}

.gv-entry__title {
  font-size: clamp(28px, 4vw, 52px);
  margin-bottom: 32px;
}

.gv-entry__content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gv-text-dim);
  max-width: 720px;
}

.gv-entry__content p {
  margin-bottom: 1.4em;
}

.gv-entry__content a {
  color: var(--gv-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── 16. 404 Page ───────────────────────────────────────────────────────────── */

.gv-main--404 {
  min-height: calc(100vh - var(--gv-header-h));
  display: flex;
  align-items: center;
  padding-top: var(--gv-header-h);
  background: var(--gv-bg);
}

.gv-404 {
  text-align: center;
  padding: 80px 24px;
  max-width: 560px;
  margin: 0 auto;
}

.gv-404__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  color: rgba(232, 114, 12, 0.4);
}

.gv-404__code {
  display: block;
  font-family: var(--gv-font-display);
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  letter-spacing: -4px;
  margin-bottom: -20px;
  user-select: none;
}

.gv-404__heading {
  font-family: var(--gv-font-display);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.gv-404__text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
}

.gv-404__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 17. Utility / Helper Classes ──────────────────────────────────────────── */

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

.gv-text-orange { color: var(--gv-orange); }
.gv-text-dim    { color: var(--gv-text-dim); }
.gv-text-muted  { color: var(--gv-text-muted); }

.gv-mt-auto { margin-top: auto; }

/* ── 17. Responsive Breakpoints ────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .gv-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .gv-footer__brand {
    grid-column: 1 / -1;
  }
  .gv-header__phone span {
    display: none; /* hide number text on tablet, keep icon */
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --gv-header-h: 64px;
  }

  .gv-nav,
  .gv-header__actions {
    display: none;
  }

  .gv-hamburger {
    display: flex;
    margin-left: auto;
  }

  .gv-mobile-nav {
    display: block;
  }

  .gv-products-grid,
  ul.products {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }

  .gv-footer__main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .gv-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .gv-archive-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .gv-products-grid,
  ul.products {
    grid-template-columns: 1fr;
  }
}

/* ── 18. Print ─────────────────────────────────────────────────────────────── */

@media print {
  .gv-header,
  .gv-footer,
  .gv-hamburger,
  .gv-mobile-nav {
    display: none !important;
  }

  .gv-main {
    padding-top: 0 !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}

/* ============================================================================
   SINGLE PRODUCT PAGE
   ============================================================================ */

/* Two-column layout: gallery | info */
.gv-sp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  padding-top: 48px;
  padding-bottom: 80px;
  align-items: start;
}

/* ── Gallery ─────────────────────────────────────────────────────────────── */
.gv-sp-gallery {
  position: sticky;
  top: calc(var(--gv-header-h) + 20px);
  min-width: 0; /* prevent grid blowout when thumb strip has many images */
}

/* Info panel also needs min-width: 0 so long titles can't force it wider */
.gv-sp-info {
  min-width: 0;
}

.gv-sp-gallery__main {
  position: relative;
  background: var(--gv-surface-1);
  border-radius: var(--gv-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gv-sp-gallery__main-link {
  display: block;
  width: 100%;
  height: 100%;
}

.gv-sp-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gv-sp-gallery__main-img.is-changing {
  opacity: 0;
  transition: opacity 0.15s ease;
}

.gv-sp-gallery__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gv-text-muted);
  font-size: 12px;
}

.gv-sp-gallery__placeholder svg {
  width: 80px;
  height: 60px;
}

/* Gallery nav arrows */
.gv-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9, 9, 9, 0.7);
  border: 1px solid var(--gv-border);
  border-radius: 50%;
  color: var(--gv-text);
  cursor: pointer;
  transition: background var(--gv-ease), border-color var(--gv-ease);
  z-index: 2;
}

.gv-gallery-nav:hover {
  background: var(--gv-orange);
  border-color: var(--gv-orange);
}

.gv-gallery-nav--prev { left: 12px; }
.gv-gallery-nav--next { right: 12px; }

/* Thumbnails strip */
.gv-sp-gallery__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gv-orange) transparent;
  padding-bottom: 4px;
}

.gv-sp-gallery__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 54px;
  border-radius: 3px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--gv-ease), opacity var(--gv-ease);
  background: var(--gv-surface-2);
  padding: 0;
}

.gv-sp-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gv-sp-gallery__thumb:hover {
  border-color: rgba(232, 114, 12, 0.5);
}

.gv-sp-gallery__thumb.is-active {
  border-color: var(--gv-orange);
}

/* ── Info panel ──────────────────────────────────────────────────────────── */
.gv-sp-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gv-sp-info__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.gv-sp-badge {
  display: inline-block;
  font-family: var(--gv-font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  padding: 4px 10px;
}

.gv-sp-badge--condition {
  color: var(--gv-text-dim);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--gv-border-warm);
}

.gv-sp-info__title {
  font-family: var(--gv-font-display);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--gv-text);
  margin: 0;
}

.gv-sp-info__location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gv-orange);
  color: #fff;
  font-family: var(--gv-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  padding: 6px 12px;
  align-self: flex-start;
}

.gv-sp-info__description {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gv-text-dim);
  max-width: 480px;
}

/* ── Key Specifications ──────────────────────────────────────────────────── */
.gv-sp-specs {
  background: var(--gv-surface-1);
  border: 1px solid var(--gv-border);
  border-radius: var(--gv-radius);
  padding: 24px;
}

.gv-sp-specs__heading {
  font-family: var(--gv-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gv-text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gv-sp-specs__heading-line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gv-orange);
  border-radius: 1px;
  flex-shrink: 0;
}

.gv-sp-specs__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gv-sp-specs__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gv-border);
}

.gv-sp-specs__row:last-child {
  border-bottom: none;
}

.gv-sp-specs__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--gv-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gv-text-muted);
  text-transform: uppercase;
  flex-shrink: 0;
}

.gv-sp-specs__label svg {
  color: var(--gv-orange);
  opacity: 0.7;
}

.gv-sp-specs__value {
  font-family: var(--gv-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gv-text);
  text-align: right;
}

/* ── Why This Machine trust card ─────────────────────────────────────────── */
.gv-sp-why {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--gv-radius);
  padding: 20px 22px;
  margin-top: 16px;
}

.gv-sp-why__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--gv-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gv-text);
  margin: 0 0 18px;
}

.gv-sp-why__heading-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gv-orange);
  flex-shrink: 0;
}

.gv-sp-why__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gv-sp-why__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.gv-sp-why__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(232, 114, 12, 0.12);
  color: var(--gv-orange);
  margin-top: 1px;
}

.gv-sp-why__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.gv-sp-why__label {
  font-family: var(--gv-font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gv-text);
  line-height: 1.3;
}

.gv-sp-why__sub {
  font-family: var(--gv-font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--gv-text-muted);
  line-height: 1.4;
}

/* ── Brochure box ────────────────────────────────────────────────────────── */
.gv-brochure {
  background: rgba(232,114,12,0.04);
  border: 1px solid rgba(232,114,12,0.12);
  border-radius: var(--gv-radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: border-color var(--gv-ease), background var(--gv-ease);
  text-decoration: none;
  font-family: var(--gv-font-body);
  box-sizing: border-box;
}

.gv-brochure:hover {
  border-color: rgba(232,114,12,0.3);
  background: rgba(232,114,12,0.07);
}

.gv-brochure--disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: default;
}

.gv-brochure__left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.gv-brochure__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 6px;
  background: rgba(232,114,12,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gv-brochure__icon svg {
  width: 36px;
  height: 36px;
  display: block;
}

.gv-brochure__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.gv-brochure__name {
  font-family: var(--gv-font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gv-text);
  line-height: 1.3;
}

.gv-brochure__meta {
  font-family: var(--gv-font-body);
  font-size: 11px;
  color: var(--gv-text-muted);
  line-height: 1.3;
}

.gv-brochure__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--gv-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gv-orange);
  background: rgba(232,114,12,0.12);
  border: 1px solid rgba(232,114,12,0.25);
  border-radius: 3px;
  padding: 10px 20px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--gv-ease), color var(--gv-ease), border-color var(--gv-ease);
  line-height: 1;
}

.gv-brochure__btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  display: block;
}

.gv-brochure:hover .gv-brochure__btn {
  background: var(--gv-orange);
  color: #fff;
  border-color: var(--gv-orange);
}

/* ── Quote CTA ───────────────────────────────────────────────────────────── */
.gv-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--gv-orange);
  border-radius: var(--gv-radius);
  padding: 24px 28px;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--gv-ease), box-shadow var(--gv-ease);
  box-sizing: border-box;
}

.gv-cta:hover {
  background: var(--gv-orange-dark);
  box-shadow: 0 8px 30px rgba(232,114,12,0.3);
}

.gv-cta__text { min-width: 0; }

.gv-cta__heading {
  font-family: var(--gv-font-display);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 5px;
}

.gv-cta__sub {
  font-family: var(--gv-font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

.gv-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--gv-font-cta);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gv-orange);
  background: #fff;
  padding: 12px 28px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--gv-ease), color var(--gv-ease);
  line-height: 1;
}

.gv-cta__btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.gv-cta:hover .gv-cta__btn {
  background: var(--gv-black);
  color: #fff;
}

/* ── Quick contact buttons ───────────────────────────────────────────────── */
.gv-quick {
  display: flex;
  gap: 10px;
}

.gv-quick__link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--gv-font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gv-text-dim) !important;
  text-decoration: none !important;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--gv-radius);
  padding: 13px 16px;
  transition: color var(--gv-ease), border-color var(--gv-ease), background var(--gv-ease);
}

.gv-quick__link:hover {
  color: var(--gv-orange) !important;
  border-color: rgba(232,114,12,0.4);
  background: rgba(232,114,12,0.05);
}

.gv-quick__link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── About This Machine description section (PDP) ───────────────────────── */
.gv-sp-description {
  padding: 60px 0 20px;
}

.gv-sp-description__inner {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.gv-sp-description__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 24px;
}

.gv-sp-description__label {
  font-family: var(--gv-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gv-orange);
}

.gv-sp-description__heading {
  font-family: var(--gv-font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--gv-text);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.gv-sp-description__body {
  font-family: var(--gv-font-body);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 680px;
}

.gv-sp-description__body li::marker {
  color: rgba(255, 255, 255, 0.82);
}

.gv-sp-description__body p {
  margin: 0 0 18px;
}

.gv-sp-description__body p:last-child {
  margin-bottom: 0;
}

.gv-sp-description__body strong,
.gv-sp-description__body b {
  color: var(--gv-text);
  font-weight: 600;
}

.gv-sp-description__body ul,
.gv-sp-description__body ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.gv-sp-description__body li {
  margin-bottom: 8px;
}

.gv-sp-description__body a {
  color: var(--gv-orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 114, 12, 0.4);
  transition: border-color 0.2s ease;
}

.gv-sp-description__body a:hover {
  border-bottom-color: var(--gv-orange);
}

@media (max-width: 900px) {
  .gv-sp-description__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gv-sp-description__header {
    position: static;
  }
  .gv-sp-description__heading {
    font-size: 24px;
  }
  .gv-sp-description {
    padding: 40px 0 10px;
  }
}

@media (max-width: 600px) {
  .gv-sp-description__body {
    font-size: 14px;
    line-height: 1.65;
  }
}

/* ── Similar Equipment strip (PDP) ──────────────────────────────────────── */
.gv-sp-similar {
  padding: 60px 0 40px;
}

.gv-sp-similar__header {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gv-sp-similar__label {
  font-family: var(--gv-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gv-orange);
}

.gv-sp-similar__heading {
  font-family: var(--gv-font-display);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  color: var(--gv-text);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.gv-sp-similar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 900px) {
  .gv-sp-similar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gv-sp-similar__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gv-sp-similar {
    padding: 40px 0 24px;
  }
  .gv-sp-similar__heading {
    font-size: 24px;
  }
}

/* ── Single product contact section ─────────────────────────────────────── */
.gv-sp-contact {
  background: var(--gv-surface-1);
  border-top: 1px solid var(--gv-border);
  padding: 80px 0;
}

.gv-sp-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.gv-sp-contact__heading {
  font-family: var(--gv-font-display);
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 16px 0;
  color: var(--gv-text);
}

.gv-sp-contact__heading span {
  color: var(--gv-orange);
}

.gv-sp-contact__text p {
  font-size: 14px;
  color: var(--gv-text-dim);
  line-height: 1.7;
}

.gv-sp-contact__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.gv-sp-contact__detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--gv-font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gv-text-dim);
  text-decoration: none;
  transition: color var(--gv-ease);
}

.gv-sp-contact__detail:hover { color: var(--gv-orange); }
.gv-sp-contact__detail svg { color: var(--gv-orange); flex-shrink: 0; }

/* ── Quote success banner (PDP) ─────────────────────────────────────────── */
.gv-quote-success {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(40, 167, 69, 0.08);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: var(--gv-radius);
  color: #28a745;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.gv-quote-success svg { flex-shrink: 0; margin-top: 1px; }

/* ── "Or contact us directly" divider ───────────────────────────────────── */
.gv-sp-contact__or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 16px;
  color: var(--gv-text-dim);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gv-sp-contact__or::before,
.gv-sp-contact__or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gv-border);
}

/* ── Fallback CTA buttons (WhatsApp / Call) ──────────────────────────────── */
.gv-sp-contact__fallback {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Keep old placeholder rule as no-op in case residual HTML ever appears ── */
.gv-contact-form-placeholder {
  background: var(--gv-surface-2);
  border: 1px solid var(--gv-border);
  border-radius: var(--gv-radius);
  padding: 32px;
}

/* ── Single product responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .gv-sp-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .gv-sp-gallery { position: static; }
  .gv-sp-contact__inner { grid-template-columns: 1fr; }
  .gv-cta { flex-direction: column; align-items: stretch; }
  .gv-cta__btn { width: 100%; justify-content: center; }
  .gv-quick { flex-direction: column; }
  .gv-brochure { flex-direction: column; align-items: stretch; }
  .gv-brochure__btn { width: 100%; justify-content: center; padding: 12px 20px; }
}

/* ============================================================================
   ARCHIVE / EQUIPMENT PAGE — Card overrides
   ============================================================================ */

/* Full wrap link */
.gv-card__link-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* Type badge on image */
.gv-card__type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--gv-font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(9,9,9,0.75);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  padding: 4px 8px;
  backdrop-filter: blur(4px);
}

/* Specs rows inside card */
.gv-card__specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.gv-card__spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.gv-card__spec-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--gv-font-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gv-text-muted);
}

.gv-card__spec-label svg { color: var(--gv-orange); opacity: 0.6; flex-shrink: 0; }

.gv-card__spec-value {
  font-family: var(--gv-font-display);
  font-size: 10px;
  font-weight: 700;
  color: var(--gv-text-dim);
  text-align: right;
  letter-spacing: 0.3px;
}

.gv-card__divider {
  height: 1px;
  background: var(--gv-border);
  margin: 12px 0 0;
}

.gv-card__footer {
  margin-top: 14px;
}

.gv-card__view-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--gv-font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gv-text-dim);
  transition: color var(--gv-ease);
}

.gv-card__link-wrap:hover .gv-card__view-btn {
  color: var(--gv-orange);
}

.gv-card__view-btn svg { transition: transform var(--gv-ease); }
.gv-card__link-wrap:hover .gv-card__view-btn svg { transform: translateX(4px); }

/* Archive filter wrapper */
.gv-archive-filters {
  background: var(--gv-surface-1);
  border-bottom: 1px solid var(--gv-border);
}

/* WooCommerce product list override */
ul.products {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

/* Kill WooCommerce's float-era clearfix pseudo-elements.
   WC ships `.woocommerce ul.products::before/after { display:table }` at
   specificity (0-2-2). Match that scope so our display:none wins. */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
ul.products::before,
ul.products::after {
  content: none !important;
  display: none !important;
}

ul.products li.product {
  float: none;
  width: auto;
  margin: 0;
}

/* Ensure WC doesn't break our grid */
.gv-archive-content ul.products,
.gv-archive-content .products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gv-gap);
  list-style: none;
  margin: 0 0 var(--gv-gap);
  padding: 0;
}

@media (max-width: 900px) {
  .gv-archive-content ul.products,
  .gv-archive-content .products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .gv-archive-content ul.products,
  .gv-archive-content .products {
    grid-template-columns: 1fr;
  }
}

/* ── Home: Available Machines product preview ─────────────────────────────── */

.gv-home-products {
  padding: 80px 0;
  background: var(--gv-surface-1);
}

.gv-home-products__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.gv-home-products__label {
  display: block;
  font-family: var(--gv-font-cta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gv-orange);
  margin-bottom: 8px;
}

.gv-home-products__title {
  font-family: var(--gv-font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--gv-text);
  margin: 0;
  line-height: 1.15;
}

/* The product grid on the home page uses the same card component */
.gv-home-products__grid.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gv-gap);
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 900px) {
  .gv-home-products__grid.products {
    grid-template-columns: repeat(2, 1fr);
  }
  .gv-home-products__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .gv-home-products__grid.products {
    grid-template-columns: 1fr;
  }
}

/* ── Home: FAQ Section ────────────────────────────────────────────────────── */

.gv-home-faq {
  padding: 80px 0;
  background: var(--gv-black);
}

.gv-home-faq__header {
  text-align: center;
  margin-bottom: 52px;
}

.gv-home-faq__label {
  display: inline-block;
  font-family: var(--gv-font-cta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gv-orange);
  margin-bottom: 12px;
}

.gv-home-faq__title {
  font-family: var(--gv-font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--gv-text);
  margin: 0;
}

.gv-home-faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gv-faq-item {
  border-bottom: 1px solid var(--gv-border-warm);
}

.gv-faq-item:first-child {
  border-top: 1px solid var(--gv-border-warm);
}

.gv-faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--gv-text);
  font-family: var(--gv-font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.gv-faq-item__question:hover {
  color: var(--gv-orange);
}

.gv-faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.2s ease;
  color: var(--gv-text-dim);
}

.gv-faq-item__question[aria-expanded="true"] .gv-faq-item__icon {
  transform: rotate(180deg);
  color: var(--gv-orange);
}

.gv-faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
  overflow: hidden;
}

.gv-faq-item__answer.is-open {
  grid-template-rows: 1fr;
}

.gv-faq-item__answer__inner {
  overflow: hidden;
  min-height: 0;
  padding: 0;
  transition: padding 0.32s ease;
}

.gv-faq-item__answer.is-open .gv-faq-item__answer__inner {
  padding: 0 0 22px;
}

.gv-faq-item__answer p {
  margin: 0;
  color: var(--gv-text-dim);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── Home: Contact / Quote Section ───────────────────────────────────────── */

.gv-home-contact {
  padding: 80px 0;
  background: var(--gv-surface-1);
}

.gv-home-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.gv-home-contact__label {
  display: block;
  font-family: var(--gv-font-cta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gv-orange);
  margin-bottom: 12px;
}

.gv-home-contact__title {
  font-family: var(--gv-font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--gv-text);
  margin: 0 0 16px;
  line-height: 1.2;
}

.gv-home-contact__text {
  color: var(--gv-text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 32px;
}

.gv-home-contact__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gv-home-contact__detail {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gv-text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.gv-home-contact__detail:hover {
  color: var(--gv-orange);
}

.gv-home-contact__detail svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gv-orange);
}

/* Contact form */
.gv-contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gv-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gv-contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gv-contact-form__field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gv-text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gv-contact-form__field input,
.gv-contact-form__field textarea {
  background: var(--gv-surface-2);
  border: 1px solid var(--gv-border-warm);
  border-radius: 6px;
  color: var(--gv-text);
  font-family: var(--gv-font-body);
  font-size: 0.9rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.gv-contact-form__field input::placeholder,
.gv-contact-form__field textarea::placeholder {
  color: var(--gv-text-muted);
}

.gv-contact-form__field input:focus,
.gv-contact-form__field textarea:focus {
  border-color: var(--gv-orange);
  box-shadow: 0 0 0 3px var(--gv-orange-muted);
}

.gv-contact-form__field textarea {
  resize: vertical;
  min-height: 110px;
}

.gv-contact-form__submit {
  align-self: flex-start;
}

.gv-contact-form__success {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 6px;
  color: #4caf50;
  font-size: 0.88rem;
  padding: 12px 16px;
  margin: 0;
}

@media (max-width: 860px) {
  .gv-home-contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gv-contact-form__row {
    grid-template-columns: 1fr;
  }
}
