:root {
  --hp-font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --hp-font-display: var(--hp-font-sans);
  --hp-font-size-base: 16px;
  --hp-font-size-base-mobile: 17px;
  --hp-font-size-sm: 13px;
  --hp-font-size-lg: 18px;
  --hp-font-weight-bold: 700;
  --hp-letter-spacing-tight: 0;
  --hp-container-max: 1240px;
  --hp-ink: #0b0f14;
  --hp-ink-2: #111827;
  --hp-ink-on-dark: #f8fafc;
  --hp-bg: #f6f2ed;
  --hp-surface: #ffffff;
  --hp-surface-2: #f9f4ee;
  --hp-surface-3: #efe7dd;
  --hp-border: #e7dccf;
  --hp-border-strong: rgba(15, 23, 42, 0.24);
  --hp-text-muted: #6b7280;
  --hp-accent: #ff6a1f;
  --hp-accent-2: #ff8f3b;
  --hp-accent-3: #f5b84a;
  --hp-blue: #2563eb;
  --hp-dark: #0b0f14;
  --hp-dark-2: #111827;
  --hp-dark-3: #1f2937;
  --hp-dark-surface: #121a22;
  --hp-dark-surface-2: #1a2430;
  --hp-dark-border: rgba(255, 255, 255, 0.08);
  --hp-shadow: 0 24px 60px rgba(6, 8, 12, 0.22);
  --hp-shadow-soft: 0 14px 30px rgba(6, 8, 12, 0.12);
  --hp-shadow-glow: 0 18px 40px rgba(255, 106, 31, 0.35);
  --hp-radius-xl: 28px;
  --hp-radius-lg: 20px;
  --hp-radius-md: 14px;
  --hp-radius-sm: 10px;
  --hp-radius-pill: 999px;
  --hp-safe-bottom: env(safe-area-inset-bottom, 0px);
  --hp-safe-top: env(safe-area-inset-top, 0px);
  --hp-appbar-height: 64px;
  --hp-bottom-nav-height: 56px;
  --hp-bottom-nav-gap: 16px;
  --hp-cart-summary-height: 56px;
  --hp-checkout-action-height: 64px;
  --hp-bottom-bar-height: 64px;
  --hp-btn-bg: linear-gradient(120deg, var(--hp-accent), #ff8a43);
  --hp-btn-text: #ffffff;
  --hp-btn-border: transparent;
  --hp-btn-shadow: var(--hp-shadow-glow);
  --hp-btn-secondary-bg: rgba(255, 255, 255, 0.96);
  --hp-btn-secondary-text: var(--hp-ink);
  --hp-btn-secondary-border: rgba(15, 23, 42, 0.14);
  --hp-card-bg: rgba(255, 255, 255, 0.98);
  --hp-card-border: rgba(15, 23, 42, 0.1);
  --hp-card-shadow: var(--hp-shadow-soft);
  --hp-input-bg: rgba(255, 255, 255, 0.98);
  --hp-input-border: rgba(15, 23, 42, 0.16);
  --hp-input-focus: rgba(255, 106, 31, 0.22);
  --hp-focus-ring: 0 0 0 3px rgba(255, 106, 31, 0.28);
}

body.hp-b2b-site {
  font-family: var(--hp-font-sans);
  font-size: var(--hp-font-size-base);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 106, 31, 0.16), transparent 52%),
    radial-gradient(circle at 86% 12%, rgba(255, 143, 59, 0.14), transparent 50%),
    radial-gradient(circle at 20% 82%, rgba(245, 184, 74, 0.16), transparent 52%),
    linear-gradient(180deg, #fbf7f2 0%, var(--hp-bg) 46%, #efe7dd 100%);
  color: var(--hp-ink);
  line-height: 1.65;
}

:root {
  font-size: var(--hp-font-size-base);
}

@media (max-width: 900px) {
  :root {
    font-size: var(--hp-font-size-base-mobile);
    --hp-appbar-height: 50px;
  }
}

body.hp-b2b-site h1,
body.hp-b2b-site h2,
body.hp-b2b-site h3,
body.hp-b2b-site h4 {
  font-family: var(--hp-font-display);
  letter-spacing: var(--hp-letter-spacing-tight);
}

.hp-appbar {
  position: sticky;
  top: 0;
  z-index: 1002;
  background: rgba(11, 15, 20, 0.96);
  border-bottom: 1px solid rgba(255, 107, 44, 0.12);
  box-shadow: 0 16px 32px rgba(5, 8, 12, 0.45);
  backdrop-filter: blur(16px);
  left: 0;
  right: 0;
  min-height: var(--hp-appbar-height);
  padding-top: var(--hp-safe-top);
  transition: padding 0.2s ease, background 0.2s ease;
}

@media (min-width: 1024px) {
  body.hp-b2b-site .hp-appbar {
    position: fixed !important;
    top: 0;
    width: 100%;
    transform: translateY(0);
  }
  body.hp-b2b-site #wrapper,
  body.hp-b2b-site .main {
    padding-top: calc(var(--hp-appbar-height) + 12px);
  }
}

.hp-quickcats {
  display: flex;
  gap: 10px;
  padding: 10px 20px 12px;
  overflow-x: auto;
  background: var(--hp-surface-2);
  transition: max-height 0.2s ease, padding 0.2s ease, opacity 0.2s ease;
  border-bottom: 1px solid var(--hp-border);
}

.hp-quickcats a {
  color: var(--hp-ink-2);
  text-decoration: none;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--hp-surface);
  border: 1px solid rgba(15, 23, 42, 0.08);
  white-space: nowrap;
}

.hp-quickcats a:hover {
  background: rgba(15, 23, 42, 0.04);
  color: var(--hp-ink);
}

.hp-quickcats .hp-quickcats-more {
  background: var(--hp-ink);
  color: #fff;
  font-weight: 700;
}

.hp-quickcats a.is-active {
  background: var(--hp-accent);
  color: #fff;
  font-weight: 700;
}

.hp-shop-toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 12px 0 20px;
}

.hp-trust-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hp-trust-strip .hp-trust-item {
  flex: 1 1 180px;
  padding: 12px 14px;
  font-size: 13px;
}

.hp-shop-steps {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 238, 0.9));
  border-radius: var(--hp-radius-lg);
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.hp-shop-steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--hp-accent), #ff8a5a);
  color: #fff;
  font-size: 13px;
  margin-left: 8px;
}

.hp-shop-steps span {
  font-size: 13px;
  color: #0f172a;
  font-weight: 600;
}

.hp-shop-steps-actions {
  display: flex;
  align-items: center;
}
.hp-filter-toggle {
  background: linear-gradient(120deg, var(--hp-accent), #ff8a5a);
  color: #fff;
  border: 0;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.hp-filter-overlay {
  display: none;
}

.hp-filter-close {
  display: none;
}

@media (max-width: 900px) {
  .hp-shop-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  body.hp-b2b-site .shop-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 80%;
    max-width: 320px;
    background: #fff;
    z-index: 1005;
    transform: translateX(-110%);
    transition: transform 0.2s ease;
    overflow-y: auto;
    padding: 20px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.3);
  }
  body.hp-b2b-site .hp-filter-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 16px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    border: 0;
    font-weight: 700;
  }
  body.hp-b2b-site.hp-filters-open .shop-sidebar {
    transform: translateX(0);
  }
  body.hp-b2b-site .hp-filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 1004;
  }
  body.hp-b2b-site.hp-filters-open .hp-filter-overlay {
    display: block;
  }
}

body.hp-b2b-site.hp-scrolled .hp-appbar {
  box-shadow: 0 18px 38px rgba(6, 10, 16, 0.4);
  background: rgba(11, 17, 24, 0.98);
}

body.hp-b2b-site.hp-scrolled .hp-appbar-left-actions {
  top: 4px;
}

body.hp-b2b-site.hp-scroll-down .hp-appbar {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

body.hp-b2b-site .pum,
body.hp-b2b-site .pum-overlay,
body.hp-b2b-site .pum-container {
  display: none !important;
}

.hp-toast {
  position: fixed;
  bottom: calc(90px + var(--hp-safe-bottom));
  right: 50%;
  transform: translateX(50%) translateY(20px);
  background: rgba(11, 17, 24, 0.94);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 16px 30px rgba(6, 10, 16, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 1005;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hp-toast.is-visible {
  opacity: 1;
  transform: translateX(50%) translateY(0);
}

.hp-appbar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 12px 24px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  align-items: center;
  direction: rtl;
  position: relative;
}

@media (min-width: 901px) {
  .hp-appbar-inner {
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "actions logo actions-right";
  }
  .hp-appbar-left-actions {
    position: static;
    grid-area: actions;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .hp-appbar-logo {
    grid-area: logo;
    justify-self: center;
  }
  .hp-appbar-actions {
    grid-area: actions-right;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hp-menu-toggle {
    display: none;
  }
}

@media (max-width: 1023px) {
  .hp-appbar-inner {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "menu logo actions";
    padding: 10px 12px;
  }
  .hp-appbar-left-actions {
    position: static;
    grid-area: actions;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .hp-menu-toggle {
    grid-area: menu;
    justify-self: start;
    display: inline-flex;
  }
  .hp-appbar-logo {
    grid-area: logo;
    justify-self: center;
    font-size: 15px;
  }
  .hp-appbar-actions {
    display: none;
  }
  .hp-appbar-cta {
    min-height: 36px;
    padding: 6px 10px;
    font-size: 11px;
  }
}

.hp-appbar-left-actions {
  position: absolute;
  top: 8px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 1004;
}

.hp-appbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #f8fafc;
  box-shadow: 0 10px 24px rgba(8, 12, 18, 0.35);
}

.hp-appbar-whatsapp {
  background: linear-gradient(120deg, #16a34a, #22c55e);
  color: #fff;
  border-color: rgba(34, 197, 94, 0.35);
}

.hp-user-bar {
  background: rgba(255, 255, 255, 0.82);
  color: var(--hp-ink);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

.hp-user-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  justify-content: space-between;
}

.hp-user-greeting strong {
  color: var(--hp-ink);
  font-size: 16px;
}

.hp-user-greeting span {
  color: var(--hp-text-muted);
}

.hp-user-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hp-user-stats span {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--hp-ink-2);
}

.hp-user-greeting {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
}

.hp-user-greeting strong {
  color: var(--hp-ink);
}

.hp-user-stats {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--hp-text-muted);
  flex-wrap: wrap;
}

.hp-user-stats span {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  padding: 4px 10px;
}

.hp-user-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hp-user-bar .hp-btn {
  padding: 6px 14px;
  font-size: 13px;
}

body.hp-b2b-site.hp-scrolled .hp-appbar-inner {
  padding: 6px 20px;
}

body.hp-b2b-site.hp-scrolled .hp-appbar-logo {
  font-size: 16px;
}

body.hp-b2b-site.hp-scrolled .hp-appbar-search {
  padding: 6px 10px;
}

body.hp-b2b-site.hp-scrolled .hp-appbar-search button {
  padding: 6px 12px;
}

body.hp-b2b-site.hp-scrolled .hp-quickcats {
  max-height: 0;
  padding: 0 18px;
  opacity: 0;
  overflow: hidden;
}

.hp-menu-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
}

body.hp-b2b-site .hp-menu-toggle span {
  display: none;
}

body.hp-b2b-site .hp-menu-toggle {
  gap: 0;
}

.hp-search-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
}

.hp-appbar-logo {
  color: #f8fafc;
  font-weight: 800;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 0.02em;
  position: relative;
}

.hp-appbar-logo::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hp-accent), var(--hp-accent-2));
}

.hp-appbar-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 14px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f8fafc;
}

.hp-search-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(248, 250, 252, 0.8);
}

.hp-search-select {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--hp-ink);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  min-height: 36px;
}

.hp-search-select option {
  color: #0f172a;
}

.hp-appbar-search input[type="search"] {
  flex: 1;
  background: transparent;
  border: 0;
  color: #f8fafc;
  font-size: 14px;
}

.hp-appbar-search input::placeholder {
  color: rgba(248, 250, 252, 0.65);
}

.hp-appbar-search button {
  background: linear-gradient(120deg, var(--hp-accent), #ff8a5a);
  border: 0;
  color: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  box-shadow: var(--hp-shadow-glow);
}

.hp-suggest-box {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  background: #fff;
  direction: rtl;
  text-align: right;
  border-radius: 16px;
  box-shadow: var(--hp-shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.08);
  z-index: 1004;
  max-height: 280px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.hp-suggest-box.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hp-suggest-item,
.hp-suggest-empty {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  text-decoration: none;
  color: #0f172a;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 14px;
}

.hp-suggest-item:last-child,
.hp-suggest-empty:last-child {
  border-bottom: 0;
}

.hp-suggest-item:hover,
.hp-suggest-item.is-active {
  background: var(--hp-surface-2);
}

.hp-suggest-item small {
  color: var(--hp-text-muted);
  font-weight: 700;
}

.hp-suggest-box.is-loading::after {
  content: "טוען...";
  display: block;
  padding: 10px 16px 14px;
  font-size: 12px;
  color: #64748b;
}

.hp-appbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hp-appbar-link {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.hp-appbar-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hp-appbar-login {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.hp-appbar-link.hp-link-primary {
  background: linear-gradient(120deg, var(--hp-accent), #ff8a5a);
  color: #fff;
}

.hp-appbar-cart {
  position: relative;
  background: rgba(255, 255, 255, 0.12);
  color: #f8fafc;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hp-b2b-lock {
  margin-top: 18px;
  padding: 16px 20px;
  background: #fff4f0;
  border-radius: var(--hp-radius-md);
  border: 1px solid rgba(255, 107, 61, 0.25);
}

.hp-b2b-lock p {
  margin: 0 0 12px;
  color: #7c2d12;
}

.hp-b2b-lock .hp-btn-secondary {
  background: #ffffff;
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.22);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.hp-b2b-quick-note {
  font-size: 13px;
  line-height: 1.5;
  color: var(--hp-ink-2);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 8px 12px;
}

.hp-b2b-lock .hp-b2b-quick-note {
  flex: 1 1 100%;
}

.hp-cart-count {
  position: absolute;
  top: -6px;
  left: -6px;
  background: var(--hp-accent);
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 999px;
}

.hp-locked-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #b45309;
  background: rgba(251, 191, 36, 0.2);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.hp-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(0);
  background: rgba(11, 17, 24, 0.96);
  border-radius: 0;
  padding: 6px 12px calc(6px + var(--hp-safe-bottom));
  display: flex !important;
  gap: 6px;
  align-items: center;
  justify-content: space-evenly;
  z-index: 1003;
  box-shadow: 0 -10px 24px rgba(6, 10, 16, 0.28);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  height: calc(var(--hp-bottom-nav-height) + var(--hp-safe-bottom));
  box-sizing: border-box;
}

body.hp-b2b-site.hp-scroll-down .hp-bottom-nav {
  transform: translateY(0);
  transition: transform 0.2s ease;
}

body.hp-b2b-site.hp-scroll-up .hp-bottom-nav {
  transform: translateY(0);
  transition: transform 0.2s ease;
}

body.hp-b2b-site .hp-bottom-nav {
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
  inset-inline: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
}

body.woocommerce-checkout .hp-bottom-nav [data-hp-event="cart"],
body.woocommerce-checkout .hp-bottom-nav a[href*="/cart/"],
body.woocommerce-checkout .ashachar-bottom-bar__item a[href*="/cart/"] {
  display: none !important;
}

.hp-bottom-nav a,
.hp-bottom-nav .hp-nav-chat {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 600;
  font-size: 11px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 0;
  flex: 1 1 0;
  min-height: 44px;
  padding: 4px 2px;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}

.hp-bottom-nav a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.hp-bottom-nav .hp-nav-chat {
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.hp-bottom-nav .hp-nav-chat {
  display: none !important;
}

.hp-nav-icon {
  font-size: 16px;
  line-height: 1;
}

.hp-bottom-nav a:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 3px;
  border-radius: 12px;
  background: rgba(255, 107, 61, 0.15);
}

.hp-cart-summary-bar {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: calc(var(--hp-bottom-nav-height) + var(--hp-safe-bottom) + var(--hp-bottom-nav-gap));
  z-index: 1004;
  background: rgba(12, 18, 26, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--hp-cart-summary-height);
  box-shadow: 0 18px 32px rgba(6, 10, 16, 0.35);
  width: min(520px, calc(100% - 24px));
  transform: translateX(-50%);
}

body:not(.logged-in) .hp-cart-summary-bar {
  display: none !important;
}

body.woocommerce-cart .hp-cart-summary-bar {
  display: none !important;
}

.hp-cart-summary-bar.is-empty {
  opacity: 0.72;
}

.hp-cart-summary-meta {
  display: grid;
  gap: 2px;
  font-size: 13px;
  font-weight: 700;
  color: #e2e8f0;
}

.hp-cart-summary-meta span:last-child {
  color: #fbbf24;
}

.hp-cart-summary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--hp-btn-bg);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--hp-btn-shadow);
  white-space: nowrap;
}

body.hp-cart-summary-on #wrapper,
body.hp-cart-summary-on .main {
  padding-bottom: calc(var(--hp-bottom-nav-height) + var(--hp-cart-summary-height) + var(--hp-safe-bottom) + 24px) !important;
}

body.woocommerce-cart.hp-cart-summary-on #wrapper,
body.woocommerce-cart.hp-cart-summary-on .main {
  padding-bottom: calc(var(--hp-bottom-nav-height) + var(--hp-safe-bottom) + 24px) !important;
}

body.hp-b2b-site.woocommerce-cart .hp-cart-quick-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #f8fafc;
  box-shadow: 0 14px 26px rgba(8, 15, 20, 0.18);
}

body.hp-b2b-site.woocommerce-cart .hp-cart-quick-meta {
  display: grid;
  gap: 4px;
}

body.hp-b2b-site.woocommerce-cart .hp-cart-quick-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

body.hp-b2b-site.woocommerce-cart .hp-cart-quick-count {
  font-size: 12px;
  color: rgba(248, 250, 252, 0.78);
  font-weight: 600;
}

body.hp-b2b-site.woocommerce-cart .hp-cart-quick-total {
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

body.hp-b2b-site.woocommerce-cart .hp-cart-quick-total strong {
  font-size: 18px;
  font-weight: 800;
  color: #fbbf24;
}

body.woocommerce-checkout #wrapper,
body.woocommerce-checkout .main,
body.hp-onepage-checkout #wrapper,
body.hp-onepage-checkout .main {
  padding-bottom: calc(var(--hp-bottom-nav-height) + var(--hp-checkout-action-height) + var(--hp-safe-bottom) + 24px) !important;
}

body.woocommerce-checkout .form-row.place-order,
body.hp-onepage-checkout .form-row.place-order {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: calc(var(--hp-bottom-nav-height) + var(--hp-safe-bottom) + var(--hp-bottom-nav-gap));
  transform: translateX(-50%);
  width: min(520px, calc(100% - 24px));
  background: rgba(12, 18, 26, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 1005;
  box-shadow: 0 18px 32px rgba(6, 10, 16, 0.35);
  margin: 0 !important;
}

body.woocommerce-checkout:not(.hp-onepage-checkout) .form-row.place-order {
  justify-content: center;
}

body.hp-onepage-checkout .form-row.place-order .hp-checkout-sticky-total {
  display: grid;
  gap: 2px;
  color: #f8fafc;
  font-weight: 700;
  font-size: 12px;
}

body.hp-onepage-checkout .form-row.place-order .hp-checkout-sticky-total strong {
  font-size: 16px;
  color: #fbbf24;
}

body.hp-onepage-checkout .form-row.place-order #place_order {
  flex: 0 0 auto;
  min-width: 140px;
  font-size: 15px;
}

body.woocommerce-checkout #place_order {
  width: 100%;
  min-height: 46px;
  border-radius: 999px;
  border: 0;
  background: var(--hp-btn-bg);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  box-shadow: var(--hp-btn-shadow);
  cursor: pointer;
}

body.hp-onepage-checkout #place_order {
  width: auto;
}

body.hp-b2b-site .hp-rfq-form,
body.hp-b2b-site .hp-rfq-guest,
body.hp-b2b-site .hp-quote-form,
body.hp-b2b-site [data-hp-event="request_quote"],
body.hp-b2b-site .b2bking_request_quote_button,
body.hp-b2b-site .b2bking-request-quote,
body.hp-b2b-site .b2bking_quote_request {
  display: none !important;
}

body.hp-b2b-site .hp-qty-control .hp-qty-btn,
body.hp-b2b-site .hp-qo-qty-btn,
body.hp-b2b-site .hp-qo-catalog-qty-btn,
body.hp-b2b-site .quantity .plus,
body.hp-b2b-site .quantity .minus,
body.hp-b2b-site .ux-quantity__button {
  background: var(--hp-btn-bg) !important;
  color: #fff !important;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  line-height: 1;
  min-width: 36px;
  min-height: 36px;
  border-radius: 10px;
  box-shadow: var(--hp-shadow-glow);
}

body.hp-b2b-site .hp-qty-control .hp-qty-btn:hover,
body.hp-b2b-site .hp-qo-qty-btn:hover,
body.hp-b2b-site .hp-qo-catalog-qty-btn:hover,
body.hp-b2b-site .quantity .plus:hover,
body.hp-b2b-site .quantity .minus:hover,
body.hp-b2b-site .ux-quantity__button:hover {
  filter: brightness(1.05);
}

.hp-skip-link,
.skip-link {
  display: none !important;
}

.hp-skip-link:focus,
.hp-skip-link:focus-visible {
  top: 12px;
}

body.hp-b2b-site .wa__btn_popup,
body.hp-b2b-site .wa__button,
body.hp-b2b-site .wa__popup_chat_box,
body.hp-b2b-site .nta-whatsapp,
body.hp-b2b-site .nta_wa_button,
body.hp-b2b-site .nta-wa-button,
body.hp-b2b-site #nta-wa-button,
body.hp-b2b-site #njt-whatsapp,
body.hp-b2b-site #njt-wa-button,
body.hp-b2b-site .whatsapp-widget,
body.hp-b2b-site .whatsapp-button,
body.hp-b2b-site .floating-whatsapp,
body.hp-b2b-site .ht-ctc-chat,
body.hp-b2b-site .joinchat,
body.hp-b2b-site .chaty-widget,
body.hp-b2b-site .chaty-widget-button,
body.hp-b2b-site #floating-whatsapp,
body.hp-b2b-site #whatsapp-chat,
body.hp-b2b-site .whatsapp_chat,
body.hp-b2b-site .whatsapp-chat {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.hp-nav-count {
  position: absolute;
  top: 4px;
  right: 6px;
  font-size: 8px;
  background: rgba(255, 107, 61, 0.7);
  color: #fff;
  border-radius: 999px;
  padding: 0 3px;
  min-width: 16px;
  height: 14px;
  line-height: 14px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.3);
  transform: translate(40%, -40%);
}

.hp-nav-count.is-hidden {
  display: none;
}

.hp-whatsapp-float {
  position: fixed;
  top: 0;
  left: 0;
  background: #16a34a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 16px 28px rgba(16, 163, 74, 0.35);
  z-index: 1003;
  display: none;
  transition: top 0.2s ease, transform 0.2s ease;
}

body.hp-b2b-site.hp-scrolled .hp-whatsapp-float {
  top: 0;
}

.hp-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 82%;
  max-width: 320px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 237, 0.92));
  z-index: 1100;
  transform: translateX(110%);
  transition: transform 0.2s ease;
  box-shadow: 0 22px 40px rgba(8, 12, 18, 0.35);
  display: grid;
  grid-template-rows: auto 1fr;
}

.hp-mobile-drawer.is-open {
  transform: translateX(0);
}

.hp-mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  font-weight: 700;
}

.hp-mobile-drawer-close {
  background: linear-gradient(120deg, var(--hp-accent), #ff8a5a);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
}

.hp-mobile-drawer-body {
  padding: 16px;
  display: grid;
  gap: 10px;
  overflow-y: auto;
}

.hp-mobile-drawer-body a {
  text-decoration: none;
  color: var(--hp-ink);
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--hp-card-bg);
  border: 1px solid var(--hp-card-border);
}

.hp-mobile-drawer-title {
  margin-top: 8px;
  font-size: 12px;
  color: var(--hp-text-muted);
  font-weight: 700;
}

.hp-mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  z-index: 1090;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.hp-mobile-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.hp-drawer-open {
  overflow: hidden;
  touch-action: none;
}

@media (max-width: 900px) {
  .hp-btn,
  button,
  .button,
  .woocommerce button.button,
  .woocommerce a.button {
    min-height: 48px;
    min-width: 48px;
  }
}

body.hp-b2b-site #wrapper,
body.hp-b2b-site .main {
  padding-top: 14px;
}

.hp-b2b {
  direction: rtl;
}

.hp-section {
  padding: clamp(40px, 5vw, 64px) 20px;
}

body.page-template-page-homepod-b2b .hp-section,
body.page-template-page-homepod-b2b-landing .hp-section,
body.home .hp-section {
  padding: clamp(32px, 4.5vw, 48px) 20px;
}

@media (max-width: 768px) {
  body.page-template-page-homepod-b2b .hp-section,
  body.page-template-page-homepod-b2b-landing .hp-section,
  body.home .hp-section {
    padding: clamp(28px, 6vw, 36px) 16px;
  }
}

.hp-container {
  max-width: var(--hp-container-max);
  width: 100%;
  margin: 0 auto;
}

.hp-hero {
  position: relative;
  padding: clamp(56px, 6vw, 78px) clamp(20px, 4vw, 32px) clamp(44px, 5vw, 60px);
  border-radius: var(--hp-radius-xl);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 107, 44, 0.2), transparent 58%),
    radial-gradient(circle at 86% 22%, rgba(245, 184, 74, 0.18), transparent 55%),
    linear-gradient(140deg, var(--hp-surface) 0%, var(--hp-surface-2) 48%, var(--hp-surface-3) 100%);
  color: var(--hp-ink);
  overflow: hidden;
  box-shadow: var(--hp-shadow);
  border: 1px solid var(--hp-card-border);
}

.hp-hero-logged {
  background: var(--hp-surface);
}

.hp-hero-card-logged {
  display: grid;
  gap: 14px;
}

.hp-hero-stat {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 239, 0.9));
  border-radius: 16px;
  padding: 14px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--hp-card-border);
  box-shadow: var(--hp-card-shadow);
}

.hp-hero-stat strong {
  font-size: 22px;
  color: var(--hp-ink);
}

.hp-hero-stat span {
  font-size: 13px;
  color: var(--hp-text-muted);
}

.hp-hero-search {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  background: var(--hp-input-bg);
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--hp-input-border);
  box-shadow: var(--hp-card-shadow);
}

.hp-hero-search .hp-search-label {
  color: var(--hp-text-muted);
}

.hp-hero-search .hp-search-select {
  background: var(--hp-surface);
  color: var(--hp-ink);
  border: 1px solid var(--hp-input-border);
}

.hp-hero-search input[type="search"] {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--hp-ink);
  font-size: 14px;
}

.hp-hero-search button {
  background: var(--hp-btn-bg);
  color: var(--hp-btn-text);
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  box-shadow: var(--hp-btn-shadow);
}

body.hp-b2b-site.home .hp-hero-section {
  padding-top: 48px;
  padding-bottom: 40px;
}

body.hp-b2b-site.home .hp-hero {
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 26px 56px rgba(8, 12, 18, 0.22);
}

body.hp-b2b-site.home:not(.logged-in) .hp-hero {
  padding: 64px 28px 48px;
}

body.hp-b2b-site.home:not(.logged-in) .hp-hero p {
  font-size: 16px;
}

body.hp-b2b-site.home:not(.logged-in) .hp-actions {
  margin-top: 20px;
  gap: 12px;
}

body.hp-b2b-site.home:not(.logged-in) .hp-actions-compact {
  margin-top: 12px;
}

body.hp-b2b-site.home .hp-hero-grid-logged {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 28px;
}

body.hp-b2b-site.home .hp-hero-card-logged {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 233, 0.9));
  border-radius: var(--hp-radius-lg);
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 32px rgba(12, 18, 24, 0.12);
}

body.hp-b2b-site.home .hp-hero-stat {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

body.hp-b2b-site.home .hp-account-snapshot .hp-container {
  background: rgba(255, 255, 255, 0.86);
  border-radius: var(--hp-radius-xl);
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 36px rgba(8, 12, 18, 0.12);
}

body.hp-b2b-site.home .hp-account-snapshot-grid {
  gap: 20px;
}

body.hp-b2b-site.home .hp-snapshot-card p {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 14px;
}

body.hp-b2b-site.home .hp-snapshot-card .hp-actions {
  margin-top: 10px;
  gap: 10px;
}

body.hp-b2b-site.home .hp-snapshot-card .hp-actions .hp-btn-secondary {
  color: var(--hp-ink);
  border-color: rgba(15, 23, 42, 0.18);
}

body.hp-b2b-site.home .hp-trust {
  padding-top: 24px;
}

body.hp-b2b-site.home .hp-trust-grid {
  background: #fff;
  border-radius: var(--hp-radius-xl);
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 26px rgba(8, 15, 20, 0.08);
}

body.hp-b2b-site.home .hp-trust-item {
  background: rgba(248, 250, 252, 0.9);
}

body.hp-b2b-site.home .hp-product-image {
  background: linear-gradient(135deg, #fdf7ef, #f1ebe2);
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  min-height: 140px;
}

body.hp-b2b-site.home .hp-product-image img {
  display: block;
  height: 100%;
  object-fit: cover;
}

body.hp-b2b-site.home .hp-cta {
  box-shadow: 0 28px 60px rgba(10, 15, 22, 0.36);
}

body.hp-b2b-site.home .hp-dashboard {
  padding-top: 36px;
  padding-bottom: 24px;
}

.hp-dashboard-shell {
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 107, 44, 0.18), transparent 55%),
    radial-gradient(circle at 88% 10%, rgba(245, 184, 74, 0.16), transparent 50%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 238, 0.94));
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--hp-radius-xl);
  padding: 24px;
  box-shadow: 0 24px 50px rgba(10, 16, 24, 0.18);
  display: grid;
  gap: 16px;
  min-height: calc(100vh - var(--hp-appbar-height, 64px) - var(--hp-bottom-nav-height, 72px) - 48px);
}

.hp-dashboard-header {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.hp-dashboard-title h1 {
  margin: 0;
  font-size: clamp(22px, 3vw, 28px);
}

.hp-dashboard-kicker {
  margin: 0 0 6px;
  font-size: 12px;
  color: var(--hp-text-muted);
  letter-spacing: 0.02em;
}

.hp-dashboard-sub {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--hp-text-muted);
}

.hp-dashboard-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hp-dashboard-pill {
  background: rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--hp-ink);
}

.hp-dashboard-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.hp-dashboard-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 10px;
  box-shadow: 0 14px 28px rgba(10, 16, 24, 0.08);
}

.hp-dashboard-card--primary {
  background: linear-gradient(150deg, rgba(255, 245, 236, 0.98), #ffffff);
  border-color: rgba(255, 107, 44, 0.25);
  box-shadow: 0 20px 36px rgba(255, 107, 44, 0.2);
}

.hp-dashboard-card--promo {
  background: linear-gradient(150deg, #ffffff, rgba(255, 245, 225, 0.9));
  border-color: rgba(245, 184, 74, 0.35);
}

.hp-dashboard-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.hp-dashboard-card-head h2,
.hp-dashboard-card-head h3 {
  margin: 0;
  font-size: 18px;
}

.hp-dashboard-tag {
  background: rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  color: var(--hp-text-muted);
}

.hp-dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hp-dashboard-actions .hp-btn {
  min-height: 40px;
}

body.hp-b2b-site.home .hp-dashboard .hp-btn-secondary {
  color: #0f172a;
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.16);
}

.hp-dashboard-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.hp-dashboard-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  align-items: baseline;
}

.hp-dashboard-list li span {
  font-size: 13px;
  color: var(--hp-text-muted);
}

.hp-dashboard-list li strong {
  font-size: 14px;
  color: var(--hp-ink);
  font-weight: 700;
}

.hp-dashboard-list li em {
  font-size: 12px;
  color: #64748b;
  font-style: normal;
}

.hp-dashboard-empty {
  margin: 0;
  font-size: 13px;
  color: var(--hp-text-muted);
}

.hp-text-link {
  font-size: 12px;
  color: var(--hp-ink);
  text-decoration: none;
  font-weight: 600;
}

.hp-text-link:hover {
  text-decoration: underline;
}

.hp-dashboard-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hp-dashboard-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--hp-ink);
  font-size: 13px;
  text-decoration: none;
}

.hp-dashboard-chip:hover {
  border-color: rgba(15, 23, 42, 0.3);
}

@media (min-width: 960px) {
  .hp-dashboard-card--primary {
    grid-column: span 2;
  }
}

@media (min-width: 1100px) {
  body.hp-b2b-site.home.logged-in .hp-dashboard {
    padding-top: 52px;
    padding-bottom: 40px;
  }

  body.hp-b2b-site.home.logged-in .hp-dashboard-shell {
    padding: 36px 40px;
    gap: 22px;
    border-radius: calc(var(--hp-radius-xl) + 4px);
    position: relative;
    overflow: hidden;
    min-height: auto;
  }

  body.hp-b2b-site.home.logged-in .hp-dashboard-shell::before {
    content: "";
    position: absolute;
    inset: -60px;
    background:
      radial-gradient(circle at 12% 18%, rgba(255, 106, 31, 0.28), transparent 55%),
      radial-gradient(circle at 86% 8%, rgba(245, 184, 74, 0.22), transparent 55%),
      radial-gradient(circle at 12% 85%, rgba(20, 184, 166, 0.16), transparent 50%);
    opacity: 0.8;
    pointer-events: none;
  }

  body.hp-b2b-site.home.logged-in .hp-dashboard-shell > * {
    position: relative;
    z-index: 1;
  }

  body.hp-b2b-site.home.logged-in .hp-dashboard-header {
    align-items: flex-start;
  }

  body.hp-b2b-site.home.logged-in .hp-dashboard-title h1 {
    font-size: 34px;
    letter-spacing: -0.02em;
  }

  body.hp-b2b-site.home.logged-in .hp-dashboard-kicker {
    font-size: 13px;
  }

  body.hp-b2b-site.home.logged-in .hp-dashboard-sub {
    font-size: 16px;
    max-width: 560px;
  }

  body.hp-b2b-site.home.logged-in .hp-dashboard-badges {
    justify-content: flex-start;
  }

  body.hp-b2b-site.home.logged-in .hp-dashboard-pill {
    font-size: 13px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  }

  body.hp-b2b-site.home.logged-in .hp-dashboard-grid {
    align-items: stretch;
    gap: 18px;
  }

  body.hp-b2b-site.home.logged-in .hp-dashboard-card {
    padding: 20px;
    border-radius: 22px;
    box-shadow: 0 18px 34px rgba(10, 16, 24, 0.12);
  }

  body.hp-b2b-site.home.logged-in .hp-dashboard-card--primary {
    box-shadow: 0 28px 46px rgba(255, 107, 44, 0.25);
  }

  body.hp-b2b-site.home.logged-in .hp-dashboard-card-head h2,
  body.hp-b2b-site.home.logged-in .hp-dashboard-card-head h3 {
    font-size: 20px;
  }

  body.hp-b2b-site.home.logged-in .hp-dashboard-actions {
    gap: 12px;
  }

  body.hp-b2b-site.home.logged-in .hp-dashboard-actions .hp-btn {
    min-height: 44px;
    font-size: 15px;
  }

  body.hp-b2b-site.home.logged-in .hp-dashboard-list li span {
    font-size: 14px;
  }

  body.hp-b2b-site.home.logged-in .hp-dashboard-list li strong {
    font-size: 15px;
  }

  body.hp-b2b-site.home.logged-in .hp-dashboard-links {
    gap: 12px;
  }

  body.hp-b2b-site.home.logged-in .hp-dashboard-chip {
    padding: 10px 16px;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  }
}

@media (min-width: 1200px) {
  body.hp-b2b-site.home.logged-in .hp-dashboard-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  body.hp-b2b-site.home.logged-in .hp-dashboard-grid > .hp-dashboard-card:nth-child(1) {
    grid-column: span 7;
  }

  body.hp-b2b-site.home.logged-in .hp-dashboard-grid > .hp-dashboard-card:nth-child(2) {
    grid-column: span 5;
  }

  body.hp-b2b-site.home.logged-in .hp-dashboard-grid > .hp-dashboard-card:nth-child(3),
  body.hp-b2b-site.home.logged-in .hp-dashboard-grid > .hp-dashboard-card:nth-child(4) {
    grid-column: span 6;
  }
}

@media (max-width: 900px) {
  body.hp-b2b-site.home .hp-hero-section {
    padding-top: 36px;
    padding-bottom: 24px;
  }
  body.hp-b2b-site.home .hp-hero-grid-logged {
    grid-template-columns: 1fr;
  }
  body.hp-b2b-site.home:not(.logged-in) .hp-hero {
    padding: 40px 18px 30px;
  }
  body.hp-b2b-site.home:not(.logged-in) .hp-actions {
    margin-top: 16px;
  }
  body.hp-b2b-site.home .hp-account-snapshot .hp-container {
    padding: 20px 16px;
  }
  body.hp-b2b-site.home .hp-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.hp-b2b-site.home .hp-dashboard {
    padding-top: 28px;
    padding-bottom: 16px;
  }
  .hp-dashboard-shell {
    padding: 18px 14px;
    min-height: calc(100vh - var(--hp-appbar-height, 54px) - var(--hp-bottom-nav-height, 72px) - 36px);
  }
  .hp-dashboard-grid {
    grid-template-columns: 1fr;
  }
  .hp-dashboard-actions {
    flex-direction: column;
  }
  .hp-dashboard-actions .hp-btn {
    width: 100%;
  }
}

.hp-trust {
  padding-top: 30px;
}

.hp-recommended .hp-scroll-row {
  padding-bottom: 16px;
}

.hp-wheel {
  margin: 30px 0;
  display: grid;
  gap: 16px;
  justify-items: center;
}

.hp-wheel-disc {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: conic-gradient(
    #ff6b3d 0 22%,
    #ffb547 22% 45%,
    #14b8a6 45% 68%,
    #2b6cb0 68% 90%,
    #f97316 90% 100%
  );
  border: 10px solid #fff;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.28);
  position: relative;
  transform: rotate(0turn);
  transition: transform 2.2s ease-out;
}

.hp-wheel-disc::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 58%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.2), transparent 55%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.hp-wheel.is-spinning .hp-wheel-disc {
  transform: rotate(var(--spin, 6turn));
}

.hp-wheel-disc::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: #0f172a;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.35);
}

