/* ═══════════════════════════════════════════════════════════════
   HOPIHOPE THEME — Main Stylesheet
   Design reference: polyprintdtg.com
   ═══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  --color-dark:      #0d0e11;
  --color-dark-2:    #343c46;
  --color-blue:      #00a4ee;
  --color-blue-dark: #0098cc;
  --color-gold:      #f5c200;
  --color-text:      #333333;
  --color-muted:     #747477;
  --color-bg-light:  #f8f8fa;
  --color-white:     #ffffff;
  --color-border:    rgba(20,22,24,0.08);

  --font-heading:    'Exo 2', 'Playfair Display', sans-serif;
  --font-body:       'Roboto', Arial, sans-serif;

  --container-max:   1200px;
  --container-pad:   24px;
  --transition:      0.25s ease-in-out;
  --shadow-nav:      0 10px 30px rgba(0,0,64,0.12);
  --shadow-card:     0 50px 60px -40px rgba(20,20,23,0.18);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-blue); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--color-dark);
}

/* ── LAYOUT UTILS ───────────────────────────────────────────── */
.hp-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.hp-row { display: flex; flex-wrap: wrap; gap: 32px; }
.hp-col-half { flex: 1 1 calc(50% - 16px); }
.hp-col-third { flex: 1 1 calc(33.333% - 22px); }
.hp-col-quarter { flex: 1 1 calc(25% - 24px); }
.hp-text-center { text-align: center; }
.hp-hidden-xs { display: block; }
.hp-visible-xs { display: none; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.hp-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--color-dark);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid var(--color-dark);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.hp-btn:hover {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: var(--color-white);
}
.hp-btn-outline {
  display: inline-block;
  padding: 6px 16px;
  background: transparent;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(248,248,250,0.4);
  transition: background var(--transition), border-color var(--transition);
}
.hp-btn-outline:hover {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: var(--color-white);
}
.hp-btn-blue {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: var(--color-white);
}
.hp-btn-blue:hover {
  background: var(--color-blue-dark);
  border-color: var(--color-blue-dark);
}

/* ── SINGLE HEADER ROW ──────────────────────────────────────── */
.hp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--color-dark);
  transition: background 0.3s;
}
.hp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Logo */
.hp-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  outline: none;
}
.hp-logo:focus, .hp-logo:focus-visible { outline: none; }
/* Base size — pixel dimensions in HTML are 2× display so retina gets 1:1 native */
.hp-logo-img {
  height: 40px;          /* display height */
  width: auto;
  image-rendering: -webkit-optimize-contrast; /* crisp on retina */
  image-rendering: crisp-edges;
}
.hp-drawer-logo-img { height: 30px; }
.hp-footer-logo-img { height: 33px; }
.hp-logo-poly  { font-family: 'Exo 2', sans-serif; font-size: 22px; font-weight: 800; color: var(--color-blue); letter-spacing: -0.5px; }
.hp-logo-print { font-family: 'Exo 2', sans-serif; font-size: 22px; font-weight: 800; color: var(--color-white); letter-spacing: -0.5px; }

/* Center nav */
.hp-center-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.hp-center-nav .hp-nav-link {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  padding: 6px 16px;
  transition: color var(--transition);
  white-space: nowrap;
}
.hp-center-nav .hp-nav-link:hover,
.hp-center-nav .hp-nav-link.is-active,
.hp-center-nav .hp-nav-item.is-active .hp-nav-link {
  color: var(--color-gold);
}

/* Nav dropdown */
.hp-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.hp-nav-caret {
  font-size: 11px;
  margin-left: 3px;
  transition: transform 0.2s;
  vertical-align: middle;
}
.hp-nav-item:hover .hp-nav-caret { transform: rotate(180deg); }
.hp-nav-drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  background: #17181d;
  border-top: 2px solid var(--color-blue);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  padding: 6px 0;
  z-index: 600;
}
.hp-nav-drop::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0; right: 0;
  height: 10px;
}
.hp-nav-item:hover .hp-nav-drop { display: block; }
.hp-nav-drop-item {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  white-space: normal;
  line-height: 1.4;
  transition: color 0.15s, background 0.15s;
}
.hp-nav-drop-item:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

/* Burger — 2 lines, right */
.hp-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.hp-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  transition: background 0.2s;
}
.hp-burger span:nth-child(2) { width: 30px; } /* middle line — longer */
.hp-burger:hover span { background: var(--color-white); }

/* Header right group (cart + burger) */
.hp-header-right {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

/* Cart icon */
.hp-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.80);
  transition: color var(--transition);
  margin-right: 4px;
}
.hp-cart-btn i { font-size: 20px; pointer-events: none; }
.hp-cart-btn:hover { color: var(--color-white); }
.hp-cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  background: var(--color-blue);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  border-radius: 9px;
  padding: 0 4px;
  pointer-events: none;
}

/* Push page content below fixed header */
body { padding-top: 72px; }

/* ── DRAWER (burger slide-out) ──────────────────────────────── */
.hp-drawer {
  position: fixed;
  top: 0; right: -360px;
  width: 320px;
  height: 100%;
  background: var(--color-dark);
  z-index: 1000;
  overflow-y: auto;
  transition: right 0.32s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}
.hp-drawer.is-open { right: 0; }

.hp-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.hp-drawer-logo { text-decoration: none; }
.hp-drawer-close {
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.hp-drawer-close:hover { color: var(--color-white); }

.hp-drawer-body { padding: 20px 0; flex: 1; }

.hp-drawer-section-title {
  padding: 16px 24px 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.hp-drawer-main { padding: 0 0 8px; }
.hp-drawer-main li a {
  display: block;
  padding: 10px 24px;
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
.hp-drawer-main li a:hover { color: var(--color-gold); }

/* Drawer sub-items (Продукція) — always visible */
.hp-drawer-sub { padding: 0; }
.hp-drawer-sub li a {
  display: block;
  padding: 7px 24px 7px 36px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.hp-drawer-sub li a:hover { color: var(--color-blue); }

.hp-drawer-util { padding: 0; }
.hp-drawer-util li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.hp-drawer-util li a:hover { color: var(--color-white); }
.hp-drawer-util li a .fa { width: 16px; text-align: center; }

/* Overlay */
.hp-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  backdrop-filter: blur(2px);
}
.hp-overlay.is-visible { display: block; }

/* ── OcStore search/cart — hide in header ───────────────────── */
#search, .hp-search-wrap,
.hp-cart-wrap, #cart,
.hp-topbar, .hp-mainbar,
.hp-nav, .hp-mobile-nav,
.hp-mobile-search { display: none !important; }

/* ── HERO ────────────────────────────────────────────────────── */
.hp-hero {
  position: relative;
  min-height: calc(100vh - 72px - 20px);
  background: #F5F4F2;
  overflow: hidden;
}

/* Full-width background image */
.hp-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
}

/* Light gradient: solid left → transparent right */
.hp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(249,248,246,0.97) 0%,
    rgba(249,248,246,0.88) 22%,
    rgba(249,248,246,0.00) 46%
  );
}

