/* Paramount Furniture. Design tokens live in /css/tokens.css */

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
.pf-img { width: 100%; height: 100%; object-fit: cover; background: var(--grey-100); }
.img-fallback { object-fit: contain; padding: 2rem; background: var(--grey-100); }
.product-card-image .pf-img,
.product-gallery .pf-img,
.hero-image .pf-img,
.planner-visual .pf-img,
.help-image .pf-img,
.ba-before .pf-img,
.ba-after .pf-img { min-height: 100%; }
.help-image .pf-img { border-radius: var(--radius-lg); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--page-gutter); }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.page-intro { padding: 2rem 0 0; }
.page-intro h1 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 0.25rem; }
.page-intro-centered { text-align: center; }
.page-intro-centered p { max-width: 500px; margin: 0 auto; }
.shop-toolbar-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.breadcrumb-nav {
  padding: 1.5rem 0 0;
  font-size: 0.85rem;
}
.w-full { width: 100%; justify-content: center; }

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  top: 1rem;
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .client-logos-track { animation: none; }
  .admin-live-dot { animation: none; }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Typography */
.badge {
  display: inline-block;
  background: var(--red-light);
  color: var(--red-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}
.badge-dark { background: rgba(227,6,19,0.15); color: var(--red-dark); }
/* Badges on dark sections need higher contrast */
.planner .badge-dark {
  background: rgba(227, 6, 19, 0.28);
  color: #FF3B30;
  border: 1px solid rgba(227, 6, 19, 0.45);
}
.badge-white { background: rgba(255,255,255,0.15); color: var(--white); }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.18; font-weight: 800; letter-spacing: -0.025em; }
h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); font-weight: 700; }
h3 { font-size: 1.25rem; }

.text-red { color: var(--red); }
.text-muted { color: var(--grey-500); }

.section { padding: 5rem 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-grey { background: var(--grey-50); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .badge { margin-bottom: 1rem; }
.section-header p { color: var(--grey-500); margin-top: 0.75rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.section-dark .section-header p { color: rgba(255,255,255,0.78); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red-gradient);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(227,6,19,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(227,6,19,0.4); }
.btn-secondary {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--grey-300);
}
.btn-secondary:hover { border-color: var(--black); }
.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.75rem; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--white); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.site-header.scrolled {
  border-bottom-color: rgba(0,0,0,0.06);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0.6rem var(--page-gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 0.8rem;
}
.logo {
  display: flex;
  align-items: center;
  font-weight: 800;
  flex-shrink: 0;
  min-width: 0;
  justify-self: start;
}
.logo-mark {
  width: min(130px, 100%);
  max-width: 130px;
  height: auto;
  flex-shrink: 0;
  display: block;
}
.logo-footer .logo-mark {
  width: min(156px, 100%);
  max-width: 156px;
}
.nav-main {
  display: flex;
  gap: 0.1rem;
  justify-content: center;
  flex-wrap: wrap;
  min-width: 0;
  justify-self: center;
}
.nav-main a {
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-main a:hover, .nav-main a.active { color: var(--red); }
.nav-main a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
  justify-self: end;
}
.header-phone { font-size: 0.76rem; font-weight: 600; color: var(--grey-700); white-space: nowrap; text-decoration: none; }
.header-phone:hover { color: var(--red); }
.header-icon {
  position: relative;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--grey-100);
  transition: var(--transition);
}
.header-icon svg { display: block; }
.header-icon:hover { background: var(--red-light); color: var(--red); }
.header-icon .count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-icon .count.is-zero { display: none; }
.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--grey-100);
  color: var(--black);
  font-size: 1.2rem;
  line-height: 1;
  transition: var(--transition);
  flex-shrink: 0;
}
.mobile-toggle:hover,
.mobile-toggle[aria-expanded="true"] {
  background: var(--red-light);
  color: var(--red);
}

/* Hero */
.hero {
  padding: 0;
  background: #fff;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}
.hero-content .badge { margin-bottom: 1.25rem; }
.hero-content h1 { margin-bottom: 1rem; }
.hero-content p { color: var(--grey-700); font-size: 1.05rem; margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: 2rem; }
.hero-steps { display: flex; gap: 0.75rem; }
.hero-step {
  background: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow);
}
.hero-visual { position: relative; }
.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
}
.hero-badge strong { display: block; font-size: 0.7rem; letter-spacing: 0.06em; }
.hero-badge span { color: rgba(255, 255, 255, 0.78); font-size: 0.75rem; }
.hero-nav {
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.hero-nav button:hover { background: var(--red); color: var(--white); }
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 0 1rem;
  background: #fff;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grey-300);
  transition: var(--transition);
}
.hero-dots button.active { background: var(--red); width: 28px; border-radius: 5px; }

/* Homepage trust banner */
.trust-banner {
  background: linear-gradient(180deg, var(--grey-50) 0%, var(--white) 100%);
  padding: 0 0 2rem;
}
.trust-banner-shell {
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  padding: 1.25rem 1.35rem 1.15rem;
}
.trust-banner-header {
  text-align: center;
  margin-bottom: 1rem;
}
.trust-banner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-banner-kicker::before,
.trust-banner-kicker::after {
  content: '';
  width: 2.6rem;
  height: 1px;
  background: currentColor;
  opacity: 0.9;
}
.trust-banner-header h2 {
  margin-top: 0.55rem;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
}
.trust-banner-header h2 span { color: var(--red); }
.trust-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}
.trust-banner-item {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.48rem;
  padding: 0.5rem 0.85rem 0.65rem;
}
.trust-banner-item + .trust-banner-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: rgba(15, 23, 42, 0.08);
}
.trust-banner-icon {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  background: var(--grey-100);
  border: 1px solid rgba(227, 6, 19, 0.10);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}
.trust-banner-icon svg {
  width: 2rem;
  height: 2rem;
}
.trust-banner-item strong {
  display: block;
  font-size: 1.02rem;
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.trust-banner-item strong::after {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--red);
  margin: 0.45rem auto 0;
}
.trust-banner-item span {
  color: var(--grey-600);
  font-size: 0.84rem;
  line-height: 1.35;
  max-width: 12rem;
  margin-top: 0.35rem;
}

/* Category scroll */
.category-scroll {
  padding: 2rem 0;
  background: var(--grey-50);
  overflow: hidden;
}
.category-scroll-inner {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 1.5rem;
  scrollbar-width: none;
  max-width: var(--max-w);
  margin: 0 auto;
}
.category-scroll-inner::-webkit-scrollbar { display: none; }
.category-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: var(--white);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: var(--transition);
  flex-shrink: 0;
}
.category-pill:hover { background: var(--red); color: var(--white); }
.category-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.category-pill:hover .dot { background: var(--white); }

/* Planner */
.planner { padding: 5rem 0; background: var(--dark); color: var(--white); }
.planner-header { text-align: center; margin-bottom: 2.5rem; }
.planner-header h2 { color: var(--white); margin: 1rem 0 0.5rem; }
.planner-header p { color: rgba(255,255,255,0.78); }
.planner-tabs {
  display: flex;
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.planner-tab {
  flex: 1;
  min-width: 140px;
  padding: 1rem 1.25rem;
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: left;
  transition: var(--transition);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.95);
}
.planner-tab:hover:not(.active) {
  background: #2c2c2c;
  border-color: rgba(255, 255, 255, 0.16);
}
.planner-tab:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: -3px;
  z-index: 1;
}
.planner-tab:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.planner-tab:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.planner-tab.active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.planner-tab .tab-num {
  font-size: 0.7rem;
  color: #FF3B30;
  font-weight: 600;
}
.planner-tab.active .tab-num { color: var(--red); }
.planner-tab .tab-label {
  font-weight: 700;
  font-size: 0.9rem;
  display: block;
  margin: 0.15rem 0;
  color: inherit;
}
.planner-tab .tab-seats {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
}
.planner-tab.active .tab-seats { color: var(--grey-700); }
.planner-panel {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.planner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.planner-info {
  padding: 2.5rem;
  color: var(--black);
}
.planner-info .badge { margin-bottom: 1rem; }
.planner-info h3 { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--black); }
.planner-info p { color: var(--grey-700); margin-bottom: 1.5rem; }
.planner-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.planner-tag {
  padding: 0.4rem 1rem;
  background: var(--grey-100);
  border: 1px solid #e0e0e0;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--grey-900);
}
.planner-steps { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.planner-step {
  padding: 0.5rem 1rem;
  border: 1px solid #b8b8b8;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--grey-700);
  background: var(--white);
}
.planner-visual { position: relative; min-height: 360px; }
.planner-visual img { width: 100%; height: 100%; object-fit: cover; }
.planner-seat-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
}
.planner-card-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
}
.planner-card-label strong { display: block; font-size: 1rem; }
.planner-card-label span { font-size: 0.8rem; color: rgba(255,255,255,0.88); }

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--grey-100);
}
.product-card-image-link {
  display: block;
  width: 100%;
  height: 100%;
}
.product-card-image-link .pf-img,
.product-card-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 7.5rem);
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.36rem 0.65rem;
  border-radius: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}