.hp-wheel-spin {
  background: linear-gradient(120deg, #0f172a, #1f2937);
  color: #fff;
  border: 0;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.25);
}

.hp-wheel-result {
  display: none;
  text-align: center;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.12);
}

.hp-wheel-result.is-visible {
  display: block;
}

.hp-wheel-prize {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  text-align: right;
  margin-bottom: 12px;
}

.hp-wheel-prize__image img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.hp-wheel-prize__link {
  display: inline-block;
  margin-top: 6px;
  color: var(--hp-accent);
  font-weight: 700;
  text-decoration: none;
}

.hp-wheel-prize--empty {
  text-align: center;
  font-weight: 600;
}

.hp-wheel-code {
  font-weight: 700;
  font-size: 18px;
  border: 0;
  background: transparent;
  text-align: center;
  width: 100%;
}

.hp-wheel-note {
  margin-top: 8px;
  font-size: 13px;
  color: var(--hp-text-muted);
}

.hp-thankyou-products {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.hp-account-snapshot-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.hp-bulk-order {
  background: var(--hp-surface);
  border-radius: var(--hp-radius-lg);
  padding: 26px;
  box-shadow: var(--hp-shadow);
  border: 1px solid var(--hp-border);
  max-width: 1200px;
  margin: 0 auto;
}

.hp-bulk-page {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  align-items: start;
}

.hp-bulk-main {
  display: grid;
  gap: 14px;
}

.hp-bulk-aside {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 90px;
}

.hp-bulk-card {
  background: var(--hp-surface);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--hp-border);
}

.hp-bulk-tips h3 {
  margin-top: 0;
  color: #0f172a;
}

.hp-bulk-tips ul {
  margin: 0;
  padding: 0 18px 0 0;
  color: #4b5563;
  display: grid;
  gap: 8px;
}

.hp-bulk-reorder {
  background: #f8fafc;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid var(--hp-border);
  margin-bottom: 16px;
  display: grid;
  gap: 12px;
}

.hp-bulk-reorder-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hp-bulk-reorder-btn {
  background: #fff;
  border: 1px solid var(--hp-border);
  border-radius: 12px;
  padding: 8px 12px;
  font-weight: 600;
  text-align: right;
}

.hp-bulk-reorder-btn small {
  display: block;
  color: #64748b;
  font-size: 11px;
}

.hp-bulk-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  background: #f8fafc;
  border: 1px solid var(--hp-border);
  border-radius: 16px;
  padding: 16px;
}

.hp-bulk-hero h2 {
  margin: 0 0 6px;
  color: #0f172a;
}

.hp-bulk-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hp-bulk-search {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid var(--hp-border);
  margin-bottom: 0;
  position: relative;
}

.hp-bulk-search input[type="search"] {
  width: 100%;
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid var(--hp-border);
}

.hp-form-note {
  display: block;
  margin-bottom: 14px;
  color: #64748b;
}

.hp-bulk-table {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid var(--hp-border);
}

.hp-bulk-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid var(--hp-border);
  margin-bottom: 10px;
}

.hp-bulk-qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid var(--hp-border);
  position: relative;
  z-index: 2;
}

.hp-bulk-qty-btn {
  background: var(--hp-ink);
  color: #fff;
  border: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-weight: 700;
  line-height: 1;
}

.hp-bulk-qty-input {
  width: 54px;
  border: 1px solid var(--hp-border);
  background: #fff;
  text-align: center;
  font-weight: 700;
  border-radius: 10px;
  pointer-events: auto !important;
  position: relative;
  z-index: 3;
}

body.hp-b2b-site .hp-bulk-qty,
body.hp-b2b-site .hp-bulk-qty-input,
body.hp-b2b-site .hp-bulk-row input[type="number"] {
  pointer-events: auto !important;
  touch-action: manipulation;
}

.hp-quick-order {
  display: grid;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--hp-surface);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius-lg);
  padding: 12px 20px 20px;
  box-shadow: var(--hp-shadow);
}

.hp-qo-status {
  display: grid;
  gap: 6px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px;
  color: #475569;
}

.hp-qo-view-toggle {
  display: inline-flex;
  gap: 6px;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 4px;
  align-self: center;
}

.hp-qo-view-btn {
  border: none;
  background: transparent;
  color: #475569;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.hp-qo-view-btn.is-active {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12);
}

.hp-qo-actions {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.hp-qo-card {
  background: #fff;
  border: 1px solid var(--hp-border);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  gap: 8px;
}

.hp-qo-sku-row {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 90px auto;
  align-items: center;
}

.hp-qo-sku-row input,
.hp-qo-card textarea {
  border: 1px solid var(--hp-border);
  border-radius: 12px;
  padding: 10px 12px;
}

.hp-qo-search {
  position: relative;
  background: #fff;
  border: 1px solid var(--hp-border);
  border-radius: 14px;
  padding: 12px 14px;
}

.hp-qo-search input {
  width: 100%;
  border: 1px solid var(--hp-border);
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 15px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.hp-qo-search label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: #475569;
}

.hp-qo-suggest {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--hp-border);
  box-shadow: 0 14px 26px rgba(8, 15, 20, 0.12);
  z-index: 3;
  overflow: hidden;
  display: none;
}

.hp-qo-suggest.is-open {
  display: block;
}

.hp-qo-suggest.is-loading::after {
  content: "מחפש...";
  display: block;
  padding: 12px 14px;
  color: #475569;
}

.hp-qo-suggest button {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: right;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.hp-qo-suggest button:hover {
  background: var(--hp-surface-2);
}

.hp-qo-suggest small {
  color: var(--hp-text-muted);
  display: block;
}

.hp-qo-suggest strong {
  color: var(--hp-blue);
  white-space: nowrap;
}

.hp-qo-suggest-item {
  text-align: right;
}

.hp-qo-suggest-item.is-active {
  background: rgba(255, 107, 61, 0.12);
}

.hp-suggest-thumb {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f1f5f9;
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.hp-suggest-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hp-suggest-thumb-fallback {
  font-weight: 800;
  color: var(--hp-ink);
}

.hp-suggest-title {
  font-weight: 700;
  display: block;
}

.hp-suggest-meta {
  color: var(--hp-text-muted);
  font-size: 12px;
}

.hp-suggest-price {
  color: var(--hp-ink);
}

.hp-qo-suggest-empty {
  padding: 12px 14px;
  color: var(--hp-text-muted);
}

.hp-qo-catalog {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 238, 0.92));
  border: 1px solid var(--hp-border);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 12px;
  box-shadow: var(--hp-shadow-soft);
}

.hp-qo-catalog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hp-qo-catalog-head h3 {
  margin: 0;
  font-size: 18px;
}

.hp-qo-catalog-chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  padding: 12px;
  background: var(--hp-surface-2);
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.hp-qo-cat-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: 140px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 10px 8px 12px;
  font-weight: 700;
  font-size: 13px;
  color: var(--hp-ink);
  text-align: center;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.hp-qo-cat-chip.is-active {
  background: linear-gradient(120deg, var(--hp-accent), #ff8a5a);
  color: #fff;
  border-color: rgba(255, 107, 61, 0.45);
}

.hp-qo-cat-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(11, 17, 24, 0.18);
}

.hp-qo-cat-chip.is-disabled {
  opacity: 0.5;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

.hp-qo-catalog.is-mine .hp-qo-catalog-more {
  display: none;
}

.hp-qo-cat-thumb {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 12px 22px rgba(8, 15, 20, 0.12);
}

.hp-qo-cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hp-qo-cat-thumb--all {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.72));
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}

.hp-qo-cat-thumb-fallback {
  font-weight: 800;
  font-size: 18px;
  color: var(--hp-ink);
}

.hp-qo-cat-title {
  font-size: 13px;
  line-height: 1.2;
}

.hp-qo-catalog-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-auto-flow: row;
  align-items: stretch;
  overflow: hidden;
  align-content: start;
  justify-content: stretch;
}

.hp-qo-catalog-more {
  display: none;
}

.hp-qo-catalog-sentinel {
  height: 1px;
}

.hp-qo-catalog-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  display: grid;
  grid-template-rows: auto 1fr;
  box-shadow: 0 16px 32px rgba(11, 17, 24, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0;
  box-sizing: border-box;
  float: none !important;
  clear: both !important;
  margin: 0 !important;
}

.hp-qo-catalog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(11, 17, 24, 0.18);
}

.hp-qo-catalog.is-list .hp-qo-catalog-list {
  grid-template-columns: 1fr;
}

.hp-qo-catalog.is-list .hp-qo-catalog-card {
  grid-template-rows: none;
  grid-template-columns: 96px 1fr;
  align-items: stretch;
}

.hp-qo-catalog.is-list .hp-qo-catalog-media {
  height: 100%;
}

.hp-qo-catalog.is-list .hp-qo-catalog-media img {
  height: 100%;
  object-fit: cover;
}

.hp-qo-catalog.is-list .hp-qo-catalog-body {
  display: grid;
  gap: 8px;
  align-content: center;
}

.hp-qo-catalog.is-list .hp-qo-catalog-footer {
  justify-content: space-between;
  gap: 12px;
}

.hp-qo-catalog-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  background: linear-gradient(135deg, #ffffff, #f3f4f6);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.hp-qo-catalog-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  background: transparent;
}

.hp-qo-catalog-count {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(11, 17, 24, 0.92);
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.15s ease, transform 0.15s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hp-qo-catalog-count.is-visible {
  opacity: 1;
  transform: scale(1);
}

.hp-qo-catalog-body {
  padding: 12px;
  display: grid;
  gap: 6px;
}

.hp-qo-catalog-title {
  font-weight: 700;
  color: var(--hp-ink);
  font-size: 15px;
}

.hp-qo-catalog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  color: var(--hp-text-muted);
  font-size: 11px;
}

.hp-qo-catalog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: nowrap;
  padding-top: 6px;
  border-top: 1px dashed rgba(15, 23, 42, 0.1);
  min-height: 60px;
}

.hp-qo-catalog-qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--hp-surface);
  border-radius: 14px;
  padding: 6px 8px;
  border: 1px solid var(--hp-border);
  align-self: center;
}

.hp-qo-catalog-qty-btn {
  background: var(--hp-btn-bg);
  color: #fff;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--hp-btn-shadow);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.hp-qo-catalog-qty-input {
  width: 56px;
  border: 1px solid var(--hp-border);
  background: var(--hp-surface-2);
  text-align: center;
  font-weight: 800;
  border-radius: 10px;
  pointer-events: auto;
  height: 44px;
  line-height: 44px;
}

.hp-qo-catalog-empty {
  text-align: center;
  color: var(--hp-text-muted);
  padding: 18px;
}

.hp-qo-list {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 12px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 238, 0.92));
  box-shadow: var(--hp-shadow-soft);
}

.hp-qo-list-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 10px;
  font-weight: 700;
  font-size: 12px;
  color: var(--hp-text-muted);
  padding: 0 8px 8px;
}

.hp-qo-items {
  display: grid;
  gap: 8px;
}

.hp-qo-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 238, 0.92));
  box-shadow: var(--hp-shadow-soft);
}

.hp-qo-name {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.hp-qo-title {
  font-weight: 600;
  line-height: 1.2;
  min-width: 0;
}

.hp-qo-thumb {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #f1f5f9;
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.hp-qo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hp-qo-thumb-fallback {
  font-weight: 800;
  color: var(--hp-ink);
}

.hp-qo-sku,
.hp-qo-price {
  font-size: 13px;
  color: var(--hp-text-muted);
}

.hp-qo-price {
  font-weight: 700;
  color: var(--hp-blue);
}

.hp-qo-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hp-surface);
  border-radius: 16px;
  padding: 6px 8px;
  border: 1px solid var(--hp-border);
  pointer-events: auto;
  touch-action: manipulation;
  align-self: center;
}

.hp-qo-qty-btn {
  background: var(--hp-btn-bg);
  color: #fff;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--hp-btn-shadow);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.hp-qo-qty-btn:hover,
.hp-qo-catalog-qty-btn:hover {
  background: linear-gradient(120deg, var(--hp-accent), #ff8a5a);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(255, 107, 61, 0.25);
}

.hp-qo-qty-input {
  width: 56px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: var(--hp-surface-2);
  text-align: center;
  font-weight: 700;
  border-radius: 10px;
  pointer-events: auto;
  position: relative;
  z-index: 2;
  height: 44px;
  line-height: 44px;
}

.hp-qo-remove {
  background: rgba(239, 68, 68, 0.15);
  color: #b91c1c;
  border: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
}

.hp-qo-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(120deg, #0f172a 0%, #1f2937 100%);
  color: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  position: sticky;
  bottom: calc(12px + var(--hp-safe-bottom));
  z-index: 30;
  box-shadow: 0 16px 30px rgba(6, 10, 16, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

body.ashachar-quick-order.ashachar-bottom-bar-active .ashachar-qo__summary {
  bottom: calc(var(--hp-bottom-nav-height) + var(--hp-safe-bottom) + var(--hp-bottom-nav-gap)) !important;
}

.hp-qo-empty {
  text-align: center;
  color: var(--hp-text-muted);
  padding: 16px;
}

@media (max-width: 900px) {
  .hp-qo-catalog-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .hp-qo-catalog-chips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    padding: 8px;
    width: 100%;
    background: transparent;
    border: 0;
  }
  .hp-qo-cat-chip {
    min-height: 120px;
  }
  .hp-qo-cat-thumb {
    width: 60px;
    height: 60px;
    border-radius: 14px;
  }
  .hp-qo-catalog-footer {
    flex-wrap: wrap;
  }
  .hp-qo-sku-row {
    grid-template-columns: 1fr;
  }
  .hp-qo-list-head {
    display: none;
  }
  .hp-qo-item {
    grid-template-columns: 1fr;
  }
  .hp-qo-summary {
    z-index: 30;
  }
}

@media (max-width: 640px) {
  .hp-quick-order {
    padding: 14px;
    border-radius: 16px;
  }
  .hp-qo-search {
    padding: 10px 12px;
  }
  .hp-qo-status {
    width: 100%;
    grid-template-columns: 1fr;
    font-size: 12px;
  }
  .hp-qo-search input {
    padding: 12px 16px;
    font-size: 15px;
  }
  .hp-qo-catalog {
    padding: 12px;
  }
  .hp-qo-catalog-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px;
    grid-auto-rows: auto;
    align-content: start;
  }
  .hp-qo-catalog-card img {
    height: 140px;
  }
  .hp-qo-catalog-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .hp-qo-catalog-qty {
    justify-content: center;
  }
  .hp-qo-catalog-footer .hp-btn {
    width: 100%;
  }
  .hp-qo-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--hp-border);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
  }
  .hp-qo-qty,
  .hp-qo-catalog-qty {
    padding: 4px 6px;
    gap: 6px;
    border-radius: 12px;
  }
  .hp-qo-qty-btn,
  .hp-qo-catalog-qty-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
    line-height: 1;
    border-radius: 10px;
  }
  .hp-qo-qty-input,
  .hp-qo-catalog-qty-input {
    width: 48px;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    border-radius: 10px;
  }
  .hp-qo-name {
    font-size: 15px;
  }
  .hp-qo-thumb {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .hp-qo-price,
  .hp-qo-sku {
    display: inline-flex;
    width: fit-content;
    padding: 4px 8px;
    border-radius: 999px;
    background: #f1f5f9;
  }
  .hp-qo-price {
    color: var(--hp-ink);
    font-weight: 700;
  }
  .hp-qo-qty {
    align-self: stretch;
    justify-content: center;
  }
  .hp-qo-remove {
    align-self: flex-end;
  }
  .hp-qo-summary {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .hp-qo-summary .hp-btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .hp-bottom-nav a,
  .hp-bottom-nav .hp-nav-chat {
    font-size: 10px;
    gap: 2px;
  }
  .hp-nav-icon {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hp-qo-catalog-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hp-qo-catalog-card img {
    height: 120px;
  }
}

.hp-bulk-head {
  font-weight: 700;
  color: var(--hp-ink);
  border: 0;
  background: transparent;
  padding: 0 0 6px;
  margin-bottom: 4px;
}

.hp-bulk-tools {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 12px;
}

.hp-bulk-tool {
  background: #fff;
  border: 1px solid var(--hp-border);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  gap: 8px;
}

.hp-bulk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border: 1px solid var(--hp-border);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 12px;
}

.hp-bulk-actions-note {
  color: #64748b;
  font-size: 12px;
}

.hp-bulk-catalog {
  background: #fff;
  border: 1px solid var(--hp-border);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

.hp-bulk-catalog-header h3 {
  margin: 0;
  color: var(--hp-ink);
}

.hp-bulk-catalog-header span {
  color: #64748b;
  font-size: 12px;
}

.hp-bulk-catalog-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hp-bulk-cat-chip {
  background: #f1f5f9;
  border: 1px solid var(--hp-border);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
}

.hp-bulk-cat-chip.is-active {
  background: var(--hp-ink);
  color: #fff;
  border-color: var(--hp-ink);
}

.hp-bulk-catalog-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.hp-bulk-catalog-list.is-loading {
  opacity: 0.6;
}

.hp-bulk-catalog-card {
  border: 1px solid var(--hp-border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  display: grid;
  grid-template-rows: auto 1fr;
}

.hp-bulk-catalog-card img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  background: #f8fafc;
}

.hp-bulk-catalog-body {
  padding: 12px;
  display: grid;
  gap: 8px;
}

.hp-bulk-catalog-title {
  font-weight: 700;
  color: var(--hp-ink);
}

.hp-bulk-catalog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  color: #64748b;
  font-size: 12px;
}

.hp-bulk-catalog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hp-bulk-catalog-more {
  justify-self: center;
}

.hp-bulk-tool textarea {
  border-radius: 12px;
  border: 1px solid var(--hp-border);
  padding: 10px 12px;
  resize: vertical;
  min-height: 96px;
}

.hp-bulk-sku-row {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 90px auto;
  align-items: center;
}

.hp-bulk-sku-row input[type="text"],
.hp-bulk-sku-row input[type="number"] {
  border-radius: 12px;
  border: 1px solid var(--hp-border);
  padding: 10px 12px;
}

.hp-bulk-name {
  font-weight: 600;
}

.hp-bulk-sku,
.hp-bulk-vendor,
.hp-bulk-price {
  font-size: 13px;
  color: #475569;
}

.hp-bulk-price {
  font-weight: 700;
  color: var(--hp-blue);
}

.hp-bulk-items .hp-bulk-empty {
  text-align: center;
  color: #64748b;
  padding: 18px 0;
}

.hp-bulk-items {
  display: grid;
  gap: 10px;
}

.hp-bulk-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  background: var(--hp-ink);
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
}

.hp-bulk-summary .hp-btn {
  margin: 0;
}

.hp-bulk-upload {
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px dashed rgba(15, 23, 42, 0.2);
  margin-bottom: 14px;
  display: grid;
  gap: 6px;
}

.hp-bulk-upload-note {
  color: #64748b;
  font-size: 12px;
}

.hp-bulk-upload-status {
  font-size: 12px;
  color: #0f172a;
  font-weight: 600;
}

.hp-bulk-upload-report ul {
  margin: 8px 0 0;
  padding: 0 18px 0 0;
  display: grid;
  gap: 6px;
  color: #334155;
  font-size: 12px;
}

.hp-bulk-upload-report .is-missing {
  color: #b91c1c;
  font-weight: 700;
}

.hp-bulk-reorder-all {
  margin-top: 10px;
}

.hp-bulk-confirm {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
}

.hp-bulk-confirm.is-open {
  display: flex;
}

.hp-bulk-confirm-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  max-width: 420px;
  width: calc(100% - 40px);
  box-shadow: 0 20px 40px rgba(12, 18, 24, 0.2);
}

.hp-bulk-confirm-card h3 {
  margin-top: 0;
  color: #0f172a;
}

.hp-bulk-confirm-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 18px;
}

@media (max-width: 700px) {
  .hp-bulk-page {
    grid-template-columns: 1fr;
  }
  .hp-bulk-aside {
    position: static;
  }
  .hp-bulk-row {
    grid-template-columns: 1fr;
  }
  .hp-bulk-summary {
    position: sticky;
    bottom: calc(14px + var(--hp-safe-bottom));
    z-index: 20;
  }
  .hp-bulk-tool {
    padding: 12px;
  }
  .hp-bulk-row > span,
  .hp-bulk-row > div,
  .hp-bulk-row > button {
    width: 100%;
  }
  .hp-bulk-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hp-bulk-sku-row {
    grid-template-columns: 1fr;
  }
}

.hp-snapshot-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 238, 0.92));
  border-radius: var(--hp-radius-lg);
  padding: 20px;
  box-shadow: var(--hp-shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.hp-snapshot-card h3 {
  margin-top: 0;
  color: var(--hp-ink);
}

.hp-snapshot-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.hp-snapshot-card li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--hp-ink-2);
}

.hp-snapshot-card li span {
  font-weight: 700;
  color: var(--hp-ink);
}

.hp-snapshot-card li em {
  font-style: normal;
  color: var(--hp-text-muted);
  font-size: 12px;
}

.hp-trust-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.hp-trust-item {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 238, 0.9));
  padding: 14px 16px;
  border-radius: var(--hp-radius-md);
  box-shadow: var(--hp-shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(11, 17, 24, 0.16);
}

.hp-scroll-row {
  display: grid;
  gap: 18px;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}

.hp-scroll-row::-webkit-scrollbar {
  height: 6px;
}

.hp-scroll-row::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.25);
  border-radius: 999px;
}

.hp-product-card {
  scroll-snap-align: start;
}

.hp-product-image img {
  width: 100%;
  border-radius: 12px;
}

.hp-product-image {
  position: relative;
}

.hp-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(120deg, var(--hp-accent), #ff8a5a);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  box-shadow: var(--hp-shadow-glow);
}

.hp-qty-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hp-surface);
  border-radius: 16px;
  padding: 6px 8px;
  border: 1px solid var(--hp-border);
  box-shadow: var(--hp-shadow-soft);
  margin: 10px 0;
}

.hp-qty-btn {
  background: var(--hp-btn-bg);
  color: #fff;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1;
  box-shadow: var(--hp-btn-shadow);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.hp-qty-btn:hover {
  transform: translateY(-1px);
}

.hp-qty-input {
  width: 56px;
  border: 0;
  background: transparent;
  text-align: center;
  font-weight: 800;
  font-size: 15px;
}

.hp-qty-control-loop {
  margin-top: 10px;
  justify-content: center;
}

.hp-product-info {
  display: grid;
  gap: 10px;
}

.hp-product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.hp-stock {
  color: #16a34a;
  font-weight: 700;
}

.hp-hero::before,
.hp-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.25;
  animation: hp-float 14s ease-in-out infinite;
}

.hp-hero::before {
  background: radial-gradient(circle, rgba(255, 107, 61, 0.6) 0%, transparent 70%);
  top: -140px;
  left: -140px;
}

.hp-hero::after {
  background: radial-gradient(circle, rgba(20, 184, 166, 0.65) 0%, transparent 70%);
  bottom: -160px;
  right: -140px;
  animation-duration: 18s;
  animation-direction: reverse;
}

.hp-hero-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  position: relative;
  z-index: 1;
}

.hp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--hp-ink-2);
}

.hp-kicker span {
  background: linear-gradient(120deg, rgba(255, 107, 61, 0.18), rgba(20, 184, 166, 0.2));
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.hp-hero h1 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  margin: 16px 0;
}

.hp-hero p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--hp-text-muted);
}

.hp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hp-actions-primary {
  align-items: center;
}

.hp-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.hp-hero-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--hp-ink);
  text-decoration: none;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.28);
  padding-bottom: 2px;
}

.hp-hero-link:hover {
  color: var(--hp-accent);
  border-bottom-color: rgba(255, 107, 61, 0.6);
}

.hp-hero-link-small {
  display: inline-flex;
  margin-top: 10px;
  font-size: 13px;
}

.hp-hero-trust {
  margin-top: 10px;
  font-size: 13px;
  color: var(--hp-text-muted);
}

.hp-hero-note {
  margin-top: 12px;
  font-size: 14px;
  color: var(--hp-text-muted);
}

.hp-hero-note a {
  color: var(--hp-accent);
  font-weight: 700;
  text-decoration: underline;
}

.hp-actions-compact {
  margin-top: 12px;
  gap: 10px;
}

.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  min-height: 46px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hp-btn-primary {
  background: var(--hp-btn-bg);
  color: var(--hp-btn-text);
  border-color: var(--hp-btn-border);
  box-shadow: var(--hp-btn-shadow);
}

.hp-btn-secondary {
  background: var(--hp-btn-secondary-bg);
  color: var(--hp-btn-secondary-text);
  border: 1px solid var(--hp-btn-secondary-border);
  box-shadow: var(--hp-card-shadow);
}

.hp-cta-locked {
  background: var(--hp-accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
}

.hp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(11, 17, 24, 0.2);
}

.hp-hero-card {
  background: var(--hp-card-bg);
  border: 1px solid var(--hp-card-border);
  padding: 22px;
  border-radius: var(--hp-radius-lg);
  box-shadow: var(--hp-card-shadow);
  position: relative;
  overflow: hidden;
}

.hp-hero-card strong {
  font-size: 28px;
  display: block;
  color: var(--hp-ink);
}

.hp-hero-card p {
  color: var(--hp-text-muted);
}

.hp-stats {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 26px;
}

.hp-stat {
  background: var(--hp-card-bg);
  padding: 20px;
  border-radius: var(--hp-radius-md);
  box-shadow: var(--hp-card-shadow);
}

.hp-stat h3 {
  margin: 0;
  font-size: 26px;
  color: var(--hp-ink-2);
}

.hp-stat p {
  margin: 6px 0 0;
  color: #4b5563;
  font-size: 14px;
}

.hp-block-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 32px;
  color: var(--hp-ink);
}

.hp-block-title h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  margin: 0;
  color: var(--hp-ink);
}

.hp-block-title p {
  margin: 0;
  color: var(--hp-text-muted);
  max-width: 420px;
}

.hp-category-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.hp-category-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 237, 0.92));
  padding: 20px;
  border-radius: var(--hp-radius-lg);
  box-shadow: var(--hp-shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(11, 17, 24, 0.18);
}

.hp-category-card a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.hp-category-card h3 {
  margin: 0 0 6px;
  color: var(--hp-ink);
}

.hp-category-card span {
  font-size: 13px;
  color: var(--hp-text-muted);
}

@media (min-width: 1024px) {
  .hp-hero-search {
    display: none;
  }
  .hp-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
  .hp-category-card {
    padding: 24px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 237, 0.92));
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--hp-shadow-soft);
  }
  .hp-category-card h3 {
    font-size: 18px;
    letter-spacing: -0.2px;
  }
  .hp-category-card span {
    font-size: 14px;
  }
}

.hp-systems {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.hp-system-card {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(245, 242, 236, 0.9));
  border-radius: var(--hp-radius-lg);
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 36px rgba(12, 18, 24, 0.1);
}

.hp-system-card h3 {
  margin-top: 0;
}

.hp-system-card ul {
  margin: 14px 0 0;
  padding: 0 18px 0 0;
  color: #4b5563;
}

.hp-product-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.hp-product-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 238, 0.92));
  border-radius: var(--hp-radius-lg);
  padding: 18px;
  box-shadow: var(--hp-shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(11, 17, 24, 0.18);
}

.hp-product-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  background: linear-gradient(135deg, #fdf7ef, #f1ebe2);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.hp-product-card h3 {
  margin: 0;
  font-size: 16px;
  color: var(--hp-ink);
}

.hp-product-card .price {
  font-weight: 700;
  color: var(--hp-blue);
}

.hp-process {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.hp-step {
  --hp-step-accent: var(--hp-accent);
  padding: 22px;
  border-radius: var(--hp-radius-lg);
  background: linear-gradient(160deg, #0b0f14 0%, #1a2430 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 106, 31, 0.16);
  box-shadow: 0 18px 36px rgba(11, 17, 24, 0.32);
}

.hp-step::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 4px;
  width: 64%;
  background: linear-gradient(120deg, var(--hp-step-accent), var(--hp-accent-3));
}

.hp-step span {
  font-size: 42px;
  font-weight: 800;
  color: rgba(255, 143, 59, 0.25);
  position: absolute;
  top: 12px;
  right: 18px;
}

.hp-step:nth-child(2) {
  --hp-step-accent: var(--hp-accent-2);
  border-color: rgba(255, 143, 59, 0.22);
}

.hp-step:nth-child(3) {
  --hp-step-accent: var(--hp-accent-3);
  border-color: rgba(245, 184, 74, 0.24);
}

.hp-step h3 {
  margin-top: 20px;
}

.hp-faq {
  display: grid;
  gap: 16px;
}

.hp-faq details {
  background: #fff;
  border-radius: var(--hp-radius-md);
  padding: 16px 20px;
  box-shadow: 0 10px 22px rgba(8, 15, 20, 0.06);
}

.hp-faq summary {
  font-weight: 700;
  cursor: pointer;
}

.hp-logo-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.hp-logo-card {
  background: #fff;
  border-radius: var(--hp-radius-md);
  padding: 18px;
  text-align: center;
  font-weight: 700;
  color: #1f2937;
  box-shadow: 0 10px 24px rgba(12, 18, 24, 0.08);
}

.hp-review-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.hp-review-card {
  background: #fff;
  border-radius: var(--hp-radius-lg);
  padding: 20px;
  box-shadow: 0 16px 30px rgba(8, 15, 20, 0.1);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.hp-review-card p {
  color: #4b5563;
  margin: 0 0 16px;
  font-size: 15px;
}

.hp-review-card strong {
  display: block;
  color: #0f172a;
}

.hp-review-card span {
  font-size: 13px;
  color: #6b7280;
}

.hp-cta {
  background: linear-gradient(125deg, #0f172a 0%, #1f2a37 55%, #0f766e 100%);
  color: #fff;
  border-radius: var(--hp-radius-xl);
  padding: 60px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 50px rgba(10, 15, 22, 0.32);
}

.hp-cta::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 197, 66, 0.5), transparent 70%);
  top: -80px;
  right: -60px;
}

.hp-cta h2 {
  margin-top: 0;
  font-size: clamp(28px, 3.4vw, 42px);
}

.hp-reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: hp-rise 0.8s ease forwards;
  animation-delay: var(--d, 0s);
}

@keyframes hp-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hp-float {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(14px, -18px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 768px) {
  .hp-hero {
    padding: 70px 18px;
  }
  .hp-block-title {
    flex-direction: column;
    align-items: flex-start;
  }
  .hp-actions {
    width: 100%;
  }
  .hp-actions-primary .hp-btn {
    width: 100%;
  }
  .hp-hero-links {
    flex-direction: column;
    align-items: flex-start;
  }
  .hp-hero-card:not(.hp-hero-card-logged) {
    display: none;
  }
  .hp-btn {
    width: 100%;
  }
  .hp-hero-search {
    flex-direction: column;
    border-radius: var(--hp-radius-md);
  }
  .hp-appbar-search {
    flex-wrap: wrap;
  }
  .hp-search-select {
    width: 100%;
  }
  body.hp-b2b-site.woocommerce ul.products,
  body.hp-b2b-site.archive ul.products {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  body.hp-b2b-site.woocommerce ul.products li.product,
  body.hp-b2b-site.archive ul.products li.product {
    flex: 0 0 calc(50% - 6px);
    max-width: calc(50% - 6px);
  }
  body.hp-b2b-site.woocommerce ul.products li.product .box-text,
  body.hp-b2b-site.archive ul.products li.product .box-text {
    display: grid;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hp-reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hp-hero::before,
  .hp-hero::after {
    animation: none;
  }
}

@media (max-width: 640px) {
  .hp-bulk-row {
    grid-template-columns: 1fr 1fr;
    row-gap: 10px;
  }
  .hp-bulk-head {
    display: none;
  }
  .hp-bulk-row span:first-child {
    grid-column: 1 / -1;
  }
  .hp-bulk-row .hp-bulk-remove {
    justify-self: end;
  }
  body.hp-b2b-site.woocommerce ul.products,
  body.hp-b2b-site.archive ul.products {
    gap: 10px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  body.hp-b2b-site.woocommerce ul.products li.product,
  body.hp-b2b-site.archive ul.products li.product {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
  }
  body.hp-b2b-site .products .product .box-text {
    padding: 10px;
    text-align: right;
    gap: 4px;
  }
  body.hp-b2b-site .products .product .box-text .title-wrapper {
    font-size: 13px;
  }
  body.hp-b2b-site .products .product .box-image img {
    height: 140px;
    object-fit: contain;
    background: #f8fafc;
  }
  body.hp-b2b-site .products .product-small .box-image {
    aspect-ratio: auto;
    min-height: 140px;
  }
  body.hp-b2b-site .products .product {
    width: 100%;
  }
  .hp-qo-catalog-list > * {
    grid-column: auto !important;
  }
}

body.hp-b2b-site.woocommerce .shop-container,
body.hp-b2b-site.archive .shop-container,
body.hp-b2b-site.single-product .product-main {
  background: var(--hp-surface);
  border-radius: var(--hp-radius-xl);
  padding: 28px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--hp-border);
}

body.hp-b2b-site .products .product {
  border-radius: var(--hp-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--hp-border);
  background: #fff;
}

body.hp-b2b-site .products .product:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

@media (hover: none) {
  body.hp-b2b-site .products .product:hover {
    transform: none;
  }
}

body.hp-b2b-site .products .product-small.box {
  border-radius: var(--hp-radius-lg);
  display: flex;
  flex-direction: column;
  height: 100%;
}

body.hp-b2b-site .products .product .col-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

body.hp-b2b-site .products .product .product-small.box {
  flex: 1;
}

body.hp-b2b-site .products .product-small .box-image {
  flex-shrink: 0;
  aspect-ratio: 5 / 6;
  background: #f8fafc;
}

body.hp-b2b-site .related-products-wrapper .product-small .box-image,
body.hp-b2b-site .upsells .product-small .box-image,
body.hp-b2b-site .cross-sells .product-small .box-image {
  aspect-ratio: 5 / 6;
  background: #f8fafc;
}

body.hp-b2b-site .related-products-wrapper .product-small .box-image .image-fade_in_back,
body.hp-b2b-site .upsells .product-small .box-image .image-fade_in_back,
body.hp-b2b-site .cross-sells .product-small .box-image .image-fade_in_back,
body.hp-b2b-site .related-products-wrapper .product-small .box-image a,
body.hp-b2b-site .upsells .product-small .box-image a,
body.hp-b2b-site .cross-sells .product-small .box-image a {
  display: block;
  height: 100%;
}

body.hp-b2b-site .related-products-wrapper .product-small .box-image img,
body.hp-b2b-site .upsells .product-small .box-image img,
body.hp-b2b-site .cross-sells .product-small .box-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f8fafc;
}

body.hp-b2b-site .products .product-small .box-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  padding: 14px 12px 16px;
  background: #fff;
}

body.hp-b2b-site .products .product-small .box-text .hp-cta-locked {
  margin-top: auto;
  width: 100%;
  min-height: 44px;
  text-align: center;
}

body.hp-b2b-site .product-info h1.product-title,
body.hp-b2b-site .product-info h2.product-title {
  font-size: clamp(26px, 3vw, 38px);
}

body.hp-b2b-site .price,
body.hp-b2b-site .woocommerce-Price-amount {
  color: var(--hp-blue);
  font-weight: 700;
}

body.hp-b2b-site .button,
body.hp-b2b-site .single_add_to_cart_button {
  background: var(--hp-accent);
  border-radius: 999px;
  border: 0;
  font-weight: 700;
}

body.hp-b2b-site .woocommerce-breadcrumb {
  font-size: 14px;
  color: #6b7280;
}

body.hp-b2b-site .hp-breadcrumbs {
  max-width: 1400px;
  margin: 16px auto 12px;
  padding: 0 22px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

body.hp-b2b-site .hp-breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 6px 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 6px;
  column-gap: 0;
  border: 1px solid var(--hp-border);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  direction: rtl;
}

body.hp-b2b-site .hp-breadcrumb-list li {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
}

body.hp-b2b-site .hp-breadcrumb-list li + li::before {
  content: "›";
  display: inline-flex;
  align-items: center;
  color: #cbd5e1;
  font-weight: 700;
  margin-inline: 6px;
}

body.hp-b2b-site .hp-breadcrumb-list li a {
  color: inherit;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

body.hp-b2b-site .hp-breadcrumb-list li a:hover {
  background: #e2e8f0;
  color: var(--hp-ink);
}

body.hp-b2b-site .hp-breadcrumb-list li:last-child {
  color: var(--hp-ink);
  font-weight: 800;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 4px 10px;
}

@media (max-width: 640px) {
  body.hp-b2b-site .hp-breadcrumbs {
    margin: 12px auto 10px;
    padding: 0 14px;
  }
  body.hp-b2b-site .hp-breadcrumb-list {
    padding: 6px 8px;
    border-radius: 16px;
    row-gap: 4px;
  }
  body.hp-b2b-site .hp-breadcrumb-list li {
    font-size: 12px;
  }
}

.hp-back-home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #1d4ed8;
  text-decoration: none;
}

.hp-back-home:hover {
  text-decoration: underline;
}

body.hp-b2b-site .category-page-title,
body.hp-b2b-site .shop-page-title {
  background: linear-gradient(135deg, #0c1b2a 0%, #1f2937 100%);
  background-image: none !important;
  color: #fff;
  border-radius: var(--hp-radius-lg);
  padding: 20px 28px;
}

body.hp-b2b-site .header,
body.hp-b2b-site .header-wrapper,
body.hp-b2b-site .header-bg,
body.hp-b2b-site .header-bg-container {
  background: #0c1b2a !important;
  background-image: none !important;
}

body.hp-b2b-appbar #header {
  display: none !important;
}

body.ashachar-bottom-bar-active .mobile-bottom-bar {
  display: none !important;
}

body.ashachar-bottom-bar-active .hp-cart-summary-bar {
  display: none !important;
}

body.logged-in:not(.ashachar-bottom-bar-active) .mobile-bottom-bar {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
}

body.ashachar-quick-order .ash-qo__chips {
  display: none !important;
}

body.ashachar-quick-order .ash-qo__chip,
body.ashachar-quick-order button.ash-qo__chip,
body.ashachar-quick-order .ash-qo__chip:visited,
body.ashachar-quick-order .ash-qo__chip:focus,
body.ashachar-quick-order .ash-qo__chip:focus-visible,
body.ashachar-quick-order .ash-qo__chip:active {
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
  background: #f8fafc !important;
  border: 1px solid #d5e0ee !important;
}

body.ashachar-quick-order .ash-qo__chip:hover {
  background: #e2e8f0 !important;
}

body.ashachar-quick-order .ash-qo__chip.is-active,
body.ashachar-quick-order .ash-qo__chip.is-active:focus,
body.ashachar-quick-order .ash-qo__chip.is-active:focus-visible,
body.ashachar-quick-order .ash-qo__chip.is-active:active {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: var(--ash-qo-accent, #ff6b3d) !important;
  border-color: var(--ash-qo-accent, #ff6b3d) !important;
}

body.ashachar-quick-order .ash-qo__chip * {
  color: inherit !important;
}

body.hp-b2b-site.hp-desktop .header,
body.hp-b2b-site.hp-desktop .header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1001;
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

body.hp-b2b-site .woocommerce-product-gallery {
  border-radius: var(--hp-radius-lg);
  overflow: hidden;
  position: relative;
}

body.hp-b2b-site.single-product .woocommerce-product-gallery__wrapper,
body.hp-b2b-site.single-product .woocommerce-product-gallery__image {
  height: 100%;
}

body.hp-b2b-site.single-product .woocommerce-product-gallery__image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

body.hp-b2b-site.single-product .woocommerce-product-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.hp-b2b-site.single-product .product-main,
body.hp-b2b-site.single-product .product-info,
body.hp-b2b-site.single-product .product-summary,
body.hp-b2b-site.single-product .woocommerce-tabs,
body.hp-b2b-site.single-product .woocommerce-Tabs-panel {
  direction: rtl;
  text-align: right;
}

body.hp-b2b-site.single-product .product-main .row.content-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  grid-template-areas: "gallery info";
  direction: ltr;
  align-items: stretch;
}

body.hp-b2b-site.single-product,
body.hp-b2b-site.single-product #main,
body.hp-b2b-site.single-product .woocommerce,
body.hp-b2b-site.single-product .woocommerce-breadcrumb {
  direction: rtl;
  text-align: right;
}

body.hp-b2b-site.single-product .woocommerce-product-rating,
body.hp-b2b-site.single-product .product_meta {
  direction: rtl;
  text-align: right;
}

body.hp-b2b-site .hp-btn,
body.hp-b2b-site .button,
body.hp-b2b-site .hp-cta-locked {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

body.hp-b2b-site .header .searchform-wrapper .flex-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  flex-wrap: nowrap;
}

body.hp-b2b-site .header .searchform-wrapper .flex-col {
  flex: 0 0 auto;
}

body.hp-b2b-site .header .searchform-wrapper .flex-col.flex-grow {
  flex: 1 1 auto;
  min-width: 0;
}

body.hp-b2b-site .header .searchform-wrapper .search-field {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 10px 14px;
  box-sizing: border-box;
  direction: rtl;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.hp-b2b-site .header .searchform-wrapper .submit-button {
  min-height: 44px;
  min-width: 44px;
}

body.hp-b2b-site .header .searchform-wrapper.form-flat .flex-col:last-of-type {
  margin-left: 0;
  margin-right: 0;
}

body.hp-b2b-site .header .searchform,
body.hp-b2b-site .header .searchform-wrapper {
  width: 100%;
  max-width: 100%;
}


body.hp-b2b-site .product-summary .woocommerce-product-details__short-description {
  font-size: 16px;
  color: #4b5563;
}

/* Single product layout polish */
body.hp-b2b-site.single-product .hp-breadcrumbs {
  max-width: 100%;
  padding: 0;
  margin: 10px 0 16px;
  justify-content: flex-end;
}

body.hp-b2b-site.single-product .page-wrapper,
body.hp-b2b-site.single-product #main,
body.hp-b2b-site.single-product .shop-container,
body.hp-b2b-site.single-product .product-container {
  max-width: 100%;
  width: 100%;
}

body.hp-b2b-site.single-product .shop-container {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

body.hp-b2b-site.single-product .product-container {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0 32px 28px;
}

body.hp-b2b-site.single-product #product-sidebar {
  display: none;
}

body.hp-b2b-site.single-product .hp-product-nav {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}

body.hp-b2b-site.single-product .hp-product-nav .next-prev-thumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.hp-b2b-site.single-product .hp-product-nav .next-prev-thumbs li {
  margin: 0;
}

body.hp-b2b-site.single-product .product-main {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92));
  border-radius: 24px;
  border: 1px solid var(--hp-border);
  padding: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  width: 100%;
  margin: 0 auto;
  max-width: 1600px;
  margin-bottom: calc(var(--hp-bottom-nav-height) + 24px);
}

body.hp-b2b-site.single-product .product-main .row.content-row {
  display: grid !important;
  gap: 24px;
  align-items: flex-start;
  direction: ltr;
  justify-items: stretch;
  width: 100%;
  max-width: none;
  margin: 0;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "gallery"
    "info";
}

@media (min-width: 1024px) {
  body.hp-b2b-site.single-product .product-main .row.content-row {
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
    grid-template-areas: "info gallery";
  }
}

body.hp-b2b-site.single-product .product-gallery,
body.hp-b2b-site.single-product .product-info {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  min-width: 0;
}

body.hp-b2b-site.single-product .product-gallery {
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  order: 1 !important;
  flex: 1 1 52%;
  height: auto;
  grid-area: gallery;
}

body.hp-b2b-site.single-product .product-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  direction: rtl;
  text-align: right;
  order: 2 !important;
  flex: 1 1 48%;
  align-self: start;
  height: auto !important;
  min-height: 0;
  grid-area: info;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

body.hp-b2b-site.single-product .product-info > * {
  width: 100%;
}

body.hp-b2b-site.single-product .product-info .product-gallery {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  margin: 6px 0 10px;
  float: none !important;
  clear: both;
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 auto;
  flex-basis: 100% !important;
  align-self: stretch;
  order: 0 !important;
}

body.hp-b2b-site.single-product .product-info .product-title {
  order: 1;
}

body.hp-b2b-site.single-product .product-info .product-gallery {
  order: 2 !important;
}

body.hp-b2b-site.single-product .product-info .hp-product-stock {
  order: 3;
  align-self: flex-start;
  float: none !important;
}

body.hp-b2b-site.single-product .product-info .price-wrapper {
  order: 4;
  align-self: flex-start;
  float: none !important;
  display: inline-flex;
}

body.hp-b2b-site.single-product .product-info .hp-b2b-lock {
  order: 5;
}

body.hp-b2b-site.single-product .product-info .yith-wcwl-add-to-wishlist,
body.hp-b2b-site.single-product .product-info .product_meta {
  order: 6;
  float: none !important;
}

body.hp-b2b-site.single-product .wishlist-icon,
body.hp-b2b-site.single-product .wishlist-popup,
body.hp-b2b-site.single-product .yith-wcwl-add-to-wishlist,
body.hp-b2b-site.single-product .add_to_wishlist,
body.hp-b2b-site.single-product .product-gallery .image-tools,
body.hp-b2b-site.single-product .hp-product-nav,
body.hp-b2b-site.single-product .product_meta,
body.hp-b2b-site.single-product .social-icons.share-icons,
body.hp-b2b-site.single-product .is-divider.small {
  display: none !important;
}

body.hp-b2b-site.single-product .price-wrapper:empty,
body.hp-b2b-site.single-product .product-summary > div:empty,
body.hp-b2b-site.single-product .product-summary p:empty,
body.hp-b2b-site.single-product .woocommerce-product-details__short-description:empty {
  display: none !important;
}

body.hp-b2b-site.single-product .product-info .product-gallery .product-images {
  border: 1px solid var(--hp-border);
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  min-height: 320px;
  aspect-ratio: auto;
}

body.hp-b2b-site.single-product .product-info .product-gallery .flickity-viewport,
body.hp-b2b-site.single-product .product-info .product-gallery .flickity-slider {
  height: 100% !important;
  min-height: 240px;
}

body.hp-b2b-site.single-product .product-info .product-gallery .woocommerce-product-gallery__image,
body.hp-b2b-site.single-product .product-info .product-gallery .woocommerce-product-gallery__wrapper {
  height: 100%;
}

body.hp-b2b-site.single-product #product-sidebar {
  display: none !important;
}