/* Content container */
.hp-hero-grid {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 72px var(--container-pad);
  min-height: calc(100vh - 72px - 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Left: badge + heading + desc + CTA */
.hp-hero-main {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  animation: heroFadeUp 0.8s 0.2s ease both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0094D4;
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hp-hero-badge::before {
  content: '•';
  font-size: 20px;
  line-height: 1;
}

.hp-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 800;
  color: #141421;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hp-hero-title .hp-accent {
  color: #0094D4;
  font-style: italic;
}

.hp-hero-desc {
  font-size: 16px;
  color: #4A4A62;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 380px;
}

.hp-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 2px solid #d42b22;
  color: #d42b22;
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 600;
  background: transparent;
  border-radius: 4px;
  width: fit-content;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.hp-hero-cta:hover {
  background: #d42b22;
  color: #fff;
}

/* Stat card — absolute over the machine image bottom-right */
.hp-hero-stat-card {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  background: #fff;
  border-radius: 12px;
  padding: 22px 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.13);
  text-align: center;
  animation: heroFadeUp 0.8s 0.5s ease both;
}
.hp-stat-num {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 900;
  color: #0094D4;
  line-height: 1;
  letter-spacing: -0.03em;
}
.hp-stat-lbl {
  font-family: 'Exo 2', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #62636a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
  max-width: 140px;
  line-height: 1.4;
}

/* ── INTRO + FEATURE CARDS ──────────────────────────────────── */
.hp-section { padding: 80px 0; }
.hp-section-light { background: var(--color-white); }
.hp-section-gray  { background: var(--color-bg-light); }
.hp-section-dark  { background: var(--color-dark); color: var(--color-white); }

.hp-intro { padding: 80px 0 40px; background: var(--color-white); }
.hp-intro .hp-row { align-items: center; margin-bottom: 60px; }
.hp-intro h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
}
.hp-intro h2 span { color: var(--color-blue); }
.hp-intro p {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.8;
}

/* Feature cards */
.hp-cards { display: flex; gap: 24px; flex-wrap: wrap; padding-bottom: 80px; }
.hp-card {
  flex: 1 1 calc(33.333% - 16px);
  padding: 40px 32px;
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-blue);
  background: var(--color-white);
  transition: box-shadow var(--transition), transform var(--transition);
}
.hp-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.hp-card-icon { margin-bottom: 24px; }
.hp-card-icon img { width: 80px; height: 80px; }
.hp-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-dark);
}
.hp-card p { font-size: 15px; color: var(--color-muted); line-height: 1.75; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
/* hp-section-gray on dark sections = override to dark */
.hp-section.hp-section-gray {
  background: #181a1f;
}
.hp-testimonials {
  background: #181a1f;
  padding: 80px 0;
  position: relative;
}
.hp-quote-icon { width: 80px; margin: 0 auto 32px; }
.hp-quote-icon img { width: 100%; filter: invert(1) opacity(0.25); }

/* Testimonial slider */
.hp-testi-slider { position: relative; min-height: 280px; }
.hp-testi-slide {
  display: none;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
  animation: slideUp 0.5s ease both;
}
.hp-testi-slide.is-active { display: block; }
.hp-testi-slide blockquote {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.5;
  margin-bottom: 24px;
  font-style: italic;
}
.hp-testi-slide cite {
  display: block;
  font-style: normal;
  font-size: 14px;
  color: var(--color-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.hp-testi-slide .hp-testi-sub {
  font-size: 13px;
  color: rgba(248,248,250,0.5);
}
.hp-testi-slide .hp-btn {
  margin-top: 24px;
  background: transparent;
  border-color: rgba(248,248,250,0.3);
  font-size: 13px;
  padding: 8px 20px;
}
.hp-testi-slide .hp-btn:hover { background: var(--color-blue); border-color: var(--color-blue); }
.hp-testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }

/* ── SCROLL SHOWCASE (sticky product browser) ───────────────── */
:root { --hdr: 72px; }

.hp-showcase {
  /* Height set dynamically by JS: (N+1)×vh_usable + 80px buffer.
     CSS fallback below is overridden immediately on load. */
  height: 600vh;
  position: relative;
  z-index: 1;
}
.hp-showcase-sticky {
  position: sticky;
  top: var(--hdr);               /* sit just below fixed header */
  height: calc(100vh - var(--hdr));
  background: #0d0e11;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

/* LEFT nav */
.hp-sc-nav {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 48px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.hp-sc-nav-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  transition: padding-left 0.3s;
}
.hp-sc-nav-item:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.hp-sc-nav-item span {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.28);
  line-height: 1.35;
  display: block;
  transition: color 0.35s, font-weight 0.2s;
}
.hp-sc-nav-item:hover span { color: rgba(255,255,255,0.55); }
.hp-sc-nav-item.is-active span {
  color: var(--color-white);
  font-weight: 700;
}
.hp-sc-nav-item.is-active { padding-left: 6px; }

/* CENTER main image */
.hp-sc-center {
  flex: 0 0 auto;
  width: 45%;
  max-width: 520px;
  padding: 40px 32px;
  display: flex;
  align-items: center;
  position: relative;
}
.hp-sc-main-wrap {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--hdr) - 80px);
  border-radius: 6px;
  overflow: hidden;
  background: #16181d;
}
.hp-sc-main-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
}
.hp-sc-main-img.is-active { opacity: 1; }
.hp-sc-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dot indicator below center */
.hp-sc-dot {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-sc-dot-ring {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-sc-dot-ring::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
}

/* RIGHT: side image (absolute, fades) + scrolling content panel */
.hp-sc-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* Fading side product photo — top of right panel */
.hp-sc-side-img {
  position: absolute;
  top: 24px;
  right: 36px;
  width: 220px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.hp-sc-side-img.is-active { opacity: 1; }
.hp-sc-side-img img { width: 100%; height: auto; object-fit: contain; }

/* Content clip area — fills remaining space below side image */
.hp-sc-content-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  padding-top: 12px;
}

/* Inner scrolling column — all products stacked, moved via translateY */
.hp-sc-right-inner {
  will-change: transform;
  /* no transition — follows page scroll in real-time */
}

/* One product content block = exactly the sticky height */
.hp-sc-info {
  height: calc(100vh - var(--hdr));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 36px 24px 32px;
  gap: 16px;
  overflow: hidden;
}

.hp-sc-info h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(22px, 2.8vw, 40px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
}
.hp-sc-info h3 .hp-accent { color: var(--color-blue); }

.hp-sc-info > p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 480px;
}

/* Feature items (icon + text) */
.hp-sc-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 4px;
}
.hp-sc-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.hp-sc-feature svg {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  opacity: 0.9;
}
.hp-sc-feature p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  padding-top: 6px;
}

/* Gold pill button */
.hp-sc-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 36px;
  border: 2px solid var(--color-gold);
  border-radius: 999px;
  color: var(--color-gold);
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: transparent;
  transition: background 0.25s, color 0.25s;
  width: fit-content;
}
.hp-sc-btn:hover {
  background: var(--color-gold);
  color: var(--color-dark);
}

/* Up-arrow button bottom-right */
.hp-sc-up {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-blue);
  border: none;
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, background 0.2s;
  z-index: 20;
}
.hp-sc-up.is-visible { opacity: 1; }
.hp-sc-up:hover { background: var(--color-blue-dark); }

/* Progress bar (thin line left side) */
.hp-sc-progress {
  position: absolute;
  left: 200px;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.06);
  z-index: 5;
}
.hp-sc-progress-bar {
  width: 100%;
  height: 0%;
  background: var(--color-blue);
  transition: height 0.4s ease;
}