.product-actions-top {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  flex-shrink: 0;
  max-width: 7rem;
  justify-content: flex-start;
}
.product-actions-top button {
  border: none;
  cursor: pointer;
  background: var(--white);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: var(--transition);
}
.product-compare {
  padding: 0.38rem 0.7rem;
  white-space: nowrap;
  color: var(--grey-800);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-compare:hover {
  background: var(--red-light);
  color: var(--red);
}
.product-compare.active {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(227, 6, 19, 0.38);
}
.product-compare.active::before {
  content: '✓';
  margin-right: 0.25rem;
  font-size: 0.72rem;
}
body.compare-building .product-compare:not(.active) {
  border: 1.5px solid rgba(227, 6, 19, 0.28);
  box-shadow: 0 2px 10px rgba(227, 6, 19, 0.12);
}
body.compare-ready .product-compare.active {
  padding: 0.42rem 0.78rem;
  box-shadow: 0 0 0 2px var(--white), 0 4px 14px rgba(227, 6, 19, 0.5);
}
body.compare-ready .product-card.compare-selected {
  box-shadow: 0 0 0 2px rgba(227, 6, 19, 0.55), var(--shadow-lg);
}
body.compare-ready .product-card.compare-selected:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 2px var(--red), var(--shadow-lg);
}
#compareBtn.has-items {
  background: var(--red-light);
  color: var(--red);
}
#compareBtn.compare-ready {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.2);
}
#compareBtn.compare-ready .count {
  background: var(--white);
  color: var(--red);
}
.product-actions-top button.product-compare:hover { background: var(--red-light); color: var(--red); }
.product-actions-top button.product-compare.active:hover { background: var(--red-dark, #a01830); color: var(--white); }
.product-wishlist {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: var(--transition);
}
.product-wishlist:hover, .product-wishlist.active { background: var(--red); color: var(--white); }
.product-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}
.product-card-body a { color: inherit; text-decoration: none; }
.product-card-body a:hover h3 { color: var(--red); }
.product-card-body h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  min-height: 2.4em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-body .desc {
  font-size: 0.85rem;
  color: var(--grey-500);
  margin-bottom: 0.75rem;
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-warranty {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #1a7a3a;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.warranty-icon {
  display: inline-flex;
  color: #1a7a3a;
  flex-shrink: 0;
}
.warranty-icon svg { width: 15px; height: 15px; }
.product-rating { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; font-size: 0.85rem; }
.star { color: var(--grey-300); font-size: 0.9rem; }
.star.filled, .star.half { color: #f5a623; }
.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.35rem;
}
.product-price .price { font-size: 1.15rem; font-weight: 800; }
.product-price .mrp { font-size: 0.85rem; color: var(--grey-500); text-decoration: line-through; }

/* Category cards */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.category-card .cat-icon {
  width: 44px;
  height: 44px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--red);
}
.category-card .cat-tag { font-size: 0.65rem; font-weight: 800; color: var(--red); letter-spacing: 0.08em; margin-bottom: 0.35rem; }
.category-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.category-card p { font-size: 0.85rem; color: var(--grey-500); margin-bottom: 1.25rem; line-height: 1.5; }
.category-card .cat-link { font-size: 0.8rem; font-weight: 700; color: var(--red); }
.category-card .cat-deco {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--red-light);
  border-radius: 50%;
  opacity: 0.5;
}
.category-card-photo {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--grey-50);
}
.category-card-photo .pf-img { width: 100%; height: 100%; object-fit: contain; padding: 0.35rem; }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
#catalog-main { padding-bottom: 4rem; }
.catalog-workspace { margin-top: 3rem; }
.catalog-card:focus-visible,
.category-card:focus-visible { outline-offset: 4px; }
.catalog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
  transition: var(--transition);
}
.catalog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.catalog-card-image {
  aspect-ratio: 1;
  background: var(--grey-50);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.catalog-card-image .pf-img { width: 100%; height: 100%; object-fit: contain; }
.catalog-card-body { padding: 1.1rem 1.25rem 1.25rem; }
.catalog-card-body h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.shop-intro-link { margin-top: 0.35rem; font-size: 0.9rem; }
.shop-intro-link a { color: var(--red); font-weight: 600; }
.client-logos {
  margin-top: 2rem;
  margin-bottom: 3rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.client-logos-track {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  width: max-content;
  animation: client-logos-scroll 40s linear infinite;
}
.client-logo-item {
  flex: 0 0 auto;
  width: 120px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}
.client-logo-item .pf-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  transition: var(--transition);
}
.client-logo-item:hover .pf-img { filter: none; opacity: 1; }
@keyframes client-logos-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
}
.testimonial-card blockquote {
  margin: 0.85rem 0 1rem;
  color: var(--grey-700);
  font-size: 0.95rem;
  line-height: 1.65;
}
.testimonial-card footer { display: flex; flex-direction: column; gap: 0.15rem; }
.testimonial-stars { color: #f5a623; font-size: 0.9rem; }

/* Trust section */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: stretch;
}
.trust-stat {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
.trust-stat .icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: var(--red-light);
  position: relative;
}
.trust-stat .icon::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  background: var(--red);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.trust-stat .icon-years::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E"); }
.trust-stat .icon-clients::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E"); }
.trust-stat .icon-projects::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='2' y='7' width='20' height='14' rx='2'/%3E%3Cpath d='M16 7V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2'/%3E%3C/svg%3E"); }
.trust-stat .icon-corporate::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M3 21h18M5 21V7l7-4 7 4v14'/%3E%3C/svg%3E"); }
.trust-stat .number { font-size: 2rem; font-weight: 800; color: var(--red); margin-bottom: 0.25rem; }
.trust-stat .label { font-size: 0.9rem; color: var(--grey-700); }

.trial-banner {
  background: linear-gradient(135deg, #1a3a2a 0%, #2a1a1a 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.trial-banner .trial-tag { color: #7ef0b0; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.trial-banner h3 { font-size: 1.5rem; margin-bottom: 0.35rem; }
.trial-banner p { color: rgba(255,255,255,0.88); font-size: 0.9rem; }
.trial-steps { display: flex; gap: 1rem; }
.trial-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.14);
  padding: 0.6rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.step-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* Before/After */
.transform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.transform-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ba-slider {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
}
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
}
.ba-before img, .ba-after img { width: 100%; height: 100%; object-fit: cover; }
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 2;
}
.ba-handle::after {
  content: '⟷';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}
.ba-label {
  position: absolute;
  top: 0.75rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  border-radius: 4px;
  z-index: 3;
}
.ba-label-before { left: 0.75rem; background: var(--black); color: var(--white); }
.ba-label-after { right: 0.75rem; background: var(--red); color: var(--white); }
.transform-card-body { padding: 1.25rem; }
.transform-card-body h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.transform-card-body .rating { color: var(--red); font-weight: 700; font-size: 0.85rem; margin-bottom: 0.35rem; }
.transform-card-body p { font-size: 0.85rem; color: var(--grey-500); }