body.hp-b2b-site.single-product .product-info .woocommerce-breadcrumb {
  display: none;
}

body.hp-b2b-site.single-product .product-info .product-title {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.25;
  margin-bottom: 4px;
}

body.hp-b2b-site.single-product .product-summary {
  display: grid;
  gap: 16px;
  min-width: 0;
  align-content: start;
}

body.hp-b2b-site.single-product .woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  margin: 0;
}

body.hp-b2b-site.single-product .woocommerce-product-rating .star-rating {
  margin: 0;
}

body.hp-b2b-site.single-product .woocommerce-review-link {
  font-size: 12px;
  color: #64748b;
  text-decoration: none;
}

body.hp-b2b-site.single-product .woocommerce-review-link:hover {
  color: var(--hp-ink);
}

body.hp-b2b-site.single-product .product-summary .price {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: var(--hp-blue);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: rgba(29, 78, 216, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
}

body.hp-b2b-site.single-product .product-summary .price ins {
  text-decoration: none;
}

body.hp-b2b-site.single-product .stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}

body.hp-b2b-site.single-product .stock.out-of-stock {
  background: #fef2f2;
  color: #991b1b;
  border-color: #fecaca;
}

body.hp-b2b-site.single-product .product-images {
  border: 1px solid var(--hp-border);
  border-radius: 16px;
  background: #f8fafc;
  padding: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 360px;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  width: 100%;
}

body.hp-b2b-site.single-product .product-images.mb-half {
  margin-bottom: 0;
}

body.hp-b2b-site.single-product .product-images .woocommerce-product-gallery__wrapper {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
}

body.hp-b2b-site.single-product .product-images .flickity-viewport,
body.hp-b2b-site.single-product .product-images .flickity-slider {
  min-height: 0;
  height: auto;
}

body.hp-b2b-site.single-product .product-gallery .flickity-viewport,
body.hp-b2b-site.single-product .product-gallery .flickity-slider {
  height: 100% !important;
}

body.hp-b2b-site.single-product .product-images .woocommerce-product-gallery__image--placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
}

body.hp-b2b-site.single-product .product-images .woocommerce-product-gallery__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
}

body.hp-b2b-site.single-product .product-images .woocommerce-product-gallery__image img {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: none;
}

body.hp-b2b-site.single-product .product-images .woocommerce-product-gallery__image--placeholder img {
  max-width: 70%;
  max-height: 260px;
  width: auto;
  height: auto;
  opacity: 0.85;
}

body.hp-b2b-site.single-product label[for="hp-rfq-qty"],
body.hp-b2b-site.single-product label[for="hp-rfq-notes"],
body.hp-b2b-site.single-product label[for="hp-rfq-file"],
body.hp-b2b-site.single-product label[for="hp-quote-notes"],
body.hp-b2b-site.single-product label[for="hp-quote-file"],
body.hp-b2b-site.single-product #hp-rfq-qty,
body.hp-b2b-site.single-product #hp-rfq-notes,
body.hp-b2b-site.single-product #hp-rfq-file,
body.hp-b2b-site.single-product #hp-quote-notes,
body.hp-b2b-site.single-product #hp-quote-file,
body.hp-b2b-site.single-product .hp-file-field {
  display: none !important;
}

body.hp-b2b-site.single-product .product-images .flickity-prev-next-button,
body.hp-b2b-site.single-product .woocommerce-product-gallery .flickity-prev-next-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 0;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.2);
  color: #fff;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

body.hp-b2b-site.single-product .product-images:hover .flickity-prev-next-button,
body.hp-b2b-site.single-product .woocommerce-product-gallery:hover .flickity-prev-next-button {
  opacity: 1;
}

body.hp-b2b-site.single-product .product-images .flickity-prev-next-button.previous,
body.hp-b2b-site.single-product .woocommerce-product-gallery .flickity-prev-next-button.previous {
  left: 10px;
  right: auto;
}

body.hp-b2b-site.single-product .product-images .flickity-prev-next-button.next,
body.hp-b2b-site.single-product .woocommerce-product-gallery .flickity-prev-next-button.next {
  right: 10px;
  left: auto;
}

html[dir="rtl"] body.hp-b2b-site.single-product .product-images .flickity-prev-next-button.previous,
html[dir="rtl"] body.hp-b2b-site.single-product .woocommerce-product-gallery .flickity-prev-next-button.previous,
body.rtl.hp-b2b-site.single-product .product-images .flickity-prev-next-button.previous,
body.rtl.hp-b2b-site.single-product .woocommerce-product-gallery .flickity-prev-next-button.previous {
  right: 10px;
  left: auto;
}

html[dir="rtl"] body.hp-b2b-site.single-product .product-images .flickity-prev-next-button.next,
html[dir="rtl"] body.hp-b2b-site.single-product .woocommerce-product-gallery .flickity-prev-next-button.next,
body.rtl.hp-b2b-site.single-product .product-images .flickity-prev-next-button.next,
body.rtl.hp-b2b-site.single-product .woocommerce-product-gallery .flickity-prev-next-button.next {
  left: 10px;
  right: auto;
}

body.hp-b2b-site.single-product .product-images .flickity-prev-next-button .arrow,
body.hp-b2b-site.single-product .woocommerce-product-gallery .flickity-prev-next-button .arrow {
  fill: #fff;
}

body.hp-b2b-site.single-product .product-images .flickity-prev-next-button:disabled,
body.hp-b2b-site.single-product .woocommerce-product-gallery .flickity-prev-next-button:disabled {
  opacity: 0.35;
}

body.hp-b2b-site.single-product .product-thumbnails {
  margin-top: 12px;
  gap: 8px;
  direction: rtl;
}

body.hp-b2b-site.single-product .product-thumbnails .col a {
  display: block;
  padding: 4px;
  border-radius: 12px;
  border: 1px solid var(--hp-border);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.hp-b2b-site.single-product .product-thumbnails .col.is-nav-selected a {
  border-color: var(--hp-accent);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
}

body.hp-b2b-site.single-product .product-thumbnails img {
  border-radius: 10px;
}

body.hp-b2b-site.single-product .product-summary form.cart {
  margin: 0;
  background: #f8fafc;
  border-radius: 16px;
  padding: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

body.hp-b2b-site.single-product .product-summary form.cart:not(.variations_form) {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

body.hp-b2b-site.single-product .variations {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
}

body.hp-b2b-site.single-product .variations th,
body.hp-b2b-site.single-product .variations td {
  padding: 8px 0;
  text-align: right;
  vertical-align: middle;
}

body.hp-b2b-site.single-product .variations label {
  font-weight: 700;
  color: #0f172a;
}

body.hp-b2b-site.single-product .variations select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  padding: 10px 12px;
  background: #fff;
}

body.hp-b2b-site.single-product .woocommerce-variation {
  display: grid;
  gap: 8px;
}

body.hp-b2b-site.single-product .woocommerce-variation-add-to-cart {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

body.hp-b2b-site.single-product .product_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
}

body.hp-b2b-site.single-product .product_meta > span {
  background: #f1f5f9;
  border: 1px solid var(--hp-border);
  border-radius: 999px;
  padding: 4px 10px;
}

body.hp-b2b-site.single-product .product_meta > span a {
  color: #1d4ed8;
  text-decoration: none;
}

body.hp-b2b-site.single-product .product_meta > span a:hover {
  text-decoration: underline;
}

body.hp-b2b-site.single-product .woocommerce-tabs {
  margin-top: 24px;
}

body.hp-b2b-site.single-product .hp-product-description {
  margin: 0 0 20px;
  background: var(--hp-card-bg);
  border: 1px solid var(--hp-card-border);
  border-radius: var(--hp-radius-lg);
  box-shadow: var(--hp-card-shadow);
  padding: 18px;
}

body.hp-b2b-site.single-product .hp-product-description h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

body.hp-b2b-site.single-product .hp-product-description__lead {
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--hp-ink-2);
}

body.hp-b2b-site.single-product .hp-product-description__content > :first-child {
  margin-top: 0;
}

@media (min-width: 901px) {
  body.hp-b2b-site.single-product .product-main .row.content-row {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    grid-template-areas: "gallery info";
    align-items: stretch;
  }
  body.hp-b2b-site.single-product .product-images {
    min-height: 420px;
    max-height: 560px;
    aspect-ratio: auto;
  }
  body.hp-b2b-site.single-product .product-gallery {
    grid-area: gallery;
  }
  body.hp-b2b-site.single-product .product-info {
    grid-area: info;
  }
}

body.hp-b2b-site.single-product .woocommerce-tabs,
body.hp-b2b-site.single-product .product_meta {
  display: none !important;
}

body.hp-b2b-site.single-product .product-footer {
  display: block !important;
  margin-top: 24px;
  padding-bottom: 24px;
}

body.hp-b2b-site.single-product .related-products-wrapper,
body.hp-b2b-site.single-product .upsells {
  display: block !important;
  margin: 0 auto;
}

body.hp-b2b-site.single-product .product-footer .container {
  max-width: 1200px;
  padding: 0 16px;
}

body.hp-b2b-site.single-product .related-products-wrapper,
body.hp-b2b-site.single-product .upsells {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: 18px 16px 24px;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.12);
  position: relative;
  overflow: hidden;
}

body.hp-b2b-site.single-product .product-section-title-related,
body.hp-b2b-site.single-product .upsells .product-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 16px;
  text-align: center;
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--hp-ink);
}

body.hp-b2b-site.single-product .product-section-title-related::before,
body.hp-b2b-site.single-product .product-section-title-related::after,
body.hp-b2b-site.single-product .upsells .product-section-title::before,
body.hp-b2b-site.single-product .upsells .product-section-title::after {
  content: "";
  height: 2px;
  width: 34px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(255, 106, 31, 0.95), rgba(245, 184, 74, 0.9));
  box-shadow: 0 6px 12px rgba(255, 106, 31, 0.3);
}

body.hp-b2b-site.single-product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  border-bottom: 0;
  margin: 0 0 12px;
  padding: 0;
}

body.hp-b2b-site.single-product .woocommerce-tabs ul.tabs::before {
  display: none;
}

body.hp-b2b-site.single-product .related-products-wrapper .row-slider,
body.hp-b2b-site.single-product .upsells .row-slider {
  margin: 0;
  padding: 6px 0 4px;
}

body.hp-b2b-site.single-product .related-products-wrapper .product-small,
body.hp-b2b-site.single-product .upsells .product-small {
  padding: 8px;
}

body.hp-b2b-site.single-product .related-products-wrapper .product-small .col-inner,
body.hp-b2b-site.single-product .upsells .product-small .col-inner {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  padding: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

body.hp-b2b-site.single-product .related-products-wrapper .product-small .box-image,
body.hp-b2b-site.single-product .upsells .product-small .box-image {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

body.hp-b2b-site.single-product .related-products-wrapper .product-small .box-text,
body.hp-b2b-site.single-product .upsells .product-small .box-text {
  text-align: center;
  align-items: center;
  padding: 12px 10px 14px;
  gap: 6px;
}

body.hp-b2b-site.single-product .related-products-wrapper .product-small .name,
body.hp-b2b-site.single-product .upsells .product-small .name {
  font-size: 13px;
  font-weight: 700;
  color: var(--hp-ink);
  line-height: 1.35;
  min-height: 36px;
}

body.hp-b2b-site.single-product .related-products-wrapper .price-wrapper,
body.hp-b2b-site.single-product .upsells .price-wrapper {
  display: flex;
  justify-content: center;
}

body.hp-b2b-site.single-product .related-products-wrapper .price-wrapper .price,
body.hp-b2b-site.single-product .upsells .price-wrapper .price {
  font-size: 14px;
  font-weight: 800;
  color: var(--hp-blue);
  background: rgba(37, 99, 235, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
}

@media (max-width: 900px) {
  body.hp-b2b-site.single-product .product-footer {
    padding-bottom: calc(var(--hp-bottom-nav-height) + var(--hp-safe-bottom) + 12px);
  }

  body.hp-b2b-site.single-product .product-footer .container {
    padding: 0 12px;
    max-width: 100%;
  }

  body.hp-b2b-site.single-product .related-products-wrapper,
  body.hp-b2b-site.single-product .upsells {
    border-radius: 16px;
    padding: 14px 12px 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.1);
    position: relative;
    overflow: hidden;
  }

  body.hp-b2b-site.single-product .related-products-wrapper::before,
  body.hp-b2b-site.single-product .upsells::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 106, 31, 0.2), rgba(255, 106, 31, 0));
    pointer-events: none;
  }

  body.hp-b2b-site.single-product .related-products-wrapper::after,
  body.hp-b2b-site.single-product .upsells::after {
    content: "";
    position: absolute;
    bottom: -130px;
    left: -90px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.16), rgba(59, 130, 246, 0));
    pointer-events: none;
  }

  body.hp-b2b-site.single-product .related-products-wrapper > *,
  body.hp-b2b-site.single-product .upsells > * {
    position: relative;
    z-index: 1;
  }

  body.hp-b2b-site.single-product .related-products-wrapper .row-slider:not(.flickity-enabled),
  body.hp-b2b-site.single-product .upsells .row-slider:not(.flickity-enabled) {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin: 0;
  }

  body.hp-b2b-site.single-product .related-products-wrapper .row-slider.flickity-enabled,
  body.hp-b2b-site.single-product .upsells .row-slider.flickity-enabled {
    margin: 0;
  }

  body.hp-b2b-site.single-product .related-products-wrapper .flickity-viewport,
  body.hp-b2b-site.single-product .upsells .flickity-viewport {
    height: auto !important;
    overflow: visible;
  }

  body.hp-b2b-site.single-product .related-products-wrapper .flickity-slider,
  body.hp-b2b-site.single-product .upsells .flickity-slider {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  body.hp-b2b-site.single-product .related-products-wrapper .row,
  body.hp-b2b-site.single-product .upsells .row {
    margin-left: 0;
    margin-right: 0;
  }

  body.hp-b2b-site.single-product .related-products-wrapper .row > .col,
  body.hp-b2b-site.single-product .upsells .row > .col {
    padding-left: 0;
    padding-right: 0;
  }

  body.hp-b2b-site.single-product .related-products-wrapper .product-small,
  body.hp-b2b-site.single-product .upsells .product-small {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding: 0;
    left: auto !important;
    position: static !important;
    float: none !important;
  }

  body.hp-b2b-site.single-product .related-products-wrapper .product-small .col-inner,
  body.hp-b2b-site.single-product .upsells .product-small .col-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.12);
    background: #fff;
  }

  body.hp-b2b-site.single-product .related-products-wrapper .product-small .box,
  body.hp-b2b-site.single-product .upsells .product-small .box {
    margin: 0;
  }

  body.hp-b2b-site.single-product .related-products-wrapper .product-small .box-image,
  body.hp-b2b-site.single-product .upsells .product-small .box-image {
    aspect-ratio: 1 / 1;
    background: #f8fafc;
    padding: 8px;
    width: 100%;
    height: auto;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  body.hp-b2b-site.single-product .related-products-wrapper .product-small .box-image img,
  body.hp-b2b-site.single-product .upsells .product-small .box-image img {
    object-fit: contain;
  }

  body.hp-b2b-site.single-product .related-products-wrapper .product-small .box-text,
  body.hp-b2b-site.single-product .upsells .product-small .box-text {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0 4px 2px;
    text-align: right;
    align-items: flex-start;
    gap: 8px;
  }

  body.hp-b2b-site.single-product .related-products-wrapper .product-small .category,
  body.hp-b2b-site.single-product .upsells .product-small .category {
    display: none;
  }

  body.hp-b2b-site.single-product .related-products-wrapper .product-small .name,
  body.hp-b2b-site.single-product .upsells .product-small .name {
    font-size: 14px;
    line-height: 1.35;
    min-height: 34px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body.hp-b2b-site.single-product .related-products-wrapper .price-wrapper,
  body.hp-b2b-site.single-product .upsells .price-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
  }

  body.hp-b2b-site.single-product .related-products-wrapper .price-wrapper .price,
  body.hp-b2b-site.single-product .upsells .price-wrapper .price {
    font-size: 14px;
    font-weight: 800;
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.12);
    padding: 4px 12px;
    border-radius: 999px;
  }

  body.hp-b2b-site.single-product .related-products-wrapper .hp-loop-meta,
  body.hp-b2b-site.single-product .upsells .hp-loop-meta {
    margin-top: 0;
    justify-content: flex-start;
  }

  body.hp-b2b-site.single-product .related-products-wrapper .hp-loop-meta-secondary,
  body.hp-b2b-site.single-product .upsells .hp-loop-meta-secondary {
    display: none;
  }

  body.hp-b2b-site.single-product .related-products-wrapper .image-tools,
  body.hp-b2b-site.single-product .upsells .image-tools,
  body.hp-b2b-site.single-product .related-products-wrapper .wishlist-icon,
  body.hp-b2b-site.single-product .upsells .wishlist-icon,
  body.hp-b2b-site.single-product .related-products-wrapper .wishlist-button,
  body.hp-b2b-site.single-product .upsells .wishlist-button,
  body.hp-b2b-site.single-product .related-products-wrapper .yith-wcwl-add-to-wishlist,
  body.hp-b2b-site.single-product .upsells .yith-wcwl-add-to-wishlist,
  body.hp-b2b-site.single-product .related-products-wrapper .badge-container,
  body.hp-b2b-site.single-product .upsells .badge-container,
  body.hp-b2b-site.single-product .related-products-wrapper .quick-view,
  body.hp-b2b-site.single-product .upsells .quick-view {
    display: none !important;
  }

  body.hp-b2b-site.single-product .related-products-wrapper .flickity-prev-next-button,
  body.hp-b2b-site.single-product .upsells .flickity-prev-next-button,
  body.hp-b2b-site.single-product .related-products-wrapper .flickity-page-dots,
  body.hp-b2b-site.single-product .upsells .flickity-page-dots {
    display: none !important;
  }
}

body.hp-b2b-site.single-product .woocommerce-tabs ul.tabs li {
  margin: 0;
  border: 0;
  background: transparent;
}

body.hp-b2b-site.single-product .woocommerce-tabs ul.tabs li a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--hp-border);
  color: var(--hp-ink);
  font-weight: 700;
  text-decoration: none;
}

body.hp-b2b-site.single-product .woocommerce-tabs ul.tabs li.active a {
  background: var(--hp-ink);
  color: #fff;
  border-color: var(--hp-ink);
}

body.hp-b2b-site.single-product .woocommerce-Tabs-panel {
  background: #fff;
  border: 1px solid var(--hp-border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

body.hp-b2b-site.single-product .woocommerce-Tabs-panel ul {
  padding-right: 18px;
}

body.hp-b2b-site.single-product .product-summary .quantity input.qty {
  direction: ltr;
}

/* Single product mobile polish */
body.hp-b2b-site.single-product,
body.hp-b2b-site.single-product #main,
body.hp-b2b-site.single-product .woocommerce,
body.hp-b2b-site.single-product .woocommerce-breadcrumb {
  background: #f8fafc;
}

@media (max-width: 900px) {
  body.hp-b2b-site.single-product #wrapper,
  body.hp-b2b-site.single-product .main {
    padding-top: 6px;
  }
  body.hp-b2b-site.single-product .hp-breadcrumbs {
    margin: 6px 0 10px;
  }
  body.hp-b2b-site.single-product .hp-breadcrumb-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
  }
  body.hp-b2b-site.single-product .hp-breadcrumb-list::-webkit-scrollbar {
    display: none;
  }
  body.hp-b2b-site.single-product .product-container {
    padding: 0 14px 20px;
  }
  body.hp-b2b-site.single-product .product-main {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    min-height: auto;
  }
  body.hp-b2b-site.single-product .product-main .row.content-row {
    gap: 16px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "info"
      "gallery";
  }
  body.hp-b2b-site.single-product .product-gallery,
  body.hp-b2b-site.single-product .product-info {
    padding: 14px;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
    border: 1px solid var(--hp-border);
    border-radius: 16px;
    background: #fff;
  }
  body.hp-b2b-site.single-product .product-info {
    order: 1 !important;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  body.hp-b2b-site.single-product .product-info form.cart,
  body.hp-b2b-site.single-product .product-info .woocommerce-variation-add-to-cart {
    order: 5;
  }
  body.hp-b2b-site.single-product .product-info .hp-product-stock,
  body.hp-b2b-site.single-product .product-info .price-wrapper {
    order: 3;
    width: 100%;
    align-self: center;
    justify-content: center;
    text-align: center;
  }
  body.hp-b2b-site.single-product .product-info .woocommerce-product-details__short-description {
    order: 4;
  }
  body.hp-b2b-site.single-product .product-gallery {
    order: 2 !important;
    align-self: auto;
    flex: 0 0 auto;
  }
  body.hp-b2b-site.single-product .product-info .product-gallery {
    margin-top: 2px;
    margin-bottom: 10px;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  body.hp-b2b-site.single-product .product-gallery .product-images {
    box-shadow: none;
    border: 1px solid var(--hp-border);
    border-radius: 14px;
  }
  body.hp-b2b-site.single-product .product-info .product-gallery {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 auto !important;
    margin: 0 0 8px;
  }
  body.hp-b2b-site.single-product .product-info .is-divider {
    display: none;
  }
  body.hp-b2b-site.single-product .product-info .product-title {
    font-size: clamp(26px, 7vw, 32px);
    margin-bottom: 2px;
  }
  body.hp-b2b-site.single-product .product-summary form.cart:not(.variations_form),
  body.hp-b2b-site.single-product .woocommerce-variation-add-to-cart {
    grid-template-columns: 1fr;
  }
  body.hp-b2b-site.single-product .product-images .flickity-prev-next-button {
    width: 34px;
    height: 34px;
    opacity: 1;
  }
  body.hp-b2b-site.single-product .product-info .product-gallery .flickity-viewport,
  body.hp-b2b-site.single-product .product-info .product-gallery .flickity-slider,
  body.hp-b2b-site.single-product .product-info .product-gallery .woocommerce-product-gallery__image,
  body.hp-b2b-site.single-product .product-info .product-gallery .woocommerce-product-gallery__wrapper {
    height: auto !important;
    min-height: 0 !important;
  }
  body.hp-b2b-site.single-product .product-images .flickity-viewport,
  body.hp-b2b-site.single-product .product-images .flickity-slider {
    min-height: 0;
    height: auto !important;
  }
  body.hp-b2b-site.single-product .product-images .woocommerce-product-gallery__wrapper,
  body.hp-b2b-site.single-product .product-images .woocommerce-product-gallery__image {
    height: auto !important;
  }
  body.hp-b2b-site.single-product .product-images {
    min-height: 0 !important;
    height: auto !important;
    max-height: none;
    aspect-ratio: auto;
    padding: 6px;
    background: #f8fafc;
    flex: 0 0 auto;
  }
  body.hp-b2b-site.single-product .product-info .product-gallery .product-images {
    min-height: 0 !important;
    max-height: none;
    aspect-ratio: auto !important;
  }
  body.hp-b2b-site.single-product .hp-sticky-cta {
    bottom: calc(var(--hp-bottom-nav-height) + var(--hp-safe-bottom) + 8px);
  }
  body.hp-b2b-site.single-product .hp-sticky-cta-inner {
    padding: 2px 6px;
    border-radius: 10px;
    gap: 4px;
    min-height: 20px;
    background: rgba(15, 23, 42, 0.2);
  }
  body.hp-b2b-site.single-product .hp-sticky-title {
    display: none;
    font-size: 11px;
    line-height: 1.1;
  }
  body.hp-b2b-site.single-product .hp-sticky-price {
    font-size: 12px;
    line-height: 1.1;
  }
  body.hp-b2b-site.single-product .hp-sticky-actions {
    gap: 4px;
    grid-template-columns: 1fr;
  }
  body.hp-b2b-site.single-product .hp-sticky-actions .hp-btn,
  body.hp-b2b-site.single-product .hp-sticky-actions .button {
    padding: 4px 8px;
    min-height: 22px;
    font-size: 10px;
  }
  body.hp-b2b-site.single-product .hp-sticky-qty {
    display: none;
  }
  body.hp-b2b-site.single-product .product-images .woocommerce-product-gallery__image img {
    height: auto;
    transform: none;
  }
}

body.hp-b2b-site.single-product .hp-sticky-cta {
  display: none;
}

body.hp-b2b-site.single-product.hp-sticky-cta-visible .hp-sticky-cta {
  display: block;
}

body.hp-b2b-site.single-product .product-summary .quantity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  background: #fff;
}

body.hp-b2b-site.single-product .product-summary .quantity .minus,
body.hp-b2b-site.single-product .product-summary .quantity .plus {
  background: var(--hp-btn-bg);
  color: #fff;
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-weight: 800;
  box-shadow: var(--hp-shadow-glow);
}

body.hp-b2b-site.single-product .product-summary .quantity input.qty {
  width: 52px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  padding: 8px 6px;
  min-height: 40px;
}

body.hp-b2b-site.single-product .product-summary .single_add_to_cart_button {
  width: 100%;
  border-radius: 12px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 12px;
  min-height: 32px;
}

body.hp-b2b-site.single-product .hp-b2b-quick-actions {
  background: #f8fafc;
  border-radius: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

body.hp-b2b-site.single-product .hp-rfq-form {
  background: #fff;
  box-shadow: 0 12px 24px rgba(8, 15, 20, 0.08);
}

body.hp-b2b-site .hp-rfq-form {
  margin-top: 16px;
  background: #f8fafc;
  border-radius: var(--hp-radius-md);
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 10px;
}

body.hp-b2b-site .hp-rfq-form label {
  font-weight: 700;
  font-size: 13px;
  color: #0f172a;
}

body.hp-b2b-site .hp-rfq-form input,
body.hp-b2b-site .hp-rfq-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  padding: 10px 12px;
}

body.hp-b2b-site .hp-rfq-guest {
  margin-top: 16px;
  padding: 14px 16px;
  background: #fff;
  border-radius: var(--hp-radius-md);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

body.hp-b2b-site .hp-rfq-list table {
  width: 100%;
  border-collapse: collapse;
}

body.hp-b2b-site .hp-rfq-list th,
body.hp-b2b-site .hp-rfq-list td {
  text-align: right;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 14px;
}

body.hp-b2b-site .hp-rfq-list a {
  color: #1d4ed8;
  font-weight: 700;
  text-decoration: none;
}

body.hp-b2b-site .hp-rfq-list a:hover {
  text-decoration: underline;
}

.hp-empty-state {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: var(--hp-radius-md);
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.hp-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
}

.hp-status-badge.is-in-progress {
  background: rgba(251, 191, 36, 0.18);
  color: #92400e;
}

.hp-status-badge.is-done {
  background: rgba(34, 197, 94, 0.2);
  color: #166534;
}

.hp-bulk-empty {
  padding: 14px 16px;
  color: #64748b;
  font-size: 14px;
}

body.hp-b2b-site .hp-account-portal {
  margin-top: 20px;
  background: #fff;
  border-radius: var(--hp-radius-lg);
  padding: 20px;
  box-shadow: 0 12px 24px rgba(8, 15, 20, 0.08);
}

body.hp-b2b-site .hp-account-header {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.hp-account-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.hp-account-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: #0f172a;
}

.hp-account-list a {
  text-decoration: none;
  color: var(--hp-accent);
  font-weight: 700;
}

body.hp-b2b-site .hp-account-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin: 12px 0 20px;
}

body.hp-b2b-site .hp-account-stats div {
  background: var(--hp-surface-2);
  border-radius: var(--hp-radius-md);
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  text-align: center;
}

body.hp-b2b-site .hp-account-stats strong {
  display: block;
  font-size: 20px;
  color: var(--hp-ink);
}

body.hp-b2b-site .hp-account-stats span {
  font-size: 12px;
  color: var(--hp-text-muted);
}

body.hp-b2b-site .hp-account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hp-status-pill {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(59, 130, 246, 0.18);
  color: #1d4ed8;
  border: 1px solid rgba(29, 78, 216, 0.3);
}

.hp-status-pill.is-approved {
  background: rgba(20, 184, 166, 0.2);
  color: #0f766e;
  border-color: rgba(15, 118, 110, 0.35);
}

.hp-status-pill.is-pending {
  background: rgba(244, 197, 66, 0.25);
  color: #92400e;
  border-color: rgba(180, 83, 9, 0.35);
}

body.hp-b2b-site .hp-account-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

body.hp-b2b-site .hp-account-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--hp-radius-md);
  padding: 16px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 238, 0.92));
}

.hp-checkout-hero {
  margin: 20px 0 24px;
  padding: 20px;
  background: linear-gradient(120deg, #0f172a, #1f2937);
  color: #fff;
  border-radius: var(--hp-radius-lg);
}

.hp-checkout-hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.hp-checkout-steps {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
}

.hp-checkout-steps span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
}

.hp-shop-hero {
  margin: 20px 0 30px;
  padding: 24px 18px;
  background: linear-gradient(120deg, #0f172a, #1f2937);
  color: #fff;
  border-radius: var(--hp-radius-lg);
}

body.hp-b2b-site.tax-product_cat .hp-shop-hero {
  margin: 16px 0 18px;
  padding: 18px;
}

body.hp-b2b-site.tax-product_cat .hp-shop-hero p {
  margin-bottom: 0;
  opacity: 0.85;
}

body.hp-b2b-site.tax-product_cat .hp-shop-hero .hp-hero-notes {
  display: none;
}

body.hp-b2b-site.tax-product_cat .hp-shop-toolbar {
  margin-top: 10px;
}

body.hp-b2b-site.tax-product_cat ul.products {
  gap: 18px;
}

body.hp-b2b-site.tax-product_cat .products .product {
  border-radius: 22px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
}

body.hp-b2b-site.tax-product_cat .products .product .box-image {
  background: #f8fafc;
  padding: 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

body.hp-b2b-site.tax-product_cat .products .product .box-text {
  padding: 16px;
}

.hp-shop-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hp-shop-hero h1 {
  margin: 0;
  font-size: clamp(24px, 3.4vw, 36px);
}

.hp-hero-notes {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.hp-loop-meta {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  font-size: 12px;
  flex-wrap: wrap;
}

.hp-loop-stock {
  background: rgba(22, 163, 74, 0.12);
  color: #16a34a;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 700;
}

.hp-loop-unit {
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 700;
}

.hp-loop-meta-secondary {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: #475569;
  flex-wrap: wrap;
}

.hp-loop-meta-secondary span {
  background: rgba(15, 23, 42, 0.06);
  padding: 4px 8px;
  border-radius: 999px;
}

.hp-product-stock {
  margin-top: 8px;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.15);
  color: #16a34a;
  font-weight: 700;
}

.hp-trust-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.hp-trust-badges span {
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hp-sticky-cta {
  position: fixed;
  bottom: calc(16px + var(--hp-safe-bottom));
  right: 16px;
  left: 16px;
  display: none;
  z-index: 1004;
}

.hp-sticky-cta-inner {
  background: rgba(15, 23, 42, 0.8);
  color: #fff;
  border-radius: 16px;
  padding: 8px 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hp-sticky-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
}

body.hp-b2b-site.single-product .hp-sticky-cta .hp-sticky-title {
  display: none;
}

.hp-sticky-price {
  font-weight: 800;
  color: #f8fafc;
}

.hp-sticky-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 11px;
  color: #cbd5e1;
}

.hp-sticky-stock {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.hp-sticky-stock.is-out {
  background: rgba(239, 68, 68, 0.18);
  color: #fecdd3;
}

.hp-sticky-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
  align-items: center;
}

.hp-sticky-qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #0f172a;
  padding: 6px 10px;
  border-radius: 12px;
}

.hp-sticky-qty-input {
  width: 48px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  padding: 6px 8px;
}

.hp-sticky-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  background: #fff;
  color: #0f172a;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.12);
}