/* Responsive showcase */
/* ══════════════════════════════════════════════════════════════
   SHOWCASE MOBILE / TABLET  (≤ 900px)
   - No sticky, no translateY, no fixed heights
   - Nav = horizontal scroll strip
   - Show only active product's info (JS toggles is-active)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {

  /* Section: natural height, no JS override */
  .hp-showcase { height: auto !important; }

  /* Container: stack vertically */
  .hp-showcase-sticky {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    flex-direction: column;
    overflow: visible;
  }

  /* Progress bar: hide */
  .hp-sc-progress { display: none; }

  /* Left nav: horizontal scrollable strip */
  .hp-sc-nav {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .hp-sc-nav::-webkit-scrollbar { display: none; }
  .hp-sc-nav-item {
    padding: 14px 20px;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.06);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .hp-sc-nav-item:last-child { border-right: none; }
  .hp-sc-nav-item.is-active { padding-left: 20px; }

  /* Center image */
  .hp-sc-center {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .hp-sc-main-wrap {
    height: 56vw;
    min-height: 200px;
    border-radius: 0;
  }
  .hp-sc-dot { display: none; }

  /* Right panel: no overflow clip, no fixed height */
  .hp-sc-right {
    overflow: visible;
    position: relative;
  }

  /* Content wrap: show naturally */
  .hp-sc-content-wrap {
    overflow: visible;
    height: auto;
    position: relative;
  }

  /* Inner div: NO translateY on mobile */
  .hp-sc-right-inner {
    transform: none !important;
  }

  /* Side images: inline, show only active */
  .hp-sc-side-img {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 100px;
    opacity: 0;
  }
  .hp-sc-side-img.is-active { opacity: 1; }

  /* Info blocks: hidden by default, show only active */
  .hp-sc-info {
    display: none !important;
    height: auto;
    min-height: unset;
    overflow: visible;
    padding: 32px 20px 40px;
    gap: 20px;
  }
  .hp-sc-info.is-active { display: flex !important; }

  /* Up button: hide (not needed without scroll) */
  .hp-sc-up { display: none; }
}

/* ── PRODUCT SHOWCASE ───────────────────────────────────────── */
.hp-product-row {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 80px 0;
  border-bottom: 1px solid var(--color-border);
}
.hp-product-row:last-child { border-bottom: none; }
.hp-product-row.hp-reverse { flex-direction: row-reverse; }
.hp-product-info { flex: 1; }
.hp-product-info h3 {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
}
.hp-product-info p {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.hp-product-image { flex: 1; overflow: hidden; }
.hp-product-image img {
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.17,0.69,0.47,0.995);
}
.hp-product-image:hover img { transform: scale(1.04); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.hp-footer {
  color: rgba(248,248,250,0.85);
  background: #0d0e11; /* fills edges on screens wider than container */
}

/* Two-panel layout: constrained to same max-width as header */
.hp-footer-wrap {
  display: flex;
  min-height: 480px;
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ── Dark left panel (~75%) */
.hp-footer-dark {
  flex: 0 0 75%;
  background: #0d0e11;
  padding: 56px 48px 32px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Three columns inside dark panel */
.hp-footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  flex: 1;
}

/* Col 1: brand */
.hp-footer-brand { display: flex; flex-direction: column; gap: 0; }

.hp-footer-logo-main { margin-bottom: 10px; }
.hp-footer-logo-main .hp-logo-poly  { font-size: 20px; }
.hp-footer-logo-main .hp-logo-print { font-size: 20px; }

.hp-footer-tagline {
  font-size: 13px;
  color: rgba(248,248,250,0.45);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 200px;
}

/* Second logo: mediaprint ukraine */
.hp-footer-logo2 {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.hp-logo2-media {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--color-blue);
  letter-spacing: -0.5px;
}
.hp-logo2-print {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.5px;
}
.hp-logo2-ua {
  font-family: 'Exo 2', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: rgba(248,248,250,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 4px;
  margin-bottom: 2px;
  align-self: flex-end;
}

/* Social icons */
.hp-footer-social { margin-top: auto; padding-top: 20px; }
.hp-social-list { display: flex; gap: 14px; }
.hp-social-list a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  color: rgba(248,248,250,0.5);
  font-size: 17px;
  transition: color var(--transition);
  background: none;
}
.hp-social-list a:hover { color: var(--color-white); }

/* Header language switcher */
.hp-header-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 6px;
}
.hp-header-lang-cur,
.hp-header-lang-link {
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}
.hp-header-lang-cur {
  color: var(--color-white);
}
.hp-header-lang-link {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
}
.hp-header-lang-link:hover { color: var(--color-white); }

/* Language switcher */
.hp-footer-lang {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.hp-lang-form { margin: 0; padding: 0; display: inline; }
.hp-lang-btn {
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(248,248,250,0.4);
  letter-spacing: 0.04em;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color var(--transition);
}
.hp-lang-btn.is-active,
.hp-lang-btn:hover { color: var(--color-white); }

/* Col 2: Products */
.hp-footer-col-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.hp-footer-links { list-style: none; }
.hp-footer-links li { padding-bottom: 12px; }
.hp-footer-links a {
  font-size: 14px;
  color: rgba(248,248,250,0.5);
  transition: color var(--transition);
}
.hp-footer-links a:hover { color: var(--color-white); }

/* Col 3: Contacts */
.hp-footer-address {
  font-style: normal;
  font-size: 13px;
  color: rgba(248,248,250,0.45);
  line-height: 1.7;
  margin-bottom: 20px;
}
.hp-footer-phone {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.hp-footer-phone:hover { color: var(--color-blue); }
.hp-footer-email {
  font-size: 13px;
  color: rgba(248,248,250,0.5);
  transition: color var(--transition);
}
.hp-footer-email:hover { color: var(--color-white); }

/* Bottom strip */
.hp-footer-bottom { padding-top: 32px; }
.hp-footer-hr {
  border: none;
  border-top: 1px solid rgba(248,248,250,0.08);
  margin-bottom: 20px;
}
.hp-footer-copy {
  font-size: 13px;
  color: rgba(248,248,250,0.25);
}
.hp-footer-copy a { color: inherit; }

/* ── Blue right panel (~38%) */
.hp-footer-blue {
  flex: 1;
  background: var(--color-blue);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* Background photo hint (dark printer photo peeking at edge) */
.hp-footer-blue::after {
  content: '';
  position: absolute;
  top: 0; right: -1px; bottom: 0;
  width: 38%;
  background: linear-gradient(to right, var(--color-blue) 0%, rgba(0,164,238,0.6) 100%);
}

.hp-footer-blue-inner {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hp-footer-blue-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 32px;
}

/* Circle CTA button */
.hp-footer-cta-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--color-white);
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
  margin-bottom: 32px;
}
.hp-footer-cta-circle:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
  color: var(--color-white);
}

/* Working hours */
.hp-footer-hours { margin-top: auto; text-align: center; }
.hp-hours-time {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.hp-hours-time sup { font-size: 60%; vertical-align: super; }
.hp-hours-days {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 4px;
}
.hp-hours-note {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* ── MAIN CONTENT AREA ──────────────────────────────────────── */
#hp-main { min-height: 300px; }
/* Remove html module wrapper padding on homepage */
#hp-main > div > div { padding: 0; }

/* ── SCROLL REVEAL ANIMATIONS ───────────────────────────────── */
.hp-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hp-reveal.hp-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── TEASER STRIP ───────────────────────────────────────────── */
.hp-teasers {
  background: var(--color-blue);
  padding: 28px 0;
}
.hp-teasers-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
}
.hp-teaser {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.hp-teaser:last-child { border-right: none; }
.hp-teaser-icon {
  font-size: 28px;
  color: var(--color-white);
  flex-shrink: 0;
  opacity: 0.9;
}
.hp-teaser-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 3px;
  line-height: 1.2;
}
.hp-teaser-text {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .hp-teasers-grid { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hp-teaser { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 0 0 16px; width: 100%; }
  .hp-teaser:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ── CTA PHONE BLOCK ────────────────────────────────────────── */
.hp-cta-phone {
  position: relative;
  padding: 100px var(--container-pad);
  text-align: center;
  overflow: hidden;
  background: #0d1117;
}
.hp-cta-phone-bg {
  position: absolute;
  inset: 0;
  background-image: url(../image/cta-phone-bg.png);
  background-size: cover;
  background-position: center center;
  opacity: 0.35;
}
.hp-cta-phone-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.hp-cta-phone-label {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.hp-cta-phone-call {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 8px;
}
.hp-cta-phone-number {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: var(--color-blue);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  transition: color var(--transition);
}
.hp-cta-phone-number:hover { color: var(--color-blue-dark); }
.hp-cta-phone-sub {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
}

/* OcStore common overrides */
.breadcrumb { padding: 12px 0; background: none; }
.alert { border-radius: 0; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hp-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hp-product-row { gap: 32px; }
}

@media (max-width: 768px) {
  :root { --container-pad: 16px; }

  /* Header: hide center nav, keep logo+burger */
  .hp-center-nav { display: none; }
  .hp-logo-poly, .hp-logo-print { font-size: 18px; }

  .hp-col-half,
  .hp-col-third,
  .hp-col-quarter { flex: 1 1 100%; }

  /* Hero mobile */
  .hp-hero-grid { padding: 48px var(--container-pad) 120px; }
  .hp-hero-main { max-width: 100%; }
  .hp-hero-desc { max-width: 100%; }
  .hp-hero-bg { background-position: 72% center; }
  .hp-hero-overlay {
    background: linear-gradient(
      to right,
      rgba(249,248,246,0.98) 0%,
      rgba(249,248,246,0.94) 55%,
      rgba(249,248,246,0.75) 100%
    );
  }
  .hp-hero-stat-card { bottom: 20px; right: 20px; padding: 14px 20px; }
  .hp-stat-num { font-size: 40px; }

  .hp-intro { padding: 48px 0 24px; }
  .hp-intro .hp-row { margin-bottom: 32px; gap: 20px; }

  .hp-cards { gap: 16px; }
  .hp-card { flex: 1 1 100%; }

  .hp-product-row,
  .hp-product-row.hp-reverse { flex-direction: column; gap: 24px; padding: 48px 0; }

  .hp-footer-wrap { flex-direction: column; }
  .hp-footer-dark { flex: none; padding: 40px 24px 24px; }
  .hp-footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hp-footer-blue-inner { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .hp-footer-cols { grid-template-columns: 1fr; }
  .hp-footer-dark { padding: 32px 20px 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT PAGE
   ═══════════════════════════════════════════════════════════════ */

/* ── Bootstrap override: reset conflicting base styles ─────── */
body { padding-top: 72px; } /* keep header offset */
.container { max-width: var(--container-max); }

/* ── Breadcrumb ─────────────────────────────────────────────── */
#product-product .breadcrumb {
  background: none;
  padding: 20px 0 8px;
  margin: 0;
  font-size: 13px;
  color: var(--color-muted);
}
#product-product .breadcrumb > li + li::before { color: var(--color-muted); }
#product-product .breadcrumb a { color: var(--color-muted); }
#product-product .breadcrumb a:hover { color: var(--color-blue); }

/* ── Page wrapper ───────────────────────────────────────────── */
#product-product { padding-bottom: 64px; }

/* ── Main product row ───────────────────────────────────────── */
#product-product > .row { margin-top: 16px; }

/* ── Image gallery column ───────────────────────────────────── */
#product-product .thumbnails {
  list-style: none;
  padding: 0;
  margin: 0;
}
#product-product .thumbnails > li:first-child {
  display: block;
  margin-bottom: 12px;
}
#product-product .thumbnails > li:first-child a {
  display: block;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-bg-light);
}
#product-product .thumbnails > li:first-child img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 420px;
}
#product-product .thumbnails .image-additional {
  display: inline-block;
  width: 80px;
  margin: 4px 4px 0 0;
  vertical-align: top;
}
#product-product .thumbnails .image-additional a {
  display: block;
  border: 2px solid transparent;
  border-radius: 3px;
  overflow: hidden;
  background: var(--color-bg-light);
  transition: border-color var(--transition);
}
#product-product .thumbnails .image-additional a:hover {
  border-color: var(--color-blue);
}
#product-product .thumbnails .image-additional img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  display: block;
}