.trust-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
  gap: 1rem;
}
.trust-bar strong { color: var(--red); }

/* Help section */
.help-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.help-image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--grey-100); }
.help-content .badge { margin-bottom: 1rem; }
.help-content h2 { margin-bottom: 1rem; }
.help-content p { color: var(--grey-700); margin-bottom: 1.5rem; }

/* Footer */
.site-footer { background: var(--white); border-top: 1px solid var(--grey-100); padding: 4rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1.3fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.85rem; color: var(--grey-500); margin: 1rem 0; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--grey-700);
  padding: 0.3rem 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--red); }
.footer-b2b {
  background: var(--red-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.footer-b2b h4 { border: none; margin-bottom: 0.5rem; }
.footer-b2b p { font-size: 0.8rem; color: var(--grey-700); margin-bottom: 1rem; }
.footer-b2b ul { margin-bottom: 1.25rem; }
.footer-b2b li { font-size: 0.8rem; color: var(--grey-700); padding: 0.2rem 0; }
.footer-b2b li::before { content: '✓ '; color: var(--red); font-weight: 700; }
.footer-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
  margin-bottom: 1.5rem;
}
.footer-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-size: 0.8rem;
  color: var(--grey-500);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-credit { color: var(--grey-500); font-size: 0.75rem; }
.footer-brand a { color: inherit; text-decoration: none; }
.footer-brand a:hover { color: var(--red); }

/* Shop page */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  padding: 2rem 0 4rem;
}
.shop-filters {
  position: sticky;
  top: calc(var(--header-height) + 0.75rem);
  align-self: start;
}
.filter-group { margin-bottom: 1.5rem; }
.filter-group h4 { font-size: 0.85rem; margin-bottom: 0.75rem; }
.filter-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  padding: 0.35rem 0;
  cursor: pointer;
  color: var(--grey-700);
}
.filter-group input[type="checkbox"],
.filter-group input[type="radio"] { accent-color: var(--red); }
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.shop-toolbar select {
  padding: 0.5rem 1rem;
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  font-size: 0.85rem;
  background: var(--white);
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--grey-100);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  flex: 1;
  max-width: 400px;
  border: 1px solid transparent;
  transition: var(--transition);
}
.search-bar:focus-within {
  background: var(--white);
  border-color: var(--grey-300);
  box-shadow: 0 0 0 3px rgba(227,6,19,0.08);
}
.search-icon { color: var(--grey-500); flex-shrink: 0; }
.search-bar input {
  border: none;
  background: none;
  outline: none;
  font-size: 0.9rem;
  width: 100%;
}

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 2rem 0 4rem;
}
.product-gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grey-100);
}
.product-gallery-main {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.product-gallery-main .pf-img,
.product-gallery img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.gallery-thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--grey-100);
  transition: var(--transition);
}
.gallery-thumb.active,
.gallery-thumb:hover { border-color: var(--red); }
.gallery-thumb .pf-img { width: 100%; height: 100%; object-fit: cover; }
.product-info h1 { font-size: 2rem; margin-bottom: 0.5rem; }
.product-info .desc { color: var(--grey-700); margin-bottom: 1rem; }
.variant-group { margin-bottom: 1.25rem; }
.variant-group label { font-size: 0.85rem; font-weight: 700; display: block; margin-bottom: 0.5rem; }
.variant-options { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.variant-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--grey-300);
  border-radius: 8px;
  font-size: 0.85rem;
  transition: var(--transition);
}
.variant-btn.active, .variant-btn:hover { border-color: var(--red); color: var(--red); }
.qty-selector {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.qty-selector button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-selector span { font-weight: 700; min-width: 2rem; text-align: center; }
.product-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.features-list { border-top: 1px solid var(--grey-100); padding-top: 1.5rem; }
.features-list h4 { margin-bottom: 0.75rem; }
.features-list li { padding: 0.35rem 0; font-size: 0.9rem; color: var(--grey-700); }
.features-list li::before { content: '✓ '; color: var(--green-dark); font-weight: 700; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0 4rem;
}
.contact-info-card {
  background: var(--grey-50);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-info-card h3 { margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.contact-item .icon {
  width: 44px;
  height: 44px;
  background: var(--red-light);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.contact-item .icon::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  background: var(--red);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.icon-pin::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }
.icon-phone::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); }
.icon-mail::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E"); }
.icon-clock::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E"); }

.footer-feature .feat-icon {
  width: 36px;
  height: 36px;
  background: var(--red-light);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.footer-feature .feat-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  background: var(--red);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.feat-check::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }
.feat-truck::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='1' y='3' width='15' height='13'/%3E%3Cpolygon points='16 8 20 8 23 11 23 16 16 16 16 8'/%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'/%3E%3C/svg%3E"); }
.feat-globe::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E"); }
.feat-star::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E"); }

.wa-float svg { display: block; }

.product-wishlist {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item strong { display: block; font-size: 0.85rem; }
.contact-item span { font-size: 0.85rem; color: var(--grey-700); }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); }
.contact-team-section {
  text-align: center;
  padding: 0 0 4rem;
  border-top: 1px solid var(--grey-100);
  margin-top: 1rem;
  padding-top: 3rem;
}
.contact-team-section h2 { margin-bottom: 0.5rem; }
.contact-team-section > .text-muted { margin-bottom: 2rem; }
.contact-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}
.contact-team-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-team-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red-light);
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-team-card strong { display: block; font-size: 0.95rem; }
.contact-team-card span { font-size: 0.85rem; color: var(--grey-700); }
.contact-item a { color: var(--grey-700); text-decoration: none; }
.contact-item a:hover { color: var(--red); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227,6,19,0.2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  color: var(--white);
  font-size: 1.5rem;
}
.wa-float:hover { transform: scale(1.1); }