.hp-sticky-wa {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

@media (max-width: 900px) {
  .hp-shop-hero-inner {
    align-items: flex-start;
  }
  body.hp-b2b-site.single-product .hp-sticky-cta {
    display: block;
  }
  body.hp-b2b-site.single-product .hp-sticky-cta-inner {
    grid-template-columns: 1fr;
  }
}

.hp-quote-form {
  display: grid;
  gap: 12px;
  background: #fff;
  border-radius: var(--hp-radius-lg);
  padding: 18px;
  box-shadow: 0 14px 26px rgba(8, 15, 20, 0.08);
}

.hp-quote-form label {
  font-weight: 700;
  color: #0f172a;
  font-size: 13px;
}

.hp-quote-form input,
.hp-quote-form textarea {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  padding: 10px 12px;
}

.hp-form-note {
  font-size: 12px;
  color: #64748b;
}

body.hp-b2b-site .hp-quote-form input[type="file"],
body.hp-b2b-site .hp-rfq-form input[type="file"] {
  border-radius: 12px;
  border: 1px dashed rgba(15, 23, 42, 0.2);
  padding: 10px;
  background: #f8fafc;
}

body.hp-b2b-site .hp-file-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

body.hp-b2b-site .hp-file-field {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

body.hp-b2b-site .hp-file-button {
  background: #0f172a;
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
}

body.hp-b2b-site .hp-file-name {
  font-size: 12px;
  color: #64748b;
}

.hp-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

body.hp-b2b-site .woocommerce-account .woocommerce-MyAccount-navigation,
body.hp-b2b-site .woocommerce-cart .cart-collaterals,
body.hp-b2b-site .woocommerce-checkout .checkout_coupon {
  background: #fff;
  border-radius: var(--hp-radius-lg);
  padding: 20px;
  box-shadow: 0 14px 26px rgba(8, 15, 20, 0.08);
}

body.hp-b2b-site .woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

body.hp-b2b-site .woocommerce-account .woocommerce-MyAccount-navigation.is-collapsed {
  display: none;
}

.hp-account-nav-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0f172a;
  color: #fff;
  border: 0;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hp-account-nav-arrow {
  transition: transform 0.2s ease;
}

.hp-account-nav-toggle[aria-expanded="true"] .hp-account-nav-arrow {
  transform: rotate(180deg);
}

body.hp-b2b-site .woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 600;
  background: #f8fafc;
}

body.hp-b2b-site .woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
  background: linear-gradient(135deg, rgba(255, 122, 69, 0.18), rgba(20, 184, 166, 0.16));
  color: #0f172a;
}

body.hp-b2b-site .woocommerce-account .woocommerce-MyAccount-content {
  background: #fff;
  border-radius: var(--hp-radius-lg);
  padding: 24px;
  box-shadow: 0 14px 26px rgba(8, 15, 20, 0.08);
}

body.hp-b2b-site.woocommerce-account .woocommerce-orders-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}

body.hp-b2b-site.woocommerce-account .woocommerce-orders-table thead th {
  text-align: right;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  padding: 6px 12px 2px;
}

body.hp-b2b-site.woocommerce-account .woocommerce-orders-table__row {
  background: var(--hp-card-bg);
  border-radius: var(--hp-radius-md);
  box-shadow: var(--hp-shadow-soft);
  overflow: hidden;
}

body.hp-b2b-site.woocommerce-account .woocommerce-orders-table__cell {
  text-align: right;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

body.hp-b2b-site.woocommerce-account .woocommerce-orders-table__cell:last-child {
  border-bottom: 0;
}

body.hp-b2b-site.woocommerce-account .woocommerce-orders-table__cell-order-number a {
  font-weight: 800;
  color: #0f172a;
  text-decoration: none;
}

body.hp-b2b-site.woocommerce-account .woocommerce-orders-table__cell-order-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
  font-size: 12px;
  font-weight: 700;
}

body.hp-b2b-site.woocommerce-account .woocommerce-orders-table__cell-order-total {
  font-weight: 700;
  color: #0f172a;
}

body.hp-b2b-site.woocommerce-account .woocommerce-orders-table__cell-order-actions {
  text-align: right;
}

body.hp-b2b-site.woocommerce-account .woocommerce-orders-table__cell-order-actions .button {
  border-radius: 999px;
  padding: 8px 14px;
  border: 0;
  background: var(--hp-btn-bg);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--hp-btn-shadow);
}

body.hp-b2b-site.woocommerce-account .woocommerce-orders-table__cell-order-actions .button:hover {
  filter: brightness(1.05);
}

@media (max-width: 768px) {
  body.hp-b2b-site.woocommerce-account .woocommerce-orders-table thead {
    display: none;
  }

  body.hp-b2b-site.woocommerce-account .woocommerce-orders-table,
  body.hp-b2b-site.woocommerce-account .woocommerce-orders-table tbody,
  body.hp-b2b-site.woocommerce-account .woocommerce-orders-table__row,
  body.hp-b2b-site.woocommerce-account .woocommerce-orders-table__cell {
    display: block;
    width: 100%;
  }

  body.hp-b2b-site.woocommerce-account .woocommerce-orders-table__row {
    padding: 4px 0;
  }

  body.hp-b2b-site.woocommerce-account .woocommerce-orders-table__cell {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding: 10px 12px;
  }

  body.hp-b2b-site.woocommerce-account .woocommerce-orders-table__cell:last-child {
    border-bottom: 0;
  }

body.hp-b2b-site.woocommerce-account .woocommerce-orders-table__cell::before {
  content: attr(data-title);
  display: block;
  font-size: 11px;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 6px;
}

body.hp-b2b-site.woocommerce-account table.my_account_orders,
body.hp-b2b-site.woocommerce-account table.shop_table.my_account_orders {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}

body.hp-b2b-site.woocommerce-account table.my_account_orders thead th,
body.hp-b2b-site.woocommerce-account table.shop_table.my_account_orders thead th {
  text-align: right;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  padding: 6px 12px 2px;
}

body.hp-b2b-site.woocommerce-account table.my_account_orders tbody tr,
body.hp-b2b-site.woocommerce-account table.shop_table.my_account_orders tbody tr {
  background: var(--hp-card-bg);
  border-radius: var(--hp-radius-md);
  box-shadow: var(--hp-shadow-soft);
  overflow: hidden;
}

body.hp-b2b-site.woocommerce-account table.my_account_orders td,
body.hp-b2b-site.woocommerce-account table.shop_table.my_account_orders td {
  text-align: right;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

body.hp-b2b-site.woocommerce-account table.my_account_orders td:last-child,
body.hp-b2b-site.woocommerce-account table.shop_table.my_account_orders td:last-child {
  border-bottom: 0;
}

body.hp-b2b-site.woocommerce-account table.my_account_orders td a,
body.hp-b2b-site.woocommerce-account table.shop_table.my_account_orders td a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
}

body.hp-b2b-site.woocommerce-account table.my_account_orders td.woocommerce-orders-table__cell-order-actions a,
body.hp-b2b-site.woocommerce-account table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-actions a,
body.hp-b2b-site.woocommerce-account table.my_account_orders td.order-actions a,
body.hp-b2b-site.woocommerce-account table.shop_table.my_account_orders td.order-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 14px;
  border: 0;
  background: var(--hp-btn-bg);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--hp-btn-shadow);
}

@media (max-width: 768px) {
  body.hp-b2b-site.woocommerce-account table.my_account_orders thead,
  body.hp-b2b-site.woocommerce-account table.shop_table.my_account_orders thead {
    display: none;
  }

  body.hp-b2b-site.woocommerce-account table.my_account_orders,
  body.hp-b2b-site.woocommerce-account table.my_account_orders tbody,
  body.hp-b2b-site.woocommerce-account table.my_account_orders tr,
  body.hp-b2b-site.woocommerce-account table.my_account_orders td,
  body.hp-b2b-site.woocommerce-account table.shop_table.my_account_orders,
  body.hp-b2b-site.woocommerce-account table.shop_table.my_account_orders tbody,
  body.hp-b2b-site.woocommerce-account table.shop_table.my_account_orders tr,
  body.hp-b2b-site.woocommerce-account table.shop_table.my_account_orders td {
    display: block;
    width: 100%;
  }

  body.hp-b2b-site.woocommerce-account table.my_account_orders td,
  body.hp-b2b-site.woocommerce-account table.shop_table.my_account_orders td {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding: 10px 12px;
  }

  body.hp-b2b-site.woocommerce-account table.my_account_orders td:last-child,
  body.hp-b2b-site.woocommerce-account table.shop_table.my_account_orders td:last-child {
    border-bottom: 0;
  }

  body.hp-b2b-site.woocommerce-account table.my_account_orders td::before,
  body.hp-b2b-site.woocommerce-account table.shop_table.my_account_orders td::before {
    content: attr(data-title);
    display: block;
    font-size: 11px;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 6px;
  }
}
}

body.hp-b2b-site.woocommerce-account .woocommerce-MyAccount-content > p,
body.hp-b2b-site.woocommerce-account .woocommerce-MyAccount-content > p.woocommerce-MyAccount-content-header {
  display: none;
}

.hp-account-dashboard {
  background: #fff;
  border-radius: var(--hp-radius-lg);
  padding: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 26px rgba(8, 15, 20, 0.08);
  margin-bottom: 20px;
}

.hp-account-dashboard-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.hp-account-dashboard-header strong {
  display: block;
  font-size: 16px;
  color: var(--hp-ink);
}

.hp-account-dashboard-header span {
  color: #475569;
  font-size: 13px;
}

.hp-account-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hp-account-badges span {
  background: #f1f5f9;
  border: 1px solid var(--hp-border);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  color: #334155;
  font-weight: 700;
}

.hp-account-dashboard-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.hp-account-last-order-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.hp-b2b-site .woocommerce-account .woocommerce-MyAccount-navigation + .woocommerce-MyAccount-content {
  margin-right: 0;
}

body.hp-b2b-site.woocommerce-account .woocommerce {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0 12px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

body.hp-b2b-site.woocommerce-account .page-wrapper.my-account .container {
  max-width: none !important;
  width: 100% !important;
  padding-left: 12px;
  padding-right: 12px;
}

body.hp-b2b-site.woocommerce-account .page-wrapper.my-account {
  max-width: none;
  width: 100%;
}

body.hp-b2b-site.woocommerce-account .page-wrapper.my-account .row.vertical-tabs {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

body.hp-b2b-site.woocommerce-account .page-wrapper.my-account .row.vertical-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

body.hp-b2b-site.woocommerce-account .page-wrapper.my-account .row.vertical-tabs > .col {
  float: none;
  margin: 0;
  max-width: 100%;
}

body.hp-b2b-site.woocommerce-account .page-wrapper.my-account .row.vertical-tabs > .large-3 {
  flex: 0 0 280px;
}

body.hp-b2b-site.woocommerce-account .page-wrapper.my-account .row.vertical-tabs > .large-9 {
  flex: 1 1 0;
  min-width: 0;
}

@media (max-width: 1200px) {
  body.hp-b2b-site.woocommerce-account .page-wrapper.my-account .row.vertical-tabs {
    flex-direction: column;
  }
  body.hp-b2b-site.woocommerce-account .page-wrapper.my-account .row.vertical-tabs > .large-3,
  body.hp-b2b-site.woocommerce-account .page-wrapper.my-account .row.vertical-tabs > .large-9 {
    flex: 1 1 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
  }
}

body.hp-b2b-site.woocommerce-account .woocommerce-MyAccount-navigation {
  flex: 0 0 260px;
  max-width: 260px;
}

body.hp-b2b-site.woocommerce-account .woocommerce-MyAccount-content {
  flex: 1 1 0;
  min-width: 0;
}

@media (max-width: 768px) {
  body.hp-b2b-site.woocommerce-account .woocommerce {
    max-width: 100%;
    padding: 0 12px;
  }
  body.hp-b2b-site.woocommerce-account .page-wrapper.my-account .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 12px;
    padding-right: 12px;
  }
  body.hp-b2b-site.woocommerce-account .page-wrapper.my-account .row.vertical-tabs {
    gap: 12px;
  }
  body.hp-b2b-site.woocommerce-account .woocommerce-MyAccount-navigation,
  body.hp-b2b-site.woocommerce-account .woocommerce-MyAccount-content {
    max-width: 100% !important;
  }
}

.hp-account-welcome {
  margin: 20px 0 24px;
  background: linear-gradient(135deg, rgba(10, 20, 30, 0.98), rgba(16, 30, 44, 0.96));
  border-radius: var(--hp-radius-lg);
  color: #fff;
  padding: 24px;
  box-shadow: 0 18px 32px rgba(5, 10, 20, 0.35);
}

.hp-account-welcome-inner {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
  align-items: center;
}

.hp-account-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  margin-bottom: 10px;
}

.hp-account-welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.hp-account-welcome-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 12px;
}

.hp-account-welcome-stat strong {
  font-size: 20px;
  display: block;
}

.hp-account-welcome-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.woocommerce-account .hp-guest-order-notice {
  margin: 22px auto 26px;
  max-width: 720px;
  text-align: center;
  background: #f6f7fb;
  border: 1px solid rgba(10, 20, 30, 0.08);
  border-radius: var(--hp-radius-lg);
  padding: 20px 24px;
  box-shadow: 0 12px 24px rgba(10, 20, 30, 0.08);
}

.hp-guest-order-notice__kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(10, 20, 30, 0.08);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.hp-guest-order-notice h1 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #0e1a26;
}

.hp-guest-order-notice__text {
  margin: 0;
  color: #2a3a4b;
  font-weight: 600;
}

.hp-guest-order-notice__text--mobile {
  display: none;
}

.hp-guest-order-notice__actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 768px) {
  .woocommerce-account .hp-guest-order-notice {
    padding: 16px 18px;
    margin: 18px auto 22px;
  }

  .hp-guest-order-notice h1 {
    font-size: 20px;
  }

  .hp-guest-order-notice__text--desktop {
    display: none;
  }

  .hp-guest-order-notice__text--mobile {
    display: block;
  }
}

@media (max-width: 960px) {
  .hp-account-welcome-inner {
    grid-template-columns: 1fr;
  }
  body.hp-b2b-site.woocommerce-account .woocommerce {
    display: block;
  }
  body.hp-b2b-site.woocommerce-account .woocommerce-MyAccount-navigation {
    max-width: 100%;
  }
  body.hp-b2b-site .woocommerce-account .woocommerce-MyAccount-navigation + .woocommerce-MyAccount-content {
    margin-right: 0;
  }
}

body.hp-b2b-site .woocommerce-checkout .woocommerce-checkout-review-order,
body.hp-b2b-site .woocommerce-cart .shop_table {
  border-radius: var(--hp-radius-lg);
  overflow: hidden;
  box-shadow: 0 14px 26px rgba(8, 15, 20, 0.08);
}

body.hp-b2b-site.woocommerce-checkout .woocommerce-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 20px;
  align-items: start;
}

body.hp-b2b-site.woocommerce-checkout #customer_details,
body.hp-b2b-site.woocommerce-checkout .woocommerce-checkout-review-order {
  background: #fff;
  border-radius: var(--hp-radius-lg);
  padding: 18px;
  box-shadow: 0 14px 26px rgba(8, 15, 20, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

body.hp-b2b-site.woocommerce-checkout .hp-checkout-details-toggle,
body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .hp-checkout-details-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 999px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-weight: 800;
  color: #0f172a;
  box-shadow: 0 12px 20px rgba(8, 15, 20, 0.08);
  margin-bottom: 8px;
}

body.hp-b2b-site.woocommerce-checkout .hp-checkout-details-toggle-text,
body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .hp-checkout-details-toggle-text {
  font-size: 14px;
}

body.hp-b2b-site.woocommerce-checkout .hp-checkout-details-toggle-state,
body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .hp-checkout-details-toggle-state {
  color: var(--hp-btn-bg);
  font-weight: 900;
}

body.hp-b2b-site.woocommerce-checkout .hp-checkout-details-summary,
body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .hp-checkout-details-summary {
  font-size: 13px;
  color: #475569;
  margin-bottom: 12px;
}

body.hp-checkout-details-collapsed.woocommerce-checkout #customer_details,
body.hp-checkout-details-collapsed.hp-onepage-checkout #customer_details {
  display: none;
}