/* ── Product tabs (description / specs) ─────────────────────── */
#product-product .nav-tabs {
  border-bottom: 2px solid var(--color-border);
  margin-top: 24px;
}
#product-product .nav-tabs > li > a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-muted);
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 10px 20px;
  margin-bottom: -2px;
  transition: color var(--transition);
}
#product-product .nav-tabs > li.active > a,
#product-product .nav-tabs > li > a:hover {
  color: var(--color-dark);
  background: none;
  border-bottom: 2px solid var(--color-blue);
}
#product-product .tab-content {
  padding: 24px 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text);
}
#product-product .tab-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 20px 0 10px;
}
#product-product .tab-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}
#product-product .tab-content ul li { margin-bottom: 4px; }

/* ── Right column: product info ─────────────────────────────── */
#product-product .btn-group { margin-bottom: 12px; }
#product-product .btn-group .btn-default {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 16px;
  padding: 8px 12px;
}
#product-product .btn-group .btn-default:hover {
  color: var(--color-blue);
  border-color: var(--color-blue);
  background: #fff;
}

#product-product h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.25;
  margin: 0 0 16px;
}

#product-product .list-unstyled {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 12px;
}
#product-product .list-unstyled li { margin-bottom: 4px; }
#product-product .list-unstyled a { color: var(--color-blue); }

/* price */
#product-product h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  color: var(--color-dark);
  margin: 0 0 20px;
}

/* add to cart */
#button-cart {
  background: var(--color-blue);
  border: none;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 0;
  transition: background var(--transition);
}
#button-cart:hover { background: var(--color-blue-dark); }

#product-product .form-group label.control-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 6px;
}
#product-product .form-control {
  border: 1px solid var(--color-border);
  border-radius: 0;
  height: 42px;
  font-size: 15px;
  box-shadow: none;
  color: var(--color-dark);
}
#product-product .form-control:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(0,164,238,0.12);
}

/* ── Related products ───────────────────────────────────────── */
#product-product h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 40px 0 20px;
}
.product-thumb {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.product-thumb:hover { box-shadow: var(--shadow-card); }
.product-thumb .image img { width: 100%; display: block; }
.product-thumb .caption { padding: 14px 16px; }
.product-thumb .caption h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--color-dark);
}
.product-thumb .price {
  font-weight: 700;
  color: var(--color-dark);
  font-size: 15px;
}
.product-thumb .button-group {
  display: flex;
  border-top: 1px solid var(--color-border);
}
.product-thumb .button-group button {
  flex: 1;
  background: none;
  border: none;
  border-right: 1px solid var(--color-border);
  padding: 10px;
  color: var(--color-muted);
  font-size: 14px;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}
.product-thumb .button-group button:last-child { border-right: none; }
.product-thumb .button-group button:hover {
  background: var(--color-blue);
  color: var(--color-white);
}

/* ── Examples Gallery ─────────────────────────────────────────── */
.product-examples-gallery {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}
.product-examples-gallery h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 24px;
}
.examples-thumbnails {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.examples-thumbnails li { overflow: hidden; border-radius: 4px; }
.examples-thumbnails li a { display: block; }
.examples-thumbnails li img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.examples-thumbnails li img:hover { transform: scale(1.05); opacity: 0.9; }

@media (max-width: 767px) {
  #product-product h1 { font-size: 22px; }
  .examples-thumbnails { grid-template-columns: repeat(2, 1fr); }
  .examples-thumbnails li img { height: 150px; }
}

/* ═══════════════════════════════════════════════════════════════
   HP PRODUCT PAGE — NEW VITRINE LAYOUT
   ═══════════════════════════════════════════════════════════════ */

/* ── Shared new utilities ───────────────────────────────────── */
.hp-section-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 32px;
  position: relative;
  padding-bottom: 14px;
}
.hp-section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 48px; height: 3px;
  background: var(--color-blue);
}
.hp-btn-white {
  background: #fff;
  border-color: #fff;
  color: var(--color-dark);
}
.hp-btn-white:hover {
  background: transparent;
  color: #fff;
}
.hp-btn-outline-dark {
  background: transparent;
  border: 2px solid var(--color-dark);
  color: var(--color-dark);
  font-size: 13px;
  padding: 8px 18px;
}
.hp-btn-outline-dark:hover {
  background: var(--color-dark);
  color: #fff;
}

/* ── Dark page wrap ─────────────────────────────────────────── */
.hp-product-dark-page {
  background: var(--color-dark);
  padding-bottom: 56px;
}