/* Toast */
.toast {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  background: var(--black);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  z-index: 200;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* B2B portal */
.proto-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}
.proto-strip-tag {
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}
.portal-page { padding: 2rem 0 4rem; }
.portal-page-wide { max-width: 1400px; }
.portal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-100);
}
.portal-narrow { max-width: 480px; margin: 0 auto; }
.portal-form { margin-top: 1.5rem; }
.form-error { color: var(--red); font-size: 0.85rem; min-height: 1.25rem; margin-bottom: 0.5rem; }
.demo-accounts { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--grey-100); }
.demo-accounts code { background: var(--grey-100); padding: 0.1rem 0.35rem; border-radius: 4px; }
.demo-account-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  text-align: left;
  padding: 0.85rem 1rem;
  margin-top: 0.5rem;
  border: 1px solid var(--grey-300);
  border-radius: var(--radius);
  background: var(--grey-50);
  transition: var(--transition);
}
.demo-account-btn:hover { border-color: var(--red); background: var(--red-light); }
.demo-account-btn span { font-size: 0.8rem; color: var(--grey-500); margin-top: 0.15rem; }
.portal-foot { margin-top: 1.25rem; font-size: 0.85rem; text-align: center; }
.header-account {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  background: var(--grey-100);
  white-space: nowrap;
}
.header-account:hover { background: var(--red-light); color: var(--red); }
.header-account-admin { background: #1a1a1a; color: var(--white); }
.header-account-admin:hover { background: var(--red); color: var(--white); }
.portal-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.portal-aside h3 { margin-bottom: 1rem; }
.portal-checklist { margin: 0; padding-left: 1.1rem; color: var(--grey-700); font-size: 0.9rem; }
.portal-checklist li { margin-bottom: 0.5rem; }
.order-lines { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.order-lines th,
.order-lines td { padding: 0.75rem 0; border-bottom: 1px solid var(--grey-100); text-align: left; vertical-align: top; }
.order-lines th { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--grey-500); }
.order-line-product { display: flex; gap: 1rem; align-items: center; }
.order-line-product img { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; }
.domain-addon {
  background: var(--grey-50);
  border: 1px dashed var(--grey-300);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.domain-addon-toggle { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; cursor: pointer; }
.domain-addon-fields { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.35rem; }
.domain-addon-fields input {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  font-family: inherit;
}
.order-totals { border-top: 1px solid var(--grey-100); padding-top: 1rem; margin-bottom: 1.5rem; }
.order-totals > div { display: flex; justify-content: space-between; padding: 0.35rem 0; color: var(--grey-700); }
.order-total-row { font-weight: 800; font-size: 1.1rem; color: var(--black); border-top: 1px solid var(--grey-100); margin-top: 0.5rem; padding-top: 0.75rem !important; }
.order-success { text-align: center; }
.order-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: #e8f8ee;
  color: #1a7a3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
}
.order-meta { text-align: left; margin: 1.5rem 0; }
.order-meta dt { font-size: 0.75rem; color: var(--grey-500); margin-top: 0.75rem; }
.order-meta dd { font-weight: 600; margin: 0.15rem 0 0; }
.tracking-box {
  background: var(--grey-50);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: left;
  margin-top: 1rem;
}
.tracking-box h3 { margin-bottom: 0.35rem; font-size: 1rem; }
.tracking-link { display: block; font-size: 0.75rem; margin-top: 0.75rem; word-break: break-all; }
.order-status {
  display: inline-block;
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}
.status-confirmed { background: #e8f0ff; color: #1a4fa0; }
.status-processing { background: #fff4e5; color: #9a5b00; }
.status-dispatched { background: #e8f8ee; color: #1a7a3a; }
.status-delivered { background: var(--grey-100); color: var(--grey-700); }
.account-page { max-width: 760px; margin: 0 auto; }
.portal-card.account-shell { padding: 0; overflow: hidden; }
.account-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--grey-100);
}
.account-header h1 { font-size: 1.5rem; margin: 0 0 0.35rem; }
.account-header-text .text-muted { font-size: 0.9rem; margin: 0; }
.account-sep { margin: 0 0.35rem; opacity: 0.5; }
.account-signout {
  flex-shrink: 0;
  border-radius: 100px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.account-orders {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 2rem 2rem;
}
.account-empty { padding: 1rem 0; text-align: center; }
.account-order {
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 0;
  background: var(--grey-50);
}
.account-order.highlight { border-color: var(--red); box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1); background: var(--white); }
.account-order-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}
.account-order-meta { min-width: 0; }
.account-order-id { display: block; font-size: 1rem; letter-spacing: 0.02em; }
.account-order-date { display: block; font-size: 0.8rem; margin-top: 0.2rem; }
.account-order-items {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--grey-700);
  font-size: 0.9rem;
}
.account-order-items li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.account-order-items li:last-child { border-bottom: none; }
.account-order-domain { font-size: 0.82rem; color: var(--grey-500); }
.account-order-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  padding-top: 0.85rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.account-order-total { color: var(--grey-700); }
.account-order-total strong { color: var(--black); font-size: 1rem; }
.account-track {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--grey-700);
  cursor: pointer;
  transition: var(--transition);
}
.account-track:hover { border-color: var(--red); color: var(--red); background: var(--red-light); }
.account-track code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  background: none;
  color: inherit;
  max-width: 8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
.admin-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.admin-kpi {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.admin-kpi span { display: block; font-size: 0.8rem; color: var(--grey-500); margin-bottom: 0.35rem; }
.admin-kpi strong { font-size: 1.35rem; color: var(--red); }
.admin-panels { display: flex; flex-direction: column; gap: 1.5rem; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 720px; font-size: 0.85rem; }
.admin-table th,
.admin-table td { padding: 0.75rem; border-bottom: 1px solid var(--grey-100); text-align: left; vertical-align: top; }
.admin-table th { background: var(--grey-50); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--grey-500); }
.admin-table tr.low-stock td:nth-child(6) { color: var(--red); font-weight: 700; }
.product-cta-note { font-size: 0.75rem; margin-top: 0.75rem; width: 100%; }
.admin-live {
  position: fixed;
  bottom: max(1.5rem, env(safe-area-inset-bottom));
  left: max(1rem, env(safe-area-inset-left));
  z-index: 98;
  max-width: 300px;
}
.admin-live-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #1a1a1a;
  color: var(--white);
  padding: 0.65rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.admin-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7ef0b0;
  animation: admin-pulse 2s infinite;
}
@keyframes admin-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.admin-live-body {
  margin-top: 0.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-100);
  padding: 1rem;
  max-height: 320px;
  overflow-y: auto;
}
.admin-live-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; font-size: 0.85rem; }
.admin-live-header a { color: var(--red); font-weight: 700; font-size: 0.8rem; }
.admin-live-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  color: var(--grey-500);
}
.admin-live-stats span { display: block; font-size: 1rem; font-weight: 800; color: var(--black); }
.admin-live-orders { list-style: none; margin: 0; padding: 0; }
.admin-live-orders li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.6rem 0;
  border-top: 1px solid var(--grey-100);
  font-size: 0.8rem;
}
.admin-live-orders strong { display: block; font-size: 0.8rem; }
.admin-live-orders .text-muted { font-size: 0.72rem; }

.portal-note { margin-bottom: 1.25rem; font-size: 0.9rem; }
.wip-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.wip-link:hover { color: var(--red); }
.footer-feature-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
}
.footer-b2b .wip-link { color: var(--grey-700); }
.footer-b2b .wip-link:hover { color: var(--red); }
.footer-payments,
.footer-scope {
  font-size: 0.8rem;
  color: var(--grey-500);
}
.footer-scope { opacity: 0.65; }
.footer-scope:hover { opacity: 1; color: var(--red); }
.domain-addon-locked { background: var(--grey-50); }
.domain-addon-upsell {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  text-align: left;
  padding: 0.85rem 1rem;
  border: 1px dashed var(--grey-300);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}
.domain-addon-upsell:hover { border-color: var(--red); background: var(--red-light); }
.domain-lock { font-size: 1rem; }

body.paywall-open { overflow: hidden; }
.paywall-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(17, 17, 17, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.paywall-overlay[hidden] { display: none; }
.paywall-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.paywall-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grey-100);
  font-size: 1.25rem;
  line-height: 1;
}
.paywall-lock {
  font-size: 2rem;
  margin: 0.5rem 0 1rem;
  cursor: pointer;
  user-select: none;
  width: fit-content;
}
.paywall-copy { font-size: 0.9rem; color: var(--grey-700); margin: 1rem 0 1.25rem; }
.paywall-actions { margin-bottom: 0.5rem; }
.quotation-egg {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--grey-100);
  text-align: left;
}
.quotation-egg-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.quotation-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.85rem;
}
.quotation-table th,
.quotation-table td {
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid var(--grey-100);
  text-align: left;
}
.quotation-table tfoot td { font-weight: 800; }
.quotation-included {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  color: var(--grey-700);
  font-size: 0.85rem;
}
.quotation-included li { margin-bottom: 0.35rem; }
.quotation-note { font-size: 0.85rem; margin: 0.5rem 0; }
.quotation-foot {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--grey-500);
  font-style: italic;
}

/* Page utilities */
.page-header { padding: 2.5rem 0 3rem; }
.page-header h1 { margin: 0.75rem 0 0.5rem; }
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--grey-50);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--grey-300);
}
.empty-state h3 { margin-bottom: 0.5rem; }
.empty-state .btn { margin-top: 1.5rem; }

.saved-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  padding-bottom: 4rem;
}
.saved-product-card { position: relative; }
.saved-product-card .saved-remove {
  width: calc(100% - 2rem);
  margin: 0 1rem 1rem;
}