body.hp-b2b-site.woocommerce-checkout .woocommerce-checkout-review-order {
  position: sticky;
  top: 90px;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .hp-onepage-checkout-wrap {
  margin-top: 16px;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .cart-collaterals,
body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .wc-proceed-to-checkout {
  display: none !important;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .woocommerce-form-coupon-toggle {
  display: none !important;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 20px;
  align-items: start;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout #customer_details,
body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .woocommerce-checkout-review-order {
  background: #fff;
  border-radius: var(--hp-radius-lg);
  padding: 18px;
  box-shadow: 0 14px 26px rgba(8, 15, 20, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout #order_review_heading {
  display: none !important;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .woocommerce-billing-fields__field-wrapper,
body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .woocommerce-shipping-fields__field-wrapper {
  display: grid;
  gap: 8px;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .form-row {
  margin-bottom: 8px;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .input-text,
body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout select,
body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .select2-container .select2-selection {
  min-height: 44px;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .woocommerce-checkout-review-order {
  position: sticky;
  top: 90px;
}

@media (max-width: 960px) {
  body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout form.checkout {
    grid-template-columns: 1fr;
  }
  body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .woocommerce-checkout-review-order {
    position: static;
  }
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .woocommerce-checkout-review-order-table {
  border-collapse: separate;
  border-spacing: 0 8px;
  background: transparent;
  width: 100%;
  table-layout: auto;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .woocommerce-checkout-review-order-table thead th {
  border: 0;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
  padding: 6px 10px;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .woocommerce-checkout-review-order-table tbody td {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 12px 14px;
  vertical-align: middle;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .woocommerce-checkout-review-order-table tbody td.product-name {
  color: var(--hp-ink);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
  overflow-wrap: break-word;
  padding-inline-end: 18px;
  text-align: right;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .woocommerce-checkout-review-order-table tbody td.product-total {
  color: var(--hp-ink);
  font-weight: 700;
  white-space: nowrap;
  text-align: left;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .woocommerce-checkout-review-order-table .product-quantity {
  display: inline-block;
  margin-inline-start: 6px;
  color: #64748b;
  font-weight: 700;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .woocommerce-checkout-review-order-table tbody tr td:first-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .woocommerce-checkout-review-order-table tbody tr td:last-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .woocommerce-checkout-review-order-table tfoot th,
body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .woocommerce-checkout-review-order-table tfoot td {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 10px;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .woocommerce-checkout-review-order-table tfoot tr.order-total td {
  font-size: 18px;
  font-weight: 800;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .woocommerce-checkout-review-order-table tbody {
  display: none;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .woocommerce-checkout-review-order-table.is-open tbody {
  display: table-row-group;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .hp-review-toggle {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 10px;
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  font-size: 13px;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .hp-review-toggle em {
  font-style: normal;
  color: var(--hp-btn-bg);
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .hp-review-toggle.is-open {
  background: rgba(15, 23, 42, 0.12);
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout #payment {
  background: #f8fafc;
  border-radius: 16px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout #payment ul.payment_methods {
  margin: 0;
  padding: 0;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout #payment .wc_payment_method {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 10px 12px;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout #payment .wc_payment_method + .wc_payment_method {
  margin-top: 10px;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout #payment .payment_box {
  color: #475569;
}

body.hp-b2b-site.woocommerce-cart.hp-onepage-checkout .woocommerce-privacy-policy-text {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
}

body.hp-b2b-site.woocommerce-checkout #order_review_heading,
body.hp-b2b-site.woocommerce-checkout .woocommerce-order-details__title,
body.hp-b2b-site.woocommerce-checkout .woocommerce-cart-form__cart-item:first-child h2 {
  display: none !important;
}

body.hp-b2b-site.woocommerce-checkout h3,
body.hp-b2b-site.woocommerce-checkout h3 label {
  color: var(--hp-ink);
  font-weight: 800;
}

body.hp-b2b-site.woocommerce-checkout .form-row {
  margin-bottom: 12px;
}

body.hp-b2b-site.woocommerce-checkout label {
  font-weight: 700;
  color: #0f172a;
  font-size: 13px;
}

body.hp-b2b-site.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
body.hp-b2b-site.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
  display: grid;
  gap: 10px;
}

body.hp-b2b-site.woocommerce-checkout #place_order {
  width: 100%;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 800;
  background: var(--hp-accent);
}

@media (max-width: 900px) {
  body.hp-b2b-site.woocommerce-checkout .woocommerce-checkout {
    grid-template-columns: 1fr;
  }
  body.hp-b2b-site.woocommerce-checkout .woocommerce-checkout-review-order {
    position: static;
  }
}

body.hp-b2b-site.woocommerce-cart .woocommerce.row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.55fr);
  gap: 16px;
  align-items: start;
}

body.hp-b2b-site.woocommerce-checkout form.checkout .row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.65fr);
  gap: 22px;
  align-items: start;
}

@media (min-width: 1100px) {
  body.hp-b2b-site.woocommerce-checkout form.checkout .row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  }
}

body.hp-b2b-site.woocommerce-cart .woocommerce.row > .col,
body.hp-b2b-site.woocommerce-checkout form.checkout .row > .col {
  float: none;
  width: 100%;
  max-width: 100%;
}

body.hp-b2b-site.woocommerce-cart .woocommerce {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

body.hp-b2b-site.woocommerce-cart .cart-wrapper {
  background: #fff;
  border-radius: var(--hp-radius-lg);
  padding: 10px 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 30px rgba(8, 15, 20, 0.08);
}

body.hp-b2b-site.woocommerce-cart .shop_table {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  border-collapse: separate;
  border-spacing: 0 2px;
}

body.hp-b2b-site.woocommerce-cart .shop_table thead th {
  border: 0;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 10px;
  padding: 2px 6px;
}

body.hp-b2b-site.woocommerce-cart .woocommerce-cart-form__cart-item td {
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding: 4px 6px;
  vertical-align: middle;
  font-size: 12px;
  line-height: 1.3;
}

body.hp-b2b-site.woocommerce-cart .woocommerce-cart-form__cart-item td:first-child {
  border-right: 1px solid rgba(15, 23, 42, 0.08);
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

body.hp-b2b-site.woocommerce-cart .woocommerce-cart-form__cart-item td:last-child {
  border-left: 1px solid rgba(15, 23, 42, 0.08);
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

body.hp-b2b-site.woocommerce-cart .product-name a {
  color: #0f172a;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  max-width: 100%;
}

body.hp-b2b-site.woocommerce-cart .product-price,
body.hp-b2b-site.woocommerce-cart .product-subtotal {
  font-weight: 700;
  color: #0f172a;
  font-size: 13px;
}

body.hp-b2b-site.woocommerce-cart .ux-quantity .qty {
  width: 44px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  height: 36px;
  line-height: 36px;
  padding: 0;
}

body.hp-b2b-site.woocommerce-cart .ux-quantity__button {
  border-radius: 10px;
  border: 0;
  background: var(--hp-btn-bg);
  color: #fff;
  box-shadow: var(--hp-shadow-glow);
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  padding: 0;
  font-size: 18px;
  line-height: 1;
  box-sizing: border-box;
}

body.hp-b2b-site.woocommerce-cart .product-quantity {
  display: flex;
  align-items: center;
  gap: 4px;
}

body.hp-b2b-site.woocommerce-cart .ux-quantity {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

body.hp-b2b-site.woocommerce-cart .product-thumbnail img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

body.hp-b2b-site.woocommerce-cart .product-remove a.remove {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444 !important;
}

body.hp-b2b-site.woocommerce-cart .shop_table td.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  padding: 8px 2px 2px;
}

body.hp-b2b-site.woocommerce-cart .shop_table td.actions .continue-shopping {
  margin: 0;
}

body.hp-b2b-site.woocommerce-cart .shop_table td.actions .button,
body.hp-b2b-site.woocommerce-cart .shop_table td.actions .b2bking_add_cart_to_purchase_list_button {
  border-radius: 999px;
  font-weight: 700;
  padding: 10px 16px;
}

body.hp-b2b-site.woocommerce-cart .shop_table td.actions .b2bking_add_cart_to_purchase_list_button {
  background: #0f172a;
  color: #fff;
  border: 0;
}

body.hp-b2b-site.woocommerce-cart button[name="update_cart"],
body.hp-b2b-site.woocommerce-cart input[name="update_cart"] {
  display: none !important;
}

body.hp-b2b-site.woocommerce-cart .cart-collaterals {
  background: transparent;
  box-shadow: none;
  padding: 0;
  position: sticky;
  top: 90px;
  align-self: start;
}

body.hp-b2b-site.woocommerce-cart .cart-sidebar {
  display: grid;
  gap: 10px;
}

body.hp-b2b-site.woocommerce-cart .cart-sidebar .cart_totals,
body.hp-b2b-site.woocommerce-cart .cart-sidebar .coupon {
  background: #fff;
  border-radius: var(--hp-radius-lg);
  padding: 12px;
  box-shadow: 0 14px 26px rgba(8, 15, 20, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

@media (max-width: 900px) {
  .hp-checkout-hero {
    margin: 12px 0 16px;
    padding: 12px;
    border-radius: 16px;
  }
  .hp-checkout-hero h1 {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .hp-checkout-hero p {
    margin: 0;
    font-size: 13px;
  }
  .hp-checkout-steps {
    gap: 6px;
    font-size: 11px;
  }
  .hp-checkout-steps span {
    padding: 4px 8px;
  }
  body.hp-b2b-site.woocommerce-cart .hp-checkout-hero {
    display: none;
  }
  body.hp-b2b-site.woocommerce-cart .woocommerce {
    padding: 0 12px;
  }
  body.hp-b2b-site.woocommerce-cart .woocommerce.row {
    grid-template-columns: 1fr;
  }
  body.hp-b2b-site.woocommerce-cart .cart-collaterals {
    position: static;
  }
  body.hp-b2b-site.woocommerce-cart .shop_table thead {
    display: none;
  }
  body.hp-b2b-site.woocommerce-cart .shop_table,
  body.hp-b2b-site.woocommerce-cart .shop_table tbody,
  body.hp-b2b-site.woocommerce-cart .shop_table tr,
  body.hp-b2b-site.woocommerce-cart .shop_table td {
    display: block;
    width: 100%;
  }
  body.hp-b2b-site.woocommerce-cart .woocommerce-cart-form__cart-item {
    position: relative;
    margin-bottom: 8px;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    box-shadow: 0 10px 18px rgba(8, 15, 20, 0.08);
  }
  body.hp-b2b-site.woocommerce-cart .woocommerce-cart-form__cart-item td {
    padding: 8px 0;
    border: 0;
    background: transparent;
  }
  body.hp-b2b-site.woocommerce-cart .woocommerce-cart-form__cart-item td::before {
    content: attr(data-title);
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 4px;
  }
  body.hp-b2b-site.woocommerce-cart .woocommerce-cart-form__cart-item td.product-remove {
    position: absolute;
    inset-inline-start: 12px;
    top: 8px;
    padding: 0;
  }
  body.hp-b2b-site.woocommerce-cart .woocommerce-cart-form__cart-item td.product-remove::before {
    display: none;
  }
  body.hp-b2b-site.woocommerce-cart .woocommerce-cart-form__cart-item td.product-thumbnail::before {
    display: none;
  }
  body.hp-b2b-site.woocommerce-cart .woocommerce-cart-form__cart-item td.product-thumbnail img {
    width: 72px;
    height: 72px;
    max-width: 72px;
    border-radius: 12px;
  }
  body.hp-b2b-site.woocommerce-cart .woocommerce-cart-form__cart-item td.product-thumbnail {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  body.hp-b2b-site.woocommerce-cart .woocommerce-cart-form__cart-item td.product-name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
  }
  body.hp-b2b-site.woocommerce-cart .woocommerce-cart-form__cart-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    grid-template-areas:
      "thumb name"
      "thumb qty";
    gap: 4px 10px;
    align-items: start;
  }
  body.hp-b2b-site.woocommerce-cart .woocommerce-cart-form__cart-item td {
    padding: 0;
  }
  body.hp-b2b-site.woocommerce-cart .woocommerce-cart-form__cart-item td::before {
    display: none;
  }
  body.hp-b2b-site.woocommerce-cart .woocommerce-cart-form__cart-item td.product-thumbnail {
    grid-area: thumb;
  }
  body.hp-b2b-site.woocommerce-cart .woocommerce-cart-form__cart-item td.product-name {
    grid-area: name;
  }
  body.hp-b2b-site.woocommerce-cart .product-name a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  body.hp-b2b-site.woocommerce-cart .woocommerce-cart-form__cart-item td.product-price {
    display: none;
  }
  body.hp-b2b-site.woocommerce-cart .woocommerce-cart-form__cart-item td.product-quantity {
    grid-area: qty;
    padding-inline-end: 90px;
  }
  body.hp-b2b-site.woocommerce-cart .woocommerce-cart-form__cart-item td.product-subtotal {
    position: absolute;
    inset-inline-end: 12px;
    bottom: 10px;
    font-weight: 800;
    color: #0f172a;
    font-size: 15px;
    text-align: end;
  }
  body.hp-b2b-site.woocommerce-cart .product-remove a.remove {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }
  body.hp-b2b-site.woocommerce-cart .shop_table td.actions {
    padding: 12px 0 0;
  }
  body.hp-b2b-site.woocommerce-cart .cart-wrapper {
    padding-bottom: calc(10px + var(--hp-bottom-nav-height) + var(--hp-safe-bottom));
  }
  body.hp-b2b-site.woocommerce-cart .shop_table td.actions .button,
  body.hp-b2b-site.woocommerce-cart .shop_table td.actions .continue-shopping,
  body.hp-b2b-site.woocommerce-cart .shop_table td.actions .b2bking_add_cart_to_purchase_list_button {
    width: 100%;
    justify-content: center;
  }
}

body.hp-b2b-site.woocommerce-cart .cart_totals h2 {
  margin-top: 0;
  font-size: 18px;
}

body.hp-b2b-site.woocommerce-cart .cart_totals table {
  margin: 0;
  border: 0;
}

body.hp-b2b-site.woocommerce-cart .cart_totals th {
  color: #475569;
  font-weight: 600;
}

body.hp-b2b-site.woocommerce-cart .cart_totals .order-total td {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
}

body.hp-b2b-site.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  background: var(--hp-btn-bg);
  color: var(--hp-btn-text);
  border-radius: 999px;
  font-weight: 800;
  padding: 14px 18px;
  box-shadow: var(--hp-btn-shadow);
}

body.hp-b2b-site.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 10px 14px;
}

body.hp-b2b-site.woocommerce-checkout .checkout_coupon {
  background: #fff;
  border-radius: var(--hp-radius-lg);
  padding: 16px;
  border: 1px dashed rgba(15, 23, 42, 0.16);
  box-shadow: 0 12px 24px rgba(8, 15, 20, 0.08);
}

body.hp-b2b-site.woocommerce-checkout .col-inner.has-border {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

body.hp-b2b-site.woocommerce-checkout .checkout-sidebar {
  display: grid;
  gap: 14px;
}

body.hp-b2b-site.woocommerce-checkout .checkout-sidebar #order_review_heading {
  display: block !important;
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

body.hp-b2b-site.woocommerce-checkout .woocommerce-checkout-review-order {
  background: #fff;
  border-radius: var(--hp-radius-lg);
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 26px rgba(8, 15, 20, 0.08);
}

body.hp-b2b-site.woocommerce-checkout .woocommerce-checkout-review-order-table {
  border-collapse: separate;
  border-spacing: 0 8px;
  background: transparent;
  width: 100%;
  table-layout: auto;
}

body.hp-b2b-site.woocommerce-checkout .woocommerce-checkout-review-order-table thead th {
  border: 0;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
  padding: 6px 10px;
}

body.hp-b2b-site.woocommerce-checkout .woocommerce-checkout-review-order-table tbody td {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 12px 14px;
  vertical-align: middle;
}

body.hp-b2b-site.woocommerce-checkout .woocommerce-checkout-review-order-table thead th.product-name,
body.hp-b2b-site.woocommerce-checkout .woocommerce-checkout-review-order-table tbody td.product-name {
  text-align: right;
}

body.hp-b2b-site.woocommerce-checkout .woocommerce-checkout-review-order-table thead th.product-total,
body.hp-b2b-site.woocommerce-checkout .woocommerce-checkout-review-order-table tbody td.product-total {
  text-align: left;
}

body.hp-b2b-site.woocommerce-checkout .woocommerce-checkout-review-order-table tbody td.product-name {
  color: var(--hp-ink);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
  overflow-wrap: break-word;
  padding-inline-end: 18px;
}

body.hp-b2b-site.woocommerce-checkout .woocommerce-checkout-review-order-table tbody td.product-total {
  color: var(--hp-ink);
  font-weight: 700;
  white-space: nowrap;
}

body.hp-b2b-site.woocommerce-checkout .woocommerce-checkout-review-order-table .product-quantity {
  display: inline-block;
  margin-inline-start: 6px;
  color: #64748b;
  font-weight: 700;
}

body.hp-b2b-site.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr td:first-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

body.hp-b2b-site.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr td:last-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

body.hp-b2b-site.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th,
body.hp-b2b-site.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 10px;
}

body.hp-b2b-site.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr.order-total td {
  font-size: 18px;
  font-weight: 800;
}

body.hp-b2b-site.woocommerce-checkout #payment {
  background: #f8fafc;
  border-radius: 16px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

body.hp-b2b-site.woocommerce-checkout #payment ul.payment_methods {
  margin: 0;
  padding: 0;
}

body.hp-b2b-site.woocommerce-checkout #payment .wc_payment_method {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 10px 12px;
}

body.hp-b2b-site.woocommerce-checkout #payment .wc_payment_method + .wc_payment_method {
  margin-top: 10px;
}

body.hp-b2b-site.woocommerce-checkout #payment .payment_box {
  color: #475569;
}

body.hp-b2b-site .hp-payment-note-box {
  background: #fff;
  border-radius: 16px;
  padding: 12px 14px;
  border: 1px dashed rgba(15, 23, 42, 0.18);
  box-shadow: 0 12px 24px rgba(8, 15, 20, 0.08);
  margin: 12px 0;
  font-size: 13px;
  color: #475569;
}

body.hp-b2b-site .hp-bank-details {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 12px;
  color: #475569;
}

body.hp-b2b-site .hp-bank-details ul {
  margin: 6px 0 0;
  padding: 0 18px 0 0;
}

body.hp-b2b-site .hp-bank-details li {
  margin: 2px 0;
}

body.hp-b2b-site .hp-payment-note-box .button {
  border-radius: 999px;
  font-weight: 800;
  padding: 10px 16px;
  background: var(--hp-btn-bg);
  color: #fff;
  border: 0;
  box-shadow: var(--hp-btn-shadow);
}

body.hp-b2b-site.woocommerce-checkout .woocommerce-privacy-policy-text {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
}

body.hp-b2b-site.woocommerce-order-received .cart-container.page-checkout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 16px 80px;
}

body.hp-b2b-site.woocommerce-order-received .woocommerce-order {
  background: #fff;
  border-radius: var(--hp-radius-xl);
  padding: 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 36px rgba(8, 15, 20, 0.12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

body.hp-b2b-site.woocommerce-order-received .woocommerce-order::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.14), transparent 55%);
  pointer-events: none;
}

body.hp-b2b-site.woocommerce-order-received .woocommerce-thankyou-order-received {
  margin: 0;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: #0f172a;
  position: relative;
}

body.hp-b2b-site.woocommerce-order-received .woocommerce-thankyou-order-received strong {
  color: #16a34a;
}

@media (max-width: 900px) {
  body.hp-b2b-site.woocommerce-cart .woocommerce.row,
  body.hp-b2b-site.woocommerce-checkout form.checkout .row {
    grid-template-columns: 1fr;
  }
  body.hp-b2b-site.woocommerce-cart .cart-collaterals {
    position: static;
  }
  body.hp-b2b-site.woocommerce-order-received .cart-container.page-checkout {
    padding: 24px 12px 80px;
  }
  body.hp-b2b-site.woocommerce-order-received .woocommerce-order {
    padding: 24px 16px;
  }
}

body.hp-b2b-site input[type="text"],
body.hp-b2b-site input[type="email"],
body.hp-b2b-site input[type="tel"],
body.hp-b2b-site input[type="password"],
body.hp-b2b-site textarea,
body.hp-b2b-site select {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 10px 14px;
}

.hp-bulk-order {
  display: grid;
  gap: 16px;
  background: #fff;
  border-radius: var(--hp-radius-lg);
  padding: 20px;
  box-shadow: 0 16px 30px rgba(8, 15, 20, 0.08);
}

.hp-bulk-search {
  position: relative;
}

.hp-bulk-search input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.hp-bulk-search .hp-suggest-list {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 14px 26px rgba(8, 15, 20, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.08);
  z-index: 3;
}

.hp-bulk-search .hp-suggest-list button {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: right;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
}

.hp-bulk-search .hp-suggest-list button:hover {
  background: #f8fafc;
}

.hp-bulk-search .hp-suggest-list button small {
  color: #64748b;
  font-weight: 500;
  display: block;
}

.hp-bulk-search .hp-suggest-list button strong {
  color: var(--hp-blue);
  font-weight: 700;
  white-space: nowrap;
}

.hp-alert {
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-weight: 600;
}

.hp-alert-success {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid rgba(22, 101, 52, 0.2);
}

.hp-promos {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

.hp-promos h2 {
  margin: 0 0 16px;
  font-size: 24px;
  color: var(--hp-ink);
}

.hp-promos-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.hp-promo-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  padding: 16px;
  display: grid;
  gap: 8px;
}

.hp-promo-card.is-sample {
  border: 1px dashed rgba(15, 23, 42, 0.22);
  background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.hp-category-card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.hp-category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.16);
}

.hp-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0f172a;
  color: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 700;
  font-size: 12px;
}

.hp-promo-meta {
  color: #64748b;
  font-size: 13px;
}

@media (max-width: 640px) {
  .hp-promos {
    padding: 18px 14px 30px;
  }
  .hp-promos h2 {
    font-size: 20px;
  }
}

body.hp-b2b-site .hp-btn:focus-visible,
body.hp-b2b-site .button:focus-visible,
body.hp-b2b-site .hp-appbar-link:focus-visible,
body.hp-b2b-site .hp-appbar-cart:focus-visible,
body.hp-b2b-site .hp-bottom-nav a:focus-visible,
body.hp-b2b-site .hp-bottom-nav .hp-nav-chat:focus-visible,
body.hp-b2b-site .hp-quickcats a:focus-visible,
body.hp-b2b-site .hp-suggest-item:focus-visible,
body.hp-b2b-site .hp-bulk-remove:focus-visible {
  outline: 3px solid rgba(255, 107, 61, 0.6);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  body.hp-b2b-site .hp-appbar-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "menu logo quick";
    padding: 4px 8px;
    column-gap: 6px;
  }
  body.hp-b2b-site .hp-appbar-left-actions {
    position: static;
    grid-area: quick;
    justify-self: end;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
  }
  body.hp-b2b-site .hp-appbar-cta {
    min-height: 28px;
    padding: 3px 6px;
    font-size: 10px;
    letter-spacing: 0.01em;
    white-space: nowrap;
    border-radius: 999px;
  }
  body.hp-b2b-site .hp-appbar-cta.hp-appbar-account {
    background: rgba(255, 255, 255, 0.1);
  }
  .hp-user-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  body.hp-b2b-site .hp-appbar-actions {
    display: none;
  }
  body.hp-b2b-site .hp-menu-toggle {
    display: inline-flex;
    min-height: 28px;
    grid-area: menu;
    justify-self: start;
    background: linear-gradient(120deg, rgba(255, 106, 31, 0.92), rgba(255, 143, 59, 0.92));
    border-color: rgba(255, 143, 59, 0.55);
    box-shadow: 0 6px 14px rgba(255, 106, 31, 0.22);
    padding: 4px 8px;
    font-size: 11px;
    line-height: 1;
  }
  body.hp-b2b-site .hp-search-toggle {
    display: inline-flex;
    min-height: 30px;
  }
  body.hp-b2b-site .hp-appbar-logo {
    font-size: 13px;
    letter-spacing: 0.01em;
    grid-area: logo;
    justify-self: center;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    max-width: 170px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hp-appbar-logo::after {
    width: 32px;
    bottom: -6px;
  }
  .hp-appbar-search {
    display: none;
    width: 100%;
    grid-column: 1 / -1;
  }
  body.hp-b2b-site.hp-search-open .hp-appbar-search {
    display: flex;
  }
  .hp-bottom-nav {
    display: flex;
  }
  body.hp-b2b-site #wrapper,
  body.hp-b2b-site .main {
    padding-bottom: calc(var(--hp-bottom-nav-height) + var(--hp-safe-bottom));
  }
  body.hp-b2b-site.single-product #wrapper,
  body.hp-b2b-site.single-product .main {
    padding-bottom: calc(var(--hp-bottom-nav-height) + var(--hp-safe-bottom) + 20px);
  }
  body.hp-b2b-site.single-product .hp-sticky-cta {
    bottom: calc(68px + var(--hp-safe-bottom));
  }
}

@media (max-width: 360px) {
  body.hp-b2b-site .hp-appbar-left-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

body.hp-b2b-site.hp-desktop .hp-appbar-inner {
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "actions logo actions-right";
}

body.hp-b2b-site.hp-desktop .hp-appbar-left-actions {
  flex-direction: row;
  align-items: center;
}

body.hp-b2b-site.hp-desktop .hp-appbar-actions {
  display: flex;
}

body.hp-b2b-site.hp-desktop .hp-bottom-nav {
  display: flex;
}
body.hp-b2b-site.single-product .hp-bottom-nav {
  display: flex;
}

body.hp-b2b-site.hp-desktop .hp-appbar {
  position: fixed;
  top: 0;
  width: 100%;
}

body.hp-b2b-site.hp-desktop #wrapper,
body.hp-b2b-site.hp-desktop .main {
  padding-bottom: calc(var(--hp-bottom-nav-height) + var(--hp-safe-bottom));
  padding-top: calc(var(--hp-appbar-height) + 12px);
}

body.hp-b2b-site.hp-desktop.single-product #wrapper,
body.hp-b2b-site.hp-desktop.single-product .main {
  padding-bottom: calc(var(--hp-bottom-nav-height) + 48px);
}

body.hp-b2b-site.hp-desktop .hp-whatsapp-float {
  display: inline-flex;
}

body.hp-b2b-site.woocommerce.archive .shop-container,
body.hp-b2b-site.woocommerce.archive .category-page-row {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}

	@media (min-width: 850px) {
	  /* Desktop: keep the WooCommerce filters sidebar usable (avoid overly narrow column). */
	  body.hp-b2b-site.woocommerce.archive {
	    /* Calculated in JS (homepod-b2b.js) so the sidebar card aligns under the fixed appbar
	       across all product archive variants (shop + categories). */
	    --hp-shop-sidebar-lift: 0px;
	    /* Lift the sidebar card slightly into the appbar shadow (desktop). */
	    --hp-shop-sidebar-underlap: 16px;
	  }

  body.hp-b2b-site.woocommerce.archive .category-page-row {
    /* Override Flatsome shop spacing so the filters can sit higher. */
    padding-top: 0;
  }

	  body.hp-b2b-site.woocommerce.archive .category-page-row > .large-3 {
	    display: flex;
	    flex-direction: column;
	    padding-bottom: 0;
	    flex: 0 0 clamp(300px, 24vw, 380px);
	    max-width: clamp(300px, 24vw, 380px);
	  }

  body.hp-b2b-site.woocommerce.archive .category-page-row > .large-9 {
    flex: 1 1 0;
    max-width: none;
    min-width: 0;
  }

		  body.hp-b2b-site.woocommerce.archive #shop-sidebar.sidebar-inner {
		    background: var(--hp-surface);
		    border-radius: var(--hp-radius-lg);
		    border: 1px solid var(--hp-border);
		    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
		    margin-top: calc(-1 * (var(--hp-shop-sidebar-lift, 0px) + var(--hp-shop-sidebar-underlap, 0px)));
		    padding: 0 18px 10px;
		    /* Keep the widget content visible even when the card is lifted under the fixed appbar. */
		    padding-top: max(0px, calc(var(--hp-shop-sidebar-underlap, 0px) - 3px));
		    height: calc(100% + var(--hp-shop-sidebar-lift, 0px) + var(--hp-shop-sidebar-underlap, 0px));
		    min-height: calc(100vh - var(--hp-appbar-height) - var(--hp-bottom-nav-height) - var(--hp-safe-bottom) - 24px + var(--hp-shop-sidebar-underlap, 0px));
		  }

	  /* Avoid dead space at the top when Flatsome outputs empty sidebar widgets. */
	  body.hp-b2b-site.woocommerce.archive #shop-sidebar.sidebar-inner > .widget:empty {
	    display: none;
	    margin: 0;
	  }

	  body.hp-b2b-site.woocommerce.archive #shop-sidebar.sidebar-inner > .widget:last-child {
	    margin-bottom: 0;
	  }
}

body.hp-b2b-site.woocommerce.archive .products {
  margin: 0;
  gap: 18px;
}

body.hp-b2b-site .hp-product-meta {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  background: #f8fafc;
  border-radius: var(--hp-radius-md);
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.hp-b2b-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}

body.hp-b2b-site .hp-product-meta span {
  display: block;
  font-size: 14px;
  color: #4b5563;
}

body.hp-b2b-site .hp-product-meta strong {
  color: #0f172a;
}

body.hp-b2b-site .hp-category-seo {
  margin-top: 20px;
  padding: 18px 20px;
  background: #fff;
  border-radius: var(--hp-radius-md);
  box-shadow: 0 12px 24px rgba(8, 15, 20, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

body.hp-b2b-site .hp-category-faq {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

body.hp-b2b-site .hp-category-faq details {
  background: #f8fafc;
  border-radius: 10px;
  padding: 10px 12px;
}

body.hp-b2b-site .hp-category-faq summary {
  font-weight: 700;
  cursor: pointer;
}

body.hp-b2b-site .hp-product-specs {
  margin-top: 20px;
  background: #fff;
  border-radius: var(--hp-radius-md);
  padding: 16px 20px;
  box-shadow: 0 12px 24px rgba(8, 15, 20, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

body.hp-b2b-site .hp-product-specs table {
  width: 100%;
  border-collapse: collapse;
}

body.hp-b2b-site .hp-product-specs th,
body.hp-b2b-site .hp-product-specs td {
  text-align: right;
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 14px;
}

body.hp-b2b-site .hp-product-specs th {
  color: #0f172a;
  font-weight: 700;
  width: 40%;
}

body.hp-b2b-site .hp-product-specs td {
  color: #4b5563;
}

body.hp-b2b-site .hp-product-faq {
  margin-top: 20px;
  background: #0f172a;
  color: #fff;
  border-radius: var(--hp-radius-md);
  padding: 16px 20px;
}

body.hp-b2b-site .hp-product-faq details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 0;
}

body.hp-b2b-site .hp-product-faq details:last-child {
  border-bottom: 0;
}

body.hp-b2b-site .hp-product-faq summary {
  cursor: pointer;
  font-weight: 700;
}

body.hp-b2b-site .hp-product-faq p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.85);
}

body.hp-b2b-site .share-icons,
body.hp-b2b-site .product-share {
  display: none;
}

body.hp-b2b-site .footer-wrapper,
body.hp-b2b-site .absolute-footer {
  direction: rtl;
  text-align: right;
}

body.hp-b2b-site .footer-wrapper {
  background: #0c1b2a;
  color: #e2e8f0;
}

body.hp-b2b-site .footer-wrapper a {
  color: #cbd5f5;
}

body.hp-b2b-site .footer-wrapper a:hover {
  color: #ffffff;
}

body.hp-b2b-site .footer-widgets {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.hp-b2b-site .footer-widgets .widget-title {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0;
}

body.hp-b2b-site .absolute-footer {
  background: #0b1624;
  color: #cbd5f5;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.hp-b2b-site .absolute-footer .footer-primary {
  float: right;
  text-align: right;
}

body.hp-b2b-site .absolute-footer .footer-secondary {
  float: left;
  text-align: left;
}

body.hp-b2b-site .footer-wrapper .widget_search,
body.hp-b2b-site .footer-wrapper .searchform,
body.hp-b2b-site .footer-wrapper .searchform-wrapper,
body.hp-b2b-site .footer-wrapper .search-form,
body.hp-b2b-site .footer-wrapper form[role="search"],
body.hp-b2b-site .absolute-footer .widget_search,
body.hp-b2b-site .absolute-footer .searchform,
body.hp-b2b-site .absolute-footer .searchform-wrapper,
body.hp-b2b-site .absolute-footer .search-form,
body.hp-b2b-site .absolute-footer form[role="search"] {
  display: none !important;
}

.footer-wrapper .widget_search,
.footer-wrapper .searchform,
.footer-wrapper .searchform-wrapper,
.footer-wrapper .search-form,
.footer-wrapper form[role="search"] {
  display: none !important;
}

body.hp-b2b-site .footer-wrapper .widget_shopping_cart,
body.hp-b2b-site .footer-wrapper .woocommerce-mini-cart,
body.hp-b2b-site .footer-wrapper .woocommerce-mini-cart__total,
body.hp-b2b-site .footer-wrapper .woocommerce-mini-cart__buttons {
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 16px;
}

body.hp-b2b-site .footer-wrapper .widget_shopping_cart {
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 16px 30px rgba(2, 6, 23, 0.4);
}

body.hp-b2b-site .footer-wrapper .widget_shopping_cart .widgettitle {
  color: #f8fafc;
  font-weight: 700;
  margin-bottom: 12px;
}

body.hp-b2b-site .footer-wrapper .woocommerce-mini-cart {
  padding: 0;
  margin: 0 0 12px;
  max-height: 40vh;
  overflow-y: auto;
  display: grid;
  gap: 10px;
}

body.hp-b2b-site .footer-wrapper .woocommerce-mini-cart ul,
body.hp-b2b-site .footer-wrapper .woocommerce-mini-cart .cart_list,
body.hp-b2b-site .footer-wrapper .woocommerce-mini-cart .product_list_widget {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

body.hp-b2b-site .footer-wrapper .woocommerce-mini-cart-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.25);
}

body.hp-b2b-site .footer-wrapper .woocommerce-mini-cart-item:last-child {
  border-bottom: 0;
}

body.hp-b2b-site .footer-wrapper .woocommerce-mini-cart-item img {
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

body.hp-b2b-site .footer-wrapper .woocommerce-mini-cart-item a {
  color: #e2e8f0;
  font-weight: 600;
}

body.hp-b2b-site .footer-wrapper .woocommerce-mini-cart-item .quantity {
  color: #94a3b8;
  font-size: 12px;
}

body.hp-b2b-site .footer-wrapper .woocommerce-mini-cart__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  margin: 10px 0 12px;
  font-weight: 700;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

body.hp-b2b-site .footer-wrapper .woocommerce-mini-cart__buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: #ff6b3d;
  color: #fff;
  font-weight: 700;
  border: 0;
  margin-right: 6px;
}

body.hp-b2b-site .footer-wrapper .woocommerce-mini-cart__buttons a.checkout {
  background: #1f2937;
}

body.hp-b2b-site .footer-wrapper .woocommerce-mini-cart-item .remove {
  color: #fca5a5;
  font-weight: 700;
  margin-left: 6px;
}

body.hp-b2b-site .footer-wrapper .woocommerce-mini-cart__buttons a:hover {
  filter: brightness(0.96);
}

body.hp-b2b-site .widget_shopping_cart,
body.hp-b2b-site .woocommerce-mini-cart,
body.hp-b2b-site .footer-wrapper .widget_shopping_cart,
body.hp-b2b-site .footer-wrapper .woocommerce-mini-cart {
  display: none !important;
}

html[dir="rtl"] .header-inner.flex-row {
  flex-direction: row-reverse;
}

html[dir="rtl"] .header-inner .flex-left {
  margin-right: auto;
  margin-left: 0;
}

html[dir="rtl"] .header-inner .flex-right {
  margin-left: auto;
  margin-right: 0;
}

html[dir="rtl"] .header-nav,
html[dir="rtl"] .mobile-nav {
  justify-content: flex-end;
}

html[dir="rtl"] .header-nav > li,
html[dir="rtl"] .mobile-nav > li {
  float: right;
}

/* AI chat widget */
.hp-ai-bubble {
  display: none !important;
}

.hp-ai-panel {
  position: fixed;
  bottom: calc(56px + var(--hp-safe-bottom));
  right: 12px;
  left: auto;
  width: min(360px, 92vw);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 238, 0.92));
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  box-shadow: 0 20px 36px rgba(11, 17, 24, 0.2);
  display: none;
  z-index: 1100;
  overflow: hidden;
}

#top-link.back-to-top {
  left: 20px;
  right: auto;
}

body.hp-b2b-site.hp-desktop .hp-ai-bubble {
  display: none !important;
}

body.hp-b2b-site.hp-desktop .hp-ai-panel {
  bottom: calc(56px + var(--hp-safe-bottom));
}

.hp-ai-panel.is-open { display: grid; grid-template-rows: auto 1fr auto; }
.hp-ai-header { padding: 10px 12px; font-weight: 800; background: linear-gradient(120deg, #0f172a, #1f2937); color: #fff; }
.hp-ai-messages { max-height: 260px; padding: 10px; overflow-y: auto; display: grid; gap: 6px; background: var(--hp-surface-2); }
.hp-ai-msg { padding: 10px 12px; border-radius: 12px; font-size: 14px; line-height: 1.5; }
.hp-ai-msg-bot { background: rgba(255, 255, 255, 0.95); color: var(--hp-ink); border: 1px solid rgba(15, 23, 42, 0.08); }
.hp-ai-msg-user { background: linear-gradient(120deg, #0f172a, #1f2937); color: #fff; margin-left: 24px; }
.hp-ai-msg-bot { margin-right: 24px; }
.hp-ai-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 10px; background: rgba(255, 255, 255, 0.9); }
.hp-ai-form input { width: 100%; border: 1px solid rgba(15, 23, 42, 0.15); border-radius: 12px; padding: 10px 12px; background: rgba(255, 255, 255, 0.95); }
.hp-ai-form button { border: 0; background: linear-gradient(120deg, var(--hp-accent), #ff8a5a); color: #fff; border-radius: 12px; padding: 10px 14px; font-weight: 800; }

@media (max-width: 640px) {
  .hp-ai-panel { left: 8px; right: 8px; width: auto; }
}

/* Accessibility widget */
.hp-a11y-toggle {
  position: fixed;
  right: 16px;
  top: calc(var(--hp-appbar-height) + 16px);
  left: auto;
  bottom: auto;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #2563eb, #1d4ed8);
  color: #fff;
  font-size: 0;
  line-height: 0;
  box-shadow: 0 14px 24px rgba(30, 64, 175, 0.25);
  z-index: 1205;
}

.hp-a11y-toggle::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='4' r='2'/%3E%3Cpath d='M5 8h14'/%3E%3Cpath d='M12 8v4'/%3E%3Cpath d='M12 12l-4 8'/%3E%3Cpath d='M12 12l4 8'/%3E%3C/svg%3E") center/contain no-repeat;
}

.hp-a11y-panel {
  position: fixed;
  right: 16px;
  top: calc(var(--hp-appbar-height) + 70px);
  left: auto;
  bottom: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 36px rgba(8, 12, 18, 0.2);
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 12px;
  display: none;
  gap: 8px;
  z-index: 1206;
}

.hp-a11y-panel.is-open {
  display: grid;
}

.hp-a11y-panel button {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
}

.hp-a11y-panel button.is-active {
  background: var(--hp-accent);
  color: #fff;
}

body.hp-a11y-underline a {
  text-decoration: underline !important;
  text-underline-offset: 2px;
}

body.hp-a11y-contrast {
  --hp-ink: #000;
  --hp-ink-2: #000;
  --hp-text-muted: #111;
  --hp-card-bg: #ffffff;
  --hp-surface: #ffffff;
  --hp-bg: #ffffff;
  background: #ffffff !important;
}

body.hp-a11y-contrast .hp-appbar,
body.hp-a11y-contrast .hp-bottom-nav {
  background: #000;
  border-color: #000;
}

body.hp-a11y-contrast .hp-bottom-nav a {
  color: #fff;
}

/* Single product layout overrides (product wow pass) */
body.hp-b2b-site.single-product .product-main .row.content-row {
  display: block !important;
}

body.hp-b2b-site.single-product .product-main {
  max-width: none !important;
  width: 100%;
}

body.hp-b2b-site.single-product .product-info {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: start;
  width: 100% !important;
  max-width: none !important;
  flex: 0 0 100% !important;
  min-width: 0;
}

body.hp-b2b-site.single-product .product-info > :not(.product-gallery) {
  grid-column: 2;
}

body.hp-b2b-site.single-product .product-info .woocommerce-breadcrumb,
body.hp-b2b-site.single-product .product-info .hp-product-nav {
  grid-column: 1 / -1;
}

body.hp-b2b-site.single-product .product-info .product-gallery {
  grid-column: 1;
  grid-row: 2 / span 10;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid var(--hp-border);
  background: #fff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  float: none !important;
}

body.hp-b2b-site.single-product .product-info .product-gallery .product-images {
  aspect-ratio: 4 / 5;
  max-height: 520px;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  overflow: hidden;
  min-height: 240px;
  height: auto !important;
  display: block;
}

body.hp-b2b-site.single-product .product-info .product-gallery .flickity-viewport,
body.hp-b2b-site.single-product .product-info .product-gallery .flickity-slider {
  height: auto !important;
  min-height: 240px;
}

body.hp-b2b-site.single-product .product-info .product-gallery .woocommerce-product-gallery__wrapper,
body.hp-b2b-site.single-product .product-info .product-gallery .woocommerce-product-gallery__image {
  height: auto !important;
}

body.hp-b2b-site.single-product .product-info .product-gallery .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
}

body.hp-b2b-site.single-product .product-info .product-title {
  font-size: clamp(28px, 2.4vw, 40px);
}

body.hp-b2b-site.single-product .product-info .price-wrapper {
  font-size: 20px;
}

@media (max-width: 900px) {
  body.hp-b2b-site.single-product .product-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 10px 12px;
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    box-sizing: border-box;
  }

  body.hp-b2b-site.single-product .product-info.summary.col-fit.col {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  body.hp-b2b-site.single-product .product-info.col-fit,
  body.hp-b2b-site.single-product .product-info.col {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  body.hp-b2b-site.single-product .product-main .row.content-row > .col,
  body.hp-b2b-site.single-product .product-main .row.content-row > .col-fit {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  body.hp-b2b-site.single-product .product-info,
  body.hp-b2b-site.single-product .product-info summary,
  body.hp-b2b-site.single-product .product-info.summary {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  body.hp-b2b-site.single-product .product-main .row.content-row {
    margin: 0 !important;
  }

  body.hp-b2b-site.single-product .product-info .woocommerce-breadcrumb,
  body.hp-b2b-site.single-product .product-info .hp-product-nav {
    order: 0;
  }

  body.hp-b2b-site.single-product .product-info .product-title {
    order: 1;
    font-size: clamp(26px, 7vw, 32px);
  }

  body.hp-b2b-site.single-product .product-info .price-wrapper {
    order: 3;
  }

  body.hp-b2b-site.single-product .product-info .hp-product-stock {
    order: 4;
  }

  body.hp-b2b-site.single-product .product-info .product-gallery {
    order: 2;
    padding: 10px;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.hp-b2b-site.single-product .product-info form.cart {
    order: 5;
  }

  body.hp-b2b-site.single-product .product-info .woocommerce-product-details__short-description {
    order: 6;
  }

  body.hp-b2b-site.single-product .product-info .product-gallery .product-images {
    aspect-ratio: auto;
    max-height: none;
    padding: 6px;
    min-height: 280px !important;
    height: auto !important;
  }

  body.hp-b2b-site.single-product .product-info .product-gallery .woocommerce-product-gallery__image img {
    max-height: none;
  }

  body.hp-b2b-site.single-product .product-info .product-gallery .flickity-viewport,
  body.hp-b2b-site.single-product .product-info .product-gallery .flickity-slider {
    min-height: 280px !important;
    height: auto !important;
  }

  body.hp-b2b-site.single-product .product-summary form.cart,
  body.hp-b2b-site.single-product .woocommerce-variation-add-to-cart {
    gap: 10px;
    align-items: center;
    text-align: center;
  }

  body.hp-b2b-site.single-product .product-summary .price {
    justify-content: center;
    margin: 0 auto;
  }

  body.hp-b2b-site.single-product .product-summary .quantity {
    justify-content: center;
    margin: 0 auto;
  }

  body.hp-b2b-site.single-product .product-summary .single_add_to_cart_button {
    padding: 8px 10px;
    font-size: 14px;
  }

  body.hp-b2b-site.single-product .hp-sticky-cta-inner {
    padding: 2px 8px;
    min-height: 20px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.2);
  }

  body.hp-b2b-site.single-product .hp-sticky-actions .hp-btn,
  body.hp-b2b-site.single-product .hp-sticky-actions .button {
    min-height: 22px;
    font-size: 11px;
  }
}

@media (max-width: 900px) {
  body.hp-b2b-site.single-product .product-main {
    padding: 8px !important;
    margin-bottom: 16px;
    box-sizing: border-box;
  }

  body.hp-b2b-site.single-product .product-main .row.content-row {
    width: 100% !important;
  }

  body.hp-b2b-site.single-product .product-container {
    padding: 0 8px 16px !important;
  }
}

body.hp-b2b-site.single-product .hp-sticky-cta {
  display: none !important;
}

body.hp-b2b-site.single-product.hp-sticky-cta-visible .hp-sticky-cta {
  display: block !important;
}

@media (max-width: 900px) {
  .hp-a11y-toggle {
    right: 12px;
    top: calc(var(--hp-appbar-height) + 10px);
  }
  .hp-a11y-panel {
    right: 12px;
    top: calc(var(--hp-appbar-height) + 60px);
    left: 12px;
    right: 12px;
    width: auto;
  }
}

body.hp-b2b-site.home {
  --hp-font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --hp-font-display: var(--hp-font-sans);
  --hp-accent: #f07a24;
  --hp-accent-2: #f5a454;
  --hp-accent-3: #f8c88a;
  --hp-hero-dark: #0b1117;
  --hp-hero-dark-2: #15202b;
  background:
    radial-gradient(circle at 12% 18%, rgba(26, 42, 58, 0.2), transparent 55%),
    radial-gradient(circle at 85% 15%, rgba(240, 122, 36, 0.18), transparent 50%),
    linear-gradient(180deg, #f7f9fb 0%, #eff2f6 50%, #e4e9ef 100%);
}

body.hp-b2b-site.home h1,
body.hp-b2b-site.home h2,
body.hp-b2b-site.home h3 {
  font-family: var(--hp-font-display);
}

body.hp-b2b-site.home .hp-section {
  position: relative;
}

.hp-hero--wow {
  background:
    radial-gradient(circle at 20% 18%, rgba(240, 122, 36, 0.22), transparent 55%),
    radial-gradient(circle at 84% 22%, rgba(59, 130, 246, 0.22), transparent 60%),
    linear-gradient(150deg, var(--hp-hero-dark) 0%, var(--hp-hero-dark-2) 55%, #1e2a37 100%);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(5, 10, 18, 0.45);
}

.hp-hero--wow .hp-kicker {
  color: rgba(226, 232, 240, 0.82);
  text-transform: none;
  letter-spacing: 0.08em;
}

.hp-hero--wow .hp-kicker span {
  background: rgba(240, 122, 36, 0.18);
  color: #fff;
  border-color: rgba(240, 122, 36, 0.5);
}

.hp-hero--wow h1 {
  color: #fff;
}

.hp-hero--wow p {
  color: rgba(226, 232, 240, 0.78);
}

.hp-hero--wow .hp-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.hp-hero--wow .hp-hero-link {
  color: #f8fafc;
  border-bottom-color: rgba(255, 255, 255, 0.32);
}

.hp-hero--wow .hp-hero-link:hover {
  color: var(--hp-accent-2);
  border-bottom-color: rgba(240, 122, 36, 0.7);
}

.hp-hero-meta {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(226, 232, 240, 0.7);
  text-transform: uppercase;
}

.hp-hero-grid--wow {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: stretch;
}

.hp-hero-panel {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: var(--hp-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(15, 23, 42, 0.32);
  box-shadow: 0 16px 40px rgba(6, 10, 18, 0.32);
  backdrop-filter: blur(12px);
}

.hp-hero-panel-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hp-hero-panel-card h3 {
  margin-top: 0;
  margin-bottom: 6px;
  color: #fff;
  font-size: 20px;
}

.hp-hero-panel-card p {
  margin: 0 0 12px;
  color: rgba(226, 232, 240, 0.78);
}

.hp-hero-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hp-hero-highlight {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px 10px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  color: rgba(248, 250, 252, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hp-brand-shell {
  background: #fff;
  border-radius: var(--hp-radius-xl);
  padding: 22px 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 34px rgba(8, 12, 20, 0.08);
  display: grid;
  gap: 14px;
}

.hp-brand-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.hp-brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hp-brand-pill {
  background: #f1f5f9;
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: #0f172a;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.hp-value-grid,
.hp-audience-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.hp-value-card,
.hp-audience-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--hp-radius-lg);
  padding: 18px 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 30px rgba(8, 12, 20, 0.08);
}

.hp-value-card h3,
.hp-audience-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
  color: #0f172a;
}

.hp-value-card p,
.hp-audience-card p {
  margin: 0;
  color: #5b6472;
  font-size: 14px;
}

.hp-value-card::before {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  background: linear-gradient(120deg, var(--hp-accent), var(--hp-accent-2));
  border-radius: 999px;
  margin-bottom: 10px;
}

.hp-quick-order-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 22px;
  padding: 26px;
  background: #fff;
  border-radius: var(--hp-radius-xl);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 22px 40px rgba(8, 12, 20, 0.12);
}

.hp-quick-order-shell .hp-block-title {
  margin-bottom: 8px;
}

.hp-quick-order-card {
  background: linear-gradient(145deg, #0b1117 0%, #1a2733 100%);
  border-radius: var(--hp-radius-lg);
  padding: 22px;
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  display: grid;
  gap: 12px;
}

.hp-quick-order-card p {
  margin: 0;
  color: rgba(226, 232, 240, 0.8);
}

body.hp-b2b-site.home .hp-category-grid {
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

body.hp-b2b-site.home .hp-category-card {
  border-radius: var(--hp-radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 26px rgba(8, 12, 20, 0.08);
}

body.hp-b2b-site.home .hp-category-card h3 {
  font-size: 16px;
}

body.hp-b2b-site.home .hp-process {
  gap: 16px;
}

body.hp-b2b-site.home .hp-step {
  background: #fff;
  border-radius: var(--hp-radius-lg);
  padding: 16px 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 26px rgba(8, 12, 20, 0.08);
}

.hp-project-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #ffffff, #f1f5f9);
  border-radius: var(--hp-radius-xl);
  padding: 24px 26px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 36px rgba(8, 12, 20, 0.08);
}

.hp-project-shell h2 {
  margin: 0 0 6px;
}

.hp-project-shell p {
  margin: 0;
  color: #5b6472;
}

.hp-final-shell {
  background: linear-gradient(145deg, #0b1117 0%, #182330 60%, #1c2b3a 100%);
  border-radius: var(--hp-radius-xl);
  padding: 30px 26px;
  text-align: center;
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 60px rgba(6, 10, 18, 0.4);
}

.hp-final-shell p {
  color: rgba(226, 232, 240, 0.8);
}

.hp-final-shell .hp-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.hp-final-shell .hp-hero-link {
  color: #f8fafc;
  border-bottom-color: rgba(255, 255, 255, 0.32);
}

.hp-final-shell .hp-hero-link:hover {
  color: var(--hp-accent-2);
  border-bottom-color: rgba(240, 122, 36, 0.7);
}

@media (max-width: 1024px) {
  .hp-hero-grid--wow {
    grid-template-columns: 1fr;
  }
  .hp-hero-panel {
    order: 2;
  }
  .hp-hero-highlight-grid {
    grid-template-columns: 1fr;
  }
  .hp-quick-order-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hp-hero--wow {
    padding: 58px 22px 44px;
  }
  .hp-hero-meta {
    letter-spacing: 0.04em;
  }
  .hp-project-shell {
    align-items: flex-start;
  }
}

/* Public-site refinements */
body.hp-b2b-site .footer-widgets.footer-1,
body.hp-b2b-site .footer-widgets.footer-2 {
  display: none;
}

body.hp-b2b-site .absolute-footer {
  background: linear-gradient(180deg, #0f1720, #101a26);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

body.hp-b2b-site .absolute-footer,
body.hp-b2b-site .absolute-footer a,
body.hp-b2b-site .absolute-footer .footer-nav,
body.hp-b2b-site .absolute-footer .payment-icons {
  color: #f8fafc;
}

body.hp-b2b-site .copyright-footer {
  color: rgba(248, 250, 252, 0.78);
  font-weight: 600;
}

body.hp-b2b-site .absolute-footer .footer-nav a:hover,
body.hp-b2b-site .absolute-footer a:hover {
  color: #ffb27c;
}

@media (min-width: 1024px) {
body.hp-b2b-site.hp-desktop .hp-bottom-nav,
body.hp-b2b-site.hp-desktop .ashachar-bottom-bar {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

:root {
  --hp-bottom-nav-height: 0px;
  --hp-bottom-nav-gap: 0px;
  --hp-bottom-bar-height: 0px;
}

body.hp-b2b-site .hp-bottom-nav,
body.hp-b2b-site .ashachar-bottom-bar,
body.hp-b2b-site .mobile-bottom-bar,
body.hp-b2b-site .hp-pwa-prompt {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (max-width: 1023px) {
  body.hp-b2b-site #wrapper,
  body.hp-b2b-site .main,
  body.hp-b2b-site.single-product #wrapper,
  body.hp-b2b-site.single-product .main,
  body.hp-b2b-site.single-product .product-footer,
  body.hp-b2b-site.woocommerce-cart .cart-wrapper {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
}

  body.hp-b2b-site.hp-desktop #wrapper,
  body.hp-b2b-site.hp-desktop .main {
    padding-bottom: 0 !important;
  }
}

.hp-public-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 106, 31, 0.12);
  color: #a34112;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp-public-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 244, 236, 0.96));
  box-shadow: 0 18px 42px rgba(8, 12, 18, 0.1);
}

.hp-public-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  color: #0f172a;
}

.hp-public-card p {
  margin-bottom: 0;
}

.hp-public-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.hp-public-list li {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.hp-public-list strong {
  color: #111827;
  font-size: 1rem;
}

.hp-public-list span {
  color: #5b6472;
  font-size: 0.97rem;
}

.hp-public-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.hp-public-steps > div {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  min-height: 100%;
}

.hp-public-steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6a1f, #ff9a4a);
  color: #fff;
  font-size: 0.95rem;
}

.hp-public-steps span {
  display: block;
  color: #1f2937;
  font-weight: 600;
  line-height: 1.6;
}

.hp-public-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hp-public-actions .button,
.hp-public-actions .hp-btn {
  margin: 0;
}

.hp-public-form-shell {
  margin-top: 18px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 36px rgba(8, 12, 18, 0.08);
}

.hp-public-form-shell form,
.hp-public-form-shell .wpcf7 {
  margin: 0;
}

body.page-template-page-homepod-b2b-landing .hp-hero {
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 30px 72px rgba(8, 12, 18, 0.14);
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 106, 31, 0.22), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(245, 184, 74, 0.2), transparent 30%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 244, 236, 0.96) 44%, rgba(239, 231, 221, 0.98) 100%);
}

body.page-template-page-homepod-b2b-landing .hp-kicker,
body.page-template-page-homepod-b2b-landing .hp-hero-trust,
body.page-template-page-homepod-b2b-landing .hp-hero-note {
  color: #334155;
}

body.page-template-page-homepod-b2b-landing .hp-hero-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at top right, rgba(255, 106, 31, 0.2), transparent 34%),
    linear-gradient(155deg, rgba(13, 20, 29, 0.98), rgba(26, 38, 52, 0.94));
  box-shadow: 0 28px 68px rgba(8, 12, 18, 0.28);
  color: #f8fafc;
}

body.page-template-page-homepod-b2b-landing .hp-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
  pointer-events: none;
}

body.page-template-page-homepod-b2b-landing .hp-hero-card > * {
  position: relative;
  z-index: 1;
}

body.page-template-page-homepod-b2b-landing .hp-hero-card .hp-public-card {
  padding: 0 0 18px;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  box-shadow: none;
}

body.page-template-page-homepod-b2b-landing .hp-hero-card .hp-public-eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: #ffd4bc;
}

body.page-template-page-homepod-b2b-landing .hp-hero-card .hp-public-card h2,
body.page-template-page-homepod-b2b-landing .hp-hero-card .hp-public-list strong,
body.page-template-page-homepod-b2b-landing .hp-hero-card .hp-public-steps strong {
  color: #f8fafc;
}

body.page-template-page-homepod-b2b-landing .hp-hero-card .hp-public-list li,
body.page-template-page-homepod-b2b-landing .hp-hero-card .hp-public-steps > div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.page-template-page-homepod-b2b-landing .hp-hero-card .hp-public-list span,
body.page-template-page-homepod-b2b-landing .hp-hero-card .hp-public-steps span {
  color: rgba(226, 232, 240, 0.88);
}

.hp-public-form-shell label,
.hp-public-form-shell legend {
  display: block;
  margin-bottom: 8px;
  color: #0f172a;
  font-weight: 700;
}

.hp-public-form-shell input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.hp-public-form-shell select,
.hp-public-form-shell textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.98);
  color: #0f172a;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hp-public-form-shell textarea {
  min-height: 148px;
  resize: vertical;
}

body.page-id-1141383 .hp-public-form-shell span.b2bking_request_custom_quote_text_label,
body.page-id-1141383 .hp-public-form-shell #b2bking_request_custom_quote_textarea_abovetext,
body.page-id-1141383 .hp-public-form-shell .b2bking_before_quote_request_form {
  display: block !important;
  text-align: right;
}

body.page-id-1141383 .hp-public-form-shell #b2bking_request_custom_quote_name,
body.page-id-1141383 .hp-public-form-shell #b2bking_request_custom_quote_email,
body.page-id-1141383 .hp-public-form-shell #b2bking_request_custom_quote_textarea {
  display: block !important;
  width: 100% !important;
  margin-bottom: 12px;
  text-align: right;
}

body.page-id-1141383 .hp-hero-card .hp-public-form-shell span.b2bking_request_custom_quote_text_label,
body.page-id-1141383 .hp-hero-card .hp-public-form-shell #b2bking_request_custom_quote_textarea_abovetext {
  color: rgba(248, 250, 252, 0.9);
  margin-bottom: 6px;
  font-weight: 700;
}

body.page-id-1141383 .hp-public-form-shell .b2bking_custom_quote_field_container {
  margin-bottom: 12px;
}

body.page-id-1141383 .hp-public-form-shell input::placeholder,
body.page-id-1141383 .hp-public-form-shell textarea::placeholder {
  color: #94a3b8;
}

.hp-public-form-shell input:focus,
.hp-public-form-shell select:focus,
.hp-public-form-shell textarea:focus {
  border-color: rgba(255, 106, 31, 0.48);
  box-shadow: var(--hp-focus-ring);
  outline: 0;
}

.hp-public-form-shell p,
.hp-public-form-shell .form-row,
.hp-public-form-shell .woocommerce-form-row,
.hp-public-form-shell .b2bking_quote_request_form_container,
.hp-public-form-shell .b2bking_quote_request_form {
  margin-bottom: 14px;
}

.hp-public-form-shell button,
.hp-public-form-shell input[type="submit"],
.hp-public-form-shell .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 0;
  background: var(--hp-btn-bg);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--hp-shadow-glow);
}

.hp-public-form-shell #b2bking_request_custom_quote_button {
  width: 100%;
  text-transform: none;
  letter-spacing: 0;
}

.hp-public-form-shell button:hover,
.hp-public-form-shell input[type="submit"]:hover,
.hp-public-form-shell .button:hover {
  transform: translateY(-1px);
}

@media (min-width: 1024px) {
  body.page-template-page-homepod-b2b-landing .hp-hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    align-items: stretch;
  }

  body.page-template-page-homepod-b2b-landing .hp-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.hp-about-page {
  display: grid;
  gap: 24px;
}

.hp-about-hero {
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 177, 124, 0.34), transparent 38%),
    linear-gradient(135deg, #141d26 0%, #1d2a38 100%);
  color: #f8fafc;
  box-shadow: 0 26px 60px rgba(8, 12, 18, 0.22);
}

.hp-about-hero h1 {
  color: #fff;
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
}

.hp-about-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(248, 250, 252, 0.86);
  font-size: 1.06rem;
}

.hp-public-band,
.hp-about-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.hp-public-stat {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 32px rgba(8, 12, 18, 0.07);
}

.hp-public-stat strong {
  display: block;
  margin-bottom: 6px;
  color: #0f172a;
  font-size: 1.08rem;
}

.hp-public-stat span {
  color: #5b6472;
}

body.page-id-1142516 .page-title,
body.page-id-1142516 .page-header-wrapper,
body.ashachar-public-content-page .page-title,
body.ashachar-public-content-page .page-header-wrapper {
  display: none;
}

body.page-id-1142516 #main {
  background: transparent;
}

body.page-id-1142516 .page-wrapper,
body.ashachar-public-content-page .page-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 20px 72px;
}

body.page-id-1142516 .article-inner,
body.ashachar-public-content-page .article-inner {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.hp-public-page-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 20px 72px;
}

body.page-template-page-homepod-b2b-landing #main,
body.page-template-page-homepod-b2b-landing .main,
body.ashachar-public-content-page #main {
  background: #f5f7fa;
}

body.page-template-page-homepod-b2b-landing #wrapper,
body.page-template-page-homepod-b2b-landing .main {
  padding-top: calc(var(--hp-appbar-height, 108px) + 12px) !important;
}

.hp-about-grid--content {
  align-items: stretch;
}

.hp-about-grid--content > .hp-public-steps,
.hp-about-grid--content > .hp-public-actions {
  grid-column: 1 / -1;
}

.hp-public-card--final {
  background:
    linear-gradient(90deg, #f97316 0 72px, #1d4ed8 72px 100%) top right / 100% 5px no-repeat,
    linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
}

body.ashachar-legal-page .entry-content {
  display: grid;
  gap: 18px;
  color: #243244;
  font-size: 1rem;
  line-height: 1.85;
}

body.ashachar-legal-page .entry-content > div {
  margin: 0 !important;
  font-family: inherit !important;
  direction: rtl !important;
  text-align: right !important;
  line-height: inherit !important;
}

body.ashachar-legal-page .entry-content h1 {
  margin: 0 0 18px !important;
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, #f97316 0 72px, #1d4ed8 72px 100%) top right / 100% 5px no-repeat,
    linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  color: #111827 !important;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.12;
  text-align: right !important;
  text-decoration: none !important;
}

body.ashachar-legal-page .entry-content h2 {
  margin: 24px 0 10px;
  color: #111827;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.25;
}

body.ashachar-legal-page .entry-content p,
body.ashachar-legal-page .entry-content ul {
  margin-right: 0;
  margin-left: 0;
}

body.ashachar-legal-page .entry-content ul {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

body.ashachar-legal-page .entry-content li {
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

@media (max-width: 768px) {
  .hp-public-card,
  .hp-about-hero,
  .hp-public-form-shell {
    padding: 20px;
    border-radius: 22px;
  }

  .hp-public-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hp-public-actions .button,
  .hp-public-actions .hp-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  body.page-id-1142516 .page-wrapper {
    padding: 28px 16px 54px;
  }

  body.page-template-page-homepod-b2b-landing .hp-hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.page-template-page-homepod-b2b-landing .hp-hero-card {
    display: block;
    padding: 20px;
  }

  body.page-template-page-homepod-b2b-landing .hp-category-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================================
   HOMEPAGE VISUAL UPGRADE - March 2026
   ======================================================================== */

/* --- Value Cards with Icons --- */
.hp-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(240, 122, 36, 0.12), rgba(240, 122, 36, 0.05));
  color: var(--card-accent, #f07a24);
  margin-bottom: 16px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.hp-value-card[style*="--card-accent: #2563eb"] .hp-value-icon {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.05));
}

.hp-value-card[style*="--card-accent: #16a34a"] .hp-value-icon {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.12), rgba(22, 163, 74, 0.05));
}

.hp-value-card[style*="--card-accent: #9333ea"] .hp-value-icon {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.12), rgba(147, 51, 234, 0.05));
}