/* ── Product title bar (replaces breadcrumb) ────────────────── */
.hp-product-title-bar {
  padding: 40px 0 28px;
}
.hp-product-hero-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.2;
}
.hp-product-hero-brand {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.hp-product-hero-brand a { color: rgba(255,255,255,0.45); }
.hp-product-hero-brand a:hover { color: var(--color-blue); }

/* ── Main product section ───────────────────────────────────── */
.hp-product-section {
  padding: 0 0 0;
}
.hp-product-layout {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Gallery ────────────────────────────────────────────────── */
.hp-product-gallery {
  position: sticky;
  top: 88px;
}
.hp-gallery-main {
  position: relative;
}
.hp-gallery-slides {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.hp-gallery-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: block;
  will-change: transform;
}
.hp-gallery-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Prev/next arrows — overlay on main image */
.hp-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13,14,17,0.55);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s;
  z-index: 2;
  padding: 0;
}
.hp-gallery-arrow:hover { background: var(--color-blue); }
.hp-gallery-prev { left: 10px; }
.hp-gallery-next { right: 10px; }

/* Thumbnail strip */
.hp-gallery-strip {
  display: flex;
  align-items: stretch;
  gap: 6px;
  margin-top: 8px;
}
.hp-gallery-thumbs {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  gap: 6px;
}

/* Thumbnail strip slider — active when >5 images */
.hp-gallery-strip--many .hp-gallery-thumbs {
  overflow-x: auto;
  scrollbar-width: none;
}
.hp-gallery-strip--many .hp-gallery-thumbs::-webkit-scrollbar { display: none; }

/* Thumb strip arrows — shown only in slider mode (>5) */
.hp-thumb-nav {
  flex-shrink: 0;
  width: 36px;
  background: #1c1d22;
  color: #fff;
  border: none;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s;
  padding: 0;
}
.hp-thumb-nav:hover { background: var(--color-blue); }

.hp-gallery-thumb {
  flex: 1 1 0;
  min-width: 0;
  aspect-ratio: 1;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  background: #1c1d22;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s;
}
/* In slider mode thumbs are fixed-width (show 5 per view) */
.hp-gallery-strip--many .hp-gallery-thumb {
  flex: 0 0 calc(20% - 5px);
  min-width: calc(20% - 5px);
}
.hp-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hp-gallery-thumb:hover,
.hp-gallery-thumb.is-active {
  border-color: var(--color-blue);
}

/* ── Video previews (below main gallery) — square, max 5 per row ─ */
.hp-gallery-videos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.hp-gallery-video {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: 3px;
  overflow: hidden;
  background: #1c1d22;
  border: 2px solid rgba(255,255,255,0.15);
  transition: border-color 0.2s;
}
.hp-gallery-video:hover {
  border-color: var(--color-blue);
}
.hp-gallery-video img,
.hp-gallery-video-noimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hp-gallery-video-noimg {
  background: linear-gradient(135deg, #2a2b32, #1c1d22);
}
.hp-gallery-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hp-gallery-video-play svg {
  width: 16px;
  height: 16px;
  margin-left: 2px;
  fill: #fff;
}
.hp-video-inline {
  width: 90vw;
  max-width: 960px;
}
.hp-video-inline video {
  width: 100%;
  display: block;
  background: #000;
}

/* ── Product info (right col) — on dark background ──────────── */
.hp-product-info {
  padding-top: 4px;
}

/* WYSIWYG Characteristics — force light text on dark bg */
.hp-product-characteristics {
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 1.75;
}
.hp-product-characteristics *         { color: rgba(255,255,255,0.82) !important; }
.hp-product-characteristics h1,
.hp-product-characteristics h2,
.hp-product-characteristics h3,
.hp-product-characteristics h4        { color: #fff !important; font-family: var(--font-heading); font-weight: 700; margin: 0 0 14px; }
.hp-product-characteristics h3        { font-size: 19px; text-transform: uppercase; letter-spacing: 0.04em; }
.hp-product-characteristics p         { margin: 0 0 8px; }
.hp-product-characteristics ul,
.hp-product-characteristics ol        { padding-left: 0; margin: 0 0 10px; }
.hp-product-characteristics li        { margin-bottom: 6px; }
.hp-product-characteristics strong    { color: #fff !important; }
.hp-product-characteristics table     { width: 100%; border-collapse: collapse; margin-bottom: 8px; font-size: 17px; }
.hp-product-characteristics table td,
.hp-product-characteristics table th  { border: 1px solid rgba(255,255,255,0.12); padding: 8px 12px; }
.hp-product-characteristics table tr:nth-child(even) td { background: rgba(255,255,255,0.05); }

/* Specs table — on dark */
.hp-product-specs {
  margin-bottom: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hp-spec-row {
  display: grid;
  grid-template-columns: 44% 1fr;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 18px;
  line-height: 1.5;
}
.hp-spec-label {
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.hp-spec-value {
  color: rgba(255,255,255,0.88);
  font-weight: 400;
}

/* CTA */
.hp-product-cta {
  margin-bottom: 16px;
}
.hp-cta-main {
  font-size: 20px;
  padding: 16px 32px;
  display: block;
  text-align: center;
  margin-bottom: 16px;
}
.hp-product-price {
  text-align: center;
}
.hp-price-old {
  text-decoration: line-through;
  color: var(--color-muted);
  font-size: 15px;
  margin-right: 8px;
}
.hp-price-new {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.hp-price-old {
  text-decoration: line-through;
  color: rgba(255,255,255,0.4);
  font-size: 19px;
  margin-right: 8px;
}
.hp-product-stock {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-top: 8px;
}

/* ── Description section — on dark ─────────────────────────── */
.hp-product-desc-section {
  padding: 40px 0 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 40px;
}
.hp-product-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  max-width: 860px;
}
.hp-product-desc h2,
.hp-product-desc h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
}
.hp-product-desc ul,
.hp-product-desc ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
.hp-product-desc li { margin-bottom: 6px; }
.hp-product-desc * { color: rgba(255,255,255,0.72) !important; }
.hp-product-desc h1,.hp-product-desc h2,
.hp-product-desc h3,.hp-product-desc h4 { color: #fff !important; }
.hp-product-desc strong { color: #fff !important; }

/* ── Examples section — light background ────────────────────── */
.hp-examples-section {
  background: #fff;
  padding: 56px 0 64px;
}
.hp-examples-grid {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.hp-examples-grid li {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1;
}
.hp-example-link { display: block; height: 100%; }
.hp-example-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s, opacity 0.3s;
}
.hp-example-link:hover img {
  transform: scale(1.04);
  opacity: 0.88;
}

/* ── Contact page ───────────────────────────────────────────── */
.hp-contact-page {
  background: var(--color-dark);
}
.hp-contact-hero {
  padding: 72px var(--container-pad) 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hp-contact-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hp-contact-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.0;
  margin: 0;
  text-transform: uppercase;
}
.hp-contact-hero-blue  { color: var(--color-blue); }
.hp-contact-hero-white { color: var(--color-white); }
.hp-contact-hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
}
.hp-contact-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  padding-top: 64px;
  padding-bottom: 88px;
  align-items: start;
}
/* ─ Contact info items ─ */
.hp-cinfo-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.hp-cinfo-item:last-child { margin-bottom: 0; }
.hp-cinfo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  font-size: 18px;
  flex-shrink: 0;
}
.hp-cinfo-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 5px;
}
.hp-cinfo-value {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.5;
  text-decoration: none;
}
a.hp-cinfo-value:hover { color: var(--color-blue); }
/* ─ Contact form ─ */
.hp-contact-form-wrap {}
.hp-cform-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  margin: 0 0 32px;
  text-transform: uppercase;
}
.hp-cform-errors {
  background: rgba(255,80,80,0.1);
  border: 1px solid rgba(255,80,80,0.3);
  border-radius: 4px;
  padding: 12px 16px;
  margin-bottom: 20px;
}
.hp-cform-error {
  color: #ff8080;
  font-size: 13px;
  margin: 0 0 4px;
}
.hp-cform-error:last-child { margin-bottom: 0; }
.hp-cform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.hp-cform-field {
  display: flex;
  flex-direction: column;
}
.hp-cform-field--full { grid-column: 1 / -1; }
.hp-cform-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 7px;
}
.hp-cform-field input,
.hp-cform-field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--color-white);
  font-size: 15px;
  padding: 13px 16px;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  font-family: var(--font-body);
  box-sizing: border-box;
}
.hp-cform-field input::placeholder,
.hp-cform-field textarea::placeholder {
  color: rgba(255,255,255,0.22);
}
.hp-cform-field input:focus,
.hp-cform-field textarea:focus {
  border-color: rgba(0,164,238,0.55);
  background: rgba(255,255,255,0.1);
}
.hp-cform-field textarea {
  resize: vertical;
  min-height: 120px;
}
.hp-cform-submit { margin-top: 28px; }
.hp-btn-gold-outline {
  display: inline-block;
  padding: 14px 48px;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.hp-btn-gold-outline:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.hp-btn-gold-outline:hover {
  background: var(--color-gold);
  color: var(--color-dark);
}
.hp-cform-req { color: var(--color-gold); }
.hp-cform-success {
  text-align: center;
  padding: 40px 0;
}
.hp-cform-success-icon {
  display: block;
  font-size: 56px;
  color: #6ee78b;
  margin-bottom: 16px;
}
.hp-cform-success-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 8px;
}
.hp-cform-success-sub {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
}