.compare-scroll {
  overflow-x: auto;
  padding-bottom: 4rem;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-table th,
.compare-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--grey-100);
  vertical-align: top;
  text-align: left;
  font-size: 0.9rem;
}
.compare-table thead th {
  background: var(--grey-50);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.compare-table tbody th[scope="row"] {
  color: var(--grey-500);
  font-weight: 700;
  width: 120px;
  background: var(--grey-50);
}
.compare-table img { width: 120px; height: 120px; object-fit: cover; border-radius: 8px; }
.compare-features { margin: 0; padding-left: 1.1rem; color: var(--grey-700); }
.compare-features li { margin-bottom: 0.25rem; }

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.form-actions .btn { flex: 1; min-width: 160px; justify-content: center; }
.form-note { font-size: 0.75rem; text-align: center; margin-top: 0.75rem; }
a.btn.disabled {
  pointer-events: none;
  opacity: 0.45;
}

.about-hero {
  padding: 4rem 0 2rem;
  background: linear-gradient(180deg, var(--grey-50) 0%, var(--white) 100%);
}
.about-hero h1 { max-width: 720px; margin: 1rem 0; font-size: clamp(1.75rem, 4vw, 2.5rem); }
.about-lead { max-width: 640px; font-size: 1.05rem; }
.about-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-split p { color: var(--grey-700); margin-bottom: 1rem; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-stats div {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.about-stats strong { display: block; font-size: 1.35rem; color: var(--red); margin-bottom: 0.25rem; }
.about-stats span { font-size: 0.85rem; color: var(--grey-700); }
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.about-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.about-card h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.about-card p { color: var(--grey-700); font-size: 0.9rem; }
.about-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--grey-700);
}
.about-list li { margin-bottom: 0.5rem; }
.faq-list { margin: 0; }
.faq-list dt { font-weight: 700; margin-top: 1rem; }
.faq-list dt:first-child { margin-top: 0; }
.faq-list dd { margin: 0.35rem 0 0; color: var(--grey-700); font-size: 0.9rem; }

/* Responsive */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
  .nav-main a { padding: 0.4rem 0.7rem; font-size: 0.78rem; }
  .header-phone { display: none; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .btn-primary { padding: 0.75rem 1.5rem; font-size: 0.8rem; }
}

@media (max-width: 1024px) {
  .header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem 0.6rem;
    padding: 0.5rem var(--page-gutter);
  }
  .logo { flex-shrink: 0; }
  .logo-mark { width: min(110px, 100%); max-width: 110px; }
  .nav-main:not(.open) { display: none; }
  .mobile-toggle { display: flex; }
  .header-actions {
    order: 2;
    margin-left: 0;
    gap: 0.4rem;
  }
  .nav-main.open {
    display: flex;
    flex-direction: column;
    flex: 1 0 100%;
    width: 100%;
    order: 10;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    background: var(--white);
    color: var(--black);
    padding: 0.3rem 0 0.7rem;
    margin: 0;
    box-shadow: none;
    border-top: 1px solid var(--grey-100);
    z-index: 10;
    gap: 0;
  }
  .nav-main.open a {
    color: var(--black);
    padding: 0.65rem 1rem;
    font-size: 0.92rem;
    border-radius: 0;
    font-weight: 500;
  }
  .nav-main.open a:hover,
  .nav-main.open a.active { color: var(--red); background: var(--red-light); }
  .nav-main.open a.active::after { display: none; }
  .site-header.menu-open {
    border-bottom-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
  }
  .header-icon { width: 36px; height: 36px; }
}

@media (max-width: 1024px) {
  .product-grid,
  .category-grid,
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid,
  .trust-stats { grid-template-columns: repeat(2, 1fr); }
  .transform-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-b2b { grid-column: 1 / -1; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-nav { display: none; }
  .hero-content p { max-width: none; }
  .planner-content { grid-template-columns: 1fr; }
  .planner-visual { min-height: 220px; }
  .trial-banner {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 1.5rem;
  }
  .trial-steps { flex-wrap: wrap; }
  .help-section { grid-template-columns: 1fr; }
  .help-image { order: -1; }
  .product-detail { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-filters {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-team-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .portal-grid { grid-template-columns: 1fr; }
  .admin-kpis { grid-template-columns: repeat(2, 1fr); }
}

/* ===== PDF revision pack (Shopify-section friendly) ===== */
.category-scroll-label { text-align: center; margin-bottom: 1rem; }
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  margin-bottom: 2rem;
  width: 100%;
}
.section-header-row .section-header,
.section-header-row > div:first-child {
  text-align: left;
  flex: 1;
  min-width: 0;
}
.section-header-row h2 { margin-top: 0.5rem; }
.section-header-row p { margin: 0.5rem 0 0; color: var(--grey-500); max-width: 36rem; }
.section-cta {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}
.carousel-controls {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  align-items: center;
  align-self: flex-end;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--grey-300);
  background: var(--white);
  color: var(--black);
  font-size: 1.35rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.carousel-btn:hover { background: var(--red); color: var(--white); border-color: var(--red); }

.product-carousel,
.product-carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.35rem 0.15rem 1rem;
  -webkit-overflow-scrolling: touch;
}
.product-carousel::-webkit-scrollbar,
.product-carousel-track::-webkit-scrollbar { display: none; }
.product-carousel-slide {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  display: flex;
}
.product-carousel-slide .product-card { height: 100%; width: 100%; }
/* Shorter, less vertically-dominant image for bestseller carousel cards */
.bestsellers-carousel .product-card-image { aspect-ratio: 4 / 3; }

/* Info strip in header (announcement marquee) */
.info-strip {
  background: #140f10;
  color: var(--white);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header .info-strip {
  background: #140f10;
}
.info-strip-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: info-strip-scroll 45s linear infinite;
  will-change: transform;
}
.info-strip-group {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-shrink: 0;
  padding: 0.5rem 0;
  padding-right: 1.35rem;
}
.info-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}
.info-strip-icon {
  display: inline-flex;
  align-items: center;
  color: #FF3B30;
}
.info-strip-icon svg { width: 14px; height: 14px; display: block; }
.info-strip-dot {
  opacity: 0.35;
  font-size: 0.65rem;
  line-height: 1;
  flex-shrink: 0;
}
@keyframes info-strip-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Shop by Workspace */
.workspace-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: stretch;
}
.workspace-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  min-height: 100%;
  height: 100%;
  text-align: left;
}
.workspace-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  border-color: rgba(227, 6, 19, 0.18);
}
.workspace-card-media {
  height: 96px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1.4rem 1.25rem 0.4rem;
}
.workspace-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  flex-shrink: 0;
}
.workspace-card-icon svg {
  width: 52px;
  height: 52px;
  display: block;
}
.workspace-card-body {
  padding: 0.2rem 1.25rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}
.workspace-card-body h3 {
  font-size: 1.02rem;
  margin-bottom: 0.45rem;
  min-height: 2.2em;
}
.workspace-card-body p {
  font-size: 0.84rem;
  color: var(--grey-600);
  margin-bottom: 1rem;
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.workspace-card-body .cat-link {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red);
  margin-top: auto;
  align-self: flex-end;
  line-height: 1;
}
.workspace-shop .section-header {
  margin-bottom: 2.2rem;
}
.workspace-subtitle-mobile { display: none; }
.workspace-shop .section-header::after {
  content: '';
  display: block;
  width: 3.5rem;
  height: 2px;
  margin: 0.9rem auto 0;
  background: var(--red);
  border-radius: 999px;
}

/* Help office */
.help-office-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}
.help-trust-list {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.75rem;
}
.help-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--grey-700);
  font-weight: 500;
}
.help-trust-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red-light);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.btn-wa-pulse {
  position: relative;
  animation: wa-pulse 2.4s ease-in-out infinite;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
}

/* Clients */
.clients-marquee {
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.client-logo-item {
  filter: grayscale(1);
  opacity: 0.72;
  transition: var(--transition);
}
.client-logo-item:hover { filter: none; opacity: 1; }

/* Reviews carousel */
.reviews-carousel {
  overflow: hidden;
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.reviews-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}
.review-slide {
  flex: 0 0 100%;
  padding: 2rem 2.25rem;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin: 0;
}
.review-slide blockquote {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  color: var(--grey-800);
}
.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.reviews-dots { display: flex; gap: 0.4rem; }
.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grey-300);
  padding: 0;
}
.reviews-dot.active { background: var(--red); width: 22px; border-radius: 6px; }