.hp-value-card:hover .hp-value-icon {
  transform: scale(1.12) translateY(-3px) rotate(-3deg);
  box-shadow: 0 10px 28px rgba(240, 122, 36, 0.2);
}

.hp-value-card::before {
  display: none;
}

body.hp-b2b-site.home .hp-value-card,
body.hp-b2b-site.home .hp-audience-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  padding: 24px;
}

body.hp-b2b-site.home .hp-value-card:hover,
body.hp-b2b-site.home .hp-audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(240, 122, 36, 0.2);
}

/* --- Audience Cards with Icons --- */
.hp-audience-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(240, 122, 36, 0.1), rgba(245, 164, 84, 0.08));
  color: #f07a24;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.hp-audience-card:hover .hp-audience-icon {
  transform: scale(1.1);
}

/* --- Numbers / Stats Section --- */
.hp-numbers-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.hp-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: linear-gradient(135deg, #0b1117 0%, #15202b 50%, #1a2a3a 100%);
  border-radius: var(--hp-radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(6, 10, 18, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hp-number-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 16px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.hp-number-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 20%;
  left: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(240, 122, 36, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hp-number-card:hover {
  background: rgba(240, 122, 36, 0.06);
}

.hp-number-card:hover::after {
  opacity: 1;
}

.hp-number-value {
  font-family: var(--hp-font-display);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 10%, #f07a24 60%, #f5b84a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.hp-number-label {
  color: rgba(226, 232, 240, 0.75);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .hp-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hp-number-card {
    padding: 24px 14px;
  }
}

/* --- Testimonials Section --- */
.hp-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hp-testimonial-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--hp-radius-lg);
  padding: 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.hp-testimonial-card::before {
  content: "\201F";
  position: absolute;
  top: 12px;
  left: 18px;
  font-size: 56px;
  font-family: var(--hp-font-display);
  background: linear-gradient(135deg, rgba(240, 122, 36, 0.2), rgba(245, 184, 74, 0.15));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hp-testimonial-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(240, 122, 36, 0.06), transparent 70%);
  pointer-events: none;
}

.hp-testimonial-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(240, 122, 36, 0.15);
}

.hp-testimonial-stars {
  color: #f5b84a;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.hp-testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
  margin: 0 0 18px;
}

.hp-testimonial-author {
  display: grid;
  gap: 2px;
}

.hp-testimonial-author strong {
  color: #0f172a;
  font-size: 15px;
}

.hp-testimonial-author span {
  color: #6b7280;
  font-size: 13px;
}

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

/* --- Hero Section Enhancement --- */
body.hp-b2b-site.home .hp-hero--wow {
  background:
    radial-gradient(ellipse at 10% 15%, rgba(240, 122, 36, 0.3), transparent 45%),
    radial-gradient(ellipse at 90% 10%, rgba(59, 130, 246, 0.2), transparent 40%),
    radial-gradient(ellipse at 50% 95%, rgba(168, 85, 247, 0.12), transparent 35%),
    radial-gradient(ellipse at 60% 50%, rgba(20, 184, 166, 0.08), transparent 40%),
    linear-gradient(150deg, #060a10 0%, #0a1322 30%, #0f1d32 60%, #142840 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: clamp(60px, 7vw, 90px) clamp(24px, 4vw, 36px) clamp(50px, 6vw, 70px);
}

body.hp-b2b-site.home .hp-hero--wow h1 {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 900;
}

.hp-hero-gradient-text {
  background: linear-gradient(135deg, #f07a24 0%, #f5b84a 50%, #ff9a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hp-hero-copy .hp-kicker {
  margin-bottom: 18px;
}

/* Hero Decorative Elements */
.hp-hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hp-hero-deco--1 {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -60px;
  background: radial-gradient(circle, rgba(240, 122, 36, 0.15), transparent 65%);
  animation: hp-float 10s ease-in-out infinite;
}

.hp-hero-deco--2 {
  width: 220px;
  height: 220px;
  bottom: -40px;
  right: 10%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 65%);
  animation: hp-float 14s ease-in-out infinite reverse;
}

.hp-hero-deco--3 {
  width: 160px;
  height: 160px;
  top: 30%;
  right: 25%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08), transparent 65%);
  animation: hp-float 18s ease-in-out infinite 2s;
}

body.hp-b2b-site.home .hp-hero-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  z-index: 1;
}

body.hp-b2b-site.home .hp-hero-highlight {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

body.hp-b2b-site.home .hp-hero-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240, 122, 36, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.hp-b2b-site.home .hp-hero-highlight:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(240, 122, 36, 0.25);
}

body.hp-b2b-site.home .hp-hero-highlight:hover::before {
  opacity: 1;
}

/* --- Hero animated gradient border --- */
body.hp-b2b-site.home .hp-hero--wow::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(240, 122, 36, 0.5), transparent 35%, transparent 65%, rgba(59, 130, 246, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: hp-border-rotate 8s linear infinite;
  z-index: 0;
}

@keyframes hp-border-rotate {
  0% { filter: hue-rotate(0deg); opacity: 0.6; }
  50% { opacity: 1; }
  100% { filter: hue-rotate(30deg); opacity: 0.6; }
}

/* Hero panel card glow effect */
body.hp-b2b-site.home .hp-hero-panel-card {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

body.hp-b2b-site.home .hp-hero-panel-card:hover {
  border-color: rgba(240, 122, 36, 0.3);
  box-shadow: 0 8px 32px rgba(240, 122, 36, 0.12);
}

/* --- Better Section Spacing & Separators --- */
body.hp-b2b-site.home .hp-section {
  position: relative;
}

body.hp-b2b-site.home .hp-value::before,
body.hp-b2b-site.home .hp-audience::before {
  content: "";
  position: absolute;
  top: 0;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.08), transparent);
}

/* --- Block Titles Enhancement --- */
body.hp-b2b-site.home .hp-block-title h2 {
  position: relative;
  display: inline-block;
}

body.hp-b2b-site.home .hp-block-title h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(120deg, #f07a24, #f5a454);
  margin-top: 10px;
}

/* --- Category Cards Enhancement --- */
body.hp-b2b-site.home .hp-category-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

body.hp-b2b-site.home .hp-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
  border-color: rgba(240, 122, 36, 0.25);
}

body.hp-b2b-site.home .hp-category-image {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #f8f4ef, #efe8dd);
}

body.hp-b2b-site.home .hp-category-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

body.hp-b2b-site.home .hp-category-card:hover .hp-category-image img {
  transform: scale(1.06);
}

/* --- Process Steps Enhancement --- */
body.hp-b2b-site.home .hp-step {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.hp-b2b-site.home .hp-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(11, 17, 24, 0.4);
}

/* --- Quick Order Section Enhancement --- */
body.hp-b2b-site.home .hp-quick-order-shell {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

body.hp-b2b-site.home .hp-quick-order-card {
  background: linear-gradient(145deg, #0c1218 0%, #162030 60%, #1c2e42 100%);
  border: 1px solid rgba(240, 122, 36, 0.15);
  box-shadow: 0 16px 40px rgba(6, 10, 18, 0.35);
}

/* --- Project CTA Enhancement --- */
body.hp-b2b-site.home .hp-project-shell {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(240, 122, 36, 0.12);
  position: relative;
  overflow: hidden;
}

body.hp-b2b-site.home .hp-project-shell::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(240, 122, 36, 0.08), transparent 70%);
  pointer-events: none;
}

/* --- Final CTA Enhancement --- */
body.hp-b2b-site.home .hp-final-shell {
  background: linear-gradient(145deg, #080d14 0%, #0f1a28 40%, #162438 80%, #1a2e42 100%);
  position: relative;
  overflow: hidden;
  padding: 48px 32px;
}

body.hp-b2b-site.home .hp-final-shell::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240, 122, 36, 0.15), transparent 60%);
  pointer-events: none;
  animation: hp-float 12s ease-in-out infinite;
}

body.hp-b2b-site.home .hp-final-shell::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent 60%);
  pointer-events: none;
  animation: hp-float 16s ease-in-out infinite reverse;
}

body.hp-b2b-site.home .hp-final-shell h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  position: relative;
  z-index: 1;
}

body.hp-b2b-site.home .hp-final-shell p {
  position: relative;
  z-index: 1;
}

body.hp-b2b-site.home .hp-final-shell .hp-actions {
  position: relative;
  z-index: 1;
}

body.hp-b2b-site.home .hp-final-shell .hp-hero-links {
  position: relative;
  z-index: 1;
}

/* --- Brand Strip Enhancement --- */
body.hp-b2b-site.home .hp-brand-shell {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.hp-b2b-site.home .hp-brand-pill {
  background: rgba(241, 245, 249, 0.8);
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

body.hp-b2b-site.home .hp-brand-pill:hover {
  background: #f07a24;
  color: #fff;
  transform: translateY(-2px);
}

/* --- Button Polish --- */
body.hp-b2b-site.home .hp-btn-primary {
  background: linear-gradient(120deg, #f07a24, #ff9a4a);
  box-shadow: 0 8px 28px rgba(240, 122, 36, 0.35);
  position: relative;
  overflow: hidden;
}

body.hp-b2b-site.home .hp-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

body.hp-b2b-site.home .hp-btn-primary:hover::before {
  transform: translateX(100%);
}

body.hp-b2b-site.home .hp-btn-primary:hover {
  box-shadow: 0 12px 36px rgba(240, 122, 36, 0.45);
  transform: translateY(-2px);
}

/* --- Smooth scrolling --- */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* --- Skip Link (Accessibility) --- */
.hp-skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hp-accent, #f07a24);
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 var(--hp-radius-md) var(--hp-radius-md);
  font-weight: 700;
  font-size: 14px;
  z-index: 10000;
  text-decoration: none;
  transition: top 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hp-skip-link:focus {
  top: 0;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* --- Trust Badges Strip --- */
.hp-trust-badges-section {
  padding-top: 0 !important;
  padding-bottom: 8px !important;
}

.hp-trust-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hp-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-trust-badge svg {
  color: #16a34a;
  flex-shrink: 0;
}

.hp-trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .hp-trust-badges {
    gap: 6px;
  }
  .hp-trust-badge {
    padding: 8px 14px;
    font-size: 12px;
  }
  .hp-trust-badge svg {
    width: 18px;
    height: 18px;
  }
}

/* --- Subtle dot pattern on homepage --- */
body.hp-b2b-site.home::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

body.hp-b2b-site.home .hp-b2b-home {
  position: relative;
  z-index: 1;
}

/* --- Value & Audience Grid Enhancement --- */
body.hp-b2b-site.home .hp-value-grid {
  grid-template-columns: repeat(4, 1fr);
}

body.hp-b2b-site.home .hp-audience-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  body.hp-b2b-site.home .hp-value-grid,
  body.hp-b2b-site.home .hp-audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  body.hp-b2b-site.home .hp-value-grid,
  body.hp-b2b-site.home .hp-audience-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Brand pills marquee-like effect --- */
body.hp-b2b-site.home .hp-brand-list {
  gap: 12px;
}

body.hp-b2b-site.home .hp-brand-pill {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 14px;
  background: rgba(241, 245, 249, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* --- Process Steps Glow --- */
body.hp-b2b-site.home .hp-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(240, 122, 36, 0.04), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

body.hp-b2b-site.home .hp-step:hover::before {
  opacity: 1;
}

/* --- Homepage global background upgrade --- */
body.hp-b2b-site.home {
  background:
    radial-gradient(ellipse at 8% 15%, rgba(240, 122, 36, 0.08), transparent 50%),
    radial-gradient(ellipse at 88% 12%, rgba(59, 130, 246, 0.06), transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(168, 85, 247, 0.04), transparent 40%),
    radial-gradient(ellipse at 15% 80%, rgba(20, 184, 166, 0.05), transparent 40%),
    linear-gradient(180deg, #f4f7fb 0%, #edf0f5 40%, #e6eaf0 70%, #dfe4eb 100%);
}

/* --- Better link underline animation --- */
body.hp-b2b-site.home .hp-hero-link {
  position: relative;
  border-bottom: none;
  padding-bottom: 3px;
}

body.hp-b2b-site.home .hp-hero-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0.4);
  transform-origin: right;
  transition: transform 0.3s ease;
  opacity: 0.4;
}

body.hp-b2b-site.home .hp-hero-link:hover::after {
  transform: scaleX(1);
  opacity: 0.8;
}

/* --- Mobile Numbers Section --- */
@media (max-width: 480px) {
  .hp-numbers-grid {
    grid-template-columns: 1fr 1fr;
    border-radius: var(--hp-radius-lg);
  }
  .hp-number-card {
    padding: 20px 12px;
  }
  .hp-number-value {
    font-size: 26px;
  }
}

/* --- Card hover lift effect --- */
body.hp-b2b-site.home .hp-category-card,
body.hp-b2b-site.home .hp-value-card,
body.hp-b2b-site.home .hp-audience-card,
body.hp-b2b-site.home .hp-testimonial-card {
  will-change: transform;
}

/* --- Prefers dark mode for accessibility --- */
@media (prefers-color-scheme: dark) {
  body.hp-b2b-site.home .hp-value-card,
  body.hp-b2b-site.home .hp-audience-card,
  body.hp-b2b-site.home .hp-testimonial-card {
    background: rgba(255, 255, 255, 0.95);
  }
}

/* ============================================================================
   HOMEPAGE DRAMATIC VISUAL OVERHAUL — 2026-03-13
   Premium B2B landing page redesign. Overrides below use high specificity to
   cleanly layer on top of all existing rules above.
   ============================================================================ */

/* ---- New keyframes ---- */
@keyframes hp-gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes hp-shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes hp-pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(240, 122, 36, 0.15); }
  50%      { box-shadow: 0 0 40px rgba(240, 122, 36, 0.3); }
}

@keyframes hp-count-up {
  from { opacity: 0; transform: translateY(16px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes hp-timeline-draw {
  from { height: 0; }
  to   { height: 100%; }
}

@keyframes hp-subtle-float {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-10px); }
}

/* ── Global page background ── */
body.hp-b2b-site.home {
  background:
    radial-gradient(ellipse at 8% 12%, rgba(240, 122, 36, 0.06), transparent 48%),
    radial-gradient(ellipse at 92% 8%, rgba(37, 99, 235, 0.05), transparent 42%),
    radial-gradient(ellipse at 50% 60%, rgba(147, 51, 234, 0.025), transparent 38%),
    radial-gradient(ellipse at 20% 85%, rgba(20, 184, 166, 0.03), transparent 35%),
    linear-gradient(180deg, #f8fafe 0%, #f0f4fa 30%, #e8edf5 60%, #e2e8f0 100%) !important;
}

/* Refined dot pattern */
body.hp-b2b-site.home::before {
  background-image: radial-gradient(circle, rgba(15, 23, 42, 0.025) 1px, transparent 1px) !important;
  background-size: 32px 32px !important;
}

/* ── Section Spacing — more breathing room ── */
body.hp-b2b-site.home .hp-section {
  padding: clamp(30px, 4.2vw, 48px) 20px !important;
}

body.hp-b2b-site.home .hp-hero-section {
  padding-bottom: clamp(24px, 3vw, 40px) !important;
}

@media (max-width: 768px) {
  body.hp-b2b-site.home .hp-section {
    padding: clamp(24px, 6vw, 34px) 16px !important;
  }
}

/* ── Typography hierarchy ── */
body.hp-b2b-site.home .hp-block-title {
  margin-bottom: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

body.hp-b2b-site.home .hp-block-title h2 {
  font-size: clamp(28px, 3.8vw, 46px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.12 !important;
  color: #0a0f1a !important;
}

body.hp-b2b-site.home .hp-block-title h2::after {
  width: 56px !important;
  height: 4px !important;
  background: linear-gradient(120deg, #f07a24, #ff9a4a, #f5b84a) !important;
  margin-top: 14px !important;
  border-radius: 999px !important;
}

body.hp-b2b-site.home .hp-block-title p {
  font-size: 17px;
  line-height: 1.6;
  color: #4b5563;
  max-width: 500px;
}

/* ══════════════════════════════════════════════
   HERO SECTION — Striking dark gradient
   ══════════════════════════════════════════════ */
body.hp-b2b-site.home .hp-hero--wow {
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(ellipse at 8% 12%, rgba(240, 122, 36, 0.35), transparent 42%),
    radial-gradient(ellipse at 92% 8%, rgba(59, 130, 246, 0.28), transparent 38%),
    radial-gradient(ellipse at 45% 90%, rgba(147, 51, 234, 0.15), transparent 32%),
    radial-gradient(ellipse at 70% 40%, rgba(20, 184, 166, 0.1), transparent 35%),
    linear-gradient(155deg, #030710 0%, #07101e 20%, #0c1a30 45%, #0f2040 65%, #132848 100%) !important;
  padding: clamp(70px, 8vw, 110px) clamp(28px, 5vw, 44px) clamp(60px, 7vw, 90px) !important;
  border: none !important;
  box-shadow:
    0 40px 80px rgba(3, 7, 16, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  border-radius: 32px !important;
}

/* Hero animated gradient border — bolder */
body.hp-b2b-site.home .hp-hero--wow::after {
  padding: 2px !important;
  background: linear-gradient(
    135deg,
    rgba(240, 122, 36, 0.7),
    rgba(59, 130, 246, 0.3) 30%,
    transparent 45%,
    transparent 55%,
    rgba(147, 51, 234, 0.3) 70%,
    rgba(240, 122, 36, 0.6)
  ) !important;
  background-size: 300% 300% !important;
  animation: hp-gradient-shift 6s ease infinite, hp-border-rotate 10s linear infinite !important;
}

/* Hero heading — larger, bolder */
body.hp-b2b-site.home .hp-hero--wow h1 {
  font-size: clamp(40px, 5.5vw, 72px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.03em !important;
  font-weight: 900 !important;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3) !important;
  margin-bottom: 20px !important;
}

/* Hero gradient text — more vivid */
body.hp-b2b-site.home .hp-hero-gradient-text {
  background: linear-gradient(135deg, #ff8a3d 0%, #ffb347 40%, #ffd280 70%, #ff9a4a 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  background-size: 200% 200% !important;
  animation: hp-gradient-shift 4s ease infinite !important;
}

/* Hero paragraph */
body.hp-b2b-site.home .hp-hero--wow p {
  font-size: 19px !important;
  line-height: 1.75 !important;
  color: rgba(226, 232, 240, 0.85) !important;
  max-width: 540px !important;
}

/* Hero kicker */
body.hp-b2b-site.home .hp-hero-copy .hp-kicker {
  margin-bottom: 22px !important;
  font-size: 13px !important;
  letter-spacing: 0.14em !important;
  color: rgba(226, 232, 240, 0.7) !important;
}

body.hp-b2b-site.home .hp-hero--wow .hp-kicker span {
  background: linear-gradient(120deg, rgba(240, 122, 36, 0.25), rgba(255, 160, 60, 0.15)) !important;
  color: #ffcfa3 !important;
  border-color: rgba(240, 122, 36, 0.4) !important;
  font-size: 12px !important;
  padding: 5px 14px !important;
}

/* Hero meta */
body.hp-b2b-site.home .hp-hero-meta {
  color: rgba(200, 210, 225, 0.5) !important;
  font-size: 12px !important;
  letter-spacing: 0.12em !important;
  margin-top: 24px !important;
}

/* Hero decorative floating elements — bigger, bolder */
body.hp-b2b-site.home .hp-hero-deco--1 {
  width: 400px !important;
  height: 400px !important;
  background: radial-gradient(circle, rgba(240, 122, 36, 0.2), transparent 60%) !important;
  animation: hp-subtle-float 8s ease-in-out infinite !important;
}

body.hp-b2b-site.home .hp-hero-deco--2 {
  width: 300px !important;
  height: 300px !important;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18), transparent 60%) !important;
  animation: hp-subtle-float 12s ease-in-out infinite reverse !important;
}

body.hp-b2b-site.home .hp-hero-deco--3 {
  width: 200px !important;
  height: 200px !important;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.12), transparent 60%) !important;
  animation: hp-subtle-float 16s ease-in-out infinite 3s !important;
}

/* Hero panel — glass-morphism */
body.hp-b2b-site.home .hp-hero-panel {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(24px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(24px) saturate(1.4) !important;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  padding: 28px !important;
  border-radius: 24px !important;
}

/* Hero panel card — inner glass */
body.hp-b2b-site.home .hp-hero-panel-card {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px !important;
  padding: 24px !important;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

body.hp-b2b-site.home .hp-hero-panel-card:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(240, 122, 36, 0.35) !important;
  box-shadow: 0 12px 40px rgba(240, 122, 36, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-3px) !important;
}

body.hp-b2b-site.home .hp-hero-panel-card h3 {
  font-size: 22px !important;
  font-weight: 800 !important;
  margin-bottom: 8px !important;
}

/* Hero highlight pills — bolder */
body.hp-b2b-site.home .hp-hero-highlight {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  padding: 16px 12px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

body.hp-b2b-site.home .hp-hero-highlight:hover {
  background: rgba(240, 122, 36, 0.12) !important;
  border-color: rgba(240, 122, 36, 0.3) !important;
  transform: translateY(-4px) scale(1.03) !important;
  box-shadow: 0 8px 24px rgba(240, 122, 36, 0.15) !important;
}

/* ── CTA Buttons — Animated gradient + scale ── */
body.hp-b2b-site.home .hp-btn-primary {
  background: linear-gradient(120deg, #e86a18, #f07a24, #ff9a4a, #f07a24) !important;
  background-size: 250% 100% !important;
  animation: hp-gradient-shift 4s ease infinite !important;
  box-shadow: 0 10px 32px rgba(240, 122, 36, 0.4) !important;
  padding: 16px 30px !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  border-radius: 999px !important;
  letter-spacing: -0.01em !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  position: relative !important;
  overflow: hidden !important;
}

body.hp-b2b-site.home .hp-btn-primary::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 80%
  ) !important;
  transform: translateX(-100%) !important;
  transition: transform 0.6s ease !important;
}

body.hp-b2b-site.home .hp-btn-primary:hover {
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow: 0 16px 44px rgba(240, 122, 36, 0.5) !important;
}

body.hp-b2b-site.home .hp-btn-primary:hover::before {
  transform: translateX(100%) !important;
}

body.hp-b2b-site.home .hp-btn-secondary {
  padding: 16px 28px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

body.hp-b2b-site.home .hp-btn-secondary:hover {
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12) !important;
}

/* ══════════════════════════════════════════════
   TRUST BADGES STRIP
   ══════════════════════════════════════════════ */
body.hp-b2b-site.home .hp-trust-badges-section {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

body.hp-b2b-site.home .hp-trust-badge {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04) !important;
  padding: 12px 22px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  transition: all 0.3s ease !important;
}

body.hp-b2b-site.home .hp-trust-badge:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(22, 163, 74, 0.2) !important;
}

body.hp-b2b-site.home .hp-trust-badge svg {
  color: #16a34a !important;
  width: 22px !important;
  height: 22px !important;
}

/* ══════════════════════════════════════════════
   BRAND STRIP
   ══════════════════════════════════════════════ */
body.hp-b2b-site.home .hp-brand-shell {
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(15, 23, 42, 0.05) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04) !important;
  padding: 28px 30px !important;
  border-radius: 24px !important;
}

body.hp-b2b-site.home .hp-brand-title {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #0a0f1a !important;
}

body.hp-b2b-site.home .hp-brand-pill {
  padding: 12px 22px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  border-radius: 16px !important;
  background: rgba(241, 245, 249, 0.95) !important;
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

body.hp-b2b-site.home .hp-brand-pill:hover {
  background: linear-gradient(120deg, #f07a24, #ff9a4a) !important;
  color: #fff !important;
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 10px 28px rgba(240, 122, 36, 0.3) !important;
  border-color: transparent !important;
}

/* ══════════════════════════════════════════════
   VALUE CARDS — Hover glow + accent border-top
   ══════════════════════════════════════════════ */
body.hp-b2b-site.home .hp-value-card,
body.hp-b2b-site.home .hp-audience-card {
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  border-top: 3px solid transparent !important;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  padding: 30px 26px !important;
  border-radius: 22px !important;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  position: relative !important;
  overflow: hidden !important;
}

body.hp-b2b-site.home .hp-value-card:hover,
body.hp-b2b-site.home .hp-audience-card:hover {
  transform: translateY(-6px) !important;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(240, 122, 36, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  border-top-color: var(--card-accent, #f07a24) !important;
}

body.hp-b2b-site.home .hp-value-card h3,
body.hp-b2b-site.home .hp-audience-card h3 {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #0a0f1a !important;
  margin-bottom: 10px !important;
}

body.hp-b2b-site.home .hp-value-card p,
body.hp-b2b-site.home .hp-audience-card p {
  font-size: 15px !important;
  line-height: 1.65 !important;
  color: #5b6472 !important;
}

/* Value icons — larger */
body.hp-b2b-site.home .hp-value-icon {
  width: 64px !important;
  height: 64px !important;
  border-radius: 20px !important;
  margin-bottom: 20px !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06) !important;
}

body.hp-b2b-site.home .hp-value-card:hover .hp-value-icon {
  transform: scale(1.15) translateY(-4px) rotate(-5deg) !important;
  box-shadow: 0 14px 32px rgba(240, 122, 36, 0.25) !important;
}

/* Audience icons — larger */
body.hp-b2b-site.home .hp-audience-icon {
  width: 56px !important;
  height: 56px !important;
  border-radius: 18px !important;
  margin-bottom: 16px !important;
}

body.hp-b2b-site.home .hp-audience-card:hover .hp-audience-icon {
  transform: scale(1.12) rotate(-3deg) !important;
}

/* ══════════════════════════════════════════════
   NUMBERS SECTION — Full-width dark + gradient text
   ══════════════════════════════════════════════ */
body.hp-b2b-site.home .hp-numbers-section {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

body.hp-b2b-site.home .hp-numbers-grid {
  background: linear-gradient(
    140deg,
    #06090f 0%,
    #0a1322 25%,
    #0f1d34 50%,
    #132640 75%,
    #0f1d34 100%
  ) !important;
  border-radius: 28px !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 30px 70px rgba(3, 7, 16, 0.45) !important;
  gap: 1px !important;
}

body.hp-b2b-site.home .hp-number-card {
  padding: 44px 20px !important;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

body.hp-b2b-site.home .hp-number-card:hover {
  background: rgba(240, 122, 36, 0.08) !important;
}

body.hp-b2b-site.home .hp-number-value {
  font-size: clamp(36px, 4vw, 56px) !important;
  font-weight: 900 !important;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f0a060 30%,
    #f07a24 55%,
    #ff9a4a 75%,
    #f5b84a 100%
  ) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  line-height: 1.05 !important;
  margin-bottom: 14px !important;
  letter-spacing: -0.03em !important;
}

body.hp-b2b-site.home .hp-number-label {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: rgba(226, 232, 240, 0.8) !important;
  letter-spacing: 0 !important;
}

body.hp-b2b-site.home .hp-number-card::after {
  right: 15% !important;
  left: 15% !important;
  height: 3px !important;
  background: linear-gradient(90deg, transparent, rgba(240, 122, 36, 0.5), transparent) !important;
}

/* ══════════════════════════════════════════════
   PRODUCT CARDS — Premium card design
   ══════════════════════════════════════════════ */
body.hp-b2b-site.home .hp-product-grid {
  gap: 24px !important;
}

body.hp-b2b-site.home .hp-product-card {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
  border-radius: 22px !important;
  padding: 20px !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  overflow: hidden !important;
}

body.hp-b2b-site.home .hp-product-card:hover {
  transform: translateY(-6px) scale(1.02) !important;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.12) !important;
  border-color: rgba(240, 122, 36, 0.15) !important;
}

body.hp-b2b-site.home .hp-product-image {
  border-radius: 16px !important;
  overflow: hidden !important;
}

body.hp-b2b-site.home .hp-product-card img {
  border-radius: 16px !important;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  background: linear-gradient(135deg, #f8f6f2, #f0ebe3) !important;
}

body.hp-b2b-site.home .hp-product-card:hover img {
  transform: scale(1.08) !important;
}

body.hp-b2b-site.home .hp-product-card h3 {
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
}

body.hp-b2b-site.home .hp-product-card .price {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #1d4ed8 !important;
}

body.hp-b2b-site.home .hp-product-card .hp-card-add {
  background: linear-gradient(120deg, #0c1a2e, #162438) !important;
  color: #fff !important;
  padding: 14px 20px !important;
  border-radius: 16px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  box-shadow: 0 6px 20px rgba(11, 15, 20, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
  justify-content: center !important;
}

body.hp-b2b-site.home .hp-product-card .hp-card-add:hover {
  background: linear-gradient(120deg, #f07a24, #ff9a4a) !important;
  box-shadow: 0 10px 30px rgba(240, 122, 36, 0.35) !important;
  transform: translateY(-2px) !important;
}

body.hp-b2b-site.home .hp-badge {
  background: linear-gradient(120deg, #dc2626, #ef4444) !important;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35) !important;
  font-size: 13px !important;
  padding: 6px 12px !important;
  font-weight: 800 !important;
}

/* ══════════════════════════════════════════════
   CATEGORY CARDS — Hover overlay gradient
   ══════════════════════════════════════════════ */
body.hp-b2b-site.home .hp-category-grid {
  gap: 22px !important;
}

body.hp-b2b-site.home .hp-category-card {
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(15, 23, 42, 0.05) !important;
  border-radius: 22px !important;
  padding: 24px !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  overflow: hidden !important;
  position: relative !important;
}

body.hp-b2b-site.home .hp-category-card::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(240, 122, 36, 0.04) 100%
  ) !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
  pointer-events: none !important;
  border-radius: inherit !important;
}

body.hp-b2b-site.home .hp-category-card:hover::after {
  opacity: 1 !important;
}

body.hp-b2b-site.home .hp-category-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.12) !important;
  border-color: rgba(240, 122, 36, 0.2) !important;
}

body.hp-b2b-site.home .hp-category-image {
  border-radius: 16px !important;
  overflow: hidden !important;
  margin-bottom: 14px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06) !important;
}

body.hp-b2b-site.home .hp-category-image img {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

body.hp-b2b-site.home .hp-category-card:hover .hp-category-image img {
  transform: scale(1.08) !important;
}

body.hp-b2b-site.home .hp-category-card h3 {
  font-size: 18px !important;
  font-weight: 800 !important;
  margin-bottom: 4px !important;
}

body.hp-b2b-site.home .hp-category-card span {
  font-size: 14px !important;
  color: #6b7280 !important;
}

/* ══════════════════════════════════════════════
   PROCESS / STEPS — Connected timeline
   ══════════════════════════════════════════════ */
body.hp-b2b-site.home .hp-process {
  gap: 0 !important;
  position: relative !important;
  padding-top: 12px !important;
}

/* The connecting line between steps */
body.hp-b2b-site.home .hp-process::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(240, 122, 36, 0.5), rgba(245, 184, 74, 0.4), rgba(59, 130, 246, 0.3));
  z-index: 0;
}

body.hp-b2b-site.home .hp-step {
  background: linear-gradient(155deg, #080d16 0%, #0f1a2a 50%, #152438 100%) !important;
  border: 1px solid rgba(240, 122, 36, 0.12) !important;
  border-radius: 24px !important;
  padding: 28px 24px !important;
  box-shadow: 0 16px 40px rgba(6, 10, 18, 0.35) !important;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  position: relative !important;
  z-index: 1 !important;
  margin: 0 8px !important;
}

body.hp-b2b-site.home .hp-step:hover {
  transform: translateY(-6px) scale(1.02) !important;
  box-shadow: 0 26px 56px rgba(6, 10, 18, 0.5), 0 0 0 1px rgba(240, 122, 36, 0.2) !important;
  border-color: rgba(240, 122, 36, 0.3) !important;
}

/* Step numbers as gradient circles */
body.hp-b2b-site.home .hp-step > span {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #f07a24, #ff9a4a) !important;
  color: #fff !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  top: auto !important;
  right: auto !important;
  margin-bottom: 16px !important;
  box-shadow: 0 8px 24px rgba(240, 122, 36, 0.35) !important;
}

body.hp-b2b-site.home .hp-step:nth-child(2) > span {
  background: linear-gradient(135deg, #ff8f3b, #ffb347) !important;
  box-shadow: 0 8px 24px rgba(255, 143, 59, 0.35) !important;
}

body.hp-b2b-site.home .hp-step:nth-child(3) > span {
  background: linear-gradient(135deg, #f5b84a, #ffd280) !important;
  box-shadow: 0 8px 24px rgba(245, 184, 74, 0.35) !important;
}

body.hp-b2b-site.home .hp-step h3 {
  font-size: 20px !important;
  font-weight: 800 !important;
  margin-top: 4px !important;
  margin-bottom: 8px !important;
}

body.hp-b2b-site.home .hp-step p {
  color: rgba(226, 232, 240, 0.78) !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

@media (max-width: 1024px) {
  body.hp-b2b-site.home .hp-process::before {
    display: none;
  }
  body.hp-b2b-site.home .hp-step {
    margin: 6px 0 !important;
  }
}

/* ══════════════════════════════════════════════
   QUICK ORDER SECTION
   ══════════════════════════════════════════════ */
body.hp-b2b-site.home .hp-quick-order-shell {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(15, 23, 42, 0.05) !important;
  border-radius: 28px !important;
  padding: 36px 32px !important;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.06) !important;
}

body.hp-b2b-site.home .hp-quick-order-card {
  background: linear-gradient(155deg, #080d16 0%, #0f1a2a 50%, #162438 100%) !important;
  border: 1px solid rgba(240, 122, 36, 0.12) !important;
  border-radius: 22px !important;
  padding: 28px !important;
  box-shadow: 0 20px 48px rgba(6, 10, 18, 0.35) !important;
}

body.hp-b2b-site.home .hp-quick-order-card h3 {
  font-size: 22px !important;
  font-weight: 800 !important;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS — Left-border accent + gold stars
   ══════════════════════════════════════════════ */
body.hp-b2b-site.home .hp-testimonial-card {
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(15, 23, 42, 0.05) !important;
  border-right: 4px solid #f07a24 !important;
  border-radius: 22px !important;
  padding: 32px 28px !important;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

body.hp-b2b-site.home .hp-testimonial-card:hover {
  transform: translateY(-6px) scale(1.01) !important;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  border-right-color: #ff9a4a !important;
}

/* Quote marks — larger, bolder */
body.hp-b2b-site.home .hp-testimonial-card::before {
  font-size: 72px !important;
  top: 8px !important;
  left: 20px !important;
  background: linear-gradient(135deg, rgba(240, 122, 36, 0.3), rgba(245, 184, 74, 0.2)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Stars — vivid gold */
body.hp-b2b-site.home .hp-testimonial-stars {
  color: #f59e0b !important;
  font-size: 22px !important;
  letter-spacing: 3px !important;
  margin-bottom: 16px !important;
  text-shadow: 0 2px 8px rgba(245, 158, 11, 0.3) !important;
}

body.hp-b2b-site.home .hp-testimonial-card p {
  font-size: 16px !important;
  line-height: 1.75 !important;
  color: #374151 !important;
  margin-bottom: 20px !important;
}

body.hp-b2b-site.home .hp-testimonial-author strong {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #0a0f1a !important;
}

body.hp-b2b-site.home .hp-testimonial-author span {
  font-size: 14px !important;
  color: #6b7280 !important;
}

/* ══════════════════════════════════════════════
   PROJECT CTA SECTION
   ══════════════════════════════════════════════ */
body.hp-b2b-site.home .hp-project-shell {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(240, 122, 36, 0.1) !important;
  border-radius: 28px !important;
  padding: 36px 32px !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06) !important;
}

body.hp-b2b-site.home .hp-project-shell h2 {
  font-size: clamp(24px, 3vw, 36px) !important;
  font-weight: 900 !important;
}

body.hp-b2b-site.home .hp-project-shell p {
  font-size: 17px !important;
  color: #4b5563 !important;
}

body.hp-b2b-site.home .hp-project-shell::before {
  width: 280px !important;
  height: 280px !important;
  background: radial-gradient(circle, rgba(240, 122, 36, 0.06), transparent 65%) !important;
}

/* ══════════════════════════════════════════════
   FINAL CTA — Full-width dark gradient
   ══════════════════════════════════════════════ */
body.hp-b2b-site.home .hp-final-cta {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

body.hp-b2b-site.home .hp-final-shell {
  background: linear-gradient(
    150deg,
    #030710 0%,
    #07101e 20%,
    #0c1a30 45%,
    #0f2040 65%,
    #132848 100%
  ) !important;
  border-radius: 32px !important;
  padding: 64px 40px !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 40px 80px rgba(3, 7, 16, 0.5) !important;
}

body.hp-b2b-site.home .hp-final-shell h2 {
  font-size: clamp(32px, 4vw, 52px) !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  margin-bottom: 16px !important;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #ffffff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

body.hp-b2b-site.home .hp-final-shell p {
  font-size: 19px !important;
  line-height: 1.7 !important;
  color: rgba(226, 232, 240, 0.8) !important;
  margin-bottom: 28px !important;
}

body.hp-b2b-site.home .hp-final-shell .hp-btn-secondary {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(8px) !important;
}

body.hp-b2b-site.home .hp-final-shell .hp-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

body.hp-b2b-site.home .hp-final-shell .hp-hero-link {
  color: rgba(248, 250, 252, 0.85) !important;
}

body.hp-b2b-site.home .hp-final-shell .hp-hero-link:hover {
  color: #ffb366 !important;
}

/* Final CTA decorative orbs */
body.hp-b2b-site.home .hp-final-shell::before {
  width: 500px !important;
  height: 500px !important;
  top: -40% !important;
  right: -15% !important;
  background: radial-gradient(circle, rgba(240, 122, 36, 0.18), transparent 55%) !important;
}

body.hp-b2b-site.home .hp-final-shell::after {
  width: 400px !important;
  height: 400px !important;
  bottom: -35% !important;
  left: -8% !important;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 55%) !important;
}

/* ══════════════════════════════════════════════
   ALTERNATE SECTION BACKGROUNDS
   ══════════════════════════════════════════════ */
body.hp-b2b-site.home .hp-value {
  background: linear-gradient(180deg, rgba(248, 250, 254, 0.4), rgba(240, 244, 250, 0.6)) !important;
}

body.hp-b2b-site.home .hp-audience {
  background: linear-gradient(180deg, rgba(240, 244, 250, 0.3), rgba(236, 240, 248, 0.5)) !important;
}

body.hp-b2b-site.home .hp-products-section {
  background: linear-gradient(180deg, transparent, rgba(248, 250, 254, 0.4)) !important;
}

body.hp-b2b-site.home .hp-testimonials {
  background: linear-gradient(180deg, rgba(248, 250, 254, 0.3), rgba(244, 248, 255, 0.5)) !important;
}

/* ══════════════════════════════════════════════
   DASHBOARD SECTION (Logged-in users)
   ══════════════════════════════════════════════ */
body.hp-b2b-site.home .hp-dashboard-shell {
  border-radius: 28px !important;
}

body.hp-b2b-site.home .hp-dashboard-card {
  border-radius: 22px !important;
  transition: all 0.3s ease !important;
}

body.hp-b2b-site.home .hp-dashboard-card:hover {
  transform: translateY(-3px) !important;
}

/* ══════════════════════════════════════════════
   MOBILE RESPONSIVE REFINEMENTS
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
  body.hp-b2b-site.home .hp-hero--wow {
    padding: 56px 20px 44px !important;
    border-radius: 24px !important;
  }

  body.hp-b2b-site.home .hp-hero--wow h1 {
    font-size: clamp(32px, 8vw, 44px) !important;
  }

  body.hp-b2b-site.home .hp-hero--wow p {
    font-size: 16px !important;
  }

  body.hp-b2b-site.home .hp-btn-primary {
    padding: 14px 24px !important;
    font-size: 15px !important;
  }

  body.hp-b2b-site.home .hp-btn-secondary {
    padding: 14px 22px !important;
    font-size: 14px !important;
  }

  body.hp-b2b-site.home .hp-block-title h2 {
    font-size: clamp(24px, 6vw, 34px) !important;
  }

  body.hp-b2b-site.home .hp-final-shell {
    padding: 44px 24px !important;
    border-radius: 24px !important;
  }

  body.hp-b2b-site.home .hp-final-shell h2 {
    font-size: clamp(26px, 7vw, 38px) !important;
  }

  body.hp-b2b-site.home .hp-testimonial-card {
    padding: 24px 20px !important;
  }

  body.hp-b2b-site.home .hp-step {
    margin: 4px 0 !important;
  }

  body.hp-b2b-site.home .hp-step > span {
    width: 44px !important;
    height: 44px !important;
    font-size: 19px !important;
  }

  body.hp-b2b-site.home .hp-value-card,
  body.hp-b2b-site.home .hp-audience-card {
    padding: 24px 20px !important;
  }

  body.hp-b2b-site.home .hp-quick-order-shell {
    padding: 24px 20px !important;
  }

  body.hp-b2b-site.home .hp-category-card {
    padding: 18px !important;
  }

  body.hp-b2b-site.home .hp-project-shell {
    padding: 28px 22px !important;
  }

  body.hp-b2b-site.home .hp-numbers-grid {
    border-radius: 22px !important;
  }
}

@media (max-width: 480px) {
  body.hp-b2b-site.home .hp-hero-highlight-grid {
    gap: 8px !important;
  }

  body.hp-b2b-site.home .hp-hero-highlight {
    padding: 12px 10px !important;
    font-size: 13px !important;
  }

  body.hp-b2b-site.home .hp-hero-panel {
    padding: 20px !important;
  }

  body.hp-b2b-site.home .hp-hero-panel-card {
    padding: 18px !important;
  }
}

/* ── Smooth transitions for ALL interactive elements ── */
body.hp-b2b-site.home .hp-value-card,
body.hp-b2b-site.home .hp-audience-card,
body.hp-b2b-site.home .hp-testimonial-card,
body.hp-b2b-site.home .hp-category-card,
body.hp-b2b-site.home .hp-product-card,
body.hp-b2b-site.home .hp-step,
body.hp-b2b-site.home .hp-brand-pill,
body.hp-b2b-site.home .hp-trust-badge,
body.hp-b2b-site.home .hp-hero-highlight,
body.hp-b2b-site.home .hp-hero-panel-card {
  will-change: transform, box-shadow !important;
}

/* ── Focus visible for keyboard users ── */
body.hp-b2b-site.home .hp-btn:focus-visible,
body.hp-b2b-site.home .hp-category-card a:focus-visible,
body.hp-b2b-site.home .hp-hero-link:focus-visible {
  outline: 3px solid rgba(240, 122, 36, 0.5) !important;
  outline-offset: 3px !important;
}

/* ── Reduced motion preference ── */
@media (prefers-reduced-motion: reduce) {
  body.hp-b2b-site.home .hp-hero-gradient-text,
  body.hp-b2b-site.home .hp-btn-primary,
  body.hp-b2b-site.home .hp-hero--wow::after,
  body.hp-b2b-site.home .hp-hero-deco--1,
  body.hp-b2b-site.home .hp-hero-deco--2,
  body.hp-b2b-site.home .hp-hero-deco--3,
  body.hp-b2b-site.home .hp-final-shell::before,
  body.hp-b2b-site.home .hp-final-shell::after {
    animation: none !important;
  }

  body.hp-b2b-site.home .hp-value-card:hover,
  body.hp-b2b-site.home .hp-audience-card:hover,
  body.hp-b2b-site.home .hp-testimonial-card:hover,
  body.hp-b2b-site.home .hp-category-card:hover,
  body.hp-b2b-site.home .hp-product-card:hover,
  body.hp-b2b-site.home .hp-step:hover,
  body.hp-b2b-site.home .hp-brand-pill:hover,
  body.hp-b2b-site.home .hp-btn:hover {
    transform: none !important;
  }
}

/* =========================================================
   Catalog Display Refresh
   Shopline-like structure adapted to Ashachar brand colors.
   ========================================================= */

.hp-landing--catalog,
.hp-archive-display {
  background:
    radial-gradient(circle at top right, rgba(255, 107, 44, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(245, 184, 74, 0.12), transparent 24%),
    linear-gradient(180deg, #fbf7f1 0%, #f7f2ea 42%, #fffdf9 100%);
}

.hp-catalog-shell,
.hp-archive-shell {
  width: min(1280px, 94vw);
  margin: 0 auto;
}

.hp-landing--catalog .hp-btn-primary,
.hp-archive-display .hp-btn-primary,
.hp-shop-card .hp-btn-primary,
.hp-qo-catalog-cta {
  background: linear-gradient(135deg, var(--hp-accent), var(--hp-accent-2)) !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: 0 18px 36px rgba(255, 107, 44, 0.22) !important;
}

.hp-landing--catalog .hp-btn-secondary,
.hp-archive-display .hp-btn-secondary {
  background: rgba(255, 255, 255, 0.92) !important;
  color: var(--hp-ink) !important;
  border: 1px solid rgba(17, 24, 39, 0.1) !important;
  box-shadow: 0 10px 28px rgba(11, 15, 20, 0.08) !important;
}

.hp-catalog-hero {
  padding-top: 18px;
}

.hp-catalog-hero__surface,
.hp-archive-hero__surface {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 238, 0.98)),
    linear-gradient(120deg, rgba(255, 107, 44, 0.08), rgba(245, 184, 74, 0.05));
  box-shadow: 0 24px 70px rgba(11, 15, 20, 0.12);
}

.hp-catalog-hero__surface {
  padding: clamp(28px, 4vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.9fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: center;
}

.hp-catalog-hero__copy h1,
.hp-archive-hero__title {
  margin: 0;
  color: var(--hp-ink);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hp-catalog-hero__copy p,
.hp-archive-hero__intro {
  margin: 16px 0 0;
  max-width: 60ch;
  color: var(--hp-text-muted);
  font-size: 18px;
  line-height: 1.8;
}

.hp-catalog-hero__actions {
  margin-top: 24px;
}

.hp-catalog-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hp-catalog-hero__trust span,
.hp-catalog-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.04);
  border: 1px solid rgba(17, 24, 39, 0.08);
  color: var(--hp-ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.hp-catalog-panel {
  border-radius: 28px;
  padding: 26px;
  background: linear-gradient(160deg, #090f16 0%, #111827 100%);
  color: #f8fafc;
  box-shadow: 0 22px 48px rgba(8, 12, 18, 0.3);
}

.hp-catalog-panel__eyebrow,
.hp-archive-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(248, 250, 252, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hp-catalog-panel h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.hp-catalog-panel p {
  margin: 14px 0 0;
  color: rgba(226, 232, 240, 0.8);
  line-height: 1.8;
}

.hp-catalog-panel__stats,
.hp-archive-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.hp-catalog-stat,
.hp-archive-stat {
  border-radius: 20px;
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hp-catalog-stat strong,
.hp-archive-stat strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}

.hp-catalog-stat span,
.hp-archive-stat span {
  display: block;
  margin-top: 4px;
  color: rgba(226, 232, 240, 0.76);
  font-size: 13px;
  line-height: 1.5;
}

.hp-catalog-panel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hp-catalog-section {
  padding-top: 22px;
}

.hp-catalog-section--warm {
  padding-top: 28px;
}

.hp-section-head--inline,
.hp-archive-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.hp-catalog-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.hp-catalog-link-card {
  display: grid;
  grid-template-rows: 180px auto;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  background: rgba(255, 255, 255, 0.92);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(11, 15, 20, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hp-catalog-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(11, 15, 20, 0.12);
  border-color: rgba(255, 107, 44, 0.22);
}

.hp-catalog-link-card__media {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 18px;
  background:
    linear-gradient(150deg, rgba(11, 15, 20, 0.72), rgba(17, 24, 39, 0.2)),
    linear-gradient(120deg, rgba(255, 107, 44, 0.12), rgba(245, 184, 74, 0.08));
  background-position: center;
  background-size: cover;
}

.hp-catalog-link-card__placeholder {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--hp-ink);
  font-size: 12px;
  font-weight: 800;
}

.hp-catalog-link-card__body {
  display: grid;
  gap: 6px;
  padding: 16px 18px 18px;
}

.hp-catalog-link-card__body strong {
  font-size: 20px;
  line-height: 1.2;
  color: var(--hp-ink);
}

.hp-catalog-link-card__body span {
  font-size: 14px;
  color: var(--hp-text-muted);
}

.hp-catalog-rail {
  display: flex !important;
  gap: 18px;
  margin: 18px 0 0 !important;
  padding: 0 0 6px !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.hp-catalog-rail::-webkit-scrollbar {
  display: none;
}

.hp-catalog-rail > li {
  flex: 0 0 clamp(250px, 28vw, 320px);
  width: auto !important;
  margin: 0 !important;
  scroll-snap-align: start;
}

.hp-display-product-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 0 !important;
}

.hp-display-product-grid > li {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
}

.hp-shop-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 100%;
  border-radius: 24px !important;
  border: 1px solid rgba(17, 24, 39, 0.08) !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 18px 38px rgba(11, 15, 20, 0.09) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease !important;
}

.hp-shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 54px rgba(11, 15, 20, 0.12) !important;
  border-color: rgba(255, 107, 44, 0.18) !important;
}

.hp-shop-card__media {
  min-height: 240px;
  background:
    linear-gradient(145deg, rgba(255, 250, 245, 0.92), rgba(247, 242, 234, 0.98)),
    linear-gradient(120deg, rgba(255, 107, 44, 0.08), rgba(245, 184, 74, 0.08));
}

.hp-shop-card__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 20px;
}

.hp-shop-card__thumb img,
.hp-shop-card__image,
.hp-shop-card img {
  width: 100%;
  height: 220px;
  object-fit: contain !important;
  mix-blend-mode: multiply;
}

.hp-shop-card__body {
  display: grid;
  gap: 12px;
  padding: 18px !important;
}

.hp-shop-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.hp-shop-card__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(11, 15, 20, 0.05);
  color: var(--hp-ink);
  font-size: 12px;
  font-weight: 800;
}

.hp-shop-card__chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.hp-shop-card__chip.is-instock {
  background: rgba(22, 163, 74, 0.12);
  color: #166534;
}

.hp-shop-card__chip.is-backorder {
  background: rgba(255, 107, 44, 0.12);
  color: #b45309;
}

.hp-shop-card__title,
.hp-shop-card__title a {
  color: var(--hp-ink);
  text-decoration: none;
  font-size: 18px !important;
  line-height: 1.25;
}

.hp-shop-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--hp-text-muted);
  font-size: 13px !important;
}

.hp-shop-card__footer {
  margin-top: auto;
}

.hp-shop-card__cta {
  width: 100%;
  justify-content: center;
}

.hp-qo-catalog-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px !important;
  font-weight: 800 !important;
}

.hp-catalog-process {
  border-radius: 30px;
  border: 1px solid rgba(17, 24, 39, 0.07);
  background: rgba(255, 255, 255, 0.88);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 18px 44px rgba(11, 15, 20, 0.08);
}

.hp-catalog-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.hp-catalog-step {
  border-radius: 24px;
  padding: 24px;
  background: linear-gradient(160deg, #0a1018 0%, #111827 100%);
  color: #f8fafc;
  box-shadow: 0 22px 46px rgba(8, 12, 18, 0.25);
}

.hp-catalog-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hp-accent), var(--hp-accent-2));
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(255, 107, 44, 0.3);
}

.hp-catalog-step h3 {
  margin: 16px 0 8px;
  color: #fff;
  font-size: 22px;
}

.hp-catalog-step p {
  margin: 0;
  color: rgba(226, 232, 240, 0.78);
  line-height: 1.7;
}

.hp-catalog-final {
  padding-bottom: 40px;
}

.hp-catalog-final__surface {
  overflow: hidden;
  border-radius: 34px;
  padding: clamp(30px, 5vw, 54px);
  background:
    radial-gradient(circle at top right, rgba(255, 107, 44, 0.26), transparent 30%),
    linear-gradient(145deg, #04070d 0%, #0b1220 42%, #13233b 100%);
  box-shadow: 0 34px 78px rgba(3, 7, 13, 0.38);
}

.hp-catalog-final__surface h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
}

.hp-catalog-final__surface p {
  margin: 16px 0 0;
  max-width: 58ch;
  color: rgba(226, 232, 240, 0.82);
  font-size: 18px;
  line-height: 1.8;
}

.hp-catalog-final__surface .hp-actions {
  margin-top: 26px;
}

.hp-archive-shell {
  padding-top: 18px;
  padding-bottom: 40px;
}

.hp-archive-hero__surface {
  padding: clamp(24px, 4vw, 34px);
}

.hp-archive-hero__title {
  font-size: clamp(32px, 4vw, 52px);
}

.hp-archive-hero__intro {
  font-size: 16px;
  line-height: 1.7;
}

.hp-archive-crumbs {
  margin-bottom: 14px;
  color: var(--hp-text-muted);
  font-size: 13px;
}

.hp-archive-hero__head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.hp-archive-hero__copy {
  display: grid;
  gap: 0;
}

.hp-archive-hero__eyebrow {
  color: var(--hp-accent);
  margin-bottom: 10px;
}

.hp-archive-hero__stats {
  align-self: stretch;
  margin-top: 0;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(160deg, #08172e 0%, #10376d 100%);
  box-shadow: 0 22px 46px rgba(8, 23, 46, 0.22);
}

.hp-archive-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hp-archive-stat strong,
.hp-archive-stat span {
  color: #fff;
}

.hp-archive-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hp-archive-hero__back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--hp-ink);
  font-weight: 700;
  text-decoration: none;
}

.hp-archive-hero__section {
  margin-top: 24px;
}

.hp-archive-hero__section-head h2 {
  margin: 0 0 12px;
  color: var(--hp-ink);
  font-size: 22px;
}

.hp-archive-hero__section-head p {
  margin: -2px 0 16px;
  color: var(--hp-text-muted);
  font-size: 14px;
  font-weight: 600;
}

.hp-archive-quicknav,
.hp-archive-featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.hp-archive-quicknav__card,
.hp-archive-featured__card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  background: rgba(255, 255, 255, 0.86);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(11, 15, 20, 0.06);
}

.hp-archive-quicknav__thumb,
.hp-archive-featured__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 250, 245, 0.94), rgba(247, 242, 234, 0.98)),
    linear-gradient(120deg, rgba(255, 107, 44, 0.08), rgba(245, 184, 74, 0.06));
  background-position: center;
  background-size: cover;
}

.hp-archive-featured__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hp-archive-quicknav__thumb span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--hp-ink);
  font-size: 11px;
  font-weight: 800;
}

.hp-archive-quicknav__body,
.hp-archive-featured__body {
  display: grid;
  gap: 4px;
}

.hp-archive-quicknav__body strong,
.hp-archive-featured__body strong {
  color: var(--hp-ink);
  font-size: 16px;
  line-height: 1.35;
}

.hp-archive-quicknav__body span,
.hp-archive-featured__body span {
  color: var(--hp-text-muted);
  font-size: 13px;
}

.hp-archive-toolbar {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 20px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 30px rgba(11, 15, 20, 0.05);
}

.hp-archive-toolbar__summary {
  color: var(--hp-text-muted);
  font-weight: 700;
}

.hp-archive-toolbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hp-archive-toolbar__app {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 107, 44, 0.12);
  color: var(--hp-accent);
  font-weight: 800;
  text-decoration: none;
}

.hp-archive-sort select {
  min-height: 42px;
  min-width: 190px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: #fff;
  color: var(--hp-ink);
  padding: 0 16px;
}

.hp-archive-layout {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 22px;
  margin-top: 22px;
  align-items: start;
}

.hp-archive-layout__sidebar #shop-sidebar.sidebar-inner {
  display: grid;
  gap: 14px;
  position: sticky;
  top: calc(var(--hp-appbar-height, 88px) + 18px);
  border-radius: 22px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(11, 15, 20, 0.07);
  padding: 18px;
}

.hp-archive-sidecard__section {
  display: grid;
  gap: 12px;
}

.hp-archive-sidecard__section .widget-title {
  margin: 0;
}

.hp-archive-sidecard__section--app {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(8, 23, 46, 0.98), rgba(16, 55, 109, 0.94));
  color: #f8fafc;
}