/* ── Product page contact form ──────────────────────────────── */
.hp-contact-section {
  background: var(--color-dark);
  padding: 72px 0 80px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hp-contact-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}
.hp-contact-sub {
  color: rgba(255,255,255,0.55);
  font-size: 16px;
  max-width: 680px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.hp-contact-form { width: 100%; }
.hp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.hp-form-field { display: flex; flex-direction: column; gap: 6px; }
.hp-form-field--full { grid-column: 1 / -1; }
.hp-form-field label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hp-form-field input,
.hp-form-field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  color: var(--color-white);
  font-size: 15px;
  font-family: var(--font-body);
  padding: 12px 16px;
  width: 100%;
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.hp-form-field input::placeholder,
.hp-form-field textarea::placeholder { color: rgba(255,255,255,0.28); }
.hp-form-field input:focus,
.hp-form-field textarea:focus { border-color: var(--color-blue); }
.hp-form-submit {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hp-form-msg { font-size: 14px; }
.hp-form-msg--ok  { color: #4caf50; }
.hp-form-msg--err { color: #f44336; }

@media (max-width: 600px) {
  .hp-form-row { grid-template-columns: 1fr; }
}

/* ── Related products ───────────────────────────────────────── */
.hp-related-section {
  padding: 56px 0 64px;
}
.hp-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.hp-related-card {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.hp-related-card:hover { box-shadow: var(--shadow-card); }
.hp-related-img { display: block; }
.hp-related-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.hp-related-body {
  padding: 16px;
}
.hp-related-body h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px;
}
.hp-related-body h4 a { color: var(--color-dark); }
.hp-related-body h4 a:hover { color: var(--color-blue); }
.hp-related-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
}
.hp-related-body .hp-btn-outline-dark {
  display: inline-block;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991px) {
  .hp-product-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hp-product-gallery { position: static; }
  .hp-gallery-slides { height: 360px; }
}
@media (max-width: 767px) {
  .hp-product-title-bar { padding: 24px 0 16px; }
  .hp-product-hero-title { font-size: 22px; }
  .hp-gallery-slides { height: 280px; }
  .hp-examples-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-gallery-videos { grid-template-columns: repeat(4, 1fr); }
  .hp-contact-hero { padding: 48px var(--container-pad) 36px; }
  .hp-contact-hero-inner { grid-template-columns: 1fr; gap: 20px; }
  .hp-contact-body { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; padding-bottom: 56px; }
  .hp-cform-row { grid-template-columns: 1fr; }
  .hp-related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Catalog page (product/category, no path) ───────────────── */
.hp-catalog-page {
  background: var(--color-dark);
  min-height: calc(100vh - 72px);
  padding: 48px 0 64px;
}
.hp-catalog-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}
.hp-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 4.5rem;
}
.hp-catalog-card {
  background: #1c1d22;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.hp-catalog-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.hp-catalog-card-img {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
}
.hp-catalog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.hp-catalog-card:hover .hp-catalog-card-img img {
  transform: scale(1.04);
}
.hp-catalog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.hp-catalog-card-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}
.hp-catalog-card-name a { color: #fff; }
.hp-catalog-card-name a:hover { color: var(--color-blue); }
.hp-catalog-price { display: flex; align-items: baseline; gap: 8px; }
.hp-catalog-btn { margin-top: auto; text-align: center; }
.hp-catalog-empty { color: rgba(255,255,255,0.5); font-size: 16px; }
@media (max-width: 575px) {
  .hp-catalog-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   CART PAGE (#checkout-cart)
   ═══════════════════════════════════════════════════════════════ */
#checkout-cart {
  padding-top: 32px;
  padding-bottom: 50px;
}

#checkout-cart h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

/* Main cart table */
#checkout-cart .table-responsive {
  margin-bottom: 0;
}

#checkout-cart .table.table-bordered {
  border: none;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 14px;
}

#checkout-cart .table.table-bordered thead td {
  background: var(--color-dark);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border: none;
  padding: 12px 14px;
}

#checkout-cart .table.table-bordered tbody tr {
  background: var(--color-white);
}

#checkout-cart .table.table-bordered tbody tr:nth-child(even) {
  background: var(--color-bg-light);
}

#checkout-cart .table.table-bordered tbody td {
  border-color: var(--color-border);
  padding: 12px 14px;
  vertical-align: middle;
}

#checkout-cart .table.table-bordered .img-thumbnail {
  border-radius: 0;
  border-color: var(--color-border);
  max-width: 60px;
}

#checkout-cart .table a {
  color: var(--color-dark);
  font-weight: 500;
}

#checkout-cart .table a:hover {
  color: var(--color-blue);
}

/* Quantity input */
#checkout-cart .input-group input.form-control {
  height: 36px;
  width: 60px;
  text-align: center;
  padding: 4px 8px;
  border: 1.5px solid var(--color-border);
  border-radius: 0;
  font-size: 13px;
  background: var(--color-white);
  box-shadow: none;
}

#checkout-cart .input-group input.form-control:focus {
  border-color: var(--color-blue);
  box-shadow: none;
  outline: none;
}

/* Update button */
#checkout-cart .btn.btn-primary {
  height: 36px;
  background: var(--color-dark);
  border: none;
  border-radius: 0;
  color: var(--color-white);
  font-size: 13px;
  padding: 0 12px;
  box-shadow: none;
  background-image: none;
  text-shadow: none;
  transition: background var(--transition);
}

#checkout-cart .btn.btn-primary:hover {
  background: var(--color-blue);
}

/* Remove button */
#checkout-cart .btn.btn-danger {
  height: 36px;
  background: transparent;
  border: 1.5px solid rgba(20,22,24,0.18);
  border-radius: 0;
  color: var(--color-muted);
  font-size: 13px;
  padding: 0 10px;
  box-shadow: none;
  background-image: none;
  text-shadow: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

#checkout-cart .btn.btn-danger:hover {
  background: #e74c3c;
  border-color: #e74c3c;
  color: var(--color-white);
}

/* Totals table */
#checkout-cart .col-sm-4 .table.table-bordered {
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
}

#checkout-cart .col-sm-4 .table.table-bordered tr td {
  border-color: var(--color-border);
  padding: 8px 4px;
  color: var(--color-text);
}

#checkout-cart .col-sm-4 .table.table-bordered tr:last-child td {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-dark);
  border-top: 2px solid var(--color-dark);
  padding-top: 12px;
}

/* Bottom action buttons */
#checkout-cart .buttons {
  margin-top: 12px;
}

#checkout-cart .buttons .btn.btn-default {
  background: transparent;
  border: 2px solid var(--color-dark);
  border-radius: 0;
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 24px;
  box-shadow: none;
  background-image: none;
  text-shadow: none;
  transition: background var(--transition), color var(--transition);
}