@media (prefers-reduced-motion: reduce) {
  .info-strip-track,
  .btn-wa-pulse { animation: none !important; }
}

@media (max-width: 1024px) {
  .help-office-layout { grid-template-columns: 1fr; gap: 1.25rem; }
  .help-image { order: -1; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
}

/* Hide selected homepage sections on mobile to shorten scroll; keep desktop design elsewhere */
@media (max-width: 768px) {
  .mobile-hide { display: none !important; }
}

@media (max-width: 768px) {
  :root { --page-gutter: 1.15rem; }

  .container {
    padding-left: max(var(--page-gutter), env(safe-area-inset-left));
    padding-right: max(var(--page-gutter), env(safe-area-inset-right));
  }
  .header-inner {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: max(var(--page-gutter), env(safe-area-inset-left));
    padding-right: max(var(--page-gutter), env(safe-area-inset-right));
    gap: 0.6rem;
    align-items: center;
  }
  .header-actions {
    align-items: center;
    justify-content: flex-end;
  }
  .header-actions .header-account,
  .header-actions .btn-primary { display: none; }

  /* Same section rhythm as desktop, scaled with clearer padding */
  .section { padding: 2.75rem 0; }
  .section-header {
    margin-bottom: 1.65rem;
    padding: 0;
    text-align: center;
  }
  .section-header h2 { font-size: clamp(1.45rem, 5vw, 1.85rem); }
  .section-header p {
    font-size: 0.9rem;
    margin-top: 0.55rem;
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
  }
  .section-header-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 1.65rem;
    gap: 1rem;
    width: 100%;
  }
  .section-header-row > div:first-child {
    text-align: left;
    flex: 1;
  }
  .section-header-row .badge { display: inline-block; }
  .section-cta {
    margin-top: 1.65rem;
    display: flex;
    justify-content: center;
  }

  /* Hero: match container gutter */
  .hero { padding: 1.65rem 0 2rem; }
  .hero-grid {
    padding: 0 var(--page-gutter);
    padding-left: max(var(--page-gutter), env(safe-area-inset-left));
    padding-right: max(var(--page-gutter), env(safe-area-inset-right));
    gap: 1.35rem;
    align-items: stretch;
  }
  .hero-content {
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-content .badge { margin-bottom: 0.85rem; }
  .hero-content h1 { font-size: clamp(1.55rem, 6vw, 2rem); margin-bottom: 0.75rem; }
  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 1.35rem;
    line-height: 1.55;
    max-width: none;
  }
  .hero-actions {
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-bottom: 0.85rem;
    width: 100%;
    justify-content: flex-start;
  }
  .hero-actions .btn { padding: 0.8rem 1.25rem; }
  .hero-image {
    aspect-ratio: 4 / 3;
    max-height: 260px;
    width: 100%;
    border-radius: var(--radius-lg);
  }
  .hero-badge {
    bottom: 1rem;
    right: 1rem;
    left: auto;
    max-width: calc(100% - 2rem);
    padding: 0.6rem 0.9rem;
    font-size: 0.72rem;
  }
  .hero-steps {
    flex-wrap: wrap;
    gap: 0.45rem;
    width: 100%;
    justify-content: flex-start;
  }
  .hero-step { font-size: 0.68rem; padding: 0.45rem 0.8rem; }
  .hero-dots {
    margin-top: 0.85rem;
    justify-content: center;
  }
  .hero-nav { display: none; }

  /* Workspace section: keep the approved 4x2 compact grid on mobile */
  .workspace-shop .section-header {
    margin-bottom: 1.4rem;
  }
  .workspace-subtitle-desktop { display: none; }
  .workspace-subtitle-mobile { display: block; }
  .workspace-shop .section-header::after {
    width: 2.8rem;
    margin-top: 0.7rem;
  }
  .workspace-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem 0.7rem;
  }
  .workspace-card {
    border-radius: 18px;
    box-shadow: 0 5px 14px rgba(15, 23, 42, 0.035);
  }
  .workspace-card-media {
    height: auto;
    padding: 0.9rem 0.45rem 0.35rem;
    justify-content: center;
  }
  .workspace-card-icon svg {
    width: 2.3rem;
    height: 2.3rem;
  }
  .workspace-card-body {
    padding: 0 0.45rem 0.65rem;
    text-align: center;
  }
  .workspace-card-body h3 {
    font-size: 0.7rem;
    line-height: 1.15;
    margin-bottom: 0;
    min-height: 0;
  }
  .workspace-card-body p,
  .workspace-card-body .cat-link {
    display: none;
  }

  /* Trust banner: keep the same card language, just denser */
  .trust-banner {
    padding: 0 0 1.5rem;
  }
  .trust-banner-shell {
    border-radius: 22px;
    padding: 0.95rem 0.7rem 0.85rem;
  }
  .trust-banner-header {
    margin-bottom: 0.75rem;
  }
  .trust-banner-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    gap: 0.55rem;
  }
  .trust-banner-kicker::before,
  .trust-banner-kicker::after {
    width: 1.8rem;
  }
  .trust-banner-header h2 {
    margin-top: 0.45rem;
    font-size: clamp(1rem, 4.4vw, 1.35rem);
  }
  .trust-banner-grid {
    gap: 0;
  }
  .trust-banner-item {
    padding: 0.35rem 0.35rem 0.45rem;
    gap: 0.35rem;
  }
  .trust-banner-item strong {
    font-size: 0.82rem;
    line-height: 1.05;
  }
  .trust-banner-item span {
    font-size: 0.62rem;
    line-height: 1.2;
  }
  .trust-banner-icon {
    width: 2.9rem;
    height: 2.9rem;
  }
  .trust-banner-icon svg {
    width: 1.4rem;
    height: 1.4rem;
  }

  /* Product cards */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: stretch;
  }
  .product-card { border-radius: var(--radius-lg); height: 100%; }
  .product-card-image { aspect-ratio: 1; }
  .product-card-body { padding: 1rem 1.05rem 1.15rem; }
  .product-card-body h3 { font-size: 0.92rem; margin-bottom: 0.3rem; min-height: 2.4em; }
  .product-card-body .desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.8rem;
    margin-bottom: 0.65rem;
    min-height: 2.4em;
  }
  .product-warranty { display: flex; font-size: 0.75rem; margin-bottom: 0.6rem; }
  .product-rating { font-size: 0.78rem; margin-bottom: 0.6rem; }
  .product-price { margin-top: auto; padding-top: 0.25rem; }
  .product-price .price { font-size: 1rem; }
  .product-price .mrp { font-size: 0.78rem; }
  .product-badge {
    top: 0.65rem;
    left: 0.65rem;
    max-width: calc(100% - 5.5rem);
    font-size: 0.62rem;
  }
  .product-actions-top {
    top: 0.65rem;
    right: 0.65rem;
    max-width: 5.2rem;
    gap: 0.28rem;
  }
  .product-actions-top button.product-compare { display: none; }

  .product-carousel,
  .product-carousel-track {
    gap: 1rem;
    padding: 0.35rem 0 0.85rem;
    align-items: stretch;
  }
  .product-carousel-slide {
    flex-basis: min(220px, 72vw);
    display: flex;
  }
  .product-carousel-slide .product-card-image { aspect-ratio: 1; }
  .carousel-btn { width: 40px; height: 40px; }

  /* Help */
  .help-office-layout { gap: 1.65rem; align-items: stretch; }
  .help-image {
    order: -1;
    max-height: 240px;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    width: 100%;
  }
  .help-content {
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .help-content h2 { font-size: clamp(1.35rem, 5.5vw, 1.7rem); margin-bottom: 0.75rem; }
  .help-content p { font-size: 0.92rem; margin-bottom: 1.15rem; line-height: 1.55; }
  .help-trust-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-bottom: 1.4rem;
    width: 100%;
  }
  .help-trust-list li {
    font-size: 0.88rem;
    gap: 0.6rem;
    padding: 0.15rem 0;
    align-items: flex-start;
  }
  .help-trust-icon { width: 22px; height: 22px; font-size: 0.7rem; flex-shrink: 0; }
  .btn-group {
    gap: 0.7rem;
    width: 100%;
    justify-content: flex-start;
  }
  .btn-group .btn { flex: 1 1 auto; justify-content: center; min-height: 44px; }

  /* Planner */
  .planner { padding: 2.75rem 0; }
  .planner-header {
    margin-bottom: 1.4rem;
    padding: 0 var(--page-gutter);
    padding-left: max(var(--page-gutter), env(safe-area-inset-left));
    padding-right: max(var(--page-gutter), env(safe-area-inset-right));
    text-align: left;
  }
  .planner-header h2 { font-size: 1.45rem; }
  .planner-panel,
  .planner-tabs {
    padding-left: max(var(--page-gutter), env(safe-area-inset-left));
    padding-right: max(var(--page-gutter), env(safe-area-inset-right));
  }
  .planner-tabs { gap: 0.5rem; margin-bottom: 1.25rem; align-items: stretch; }
  .planner-tab {
    min-width: 110px;
    padding: 0.75rem 0.9rem;
    text-align: left;
  }
  .planner-tab:first-child,
  .planner-tab:last-child { border-radius: var(--radius); }
  .planner-info { padding: 1.35rem 1.4rem; text-align: left; }
  .planner-info h3 { font-size: 1.2rem; margin-bottom: 0.55rem; }
  .planner-info p { margin-bottom: 1rem; }
  .planner-visual { min-height: 200px; max-height: 240px; }

  /* Clients + reviews */
  .trust-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
  }
  .trust-stat {
    padding: 1rem 0.75rem;
    border-radius: 12px;
    background: var(--white);
    height: 100%;
    justify-content: center;
  }
  .trust-stat .number { font-size: 1.5rem; }
  .trust-stat .label { font-size: 0.8rem; }
  .client-logos { margin-top: 1.65rem; margin-bottom: 0.5rem; }
  .client-logo-item {
    width: 120px;
    height: 56px;
    padding: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .review-slide { padding: 1.45rem 1.35rem; border-radius: var(--radius-lg); text-align: left; }
  .review-slide blockquote {
    font-size: 0.95rem;
    margin: 0.85rem 0 1.2rem;
    line-height: 1.6;
    display: block;
    overflow: visible;
  }
  .reviews-nav {
    margin-top: 1.25rem;
    gap: 0.85rem;
    justify-content: center;
    align-items: center;
  }

  .category-grid { grid-template-columns: 1fr; gap: 1rem; align-items: stretch; }
  .category-card { padding: 1.35rem; height: 100%; text-align: left; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; align-items: stretch; }
  .catalog-card { height: 100%; display: flex; flex-direction: column; }
  .catalog-card-body {
    padding: 1rem 1.05rem 1.15rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
  }
  .shop-layout { padding: 1.65rem 0 3.25rem; gap: 1.4rem; }
  .shop-filters {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
    padding: 1.15rem;
    background: var(--grey-50);
    border-radius: var(--radius-lg);
    text-align: left;
  }
  .filter-group { margin-bottom: 0.35rem; }
  .filter-group label { padding: 0.45rem 0; align-items: center; }
  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    margin-bottom: 1.15rem;
  }
  .search-bar { max-width: none; padding: 0.7rem 0.9rem; align-items: center; }
  .shop-toolbar-meta {
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  .shop-toolbar select { width: 100%; min-height: 44px; }
  .page-header { padding: 1.85rem 0 2.15rem; }
  .page-intro {
    padding: 1.4rem 0 0.35rem;
    text-align: center;
  }
  .page-intro-centered { text-align: center; }
  .page-intro h1 { margin-bottom: 0.45rem; }
  .page-intro p { line-height: 1.5; margin-left: auto; margin-right: auto; }
  .contact-grid { padding: 1.65rem 0 2.75rem; gap: 1.35rem; }
  .contact-form,
  .contact-info-card { padding: 1.45rem 1.35rem; text-align: left; }
  .form-group { margin-bottom: 1rem; text-align: left; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 0.8rem 0.95rem; min-height: 44px; width: 100%; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-actions {
    display: flex;
    justify-content: stretch;
  }
  .form-actions .btn { min-width: 100%; min-height: 46px; }
  .product-info { padding-top: 0.35rem; text-align: left; }
  .product-info h1 { font-size: 1.45rem; margin-bottom: 0.65rem; }
  .product-cta {
    gap: 0.7rem;
    margin-top: 1.15rem;
    display: flex;
    flex-wrap: wrap;
  }
  .product-cta .btn { flex: 1 1 100%; justify-content: center; min-height: 46px; }
  .product-gallery-main { aspect-ratio: 1; border-radius: var(--radius-lg); }
  .product-gallery-thumbs {
    gap: 0.55rem;
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem 1.25rem; text-align: left; }
  .footer-b2b { grid-column: 1 / -1; padding: 1.25rem; }
  .footer-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    padding: 1.25rem 0;
  }
  .site-footer { padding: 2.5rem 0 0; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1.15rem 0 calc(1.15rem + env(safe-area-inset-bottom));
    gap: 0.55rem;
  }
  .info-strip-group {
    gap: 1rem;
    padding: 0.42rem 0;
    padding-right: 1rem;
  }
  .info-strip-item {
    font-size: 0.65rem;
    align-items: center;
  }
  .info-strip-track {
    animation-duration: 40s;
  }

  .account-header,
  .account-orders { padding-left: 1.25rem; padding-right: 1.25rem; }
  .account-header {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1.4rem;
    padding-bottom: 1.25rem;
    gap: 1rem;
  }
  .account-signout { align-self: stretch; justify-content: center; min-height: 42px; }
  .account-orders { padding-bottom: 1.5rem; gap: 1rem; }
  .account-order { padding: 1.15rem 1.2rem; text-align: left; }
  .about-hero { padding: 2.15rem 0 1.4rem; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 0.85rem; align-items: stretch; }
  .about-card { padding: 1.25rem; height: 100%; text-align: left; }
  .saved-grid { grid-template-columns: 1fr; gap: 1rem; }
  .compare-scroll {
    margin-left: calc(-1 * var(--page-gutter));
    margin-right: calc(-1 * var(--page-gutter));
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }
  .compare-table img { width: 80px; height: 80px; }
  .wa-float {
    bottom: max(1rem, env(safe-area-inset-bottom));
    right: max(1rem, env(safe-area-inset-right));
    width: 52px;
    height: 52px;
  }
  .toast {
    left: 1rem;
    right: 1rem;
    bottom: max(5rem, calc(4.5rem + env(safe-area-inset-bottom)));
  }
}