.hp-archive-sidecard__section--app p {
  margin: 0;
  color: rgba(241, 245, 249, 0.82);
  font-size: 14px;
  line-height: 1.7;
}

.hp-archive-sidecard__section--app .hp-archive-toolbar__app {
  justify-content: center;
  background: #fff;
  color: var(--hp-ink);
}

.hp-archive-fallback-nav {
  display: grid;
  gap: 10px;
}

.hp-archive-fallback-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.04);
  color: var(--hp-ink);
  text-decoration: none;
  font-weight: 700;
}

.hp-archive-layout__results .products {
  margin-top: 0 !important;
}

.hp-archive-pagination {
  margin-top: 22px;
}

.hp-catalog-empty {
  margin-top: 18px;
  color: var(--hp-text-muted);
}

@media (max-width: 1100px) {
  .hp-catalog-hero__surface,
  .hp-archive-hero__head,
  .hp-archive-layout {
    grid-template-columns: 1fr;
  }

  .hp-archive-layout__sidebar #shop-sidebar.sidebar-inner {
    position: static;
    top: auto;
  }
}

@media (max-width: 768px) {
  .hp-catalog-hero__surface,
  .hp-archive-hero__surface,
  .hp-catalog-process,
  .hp-catalog-final__surface {
    border-radius: 24px;
  }

  .hp-catalog-panel,
  .hp-catalog-step {
    border-radius: 22px;
  }

  .hp-catalog-panel__stats,
  .hp-archive-hero__stats,
  .hp-catalog-steps {
    grid-template-columns: 1fr;
  }

  .hp-catalog-links-grid,
  .hp-archive-quicknav,
  .hp-archive-featured {
    grid-template-columns: 1fr;
  }

  .hp-catalog-rail > li {
    flex-basis: min(82vw, 300px);
  }

  .hp-shop-card__media,
  .hp-shop-card__thumb {
    min-height: 210px;
  }

  .hp-shop-card__thumb img,
  .hp-shop-card img {
    height: 190px;
  }
}

/* Header pass 2: closer to Shopline structure while preserving Ashachar palette */
body.hp-b2b-site {
  --hp-appbar-height: 116px;
}

.hp-appbar {
  background: rgba(255, 253, 249, 0.94) !important;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08) !important;
  box-shadow: 0 18px 42px rgba(11, 15, 20, 0.08) !important;
  backdrop-filter: blur(18px);
}

.hp-appbar-inner {
  max-width: 1320px;
  grid-template-columns: 220px minmax(360px, 1fr) 280px;
  gap: 18px;
  padding: 10px 22px 8px;
  align-items: center;
}

.hp-appbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.hp-appbar-logo {
  color: var(--hp-ink) !important;
  font-size: 22px;
  font-weight: 900;
}

.hp-appbar-logo::after {
  width: 52px;
  bottom: -10px;
}

.hp-menu-toggle {
  color: var(--hp-ink) !important;
  background: rgba(17, 24, 39, 0.04) !important;
  border: 1px solid rgba(17, 24, 39, 0.08) !important;
  border-radius: 999px;
  padding: 8px 14px;
}

.hp-appbar-search {
  background: #fff !important;
  border: 1px solid rgba(17, 24, 39, 0.08) !important;
  box-shadow: 0 10px 28px rgba(11, 15, 20, 0.06);
  color: var(--hp-ink) !important;
  min-height: 52px;
  padding: 8px 10px 8px 14px;
}

.hp-search-label {
  color: var(--hp-text-muted) !important;
}

.hp-appbar-search input[type="search"] {
  color: var(--hp-ink) !important;
}

.hp-appbar-search input::placeholder {
  color: #94a3b8 !important;
}

.hp-appbar-search button {
  min-height: 38px;
  padding-inline: 18px;
}

.hp-appbar-actions {
  justify-content: flex-end;
}

.hp-appbar-link {
  color: var(--hp-ink) !important;
  background: rgba(17, 24, 39, 0.04);
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.hp-appbar-link:hover {
  background: rgba(255, 107, 44, 0.08) !important;
  color: var(--hp-accent) !important;
}

.hp-appbar-login {
  border-color: rgba(255, 107, 44, 0.22) !important;
  background: rgba(255, 107, 44, 0.08) !important;
  color: #9a3412 !important;
}

.hp-appbar-cta {
  box-shadow: 0 10px 26px rgba(22, 163, 74, 0.18);
}

.hp-quickcats {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 22px 12px;
  background: transparent !important;
  border-bottom: 0 !important;
  gap: 12px;
}

.hp-quickcats a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(17, 24, 39, 0.08) !important;
  box-shadow: 0 8px 20px rgba(11, 15, 20, 0.04);
  font-size: 13px;
  font-weight: 700;
}

.hp-quickcats a:hover {
  background: rgba(255, 107, 44, 0.08) !important;
  color: var(--hp-accent) !important;
}

.hp-quickcats a.is-active {
  background: linear-gradient(135deg, var(--hp-accent), var(--hp-accent-2)) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 14px 26px rgba(255, 107, 44, 0.2);
}

.hp-quickcats .hp-quickcats-more {
  background: rgba(11, 15, 20, 0.92) !important;
  color: #fff !important;
}

body.hp-b2b-site #wrapper,
body.hp-b2b-site .main {
  padding-top: calc(var(--hp-appbar-height) + 16px) !important;
}

@media (max-width: 1023px) {
  body.hp-b2b-site {
    --hp-appbar-height: 132px;
  }

  .hp-appbar-inner {
    grid-template-columns: auto 1fr auto;
    padding: 10px 14px 8px;
  }

  .hp-appbar-search {
    grid-column: 1 / -1;
    order: 3;
  }

  .hp-appbar-actions {
    gap: 8px;
  }

  .hp-appbar-actions .hp-appbar-link.hp-link-primary {
    display: none;
  }

  .hp-quickcats {
    padding: 0 14px 10px;
  }
}

@media (max-width: 768px) {
  body.hp-b2b-site {
    --hp-appbar-height: 146px;
  }

  .hp-appbar-logo {
    font-size: 18px;
  }

  .hp-appbar-search {
    min-height: auto;
    padding: 10px;
    gap: 8px;
    flex-wrap: wrap;
    border-radius: 20px;
  }

  .hp-search-select {
    flex: 1 1 100%;
  }

  .hp-appbar-search input[type="search"] {
    flex: 1 1 140px;
    min-width: 0;
  }

  .hp-appbar-search button {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   Homepage + single product pass 3
   Closer to Shopline structure, adapted to Ashachar colors.
   ========================================================= */

.hp-catalog-strip-sec {
  padding-top: 20px;
}

.hp-catalog-strip {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  padding-bottom: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.hp-catalog-strip::-webkit-scrollbar {
  display: none;
}

.hp-catalog-strip__pill {
  flex: 0 0 auto;
  min-width: 190px;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.94);
  color: var(--hp-ink);
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(11, 15, 20, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.hp-catalog-strip__pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(11, 15, 20, 0.12);
  border-color: rgba(255, 107, 44, 0.18);
}

.hp-catalog-strip__pill strong {
  font-size: 17px;
  line-height: 1.2;
}

.hp-catalog-strip__pill span {
  color: var(--hp-text-muted);
  font-size: 13px;
}

.hp-catalog-strip__pill--hot,
.hp-catalog-strip__pill--accent {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 238, 0.98)),
    linear-gradient(120deg, rgba(255, 107, 44, 0.14), rgba(245, 184, 74, 0.08));
}

.hp-catalog-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.hp-catalog-promo-card {
  display: grid;
  gap: 10px;
  min-height: 220px;
  padding: 26px;
  border-radius: 28px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 24px 56px rgba(8, 12, 18, 0.24);
}

.hp-catalog-promo-card--catalog {
  background: linear-gradient(155deg, #0b1220 0%, #10203a 100%);
}

.hp-catalog-promo-card--app {
  background: linear-gradient(155deg, #c55317 0%, #ef7b2d 100%);
}

.hp-catalog-promo-card--service {
  background: linear-gradient(155deg, #1c2433 0%, #334155 100%);
}

.hp-catalog-promo-card__eyebrow {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hp-catalog-promo-card strong {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
}

.hp-catalog-promo-card__cta {
  margin-top: auto;
  font-weight: 800;
}

body.hp-b2b-site.single-product .product-main .product-gallery {
  position: sticky;
  top: calc(var(--hp-appbar-height, 116px) + 18px);
}

body.hp-b2b-site.single-product .product-info.summary {
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 50px rgba(11, 15, 20, 0.09);
}

body.hp-b2b-site.single-product .product-info.summary > * {
  margin-bottom: 0 !important;
}

body.hp-b2b-site.single-product .product-info.summary .product-title {
  font-size: clamp(30px, 2.8vw, 46px);
  line-height: 1.04;
}

body.hp-b2b-site.single-product .product-info.summary .woocommerce-product-details__short-description {
  color: var(--hp-text-muted);
  font-size: 17px;
  line-height: 1.8;
}

body.hp-b2b-site.single-product .product-info.summary .product_meta {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-top: 0;
  border-top: 0;
}

body.hp-b2b-site.single-product .product-info.summary .product_meta > span {
  display: flex;
  align-items: center;
  min-height: 48px;
  margin: 0 !important;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.04);
  border: 1px solid rgba(17, 24, 39, 0.08);
}

body.hp-b2b-site.single-product .hp-catalog-purchase-card {
  display: grid;
  gap: 12px;
  margin-top: 6px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 238, 0.96)),
    linear-gradient(120deg, rgba(255, 107, 44, 0.1), rgba(245, 184, 74, 0.08));
  border: 1px solid rgba(255, 107, 44, 0.16);
  box-shadow: 0 18px 40px rgba(255, 107, 44, 0.12);
}

body.hp-b2b-site.single-product .hp-catalog-purchase-card__eyebrow {
  color: var(--hp-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.hp-b2b-site.single-product .hp-catalog-purchase-card h3 {
  margin: 0;
  color: var(--hp-ink);
  font-size: 24px;
  line-height: 1.2;
}

body.hp-b2b-site.single-product .hp-catalog-purchase-card p {
  margin: 0;
  color: var(--hp-text-muted);
  line-height: 1.8;
}

body.hp-b2b-site.single-product .hp-catalog-purchase-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.hp-b2b-site.single-product .hp-catalog-purchase-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.05);
  color: var(--hp-ink);
  font-size: 13px;
  font-weight: 700;
}

body.hp-b2b-site.single-product .hp-catalog-purchase-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.hp-b2b-site.single-product .hp-qo-catalog-cta,
body.hp-b2b-site.single-product .hp-qo-catalog-ghost {
  min-width: 210px;
}

body.hp-b2b-site.single-product .hp-qo-catalog-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--hp-ink);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(11, 15, 20, 0.08);
}

body.hp-b2b-site.single-product .hp-external-sku-image,
body.hp-b2b-site.single-product .hp-external-sku-image a {
  display: block;
}

body.hp-b2b-site.single-product .hp-external-sku-image img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain;
  margin: 0 auto;
}

body.hp-b2b-site.single-product .product-images.has-hp-external-sku-image,
body.hp-b2b-site.single-product .product-images.has-hp-external-sku-image .woocommerce-product-gallery__wrapper,
body.hp-b2b-site.single-product .product-images.has-hp-external-sku-image .woocommerce-product-gallery__image,
body.hp-b2b-site.single-product .product-images.has-hp-external-sku-image .flickity-viewport,
body.hp-b2b-site.single-product .product-images.has-hp-external-sku-image .flickity-slider {
  height: auto !important;
  max-height: none !important;
  min-height: 0 !important;
}

body.hp-b2b-site.single-product .product-images.has-hp-external-sku-image {
  align-self: flex-start;
  flex: 0 0 auto;
  overflow: visible !important;
  background: linear-gradient(180deg, #fff 0%, #f6f1ea 100%);
  box-shadow: 0 22px 46px rgba(11, 15, 20, 0.08);
}

body.hp-b2b-site.single-product .product-images.has-hp-external-sku-image .woocommerce-product-gallery__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(100%, 620px);
  margin: 0 auto;
}

body.hp-b2b-site.single-product .product-images.has-hp-external-sku-image .woocommerce-product-gallery__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: static !important;
  background: transparent;
}

body.hp-b2b-site.single-product .product-images.has-hp-external-sku-image .flickity-viewport,
body.hp-b2b-site.single-product .product-images.has-hp-external-sku-image .flickity-slider {
  position: static !important;
  transform: none !important;
  width: 100%;
}

body.hp-b2b-site.single-product .product-images.has-hp-external-sku-image .flickity-prev-next-button,
body.hp-b2b-site.single-product .product-images.has-hp-external-sku-image + .product-thumbnails {
  display: none !important;
}

body.hp-b2b-site.single-product .product-images.has-hp-external-sku-image-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0 !important;
  padding: 18px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(11, 15, 20, 0.08);
}

body.hp-b2b-site.single-product .product-images.has-hp-external-sku-image-simple .woocommerce-product-gallery__wrapper {
  width: 100%;
}

body.hp-b2b-site.single-product .product-images.has-hp-external-sku-image-simple .hp-external-sku-image img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(72vh, 760px);
}

body.hp-b2b-site.single-product .product-images.has-hp-external-sku-image .hp-external-sku-image img {
  width: auto !important;
  max-width: min(100%, 560px) !important;
  max-height: min(72vh, 760px) !important;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 34px rgba(15, 42, 86, 0.12));
}

@media (max-width: 768px) {
  .hp-catalog-promo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  body.hp-b2b-site.single-product .product-main .product-gallery {
    position: static;
    top: auto;
  }

  body.hp-b2b-site.single-product .product-info.summary {
    padding: 20px 16px;
    border-radius: 22px;
  }

  body.hp-b2b-site.single-product .product-info.summary .product_meta {
    grid-template-columns: 1fr;
  }

  body.hp-b2b-site.single-product .hp-catalog-purchase-card {
    padding: 18px;
    border-radius: 20px;
  }

  body.hp-b2b-site.single-product .hp-catalog-purchase-card__actions {
    flex-direction: column;
  }

  body.hp-b2b-site.single-product .hp-qo-catalog-cta,
  body.hp-b2b-site.single-product .hp-qo-catalog-ghost {
    width: 100%;
    min-width: 0;
  }
}

/* =========================================================
   Archive + header pass 4
   ========================================================= */

.hp-archive-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hp-archive-hero__chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.04);
  border: 1px solid rgba(17, 24, 39, 0.08);
  color: var(--hp-ink);
  font-size: 13px;
  font-weight: 700;
}