#checkout-cart .buttons .btn.btn-default:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

#checkout-cart .buttons .btn.btn-primary {
  background: var(--color-dark);
  border: 2px solid var(--color-dark);
  border-radius: 0;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 24px;
  box-shadow: none;
  background-image: none;
  text-shadow: none;
  transition: background var(--transition), border-color var(--transition);
}

#checkout-cart .buttons .btn.btn-primary:hover {
  background: var(--color-blue);
  border-color: var(--color-blue);
}

@media (max-width: 767px) {
  #checkout-cart {
    padding-top: 20px;
  }

  #checkout-cart h1 {
    font-size: 22px;
  }

  #checkout-cart .buttons .pull-left,
  #checkout-cart .buttons .pull-right {
    float: none !important;
    display: block;
    margin-bottom: 8px;
  }

  #checkout-cart .buttons .btn {
    width: 100%;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════════════
   LIGHT THEME  —  activate via <body class="light">
   ═══════════════════════════════════════════════════════════════ */
body.light {
  --color-dark:    #1a1b1e;
  --color-dark-2:  #343c46;
  --color-text:    #222326;
  --color-muted:   #62636a;
  --color-bg-light:#f0f2f5;
  --color-border:  rgba(0,0,0,0.09);
  --shadow-nav:    0 10px 30px rgba(0,0,64,0.08);
  --shadow-card:   0 50px 60px -40px rgba(20,20,23,0.10);
  background: #fff;
  color: var(--color-text);
}

/* ── Nav / Header ───────────────────────────────────────────── */
body.light .hp-header {
  background: #FFFFFF;
  border-bottom: 1px solid #E8E5E1;
  box-shadow: 0 1px 6px rgba(20,20,33,.05);
}

/* Hide image logo, replace with text via pseudo-elements */
/* body.light .hp-logo-img { display: none; }
body.light .hp-logo {
  font-family: 'Exo 2', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
}
body.light .hp-logo::before { content: 'Holi'; color: #141421; }
body.light .hp-logo::after  { content: 'Hope'; color: #0094D4; } */

/* Nav links */
body.light .hp-center-nav .hp-nav-link {
  color: #4A4A62;
}
body.light .hp-center-nav .hp-nav-link:hover,
body.light .hp-center-nav .hp-nav-link.is-active,
body.light .hp-center-nav .hp-nav-item.is-active .hp-nav-link {
  color: #141421;
}