@media (max-width: 480px) {
  :root { --page-gutter: 1rem; }
  html { font-size: 15px; }
  .logo-text { display: none; }
  .header-actions { gap: 0.45rem; }
  .header-icon,
  .mobile-toggle { width: 40px; height: 40px; }
  .product-grid,
  .catalog-grid,
  .workspace-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.7rem; }
  .footer-grid,
  .footer-features { grid-template-columns: 1fr; }
  .product-carousel-slide { flex-basis: min(200px, 78vw); }
  .btn-group .btn { width: 100%; }
  .stats-grid { gap: 0.85rem; }
  .stat-card { padding: 0.8rem 0.7rem; }
  .portal-grid { grid-template-columns: 1fr; }
  .admin-kpis { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .admin-live { left: 0.75rem; right: 0.75rem; max-width: none; }
  .shop-filters { padding: 1rem; }
  .product-card-body { padding: 0.9rem 0.95rem 1.05rem; }
  .workspace-card-body { padding: 0.95rem 1rem 1.1rem; }
}

@media (max-width: 360px) {
  .header-inner { padding: 0.65rem 0.85rem; }
  .planner-tab { min-width: 96px; }
  .workspace-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .product-grid { gap: 0.65rem; }
  .workspace-card-body h3 { font-size: 0.66rem; }
  .workspace-card-icon svg { width: 1.9rem; height: 1.9rem; }
}