.hp-archive-quicknav,
.hp-archive-featured {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.hp-archive-quicknav {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.hp-archive-quicknav__card,
.hp-archive-featured__card {
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 16px 36px rgba(11, 15, 20, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.hp-archive-quicknav__card:hover,
.hp-archive-featured__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(11, 15, 20, 0.12);
  border-color: rgba(255, 107, 44, 0.18);
}

.hp-archive-hero__section--categories .hp-archive-quicknav__card {
  grid-template-columns: 108px 1fr;
  min-height: 124px;
  border-color: rgba(255, 107, 44, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 242, 0.96));
}

.hp-archive-hero__section--categories .hp-archive-quicknav__thumb {
  height: 108px;
  border-radius: 20px;
}

.hp-archive-hero__section--categories .hp-archive-quicknav__body strong {
  font-size: 17px;
}

.hp-archive-hero__section--categories .hp-archive-quicknav__body span {
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .hp-archive-quicknav {
    grid-template-columns: 1fr;
  }
}

.hp-archive-toolbar {
  position: sticky;
  top: calc(var(--hp-appbar-height, 116px) + 12px);
  z-index: 15;
  margin-top: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.hp-archive-toolbar__summary {
  color: var(--hp-ink);
}

.hp-archive-toolbar__app {
  background: linear-gradient(135deg, rgba(255, 107, 44, 0.12), rgba(245, 184, 74, 0.14));
  color: var(--hp-accent-dark, var(--hp-accent));
}

.hp-archive-layout {
  margin-top: 26px;
  gap: 26px;
}

.hp-archive-layout__results .products.hp-display-product-grid {
  gap: 22px;
}

body.hp-b2b-site {
  --hp-appbar-height: 108px;
}

.hp-appbar {
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 16px 44px rgba(11, 15, 20, 0.08) !important;
}

.hp-appbar-inner {
  max-width: 1320px;
  grid-template-columns: minmax(220px, 1fr) minmax(420px, 760px) minmax(220px, 1fr);
  gap: 16px;
  padding: 8px 22px 6px;
}

.hp-appbar-search {
  min-height: 50px;
  border-radius: 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hp-appbar-search:focus-within {
  border-color: rgba(255, 107, 44, 0.28) !important;
  box-shadow: 0 0 0 4px rgba(255, 107, 44, 0.1), 0 18px 42px rgba(11, 15, 20, 0.09);
}

.hp-appbar-search button,
.hp-appbar-link,
.hp-appbar-cta {
  min-height: 40px;
}

.hp-appbar-actions {
  gap: 10px;
}

.hp-quickcats {
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 22px 10px;
}

.hp-quickcats::-webkit-scrollbar {
  display: none;
}

.hp-quickcats a {
  flex: 0 0 auto;
  border-radius: 999px;
}

body.hp-b2b-site #wrapper,
body.hp-b2b-site .main {
  padding-top: calc(var(--hp-appbar-height) + 12px) !important;
}

@media (max-width: 1023px) {
  body.hp-b2b-site {
    --hp-appbar-height: 126px;
  }

  .hp-archive-toolbar {
    position: static;
    top: auto;
  }

  .hp-appbar-inner {
    grid-template-columns: auto 1fr auto;
  }
}

@media (max-width: 768px) {
  body.hp-b2b-site {
    --hp-appbar-height: 140px;
  }

  .hp-archive-hero__chips {
    gap: 8px;
  }

  .hp-archive-hero__chip {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  body.hp-b2b-site.single-product .product-main .row.content-row {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "info" !important;
  }

  body.hp-b2b-site.single-product .product-info {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.hp-b2b-site.single-product .product-info > * {
    grid-column: auto !important;
    width: 100% !important;
  }

  body.hp-b2b-site.single-product .product-info .product-gallery,
  body.hp-b2b-site.single-product .product-gallery {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    flex: 0 0 auto !important;
  }

  body.hp-b2b-site.single-product .product-info .product-gallery {
    order: 3 !important;
  }

  body.hp-b2b-site.single-product .product-images {
    min-height: 0 !important;
  }
}

/* =========================================================
   Header + Footer polish
   ========================================================= */

body.hp-b2b-site .hp-appbar {
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 34px rgba(11, 15, 20, 0.06) !important;
  backdrop-filter: blur(14px);
}

body.hp-b2b-site .hp-appbar-inner {
  padding: 10px 22px 8px;
}

body.hp-b2b-site .hp-appbar-brand {
  align-items: center;
  gap: 10px;
}

body.hp-b2b-site .hp-appbar-brand-copy {
  display: grid;
  gap: 2px;
}

body.hp-b2b-site .hp-appbar-tagline {
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

body.hp-b2b-site .hp-appbar-search {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.96));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

body.hp-b2b-site .hp-quickcats {
  padding: 0 22px 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

body.hp-b2b-site .hp-quickcats a {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

body.hp-b2b-site .footer-wrapper {
  background: linear-gradient(180deg, #0b1725 0%, #0e1c2d 100%);
}

body.hp-b2b-site .absolute-footer {
  background: linear-gradient(180deg, #0d1724, #101c2a);
  padding: 22px 0 18px;
}

body.hp-b2b-site .absolute-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

body.hp-b2b-site .absolute-footer .payment-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

body.hp-b2b-site .absolute-footer .payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 28px;
  padding: 0 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.hp-b2b-site .copyright-footer {
  font-size: 13px;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  body.hp-b2b-site .hp-appbar-tagline {
    display: none;
  }

  body.hp-b2b-site .absolute-footer .container {
    justify-content: center;
    text-align: center;
  }
}

.hp-home-2026 {
  --hp-home-blue: #1f4f96;
  --hp-home-blue-deep: #10376d;
  --hp-home-cream: #f8f4ee;
}

.hp-home-2026__shell {
  max-width: 1320px;
  margin: 0 auto;
}

.hp-home-2026 .hp-section {
  padding: 22px 20px !important;
}

.hp-home-2026__hero {
  padding-top: 18px !important;
}

.hp-home-hero-2026__surface {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.82fr);
  gap: 26px;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--hp-home-blue-deep), var(--hp-home-blue));
  box-shadow: 0 28px 60px rgba(16, 55, 109, 0.24);
  color: #fff;
}

.hp-home-hero-2026__eyebrow,
.hp-home-final-2026__eyebrow,
.hp-home-2026__section-kicker {
  display: inline-flex;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp-home-hero-2026__copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.hp-home-hero-2026__copy h1 span {
  display: block;
}

.hp-home-hero-2026__intro {
  margin: 16px 0 0;
  max-width: 60ch;
  color: rgba(240, 247, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

.hp-home-hero-2026__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hp-home-hero-2026__proofs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hp-home-hero-2026__proofs span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  background: rgba(9, 20, 39, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.hp-home-hero-2026__proofs strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #f97316;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  flex: 0 0 28px;
}

.hp-home-hero-2026__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hp-home-hero-2026__chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.hp-home-hero-2026__panel {
  border-radius: 28px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.hp-home-hero-2026__panel-eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.hp-home-hero-2026__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hp-home-hero-2026__stat {
  border-radius: 18px;
  padding: 16px 12px;
  background: rgba(9, 20, 39, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hp-home-hero-2026__stat strong {
  display: block;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.hp-home-hero-2026__stat span {
  display: block;
  margin-top: 5px;
  color: rgba(230, 239, 251, 0.84);
  font-size: 12px;
  line-height: 1.45;
}

.hp-home-hero-2026__panel-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.hp-home-hero-2026__panel-links a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--hp-home-blue-deep);
  text-decoration: none;
  font-weight: 800;
}

.hp-home-2026__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.hp-home-2026__head h2 {
  margin: 0;
  color: var(--hp-ink);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.hp-home-2026__head p {
  margin: 8px 0 0;
  color: var(--hp-text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.hp-home-2026__head-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  color: var(--hp-ink);
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.hp-home-category-2026__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.hp-home-category-2026__card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 10px 24px rgba(11, 15, 20, 0.05);
  color: inherit;
  text-decoration: none;
}

.hp-home-category-2026__thumb {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 250, 245, 0.94), rgba(247, 242, 234, 0.98));
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.hp-home-category-2026__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-home-category-2026__thumb img[data-hp-lazy-src],
.hp-home-card__media-image[data-hp-lazy-src] {
  opacity: 0;
}

.hp-home-category-2026__thumb img.is-loaded,
.hp-home-card__media-image.is-loaded {
  opacity: 1;
  transition: opacity 0.18s ease;
}

.hp-home-category-2026__body {
  display: grid;
  gap: 4px;
}

.hp-home-category-2026__body strong {
  color: var(--hp-ink);
  font-size: 16px;
  line-height: 1.25;
}

.hp-home-category-2026__body span {
  color: var(--hp-text-muted);
  font-size: 12px;
}

.hp-home-surface-2026 {
  border-radius: 28px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.hp-home-2026__head--surface {
  margin-bottom: 18px;
}

.hp-home-2026__section-kicker {
  color: #f97316;
  margin-bottom: 10px;
}

.hp-home-products-2026__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hp-home-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 24px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.hp-home-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 16px;
  background: linear-gradient(180deg, #f1f5f9 0%, #e6edf5 100%);
}

.hp-home-card__media-image {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: contain;
  object-position: center 54%;
}

.hp-home-card__body {
  display: grid;
  gap: 8px;
  padding: 14px 14px 16px;
}

.hp-home-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.hp-home-card__eyebrow,
.hp-home-card__sku {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.hp-home-card__eyebrow {
  background: rgba(15, 118, 110, 0.12);
  color: #0f766e;
}

.hp-home-card__sku {
  background: rgba(17, 24, 39, 0.06);
  color: #1f2937;
}

.hp-home-card__title,
.hp-home-card__title a {
  margin: 0;
  color: var(--hp-ink);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
}

.hp-home-card__footer {
  margin-top: auto;
}

.hp-home-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hp-home-blue-deep), var(--hp-home-blue));
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.hp-home-final-2026__surface {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px 30px;
  border-radius: 30px;
  background: linear-gradient(140deg, #071426 0%, #10376d 100%);
  box-shadow: 0 24px 54px rgba(7, 20, 38, 0.24);
}

.hp-home-final-2026__surface h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.08;
}

.hp-home-final-2026__surface p {
  margin: 12px 0 0;
  color: rgba(231, 238, 247, 0.82);
  font-size: 16px;
  line-height: 1.7;
}

.hp-home-final-2026__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1200px) {
  .hp-home-category-2026__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hp-home-products-2026__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hp-home-2026 .hp-section {
    padding: 18px 16px !important;
  }

  .hp-home-hero-2026__surface,
  .hp-home-final-2026__surface,
  .hp-home-2026__head {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hp-home-hero-2026__surface {
    padding: 24px;
    gap: 18px;
  }

  .hp-home-hero-2026__proofs {
    grid-template-columns: 1fr;
  }

  .hp-home-hero-2026__stats {
    grid-template-columns: 1fr;
  }

  .hp-home-category-2026__grid,
  .hp-home-products-2026__grid {
    grid-template-columns: 1fr;
  }

  .hp-home-category-2026__card {
    grid-template-columns: 64px 1fr;
  }

  .hp-home-card__media {
    min-height: 200px;
  }

  .hp-home-card__media-image {
    height: 170px;
  }

  .hp-home-final-2026__surface {
    padding: 24px;
  }
}

/* =========================================================
   Single Product Catalog Rewrite
   ========================================================= */

.hp-single-2026 {
  background:
    radial-gradient(circle at top right, rgba(255, 107, 44, 0.08), transparent 26%),
    linear-gradient(180deg, #fbf7f1 0%, #f7f2ea 44%, #fffdf9 100%);
}

.hp-single-2026__shell {
  width: min(1280px, 94vw);
  margin: 0 auto 40px;
  padding: 18px 0 8px;
}

.hp-single-2026__breadcrumbs {
  margin-bottom: 14px;
}

.hp-single-2026__crumbs {
  color: var(--hp-text-muted);
  font-size: 13px;
}

.hp-single-2026__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 420px);
  grid-template-areas: "gallery summary";
  gap: 24px;
  direction: ltr;
  align-items: start;
}

.hp-single-2026__gallery,
.hp-single-2026__summary {
  min-width: 0;
}

.hp-single-2026__gallery {
  grid-area: gallery;
}

.hp-single-2026__summary {
  grid-area: summary;
  direction: rtl;
  text-align: right;
  display: grid;
  gap: 18px;
  align-content: start;
}

.hp-single-2026__gallery-frame,
.hp-single-2026__summary-head,
.hp-single-2026__details,
.hp-single-2026__related {
  border-radius: 28px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.08);
}

.hp-single-2026__gallery-frame {
  min-height: 640px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, #f8fafc 0%, #eef4f9 100%);
}

.hp-single-2026__image {
  width: 100%;
  max-width: 720px;
  max-height: 560px;
  height: auto;
  object-fit: contain;
}

.hp-single-2026__summary-head {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.hp-single-2026__eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 107, 44, 0.1);
  color: var(--hp-accent);
  font-size: 12px;
  font-weight: 800;
  align-items: center;
}

.hp-single-2026__title {
  margin: 0;
  color: var(--hp-ink);
  font-size: clamp(30px, 3.1vw, 42px);
  line-height: 1.15;
}

.hp-single-2026__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hp-single-2026__chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  color: var(--hp-ink);
  font-size: 12px;
  font-weight: 800;
}

.hp-single-2026__chip.is-instock {
  background: rgba(22, 163, 74, 0.12);
  color: #166534;
}

.hp-single-2026__chip.is-backorder {
  background: rgba(255, 107, 44, 0.12);
  color: #b45309;
}

.hp-single-2026__intro {
  margin: 0;
  color: var(--hp-text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.hp-single-2026__purchase-card {
  margin: 0;
}

.hp-single-2026__details,
.hp-single-2026__related {
  margin-top: 24px;
  padding: 24px;
}

.hp-single-2026__section-head {
  margin-bottom: 16px;
}

.hp-single-2026__section-head h2 {
  margin: 0;
  color: var(--hp-ink);
  font-size: 28px;
  line-height: 1.15;
}

.hp-single-2026__description {
  color: #334155;
  font-size: 16px;
  line-height: 1.9;
}

.hp-single-2026__description > *:first-child {
  margin-top: 0;
}

.hp-single-2026__description > *:last-child {
  margin-bottom: 0;
}

.hp-single-2026__related .products {
  margin: 0 !important;
}

.hp-single-2026__related .products > li {
  list-style: none;
}

@media (max-width: 1023px) {
  .hp-single-2026__hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "summary"
      "gallery";
  }

  .hp-single-2026__gallery-frame {
    min-height: 360px;
    padding: 18px;
  }

  .hp-single-2026__summary-head,
  .hp-single-2026__details,
  .hp-single-2026__related {
    padding: 18px;
  }

  .hp-single-2026__section-head h2 {
    font-size: 24px;
  }
}

/* =========================================================
   Final Catalog Polish
   ========================================================= */

body.hp-b2b-site .hp-home-2026 .hp-section {
  padding: 18px 18px !important;
}

body.hp-b2b-site .hp-home-2026__hero {
  padding-top: 12px !important;
}

body.hp-b2b-site .hp-home-hero-2026__surface {
  gap: 22px;
  padding: 28px;
}

body.hp-b2b-site .hp-home-2026__head {
  margin-bottom: 12px;
}

body.hp-b2b-site .hp-home-surface-2026 {
  padding: 20px;
}

body.hp-b2b-site .hp-home-products-2026__grid {
  gap: 12px;
}

body.hp-b2b-site .hp-home-card__media {
  min-height: 224px;
  padding: 14px;
}

body.hp-b2b-site .hp-home-card__media-image {
  height: 194px;
}

body.hp-b2b-site .hp-home-card__body {
  padding: 12px 12px 14px;
}

body.hp-b2b-site .hp-home-final-2026__surface {
  padding: 24px 26px;
}

body.hp-b2b-site .hp-archive-hero__surface {
  padding: 24px;
}

body.hp-b2b-site .hp-archive-hero__head {
  gap: 20px;
}

body.hp-b2b-site .hp-archive-hero__section {
  margin-top: 18px;
}

body.hp-b2b-site .hp-archive-quicknav,
body.hp-b2b-site .hp-archive-featured {
  gap: 12px;
}

body.hp-b2b-site .hp-archive-quicknav__card,
body.hp-b2b-site .hp-archive-featured__card {
  padding: 12px;
}

body.hp-b2b-site .hp-archive-toolbar {
  margin-top: 18px;
}

body.hp-b2b-site .hp-archive-layout {
  margin-top: 20px;
  gap: 20px;
}

body.hp-b2b-site .hp-archive-layout__results .products.hp-display-product-grid {
  gap: 18px;
}

body.hp-b2b-site .hp-archive-sidecard__section {
  padding: 16px;
}

@media (max-width: 900px) {
  body.hp-b2b-site .hp-home-2026 .hp-section {
    padding: 14px 14px !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__surface,
  body.hp-b2b-site .hp-home-final-2026__surface,
  body.hp-b2b-site .hp-home-surface-2026 {
    padding: 18px;
  }
}

/* =========================================================
   Catalog Utility Pages
   ========================================================= */

.hp-catalog-page,
.hp-gateway-page {
  padding: 28px 0 40px;
}

.hp-catalog-page__shell,
.hp-gateway-page__shell {
  width: min(1320px, calc(100vw - 32px));
  margin: 0 auto;
}

.hp-catalog-page__hero,
.hp-gateway-page__surface {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, .9fr);
  gap: 22px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 107, 44, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.hp-gateway-page__surface {
  grid-template-columns: 1fr;
  max-width: 940px;
}

.hp-catalog-page__eyebrow,
.hp-gateway-page__eyebrow,
.hp-catalog-page__kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  padding: 0 14px;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 107, 44, 0.12);
  color: var(--hp-accent);
  font-size: 12px;
  font-weight: 800;
}

.hp-catalog-page__title,
.hp-gateway-page__title {
  margin: 12px 0 0;
  color: var(--hp-ink);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.hp-catalog-page__lead,
.hp-gateway-page__copy {
  margin: 16px 0 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.9;
}

.hp-catalog-page__actions,
.hp-gateway-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hp-catalog-page__stats {
  display: grid;
  gap: 12px;
}

.hp-catalog-stat,
.hp-catalog-bulletbox {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.hp-catalog-stat strong {
  display: block;
  color: var(--hp-ink);
  font-size: 26px;
  line-height: 1;
}

.hp-catalog-stat span,
.hp-catalog-bulletbox li,
.hp-gateway-page__meta,
.hp-gateway-page__meta a {
  color: #475569;
  font-size: 14px;
  line-height: 1.8;
}

.hp-catalog-bulletbox strong {
  display: block;
  color: var(--hp-ink);
  margin-bottom: 10px;
  font-size: 18px;
}

.hp-catalog-bulletbox ul {
  margin: 0;
  padding: 0 18px 0 0;
}

.hp-catalog-page__section {
  margin-top: 26px;
}

.hp-catalog-page__section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.hp-catalog-page__section-head h2 {
  margin: 8px 0 0;
  color: var(--hp-ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.hp-link-arrow {
  color: var(--hp-ink);
  font-weight: 800;
}

.hp-catalog-page__featured-grid,
.hp-catalog-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hp-catalog-featured-card,
.hp-catalog-category-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
  text-decoration: none;
}

.hp-catalog-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hp-catalog-featured-card__media,
.hp-catalog-category-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
  overflow: hidden;
}

.hp-catalog-featured-card__media img,
.hp-catalog-category-card__media img {
  width: 100%;
  height: 118px;
  object-fit: contain;
}

.hp-catalog-featured-card__fallback,
.hp-catalog-category-card__fallback {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: var(--hp-ink);
  font-size: 24px;
  font-weight: 800;
}

.hp-catalog-featured-card__body,
.hp-catalog-category-card__body {
  display: grid;
  gap: 6px;
}

.hp-catalog-featured-card__body strong,
.hp-catalog-category-card__body strong {
  color: var(--hp-ink);
  font-size: 18px;
  line-height: 1.35;
}

.hp-catalog-featured-card__body small,
.hp-catalog-category-card__body small {
  color: #64748b;
  font-size: 13px;
}

.hp-gateway-page__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hp-catalog-page__section--products .products.hp-display-product-grid {
  gap: 18px;
}

@media (max-width: 1023px) {
  .hp-catalog-page,
  .hp-gateway-page {
    padding-top: 18px;
  }

  .hp-catalog-page__shell,
  .hp-gateway-page__shell {
    width: min(100vw - 24px, 1320px);
  }

  .hp-catalog-page__hero,
  .hp-gateway-page__surface,
  .hp-catalog-featured-card,
  .hp-catalog-category-card {
    grid-template-columns: 1fr;
  }

  .hp-catalog-page__hero,
  .hp-gateway-page__surface {
    padding: 22px 18px;
  }

  .hp-catalog-page__featured-grid,
  .hp-catalog-category-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile production guardrail: prevent horizontal crop on public showcase pages. */
@media (max-width: 700px) {
  html,
  body,
  body.hp-b2b-site,
  body.hp-b2b-site #wrapper,
  body.hp-b2b-site #main,
  body.hp-b2b-site .main,
  body.hp-b2b-site .page-wrapper,
  .hp-home-2026,
  .hp-single-2026,
  .hp-catalog-page,
  .hp-gateway-page {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box;
  }

  body.hp-b2b-site #wrapper,
  body.hp-b2b-site .main {
    padding-top: 0 !important;
  }

  body.hp-b2b-site .hp-appbar-inner,
  body.hp-b2b-site .hp-quickcats {
    max-width: 100vw !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }

  body.hp-b2b-site .hp-home-2026 .hp-section {
    padding: 14px 0 !important;
  }

  body.hp-b2b-site .hp-home-2026__shell,
  body.hp-b2b-site .hp-single-2026__shell,
  body.hp-b2b-site .hp-catalog-page__shell,
  body.hp-b2b-site .hp-gateway-page__shell {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 14px !important;
    box-sizing: border-box;
  }

  body.hp-b2b-site .hp-home-hero-2026__surface,
  body.hp-b2b-site .hp-home-final-2026__surface,
  body.hp-b2b-site .hp-home-surface-2026,
  body.hp-b2b-site .hp-single-2026__summary-head,
  body.hp-b2b-site .hp-single-2026__gallery-frame,
  body.hp-b2b-site .hp-single-2026__details,
  body.hp-b2b-site .hp-single-2026__related,
  body.hp-b2b-site.single-product .hp-catalog-purchase-card,
  body.hp-b2b-site .hp-catalog-page__hero,
  body.hp-b2b-site .hp-gateway-page__surface {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    border-radius: 20px;
  }

  body.hp-b2b-site .hp-home-hero-2026__surface {
    grid-template-columns: minmax(0, 1fr) !important;
    padding: 20px 18px !important;
    gap: 18px !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__panel {
    display: none;
  }

  body.hp-b2b-site .hp-single-2026__hero {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__copy h1,
  body.hp-b2b-site .hp-single-2026__title,
  body.hp-b2b-site .hp-catalog-page__title,
  body.hp-b2b-site .hp-gateway-page__title {
    font-size: clamp(27px, 8vw, 34px) !important;
    line-height: 1.16 !important;
    letter-spacing: 0 !important;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  body.hp-b2b-site .hp-home-hero-2026__intro,
  body.hp-b2b-site .hp-single-2026__intro,
  body.hp-b2b-site .hp-catalog-page__lead,
  body.hp-b2b-site .hp-gateway-page__lead {
    max-width: 100% !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
    overflow-wrap: anywhere;
  }

  body.hp-b2b-site .hp-home-hero-2026__actions,
  body.hp-b2b-site.single-product .hp-catalog-purchase-card__actions,
  body.hp-b2b-site .hp-home-final-2026__actions,
  body.hp-b2b-site .hp-catalog-page__actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100%;
  }

  body.hp-b2b-site .hp-home-hero-2026__actions .button,
  body.hp-b2b-site.single-product .hp-catalog-purchase-card__actions .button,
  body.hp-b2b-site .hp-home-final-2026__actions .button,
  body.hp-b2b-site .hp-catalog-page__actions .button {
    width: 100%;
    text-align: center;
  }

  body.hp-b2b-site .hp-home-category-2026__card {
    grid-template-columns: 58px minmax(0, 1fr) !important;
    border-radius: 18px;
  }

  body.hp-b2b-site .hp-home-category-2026__thumb {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  body.hp-b2b-site .hp-home-card__media {
    min-height: 176px !important;
  }

  body.hp-b2b-site .hp-home-card__media-image {
    height: 152px !important;
  }

  body.hp-b2b-site .hp-single-2026__gallery-frame {
    min-height: 280px !important;
    padding: 16px !important;
  }

  body.hp-b2b-site .hp-single-2026__image {
    max-height: 260px !important;
  }
}

/* Mobile visual polish: denser header, calmer hero, and tighter product pages. */
@media (max-width: 700px) {
  body.hp-b2b-site {
    --hp-appbar-height: 118px !important;
  }

  body.hp-b2b-site .hp-appbar {
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08) !important;
  }

  body.hp-b2b-site .hp-appbar-inner {
    gap: 8px !important;
    padding: 8px 12px 6px !important;
  }

  body.hp-b2b-site .hp-appbar-brand {
    gap: 8px !important;
  }

  body.hp-b2b-site .hp-appbar-logo {
    font-size: 18px !important;
    line-height: 1.1 !important;
  }

  body.hp-b2b-site .hp-appbar-tagline,
  body.hp-b2b-site .hp-search-label,
  body.hp-b2b-site .hp-search-select,
  body.hp-b2b-site .hp-appbar-actions {
    display: none !important;
  }

  body.hp-b2b-site .hp-menu-toggle {
    width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 !important;
    justify-content: center !important;
    font-size: 18px !important;
  }

  body.hp-b2b-site .hp-menu-toggle span {
    display: none !important;
  }

  body.hp-b2b-site .hp-appbar-search {
    min-height: 42px !important;
    padding: 5px !important;
    gap: 6px !important;
    border-radius: 14px !important;
  }

  body.hp-b2b-site .hp-appbar-search input[type="search"] {
    min-width: 0 !important;
    height: 34px !important;
    font-size: 14px !important;
  }

  body.hp-b2b-site .hp-appbar-search button {
    width: auto !important;
    min-height: 34px !important;
    padding: 0 13px !important;
    border-radius: 12px !important;
    font-size: 13px !important;
  }

  body.hp-b2b-site .hp-quickcats {
    gap: 8px !important;
    padding: 6px 12px 8px !important;
    border-top: 0 !important;
  }

  body.hp-b2b-site .hp-quickcats a {
    min-height: 34px !important;
    padding: 0 13px !important;
    font-size: 13px !important;
    box-shadow: none !important;
  }

  body.hp-b2b-site .hp-home-2026__hero {
    padding-top: 6px !important;
  }

  body.hp-b2b-site .hp-home-2026 .hp-section {
    padding: 10px 0 !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__surface {
    gap: 14px !important;
    padding: 18px 16px !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, #183d6d 0%, #245a96 100%) !important;
    box-shadow: 0 16px 34px rgba(16, 55, 109, 0.18) !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__eyebrow,
  body.hp-b2b-site .hp-home-final-2026__eyebrow,
  body.hp-b2b-site .hp-home-2026__section-kicker {
    margin-bottom: 8px !important;
    font-size: 11px !important;
    letter-spacing: 0.03em !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__copy h1,
  body.hp-b2b-site .hp-catalog-page__title,
  body.hp-b2b-site .hp-gateway-page__title {
    font-size: clamp(26px, 7.2vw, 30px) !important;
    line-height: 1.18 !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__intro,
  body.hp-b2b-site .hp-catalog-page__lead,
  body.hp-b2b-site .hp-gateway-page__lead {
    margin-top: 12px !important;
    font-size: 14px !important;
    line-height: 1.62 !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__actions,
  body.hp-b2b-site .hp-home-final-2026__actions,
  body.hp-b2b-site .hp-catalog-page__actions {
    gap: 10px !important;
    margin-top: 16px !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__actions .button,
  body.hp-b2b-site .hp-home-final-2026__actions .button,
  body.hp-b2b-site .hp-catalog-page__actions .button {
    min-height: 44px !important;
    border-radius: 14px !important;
    padding: 0 14px !important;
    font-size: 15px !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__chips {
    display: none !important;
  }

  body.hp-b2b-site .hp-home-2026__head {
    display: grid !important;
    gap: 8px !important;
    margin-bottom: 10px !important;
  }

  body.hp-b2b-site .hp-home-2026__head h2 {
    font-size: clamp(25px, 7vw, 31px) !important;
    line-height: 1.12 !important;
  }

  body.hp-b2b-site .hp-home-2026__head p {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  body.hp-b2b-site .hp-home-surface-2026,
  body.hp-b2b-site .hp-home-final-2026__surface,
  body.hp-b2b-site .hp-catalog-page__hero,
  body.hp-b2b-site .hp-gateway-page__surface {
    padding: 16px !important;
    border-radius: 18px !important;
  }

  body.hp-b2b-site .hp-home-category-2026__card {
    padding: 12px !important;
  }

  body.hp-b2b-site .hp-home-category-2026__card h3 {
    font-size: 16px !important;
    line-height: 1.25 !important;
  }

  body.hp-b2b-site .hp-home-category-2026__card p,
  body.hp-b2b-site .hp-home-card__body p,
  body.hp-b2b-site .hp-home-final-2026__surface p {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  body.hp-b2b-site .hp-single-2026 {
    padding-top: 6px !important;
  }

  body.hp-b2b-site .hp-single-2026__hero {
    gap: 12px !important;
  }

  body.hp-b2b-site .hp-single-2026__summary-head,
  body.hp-b2b-site .hp-single-2026__details,
  body.hp-b2b-site .hp-single-2026__related,
  body.hp-b2b-site.single-product .hp-catalog-purchase-card {
    padding: 16px !important;
    border-radius: 18px !important;
  }

  body.hp-b2b-site .hp-single-2026__summary-head {
    gap: 10px !important;
  }

  body.hp-b2b-site .hp-single-2026__title {
    font-size: clamp(22px, 6.2vw, 28px) !important;
    line-height: 1.22 !important;
  }

  body.hp-b2b-site .hp-single-2026__intro,
  body.hp-b2b-site .hp-single-2026__description,
  body.hp-b2b-site.single-product .hp-catalog-purchase-card p {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  body.hp-b2b-site .hp-single-2026__gallery-frame {
    min-height: 220px !important;
    padding: 14px !important;
  }

  body.hp-b2b-site .hp-single-2026__image {
    max-height: 210px !important;
  }

  body.hp-b2b-site.single-product .hp-catalog-purchase-card h3 {
    font-size: 22px !important;
    line-height: 1.22 !important;
  }

  body.hp-b2b-site.single-product .hp-catalog-purchase-card__meta span,
  body.hp-b2b-site .hp-single-2026__chip {
    min-height: 30px !important;
    padding: 0 10px !important;
    font-size: 12px !important;
  }

  body.hp-b2b-site.single-product .hp-catalog-purchase-card__actions .button {
    min-height: 44px !important;
    border-radius: 14px !important;
    padding: 0 14px !important;
    font-size: 14px !important;
  }

  body.hp-b2b-site .hp-single-2026__details,
  body.hp-b2b-site .hp-single-2026__related {
    margin-top: 14px !important;
  }

  body.hp-b2b-site .hp-single-2026__section-head h2,
  body.hp-b2b-site .hp-catalog-page__section-head h2 {
    font-size: 22px !important;
    line-height: 1.18 !important;
  }

  body .uwy,
  body [class*="userway"],
  body .pojo-a11y-toolbar-toggle,
  body .acsb-trigger,
  body button[aria-label="נגישות"],
  body button[title="נגישות"] {
    top: auto !important;
    right: auto !important;
    bottom: 20px !important;
    left: 12px !important;
    transform: scale(0.78) !important;
    transform-origin: bottom right !important;
  }
}

@media (max-width: 420px) {
  body.hp-b2b-site .hp-home-hero-2026__copy h1,
  body.hp-b2b-site .hp-catalog-page__title,
  body.hp-b2b-site .hp-gateway-page__title {
    font-size: 26px !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__intro,
  body.hp-b2b-site .hp-single-2026__intro {
    font-size: 13.5px !important;
  }
}

/* Mobile redesign pass: remove squeezed desktop chrome and use a calmer app-like first screen. */
@media (max-width: 700px) {
  html,
  body,
  body.hp-b2b-site {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body.hp-b2b-site {
    --hp-appbar-height: 62px !important;
    background: #f5f7fa !important;
  }

  body.hp-b2b-site .hp-appbar {
    position: sticky !important;
    top: 0 !important;
    background: rgba(255, 255, 255, 0.97) !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.07) !important;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05) !important;
  }

  body.hp-b2b-site .hp-appbar-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 62px !important;
    padding: 8px 14px !important;
    box-sizing: border-box !important;
  }

  body.hp-b2b-site .hp-appbar-brand {
    min-width: 0 !important;
    width: 100% !important;
    justify-content: space-between !important;
  }

  body.hp-b2b-site .hp-appbar-brand-copy {
    align-items: flex-start !important;
    text-align: right !important;
  }

  body.hp-b2b-site .hp-appbar-logo {
    font-size: 18px !important;
    font-weight: 900 !important;
    color: #111827 !important;
  }

  body.hp-b2b-site .hp-menu-toggle {
    order: 2 !important;
    width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    border-radius: 999px !important;
    background: #f8fafc !important;
    border: 1px solid rgba(15, 23, 42, 0.1) !important;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06) !important;
  }

  body.hp-b2b-site .hp-appbar-search,
  body.hp-b2b-site .hp-quickcats {
    display: none !important;
  }

  body.hp-b2b-site .hp-home-2026 {
    background: #f5f7fa !important;
  }

  body.hp-b2b-site .hp-home-2026 .hp-section {
    padding: 12px 0 !important;
  }

  body.hp-b2b-site .hp-home-2026__shell {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 14px !important;
    box-sizing: border-box !important;
  }

  body.hp-b2b-site .hp-home-2026__hero {
    padding-top: 12px !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__surface {
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    padding: 22px 18px 18px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    background:
      linear-gradient(90deg, #f97316 0 72px, #1d4ed8 72px 100%) top right / 100% 5px no-repeat,
      linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%) !important;
    color: #111827 !important;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08) !important;
    box-sizing: border-box !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__copy {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__eyebrow {
    margin: 0 0 10px !important;
    color: #f97316 !important;
    font-size: 11px !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__copy h1 {
    width: 100% !important;
    max-width: 100% !important;
    color: #111827 !important;
    font-size: clamp(25px, 7vw, 30px) !important;
    line-height: 1.14 !important;
    font-weight: 900 !important;
    text-wrap: balance;
    text-align: center !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__intro {
    max-width: 100% !important;
    margin-top: 12px !important;
    color: #475569 !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
    text-align: center !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-top: 18px !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__actions a:nth-child(2) {
    display: inline-flex !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__actions a:nth-child(3) {
    display: none !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__actions a:nth-child(4) {
    grid-column: 1 / -1 !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__actions .hp-btn,
  body.hp-b2b-site .hp-home-hero-2026__actions .button {
    width: 100% !important;
    min-height: 44px !important;
    padding: 0 12px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    box-shadow: none !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__actions .hp-btn-primary,
  body.hp-b2b-site .hp-home-hero-2026__actions .primary {
    background: #f97316 !important;
    color: #fff !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__actions .hp-btn-secondary,
  body.hp-b2b-site .hp-home-hero-2026__actions .is-outline {
    background: #fff !important;
    border: 1px solid rgba(15, 23, 42, 0.12) !important;
    color: #111827 !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__proofs {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
    margin-top: 14px !important;
    padding: 8px !important;
    border-radius: 14px !important;
    background: #f1f5f9 !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__proofs span {
    min-height: 34px !important;
    padding: 0 10px !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: #111827 !important;
    font-size: 12.5px !important;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.04) !important;
  }

  body.hp-b2b-site .hp-home-hero-2026__proofs strong {
    width: 24px !important;
    height: 24px !important;
    flex-basis: 24px !important;
    font-size: 11px !important;
  }

  body.hp-b2b-site .hp-home-2026__head {
    margin: 4px 0 12px !important;
    text-align: right !important;
  }

  body.hp-b2b-site .hp-home-2026__head h2 {
    font-size: 25px !important;
    line-height: 1.15 !important;
  }

  body.hp-b2b-site .hp-home-2026__head p {
    color: #475569 !important;
    font-size: 14px !important;
  }

  body.hp-b2b-site .hp-home-categories-2026__grid,
  body.hp-b2b-site .hp-home-category-2026__grid,
  body.hp-b2b-site .hp-home-2026__categories-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  body.hp-b2b-site .hp-home-category-2026__card {
    min-height: 138px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-content: center !important;
    justify-items: center !important;
    gap: 9px !important;
    padding: 14px 10px !important;
    border-radius: 16px !important;
    text-align: center !important;
    background: #fff !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05) !important;
  }

  body.hp-b2b-site .hp-home-category-2026__thumb {
    width: 58px !important;
    height: 58px !important;
    border-radius: 14px !important;
  }

  body.hp-b2b-site .hp-home-category-2026__card h3 {
    margin: 0 !important;
    font-size: 14.5px !important;
    line-height: 1.25 !important;
  }

  body.hp-b2b-site .hp-home-category-2026__card p {
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
  }

  body.hp-b2b-site.single-product .hp-breadcrumbs,
  body.hp-b2b-site.single-product .hp-single-2026__breadcrumbs {
    display: none !important;
  }

  body.hp-b2b-site.single-product .hp-single-2026 {
    background: #f5f7fa !important;
  }

  body.hp-b2b-site.single-product .product-container,
  body.hp-b2b-site.single-product .hp-single-2026__shell {
    padding-inline: 14px !important;
  }

  body.hp-b2b-site.single-product .product-main {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.hp-b2b-site.single-product .hp-single-2026__summary-head,
  body.hp-b2b-site.single-product .hp-single-2026__gallery-frame,
  body.hp-b2b-site.single-product .hp-catalog-purchase-card {
    border-radius: 18px !important;
    background: #fff !important;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06) !important;
  }

  body.hp-b2b-site.single-product .hp-single-2026__summary-head {
    padding: 18px !important;
  }

  body.hp-b2b-site.single-product .hp-catalog-purchase-card {
    border: 1px solid rgba(249, 115, 22, 0.16) !important;
  }

  body.hp-b2b-site .page-header-excerpt {
    display: none !important;
  }

  body.hp-b2b-site .hp-about-page {
    gap: 16px !important;
  }

  body.hp-b2b-site .hp-about-hero {
    position: relative !important;
    overflow: hidden !important;
    padding: 22px 18px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    background:
      linear-gradient(90deg, #f97316 0 72px, #1d4ed8 72px 100%) top right / 100% 5px no-repeat,
      linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%) !important;
    color: #111827 !important;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08) !important;
  }

  body.hp-b2b-site .hp-about-hero .hp-public-eyebrow,
  body.hp-b2b-site .hp-public-eyebrow {
    margin: 0 0 10px !important;
    padding: 0 !important;
    background: transparent !important;
    color: #c2410c !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  body.hp-b2b-site .hp-about-hero h1 {
    color: #111827 !important;
    font-size: clamp(27px, 7.4vw, 31px) !important;
    line-height: 1.14 !important;
    margin-bottom: 12px !important;
  }

  body.hp-b2b-site .hp-about-hero p,
  body.hp-b2b-site .hp-public-card p {
    color: #475569 !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  body.hp-b2b-site .hp-public-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-top: 18px !important;
  }

  body.hp-b2b-site .hp-public-actions br {
    display: none !important;
  }

  body.hp-b2b-site .hp-public-actions .button,
  body.hp-b2b-site .hp-public-actions .hp-btn {
    width: 100% !important;
    min-height: 44px !important;
    border-radius: 12px !important;
    padding: 0 12px !important;
    font-size: 14px !important;
  }

  body.hp-b2b-site .hp-public-band,
  body.hp-b2b-site .hp-about-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  body.hp-b2b-site .hp-public-stat,
  body.hp-b2b-site .hp-public-card {
    padding: 18px !important;
    border-radius: 18px !important;
    background: #fff !important;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06) !important;
  }

  body.hp-b2b-site .hp-public-card h2 {
    font-size: 22px !important;
    line-height: 1.18 !important;
  }

  body.hp-b2b-site .hp-public-list li,
  body.hp-b2b-site .hp-public-steps > div {
    padding: 13px 14px !important;
    border-radius: 14px !important;
  }
}

@media (max-width: 360px) {
  body.hp-b2b-site .hp-home-hero-2026__actions {
    grid-template-columns: 1fr !important;
  }

  body.hp-b2b-site .hp-home-categories-2026__grid,
  body.hp-b2b-site .hp-home-category-2026__grid,
  body.hp-b2b-site .hp-home-2026__categories-grid {
    grid-template-columns: 1fr !important;
  }

  body.hp-b2b-site .hp-public-actions {
    grid-template-columns: 1fr !important;
  }
}