/* Dropdown */
body.light .hp-nav-drop {
  background: #FFFFFF;
  border-top-color: #0094D4;
  box-shadow: 0 8px 24px rgba(20,20,33,.10);
}
body.light .hp-nav-drop-item { color: #4A4A62; }
body.light .hp-nav-drop-item:hover {
  color: #141421;
  background: rgba(0,0,0,0.03);
}

/* Language switcher */
body.light .hp-header-lang-cur   { color: #141421; }
body.light .hp-header-lang-link  { color: #9A9890; }
body.light .hp-header-lang-link:hover { color: #141421; }

/* Cart icon */
body.light .hp-cart-btn       { color: #4A4A62; }
body.light .hp-cart-btn:hover { color: #141421; }

/* Burger lines */
body.light .hp-burger span       { background: #4A4A62; }
body.light .hp-burger:hover span { background: #141421; }

/* ── Hero (light theme — no overrides needed, base CSS is already light) ── */

/* ── Teasers (blue strip — stays blue) ─────────────────────── */
/* no change needed */

/* ── Intro / cards ──────────────────────────────────────────── */
body.light .hp-intro,
body.light .hp-section-light { background: #fff; }
body.light .hp-section-gray  { background: var(--color-bg-light); }
body.light .hp-card {
  background: #fff;
  border-top-color: #ce0000;
}
body.light .hp-card-icon img {
  filter: brightness(0);
}

/* ── Testimonials — stays dark, no overrides ────────────────── */

/* ── CTA phone block ────────────────────────────────────────── */
/* ── CTA Phone ──────────────────────────────────────────────── */
body.light .hp-cta-phone {
  background: #0094D4;
}
/* Hide background photo */
body.light .hp-cta-phone-bg { display: none; }

/* Decorative circles */
body.light .hp-cta-phone::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
}
body.light .hp-cta-phone::after {
  content: '';
  position: absolute;
  left: -60px; bottom: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

/* Text colours */
body.light .hp-cta-phone-label  { color: rgba(255,255,255,0.6); }
body.light .hp-cta-phone-call   { color: #FFFFFF; }
body.light .hp-cta-phone-number { color: #FFFFFF; }
body.light .hp-cta-phone-number:hover { color: rgba(255,255,255,0.8); }
body.light .hp-cta-phone-sub    { color: rgba(255,255,255,0.72); }

/* ── Testimonials ───────────────────────────────────────────── */
body.light .hp-testimonials,
body.light .hp-section.hp-section-gray { background: #F0EEEB; }

/* Quote icon — original SVG is blue, just reduce opacity */
body.light .hp-quote-icon img {
  filter: none;
  opacity: 0.18;
}

/* Blockquote */
body.light .hp-testi-slide blockquote { color: #141421; }

/* Author name (cite) */
body.light .hp-testi-slide cite { color: #141421; }

/* Author subtitle */
body.light .hp-testi-slide .hp-testi-sub { color: #6B6B88; }

/* "Read more" button */
body.light .hp-testi-slide .hp-btn {
  color: #ce0000;
  border-color: #ce0000;
}
body.light .hp-testi-slide .hp-btn:hover {
  background: #ce0000;
  color: #FFFFFF;
}

/* Slide dots */
body.light .hp-testi-dots .hp-slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #CCCCCC;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}
body.light .hp-testi-dots .hp-slider-dot.is-active {
  background: #ce0000;
  width: 24px;
  border-radius: 4px;
}

/* ── Footer ─────────────────────────────────────────────────── */
body.light .hp-footer {
  background: #FFFFFF;
  border-top: 1px solid #E8E5E1;
}
body.light .hp-footer-dark { background: #FFFFFF; }

/* Logo text (img hidden via existing .hp-logo-img rule) */
body.light .hp-logo2-print { color: #141421; }
body.light .hp-logo2-ua    { color: #6B6B88; }

/* Taglines */
body.light .hp-footer-tagline { color: #6B6B88; }

/* Social icons */
body.light .hp-social-list a {
  background: #F0EEEB;
  border-radius: 7px;
  color: #6B6B88;
}
body.light .hp-social-list a:hover { color: #141421; background: #E4E1DD; }

/* Language buttons */
body.light .hp-lang-btn              { color: #6B6B88; }
body.light .hp-lang-btn.is-active,
body.light .hp-lang-btn:hover        { color: #141421; }

/* Column headings */
body.light .hp-footer-col-title { color: #141421; }

/* Nav links */
body.light .hp-footer-links a       { color: #4A4A62; }
body.light .hp-footer-links a:hover { color: #141421; }

/* Contact */
body.light .hp-footer-address        { color: #6B6B88; }
body.light .hp-footer-phone          { color: #4A4A62; }
body.light .hp-footer-phone:hover    { color: #0094D4; }
body.light .hp-footer-email          { color: #ce0000; }
body.light .hp-footer-email:hover    { color: #a80000; }

/* Bottom bar */
body.light .hp-footer-hr             { border-top-color: #E8E5E1; }
body.light .hp-footer-copy           { color: #B0ADA8; }
body.light .hp-footer-copy a         { color: #B0ADA8; }

/* ── Showcase ───────────────────────────────────────────────── */
body.light .hp-showcase-sticky { background: #F0EEEB; }

/* Left nav panel */
body.light .hp-sc-nav {
  background: #E4E2DE;
  border-right: 1px solid #D8D5D0;
  padding-left: 0;
}
body.light .hp-sc-nav-item {
  padding: 12px 20px;
  border-bottom-color: #D8D5D0;
  border-left: 3px solid transparent;
}
body.light .hp-sc-nav-item:first-child { border-top-color: #D8D5D0; }
body.light .hp-sc-nav-item span { color: #6B6B88; font-size: 12px; font-weight: 500; }
body.light .hp-sc-nav-item:hover span { color: #141421; }
body.light .hp-sc-nav-item.is-active {
  padding-left: 20px;
  background: #ce0000;
  border-left: 3px solid #a80000;
}
body.light .hp-sc-nav-item.is-active span { color: #FFFFFF; font-weight: 700; }

/* Center image area — flex:1 fills remaining space, no inner card */
body.light .hp-sc-center {
  flex: 1;
  width: auto;
  max-width: none;
  padding: 0;
  align-items: stretch;
}
body.light .hp-sc-main-wrap {
  background: #F9F8F6;
  border-radius: 0;
  height: calc(100vh - var(--hdr));
}
body.light .hp-sc-main-img img {
  object-fit: contain;
  padding: 24px;
}

/* showcase-machine.png override removed — real product image is used */

/* Dot indicator */
body.light .hp-sc-dot { display: flex; }
body.light .hp-sc-dot-ring {
  border-color: rgba(0,0,0,0.20);
}
body.light .hp-sc-dot-ring::after {
  background: rgba(0,0,0,0.35);
}
body.light .hp-sc-dot.is-active .hp-sc-dot-ring {
  border-color: #ce0000;
}
body.light .hp-sc-dot.is-active .hp-sc-dot-ring::after {
  background: #ce0000;
}

/* Progress bar */
body.light .hp-sc-progress { background: rgba(0,0,0,0.06); }
body.light .hp-sc-progress-bar { background: #ce0000; }

/* Right specs panel — fixed width, as in design */
body.light .hp-sc-right {
  flex: 0 0 380px;
  width: 380px;
  background: #FFFFFF;
  border-left: 1px solid #E8E5E1;
}
/* Hide floating side-image overlay (dark-theme feature, not in light design) */
body.light .hp-sc-side-img { display: none; }
body.light .hp-sc-info h3 { color: #141421; }
body.light .hp-sc-info > p { color: #4A4A62; }

/* Feature items — filled blue circle + white checkmark */
body.light .hp-sc-feature p { color: #4A4A62; }
body.light .hp-sc-feature svg circle {
  stroke: transparent;
  fill: #0094D4;
}
body.light .hp-sc-feature svg path { stroke: #FFFFFF; }

/* CTA button — red outline */
body.light .hp-sc-btn {
  background: transparent;
  color: #ce0000;
  border-color: #ce0000;
  border-radius: 4px;
}
body.light .hp-sc-btn:hover {
  background: #ce0000;
  border-color: #ce0000;
  color: #FFFFFF;
}

/* Mobile nav borders */
body.light .hp-sc-nav-item { border-right-color: #D8D5D0; }

/* ── Product dark page ──────────────────────────────────────── */
body.light .hp-product-dark-page { background: #fff; }
body.light .hp-product-hero-title { color: var(--color-dark); }
body.light .hp-product-hero-brand,
body.light .hp-product-hero-brand a { color: rgba(26,27,30,0.5); }

body.light .hp-gallery-thumb {
  border-color: rgba(0,0,0,0.12);
  background: #f0f2f5;
}
body.light .hp-thumb-nav { background: #e0e2e8; color: var(--color-dark); }
body.light .hp-thumb-nav:hover { background: var(--color-blue); color: #fff; }
body.light .hp-gallery-arrow { background: rgba(255,255,255,0.75); color: var(--color-dark); }

body.light .hp-product-characteristics * { color: rgba(26,27,30,0.82) !important; }
body.light .hp-product-characteristics h1,
body.light .hp-product-characteristics h2,
body.light .hp-product-characteristics h3,
body.light .hp-product-characteristics h4 { color: var(--color-dark) !important; }
body.light .hp-product-characteristics strong { color: var(--color-dark) !important; }
body.light .hp-product-characteristics table td,
body.light .hp-product-characteristics table th { border-color: rgba(0,0,0,0.1); }
body.light .hp-product-characteristics table tr:nth-child(even) td { background: rgba(0,0,0,0.03); }

body.light .hp-product-specs { border-top-color: rgba(0,0,0,0.09); }
body.light .hp-spec-row { border-bottom-color: rgba(0,0,0,0.06); }
body.light .hp-spec-label { color: rgba(26,27,30,0.5); }
body.light .hp-spec-value { color: rgba(26,27,30,0.88); }

body.light .hp-price-new { color: var(--color-dark); }
body.light .hp-price-old { color: rgba(26,27,30,0.4); }
body.light .hp-product-stock { color: rgba(26,27,30,0.4); }

body.light .hp-product-desc-section { border-top-color: rgba(0,0,0,0.07); }
body.light .hp-product-desc { color: rgba(26,27,30,0.72); }
body.light .hp-product-desc * { color: rgba(26,27,30,0.72) !important; }
body.light .hp-product-desc h1,body.light .hp-product-desc h2,
body.light .hp-product-desc h3,body.light .hp-product-desc h4 { color: var(--color-dark) !important; }
body.light .hp-product-desc strong { color: var(--color-dark) !important; }

/* ── Examples section ───────────────────────────────────────── */
body.light .hp-examples-section { background: var(--color-bg-light); }

/* ── Contact page ───────────────────────────────────────────── */
body.light .hp-contact-page { background: #fff; }
body.light .hp-contact-hero { border-bottom-color: rgba(0,0,0,0.07); }
body.light .hp-contact-hero-white { color: var(--color-dark); }
body.light .hp-contact-hero-sub { color: rgba(26,27,30,0.6); }
body.light .hp-cinfo-icon { border-color: rgba(0,0,0,0.14); }
body.light .hp-cinfo-label { color: rgba(26,27,30,0.4); }
body.light .hp-cinfo-value { color: var(--color-dark); }
body.light .hp-cform-title { color: var(--color-dark); }
body.light .hp-cform-field label { color: rgba(26,27,30,0.45); }
body.light .hp-cform-field input,
body.light .hp-cform-field textarea {
  background: #f0f2f5;
  border-color: rgba(0,0,0,0.12);
  color: var(--color-dark);
}
body.light .hp-cform-field input::placeholder,
body.light .hp-cform-field textarea::placeholder { color: rgba(26,27,30,0.28); }
body.light .hp-cform-field input:focus,
body.light .hp-cform-field textarea:focus { background: #fff; border-color: var(--color-blue); }

/* Product page contact form */
body.light .hp-contact-section { background: var(--color-bg-light); border-top-color: rgba(0,0,0,0.07); }
body.light .hp-contact-title { color: var(--color-dark); }
body.light .hp-contact-sub { color: rgba(26,27,30,0.58); }
body.light .hp-form-field label { color: rgba(26,27,30,0.55); }
body.light .hp-form-field input,
body.light .hp-form-field textarea {
  background: #fff;
  border-color: rgba(0,0,0,0.12);
  color: var(--color-dark);
}
body.light .hp-form-field input::placeholder,
body.light .hp-form-field textarea::placeholder { color: rgba(26,27,30,0.28); }
body.light .hp-form-field input:focus,
body.light .hp-form-field textarea:focus { border-color: var(--color-blue); }

/* ── Catalog page ───────────────────────────────────────────── */
body.light .hp-catalog-page { background: #fff; }
body.light .hp-catalog-title { color: var(--color-dark); }
body.light .hp-catalog-card { background: var(--color-bg-light); }
body.light .hp-catalog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.10); }
body.light .hp-catalog-card-name a { color: var(--color-dark); }
body.light .hp-catalog-empty { color: rgba(26,27,30,0.5); }

/* ── Cart page ──────────────────────────────────────────────── */
body.light #checkout-cart .table.table-bordered thead td {
  background: var(--color-dark);
  color: #fff;
}