/* ─── New hero banner system ──────────────────────────────── */
.hero-slide { position: relative; }

.hero-slide-main {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 620px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  gap: 3rem;
  position: relative;
}

.hero-lft {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
}

.hero-tag {
  display: block;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.hero-tag-line {
  display: block;
  width: 3.2rem;
  height: 2.5px;
  background: var(--red);
  margin-bottom: 1.4rem;
  border-radius: 2px;
}

.hero-slide-main h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 2.2rem;
}

.hero-hl { color: var(--red); }

.hero-feat-row {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

/* Fancy CTA button in hero */
.hero-slide .btn-primary {
  padding: 1.1rem 2.6rem;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--red) 0%, #d40009 100%);
  box-shadow:
    0 12px 32px rgba(227, 6, 19, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.hero-slide .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 20px 48px rgba(227, 6, 19, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #ff1a1a 0%, #ff0000 100%);
}

.hero-feat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--black);
  flex: 1;
  min-width: 75px;
  padding: 0 1.6rem;
}
.hero-feat:first-child { padding-left: 0; }
.hero-feat > svg {
  width: 56px;
  height: 56px;
  display: block;
  color: var(--black);
}
.hero-feat + .hero-feat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8%;
  bottom: 8%;
  width: 1.5px;
  background: linear-gradient(to bottom, transparent, var(--grey-300), transparent);
}

.hero-feat-label {
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.35;
  position: relative;
  padding-top: 0.65rem;
}
.hero-feat-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1.6rem;
  height: 2.5px;
  background: var(--red);
  border-radius: 2px;
}

/* Right image panel */
.hero-rgt {
  position: relative;
  height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Subtle translucent backdrop — a soft glow rather than a hard card, so the
   product image blends seamlessly into the page. */
.hero-rgt::before {
  content: '';
  position: absolute;
  inset: 4% 0 4% -6%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(227, 6, 19, 0.06) 0%, rgba(227, 6, 19, 0.02) 35%, transparent 65%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* Faint thin ring accent, very light */
.hero-rgt::after {
  content: '';
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(227, 6, 19, 0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.hero-rgt img {
  position: relative;
  z-index: 2;
  max-height: 560px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 30px 55px rgba(15, 23, 42, 0.14));
  /* Source photos carry their own studio backdrop (white, off-white, or a
     flat card) at varying shades — feather the outer edge so that backdrop
     dissolves into the page instead of reading as a hard rectangle. */
  -webkit-mask-image: radial-gradient(ellipse 62% 58% at 50% 50%, #000 72%, transparent 100%);
  mask-image: radial-gradient(ellipse 62% 58% at 50% 50%, #000 72%, transparent 100%);
}

/* Warranty badge (top-right corner of image) */
.hero-warranty-badge {
  position: absolute;
  top: 1.5rem;
  right: 0.5rem;
  background: #fff;
  border: 2.5px solid var(--red);
  border-radius: 10px;
  width: 86px;
  text-align: center;
  padding: 0.6rem 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.13);
  overflow: hidden;
  z-index: 2;
}
.hwb-upto {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.hwb-num {
  display: block;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin: 0.05rem 0;
}
.hwb-years {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-700);
  margin-bottom: 0.5rem;
}
.hwb-label {
  background: var(--red);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.25rem;
  margin: 0 -0.5rem;
}

/* Bottom strip — bar style (warranty) */
.hero-btm-strip {
  background: var(--grey-50);
  border-top: 1px solid var(--grey-100);
  padding: 0.85rem 0;
}

.hero-btm-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.hero-btm-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 1.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--grey-700);
}

.hero-btm-item svg { width: 1.2rem; height: 1.2rem; color: var(--red); flex-shrink: 0; }

.hero-btm-divider {
  width: 1px;
  height: 1.2rem;
  background: var(--grey-200);
  flex-shrink: 0;
}

/* Bottom strip — USP style (factory) */
.hero-btm-usps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.hero-btm-usp-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-btm-usp-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.hero-btm-usp-icon svg { width: 1.5rem; height: 1.5rem; }

.hero-btm-usp-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-btm-usp-item span {
  display: block;
  font-size: 0.76rem;
  color: var(--grey-500);
}

/* Factory comparison table */
.hero-comparison {
  display: flex;
  gap: 0;
  align-items: stretch;
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--grey-200);
  font-size: 0.8rem;
}

.hero-comp-col {
  flex: 1;
  padding: 0.9rem 1rem;
  min-width: 0;
}

.hero-comp-bad { background: #fff8f8; }
.hero-comp-good { background: #f8fff8; }

.hero-comp-head {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--grey-700);
}

.comp-x { color: var(--red); font-size: 0.85rem; }
.comp-check { color: #16a34a; font-size: 0.85rem; }

.hero-comp-chain {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.65rem;
  flex-wrap: wrap;
}

.chain-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  color: var(--grey-600);
}

.chain-node svg { opacity: 0.7; }
.chain-node span { font-size: 0.55rem; font-weight: 600; white-space: nowrap; }
.comp-arrow { color: var(--grey-400); font-size: 0.8rem; line-height: 1; }
.chain-label { font-size: 0.65rem; font-weight: 700; white-space: nowrap; }
.chain-bad { color: var(--red); }
.chain-good { color: #16a34a; }

.hero-comp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-comp-list li {
  font-size: 0.76rem;
  color: var(--grey-700);
  padding-left: 1.2rem;
  position: relative;
}

.hero-comp-list.bad li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.7rem;
}

.hero-comp-list.good li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-size: 0.7rem;
}

.hero-comp-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-left: 1px solid var(--grey-200);
  border-right: 1px solid var(--grey-200);
  width: 36px;
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--grey-400);
  letter-spacing: 0.05em;
}

/* Mobile overrides */
@media (max-width: 900px) {
  .hero-slide-main {
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    gap: 1.5rem;
  }
  .hero-slide-main h1 { font-size: clamp(1.95rem, 5.5vw, 3rem); }
  .hero-rgt { height: 480px; }
  .hero-rgt img { max-height: 440px; }
  .hero-feat > svg { width: 48px; height: 48px; }
  .hero-feat { padding: 0 1.2rem; }
  .hero-btm-items { gap: 0.6rem 0; }
  .hero-btm-item { font-size: 0.62rem; padding: 0 1rem; }
  .hero-btm-usps { gap: 1.4rem; flex-wrap: wrap; row-gap: 1rem; }
  .hero-comp-chain { gap: 0.6rem 0.2rem; }
  .hero-comp-col { padding: 0.75rem 0.85rem; font-size: 0.72rem; }
  .chain-node svg { width: 18px; height: 18px; }
}

@media (max-width: 640px) {
  .hero-slide-main {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 1.5rem;
    padding-bottom: 0;
  }
  .hero-lft { padding: 1.5rem 0 1rem; }
  .hero-rgt {
    height: 240px;
    order: -1;
  }
  .hero-rgt img { max-height: 220px; }
  .hero-warranty-badge { top: 0.5rem; right: 0.5rem; }
  .hero-feat-row { gap: 1rem; }
  .hero-comparison { flex-direction: column; border-radius: 8px; }
  .hero-comp-vs {
    width: auto;
    height: 28px;
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--grey-200);
    border-bottom: 1px solid var(--grey-200);
    writing-mode: initial;
    transform: none;
  }
  .hero-btm-items { gap: 0.5rem; }
  .hero-btm-item { padding: 0 0.75rem; font-size: 0.65rem; }
  .hero-btm-usps { flex-direction: column; gap: 1rem; }
  .hero-dots { margin-top: 1rem; }
}
