/**
 * OG Print Theme — storefront styles
 * Visual shell for Omaha Graphix + OG Print Engine compatibility.
 */

:root {
  --og-brand: #006cff;
  --og-brand-dark: #0052c3;
  --og-brand-soft: #eef5ff;
  --og-ink: #07142b;
  --og-muted: #64748b;
  --og-line: #dbe6f3;
  --og-card: #ffffff;
  --og-bg: #f7faff;
  --og-bg-soft: #f4f8fc;
  --og-radius-lg: 24px;
  --og-radius-md: 16px;
  --og-radius-sm: 12px;
  --og-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --og-shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
  --og-shadow-hover: 0 24px 60px rgba(15, 23, 42, 0.12);
  --og-container: min(1320px, calc(100vw - 48px));
  --og-font: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --og-scrollbar-size: 8px;
  --og-scrollbar-thumb: var(--og-brand);
  --og-scrollbar-thumb-hover: var(--og-brand-dark);
  --og-scrollbar-track: var(--og-bg-soft);
  --og-gradient-hero:
    radial-gradient(ellipse 58% 52% at 88% 42%, rgba(0, 108, 255, 0.11), transparent 68%),
    radial-gradient(ellipse 42% 38% at 12% 18%, rgba(148, 190, 255, 0.10), transparent 62%),
    linear-gradient(165deg, #ffffff 0%, #f7faff 48%, #eef4fb 100%);
  --og-gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 252, 0.98) 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--og-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--og-ink);
  background: var(--og-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--og-brand);
  text-decoration: none;
}

a:hover {
  color: var(--og-brand-dark);
}

.og-site-container {
  width: var(--og-container);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.og-skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 99999;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 16px;
  background: #fff;
  border: 2px solid var(--og-brand);
  border-radius: 10px;
}

/* ==========================================================
   Header
========================================================== */

.og-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

body.admin-bar .og-site-header,
html.admin-bar .og-site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .og-site-header,
  html.admin-bar .og-site-header {
    top: 46px;
  }
}

body.og-header-scrolled .og-site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(219, 230, 243, 0.95);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.og-site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.og-site-nav-wrap {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: flex-end;
}

.og-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.og-header-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--og-ink);
  font-weight: 800;
  font-size: 0.88rem;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.og-header-cart:hover {
  border-color: var(--og-brand);
  color: var(--og-brand);
}

.og-header-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--og-brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1;
}

.og-site-branding {
  /*
   * Desktop: do not let flex shrink the brand box during first layout.
   * A shrinking percentage-based width was causing Chrome to rasterize the
   * horizontal logo against a transient size (blur until resize).
   */
  flex: 0 0 auto;
  min-width: auto;
  max-width: none;
}

/* Mobile-only drawer utilities — never show in desktop header. */
.og-mobile-drawer-primary,
.og-mobile-quick-access {
  display: none;
}

.og-site-branding .og-site-logo-link,
.og-site-branding .custom-logo-link {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  line-height: 0;
}

.og-site-branding .og-site-logo,
.og-site-branding .custom-logo {
  display: block;
  /* Stable intrinsic-ratio contract: fixed height, width from aspect ratio.
   * Avoids width:100% + forced-height / max-width:100% against flex. */
  width: 400px;
  height: auto;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 980px) {
  .og-site-branding {
    flex: 0 1 auto;
    min-width: 0;
    max-width: min(300px, 50vw);
  }

  .og-site-branding .og-site-logo,
  .og-site-branding .custom-logo {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 46px;
  }
}

@media (max-width: 720px) {
  .og-site-branding {
    max-width: min(248px, calc(100vw - 108px));
  }

  .og-site-branding .og-site-logo,
  .og-site-branding .custom-logo {
    max-height: 40px;
  }
}

.og-site-title {
  font-size: 1.18rem;
  font-weight: 900;
  color: var(--og-ink);
  letter-spacing: -0.03em;
}

.og-site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.og-nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.og-nav-menu li {
  margin: 0;
}

.og-nav-menu a {
  color: rgba(7, 20, 43, 0.82);
  font-weight: 700;
  font-size: 0.92rem;
  transition: color 0.18s ease;
}

.og-nav-menu a:hover,
.og-nav-menu .current-menu-item > a,
.og-nav-menu .current_page_item > a {
  color: var(--og-brand);
}

.og-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--og-line);
  border-radius: 12px;
  background: #fff;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.og-nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--og-ink);
  border-radius: 999px;
}

.og-mobile-bottom-nav {
  display: none;
}

.og-mobile-bottom-nav-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.og-mobile-bottom-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  min-height: 64px;
  padding: 8px 4px 10px;
  border: 0;
  background: transparent;
  color: #64748b;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease;
}

.og-mobile-bottom-nav-link:hover,
.og-mobile-bottom-nav-link:focus-visible {
  color: var(--og-brand, #006cff);
  outline: none;
}

.og-mobile-bottom-nav-link.is-active {
  color: var(--og-brand, #006cff);
}

.og-mobile-bottom-nav-menu.is-active,
.og-mobile-bottom-nav-menu.is-open {
  color: var(--og-brand, #006cff);
  background: rgba(0, 108, 255, 0.1);
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(0, 108, 255, 0.14);
}

.og-mobile-bottom-nav-icon-close {
  display: none;
}

.og-mobile-bottom-nav-menu.is-active .og-mobile-bottom-nav-icon-menu,
.og-mobile-bottom-nav-menu.is-open .og-mobile-bottom-nav-icon-menu {
  display: none;
}

.og-mobile-bottom-nav-menu.is-active .og-mobile-bottom-nav-icon-close,
.og-mobile-bottom-nav-menu.is-open .og-mobile-bottom-nav-icon-close {
  display: block;
}

.og-mobile-bottom-nav-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.og-mobile-bottom-nav-icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.og-mobile-bottom-nav-label {
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.og-mobile-bottom-nav-badge {
  position: absolute;
  top: -4px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--og-brand, #006cff);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 16px;
  text-align: center;
  box-shadow: 0 0 0 2px #fff;
}

@media (max-width: 820px) {
  :root {
    --og-mobile-bottom-nav-offset: calc(64px + env(safe-area-inset-bottom, 0px));
    --og-mobile-assistant-bottom: calc(var(--og-mobile-bottom-nav-offset) + 26px);
  }

  .og-mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99980;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid rgba(219, 230, 243, 0.95);
    box-shadow: 0 -12px 32px rgba(15, 23, 42, 0.07);
    backdrop-filter: blur(16px);
  }
}

.og-nav-menu .menu-item-has-children {
  position: relative;
}

.og-nav-menu .og-submenu-indicator {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.72;
}

.og-mega-menu-panel {
  display: none;
}

.og-mega-menu-cards {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 821px) {
  .og-site-header-inner {
    position: static;
  }

  .og-nav-menu > .og-mega-menu-parent {
    position: relative;
  }

  .og-nav-menu > .og-mega-menu-parent > .og-mega-menu-trigger {
    position: relative;
    z-index: 1002;
  }

  .og-nav-menu > .og-mega-menu-parent::after {
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    top: 100%;
    height: 18px;
    pointer-events: auto;
    background: transparent;
    opacity: 0;
  }

  .og-mega-menu-panel {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--og-header-height, 68px);
    z-index: 1001;
    padding: 18px 0 24px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(219, 230, 243, 0.95);
    border-bottom: 1px solid rgba(219, 230, 243, 0.85);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .og-mega-menu-panel::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -20px;
    height: 20px;
    pointer-events: auto;
    background: transparent;
  }

  .og-mega-menu-parent.is-mega-open > .og-mega-menu-panel,
  .og-mega-menu-parent:focus-within > .og-mega-menu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .og-mega-menu-parent.is-mega-open::after {
    opacity: 1;
  }

  .og-mega-menu-panel-inner {
    padding-top: 6px;
    padding-bottom: 4px;
  }

  .og-mega-menu-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
    gap: 28px;
    align-items: start;
  }

  .og-mega-menu-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .og-mega-menu-card-item {
    margin: 0;
  }

  .og-mega-menu-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 92px;
    padding: 14px 16px;
    border: 1px solid #e3ebf7;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 1px 2px rgba(15, 39, 71, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }

  .og-mega-menu-card:hover,
  .og-mega-menu-card:focus-visible {
    border-color: #8bb8ff;
    box-shadow: 0 12px 28px rgba(0, 108, 255, 0.1);
    transform: translateY(-1px);
    outline: none;
  }

  .og-mega-menu-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    overflow: hidden;
    border-radius: 16px;
    background: #eef5ff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  }

  .og-mega-menu-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .og-mega-menu-card-media.is-placeholder {
    background: linear-gradient(145deg, #eef5ff 0%, #dbeafe 100%);
  }

  .og-mega-menu-card-icon {
    color: #1d4ed8;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
  }

  .og-mega-menu-card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }

  .og-mega-menu-card-title {
    color: #07142b;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.3;
  }

  .og-mega-menu-card-desc {
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.45;
  }

  .og-mega-menu-card-badge {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 2px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #eef5ff;
    color: #1d4ed8;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.02em;
  }

  .og-mega-menu-featured {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: start;
    height: auto;
    max-height: none;
    gap: 10px;
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    border: 1px solid #dbeafe;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .og-mega-menu-featured-eyebrow {
    margin: 0;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .og-mega-menu-featured-title {
    margin: 0;
    color: #07142b;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
  }

  .og-mega-menu-featured-text {
    margin: 0;
    color: #64748b;
    font-size: 0.86rem;
    line-height: 1.6;
  }

  .og-mega-menu-featured-cta {
    align-self: flex-start;
    margin-top: 4px;
    min-height: 42px;
    padding-inline: 18px;
    font-size: 0.86rem;
  }

  .og-mega-menu-trigger:focus-visible {
    outline: 2px solid rgba(0, 108, 255, 0.35);
    outline-offset: 4px;
    border-radius: 8px;
  }
}

@media (min-width: 821px) and (max-width: 1080px) {
  .og-mega-menu-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .og-mega-menu-layout {
    grid-template-columns: 1fr;
  }

  .og-mega-menu-featured {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .og-mega-menu-featured-cta {
    margin-left: auto;
  }
}

@media (min-width: 821px) and (max-width: 980px) {
  .og-mega-menu-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    min-height: 0;
  }

  .og-mega-menu-card-media {
    width: 100%;
    height: 88px;
  }
}

/* ==========================================================
   Buttons
========================================================== */

.og-button,
.button:not(.show-password-input),
.woocommerce a.button:not(.show-password-input),
.woocommerce button.button:not(.show-password-input),
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.94rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/*
 * Global OG mobile tap interaction.
 * Clears the browser rectangular flash on intentional CTAs/controls.
 * Does NOT convert every bare <button> into an OG CTA — password
 * visibility toggles (.show-password-input) stay icon-sized.
 */
button:not(.show-password-input),
input[type="submit"],
input[type="button"],
input[type="reset"],
a.button,
a.woocommerce-button,
a.woocommerce-Button,
.woocommerce-button,
.woocommerce-Button,
.button:not(.show-password-input),
.og-button,
[role="button"]:not(.show-password-input),
.og-header-cta,
.og-header-sign-in,
.og-header-account-toggle,
.og-account-auth-tab,
.og-cart-checkout,
.og-cart-continue,
.og-cart-empty-cta,
.og-cart-floating-total-action,
.og-cart-inline-primary,
.og-cart-inline-secondary,
.og-cart-remove,
.og-checkout-submit,
.og-contact-submit,
.og-quote-submit,
.og-home-hero-cta,
.og-shop-explore,
.og-mobile-menu-close,
.og-mobile-menu-bottom a,
.og-mobile-menu-bottom button,
.og-mobile-bottom-nav-link,
.og-mobile-drawer-primary a,
.og-nav-toggle,
.single_add_to_cart_button,
body.og-print-theme-wc-account .woocommerce-MyAccount-navigation a,
body.og-print-theme-wc-login .og-account-auth-tab,
.og-chat-send,
.og-assistant-send,
[data-og-chat-open],
[data-og-callback-open],
[data-og-menu-close] {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

button:not(.show-password-input):active:not(:disabled):not([aria-disabled="true"]),
input[type="submit"]:active:not(:disabled),
input[type="button"]:active:not(:disabled),
.og-button:active,
.button:not(.show-password-input):active,
.woocommerce a.button:not(.show-password-input):active,
.woocommerce button.button:not(.show-password-input):active,
.woocommerce-button:active,
.og-account-auth-tab:active,
body.og-print-theme-wc-account .woocommerce-MyAccount-navigation a:active {
  transform: translateY(0) scale(0.985);
}

/* Touch tap highlight follows rounded CTAs; keep keyboard :focus-visible. */
.og-cart-checkout,
.og-cart-continue,
.og-cart-empty-cta,
.og-cart-floating-total-action,
.og-cart-inline-primary,
.og-checkout-submit,
.og-header-cta,
.og-home-hero-cta,
.og-shop-explore,
.og-contact-submit,
.og-quote-submit,
a.og-button,
button.og-button,
.single_add_to_cart_button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.og-button:focus-visible,
.button:not(.show-password-input):focus-visible,
.woocommerce a.button:not(.show-password-input):focus-visible,
.woocommerce button.button:not(.show-password-input):focus-visible,
.woocommerce input.button:focus-visible,
.woocommerce-button:focus-visible,
.single_add_to_cart_button:focus-visible,
.og-cart-checkout:focus-visible,
.og-cart-continue:focus-visible,
.og-header-cta:focus-visible,
.og-contact-submit:focus-visible,
.og-quote-submit:focus-visible,
.og-account-auth-tab:focus-visible,
.og-header-sign-in:focus-visible,
.og-header-account-toggle:focus-visible,
body.og-print-theme-wc-account .woocommerce-MyAccount-navigation a:focus-visible,
button:not(.show-password-input):focus-visible,
input[type="submit"]:focus-visible,
input[type="button"]:focus-visible {
  outline: 2px solid #0878ff;
  outline-offset: 3px;
}

/* Logout / destructive account controls keep red chrome, lose square tap flash */
body.og-print-theme-wc-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a:focus-visible {
  outline-color: #b42318;
}

.og-button:hover,
.button:not(.show-password-input):hover {
  transform: translateY(-1px);
}

.og-button-primary,
.button.alt,
.single_add_to_cart_button {
  background: linear-gradient(180deg, #0a74ff 0%, #006cff 100%);
  border-color: #006cff;
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 108, 255, 0.24);
}

.og-button-primary:hover,
.button.alt:hover,
.single_add_to_cart_button:hover {
  filter: brightness(1.03);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 108, 255, 0.28);
}

.og-button-secondary {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(219, 230, 243, 0.95);
  color: var(--og-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.og-button-secondary:hover {
  border-color: rgba(0, 108, 255, 0.35);
  color: var(--og-brand);
  background: #fff;
}

.og-header-cta {
  white-space: nowrap;
  min-height: 40px;
  padding-inline: 18px;
  font-size: 0.88rem;
}

/* ==========================================================
   Main content
========================================================== */

.og-site-main {
  padding: 28px 0 56px;
}

.og-content-wrap,
.og-woocommerce-wrap,
.og-product-page {
  padding-top: 8px;
}

.og-entry-card,
.og-empty-state {
  background: var(--og-card);
  border: 1px solid var(--og-line);
  border-radius: var(--og-radius-lg);
  box-shadow: var(--og-shadow);
  padding: 28px;
}

.og-entry-title {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.og-shop-header {
  margin-bottom: 24px;
}

.og-shop-title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

/* ==========================================================
   Homepage
========================================================== */

.og-print-theme-homepage .og-site-main {
  padding-top: 0;
}

.og-homepage {
  display: grid;
  gap: 0;
}

.og-home-eyebrow {
  margin: 0 0 10px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--og-brand);
}

.og-home-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(520px, 68vh, 680px);
  padding: 72px 0 88px;
  background: var(--og-gradient-hero);
  border-bottom: 1px solid rgba(219, 230, 243, 0.8);
  overflow: hidden;
  isolation: isolate;
}

.og-home-hero.has-print-background {
  background: #f4f7fb;
}

/* Brand energy layers — keep products readable, copy side cool-white. */
.og-home-hero.has-print-background::before,
.og-home-hero.has-print-background::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.og-home-hero.has-print-background::before {
  inset: -8% -4% -10% 35%;
  background:
    radial-gradient(ellipse 55% 60% at 78% 42%, rgba(0, 108, 255, 0.28), transparent 68%),
    radial-gradient(ellipse 42% 48% at 88% 68%, rgba(0, 196, 255, 0.18), transparent 70%),
    radial-gradient(ellipse 28% 34% at 70% 78%, rgba(232, 64, 152, 0.10), transparent 72%);
  opacity: 0.95;
}

.og-home-hero.has-print-background::after {
  top: 6%;
  right: -6%;
  width: min(46vw, 560px);
  height: min(52vw, 520px);
  border-radius: 44% 56% 48% 52%;
  background:
    linear-gradient(150deg, rgba(0, 108, 255, 0.16), rgba(0, 196, 255, 0.08) 46%, transparent 78%),
    linear-gradient(320deg, rgba(232, 64, 152, 0.08), transparent 55%);
  transform: rotate(14deg);
  filter: blur(2px);
  opacity: 0.85;
}

.og-home-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.og-home-hero-background-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Keep print products concentrated on the right half of the Hero */
  object-position: 78% center;
  border: 0;
  outline: none;
}

.og-home-hero-background-image.is-pos-left {
  object-position: 18% center;
}

.og-home-hero-background-image.is-pos-center {
  object-position: center center;
}

.og-home-hero-background-image.is-pos-right {
  object-position: 78% center;
}

.og-home-hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(247, 250, 255, 0.9) 22%,
      rgba(238, 245, 255, 0.58) 40%,
      rgba(0, 108, 255, 0.06) 52%,
      transparent 64%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.18) 0%,
      transparent 20%,
      transparent 78%,
      rgba(232, 242, 255, 0.22) 100%
    );
}

.og-home-hero.has-print-background .og-home-hero-atmosphere::before,
.og-home-hero.has-print-background .og-home-hero-atmosphere::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.og-home-hero.has-print-background .og-home-hero-atmosphere::before {
  top: 12%;
  right: 8%;
  width: min(38vw, 420px);
  height: min(38vw, 420px);
  border-radius: 42% 58% 46% 54%;
  background: radial-gradient(circle at 40% 40%, rgba(0, 196, 255, 0.16), transparent 68%);
  opacity: 0.9;
}

.og-home-hero.has-print-background .og-home-hero-atmosphere::after {
  bottom: 10%;
  right: 18%;
  width: min(26vw, 280px);
  height: min(18vw, 180px);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(232, 64, 152, 0.09), rgba(0, 108, 255, 0.06) 55%, transparent);
  transform: rotate(-12deg);
  opacity: 0.8;
}

.og-home-hero:not(.has-print-background) .og-home-hero-atmosphere {
  background:
    linear-gradient(118deg, transparent 42%, rgba(255, 255, 255, 0.55) 58%, transparent 74%),
    radial-gradient(ellipse 46% 58% at 78% 52%, rgba(0, 108, 255, 0.09), transparent 72%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 47px,
      rgba(15, 39, 71, 0.015) 47px,
      rgba(15, 39, 71, 0.015) 48px
    );
}

.og-home-hero:not(.has-print-background) .og-home-hero-atmosphere::before,
.og-home-hero:not(.has-print-background) .og-home-hero-atmosphere::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.og-home-hero:not(.has-print-background) .og-home-hero-atmosphere::before {
  top: 8%;
  right: -4%;
  width: min(48vw, 560px);
  height: min(48vw, 560px);
  border-radius: 42% 58% 48% 52%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(214, 230, 255, 0.28));
  transform: rotate(12deg);
  opacity: 0.7;
}

.og-home-hero:not(.has-print-background) .og-home-hero-atmosphere::after {
  bottom: -12%;
  right: 18%;
  width: min(34vw, 360px);
  height: min(22vw, 220px);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(186, 212, 245, 0.18));
  transform: rotate(-8deg);
  opacity: 0.55;
}

.og-home-hero-inner {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
}

.og-home-hero-copy {
  min-width: 0;
  max-width: min(820px, 100%);
  position: relative;
  z-index: 3;
}

.og-home-hero-title {
  display: block;
  margin: 0 0 18px;
  max-width: 100%;
  font-size: clamp(2.2rem, 2.4vw + 1.2rem, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--og-ink);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.og-home-hero-title span {
  display: block;
}

.og-home-hero-title--launch {
  display: block;
  max-width: 100%;
  font-size: clamp(2.2rem, 2.4vw + 1.2rem, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

@media (min-width: 1280px) {
  .og-home-hero-copy {
    max-width: min(880px, 100%);
  }

  .og-home-hero-title,
  .og-home-hero-title--launch {
    font-size: clamp(2.45rem, 1.8vw + 1.5rem, 3.15rem);
  }
}

.og-home-hero-text {
  margin: 0;
  max-width: 38rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: #F8FAFC;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
}

.og-home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.og-home-trust-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.og-home-trust-stats li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--og-muted);
  font-size: 0.86rem;
  font-weight: 800;
}

/* Legacy right-side showcase styles unused after panoramic background Hero. */
.og-home-hero-visual,
.og-home-hero-showcase,
.og-home-hero-showcase-image,
.og-home-float-card {
  display: none;
}

.og-home-section {
  padding: 88px 0;
}

.og-home-categories {
  background: var(--og-bg);
}

.og-home-steps {
  background: #fff;
  border-top: 1px solid rgba(219, 230, 243, 0.8);
}

.og-home-business {
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.og-home-why {
  background: #fff;
  border-top: 1px solid rgba(219, 230, 243, 0.8);
}

.og-home-trust-bar {
  padding: 24px 0;
  background: #fff;
  border-top: 1px solid rgba(219, 230, 243, 0.85);
  border-bottom: 1px solid rgba(219, 230, 243, 0.85);
}

.og-trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.og-trust-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.og-trust-bar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--og-brand-soft);
  color: var(--og-brand);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
}

.og-trust-bar-label {
  color: var(--og-ink);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
}

.og-home-finder {
  padding: 72px 0;
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(219, 230, 243, 0.8);
}

.og-finder-panel {
  display: grid;
  gap: 28px;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid #dce8fb;
  border-radius: 32px;
  background: linear-gradient(135deg, #fbfcfe 0%, #eef5ff 55%, #f8fbff 100%);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.og-finder-copy {
  max-width: 760px;
}

.og-finder-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.og-finder-subtitle {
  margin: 0;
  color: var(--og-muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.og-finder-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}

.og-finder-input {
  flex: 1 1 280px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid #dce8fb;
  border-radius: 16px;
  background: #fff;
  color: var(--og-ink);
  font: inherit;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.og-finder-input:focus {
  outline: none;
  border-color: var(--og-brand);
  box-shadow: 0 0 0 3px rgba(0, 108, 255, 0.12);
}

.og-finder-submit {
  flex-shrink: 0;
  min-width: 160px;
}

.og-finder-results {
  display: grid;
  gap: 14px;
}

.og-finder-results.is-visible {
  animation: og-finder-fade-in 0.35s ease;
}

.og-finder-results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.og-finder-result-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  animation: og-finder-card-in 0.4s ease both;
}

.og-finder-result-card:nth-child(2) {
  animation-delay: 0.05s;
}

.og-finder-result-card:nth-child(3) {
  animation-delay: 0.1s;
}

.og-finder-result-card:nth-child(4) {
  animation-delay: 0.15s;
}

.og-finder-result-card h3 {
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.og-finder-result-card p {
  margin: 0;
  color: var(--og-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.og-finder-result-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  color: var(--og-brand);
  font-size: 0.88rem;
  font-weight: 800;
}

.og-finder-result-link:hover {
  color: var(--og-brand-dark);
}

@keyframes og-finder-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes og-finder-card-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.og-home-testimonials {
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  border-top: 1px solid rgba(219, 230, 243, 0.8);
}

.og-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.og-testimonial-card {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 28px 24px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.og-testimonial-stars {
  color: #f59e0b;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.og-testimonial-text {
  margin: 0;
  color: var(--og-ink);
  font-size: 1rem;
  line-height: 1.65;
}

.og-testimonial-author {
  margin: 0;
  color: var(--og-muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.og-home-final-cta {
  padding: 72px 0 96px;
  background: #fff;
  border-top: 1px solid rgba(219, 230, 243, 0.8);
}

.og-final-cta-panel {
  display: grid;
  gap: 18px;
  justify-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 48px);
  border: 1px solid rgba(191, 215, 255, 0.85);
  border-radius: 32px;
  background: linear-gradient(135deg, #eef5ff 0%, #dbeafe 55%, #eef5ff 100%);
  box-shadow: 0 18px 48px rgba(0, 108, 255, 0.08);
  text-align: center;
}

.og-final-cta-title {
  margin: 0;
  max-width: 720px;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--og-ink);
}

.og-final-cta-text {
  margin: 0;
  max-width: 640px;
  color: var(--og-muted);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.7;
}

.og-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.og-final-cta-actions .og-button {
  min-width: 180px;
}

.og-section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.og-section-heading-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.og-section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.og-section-heading p:last-child {
  margin: 0 auto;
  color: var(--og-muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.og-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.og-home-categories .og-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid #dce8fb;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 14px 36px rgba(15, 39, 71, 0.07);
  color: inherit;
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 0.45s ease var(--og-card-delay, 0s),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) var(--og-card-delay, 0s),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s ease;
}

.og-home-categories .og-product-card.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.og-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid #dce8fb;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 14px 36px rgba(15, 39, 71, 0.07);
  color: inherit;
  cursor: default;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s ease;
}

.og-home-categories .og-product-card.is-revealed:hover,
.og-product-card:hover {
  transform: translate3d(0, -7px, 0);
  border-color: #bfd7ff;
  box-shadow:
    0 28px 56px rgba(15, 39, 71, 0.13),
    0 10px 24px rgba(15, 39, 71, 0.06);
  color: inherit;
}

.og-product-card-media,
.og-product-card-mockup {
  position: relative;
  display: flex;
  flex: 1 1 56%;
  align-items: center;
  justify-content: center;
  min-height: 252px;
  overflow: hidden;
  border-radius: 26px 26px 0 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0) 52%),
    radial-gradient(circle at 50% 78%, rgba(0, 108, 255, 0.05) 0%, rgba(0, 108, 255, 0) 58%),
    linear-gradient(180deg, #fbfcfe 0%, #eef5ff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -12px 30px rgba(15, 39, 71, 0.04);
}

.og-product-card-media::after {
  content: "";
  position: absolute;
  top: 14%;
  left: 50%;
  width: min(68%, 240px);
  height: 46%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 108, 255, 0.07) 0%, rgba(0, 108, 255, 0) 72%);
  transform: translateX(-50%);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.og-product-card:hover .og-product-card-media::after {
  opacity: 1.15;
  transform: translateX(-50%) scale(1.04);
}

.og-product-card-image-stack {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 252px;
  padding: 16px 18px 20px;
  box-sizing: border-box;
}

.og-product-card-image-stack::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: min(74%, 230px);
  height: min(58%, 170px);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 249, 255, 0.72) 100%);
  box-shadow:
    0 20px 36px rgba(15, 39, 71, 0.1),
    0 2px 0 rgba(255, 255, 255, 0.85) inset;
  transform: translate(-50%, -52%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.og-product-card-image-stack::after {
  content: "";
  position: absolute;
  bottom: 14%;
  left: 50%;
  z-index: 0;
  width: min(62%, 190px);
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(15, 39, 71, 0.16) 0%, rgba(15, 39, 71, 0) 72%);
  filter: blur(5px);
  transform: translateX(-50%);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.og-product-card:hover .og-product-card-image-stack::before {
  transform: translate(-50%, -54%) scale(1.02);
  box-shadow:
    0 26px 44px rgba(15, 39, 71, 0.14),
    0 2px 0 rgba(255, 255, 255, 0.9) inset;
}

.og-product-card:hover .og-product-card-image-stack::after {
  opacity: 1.1;
  transform: translateX(-50%) scale(1.06);
}

.og-product-card-image {
  position: relative;
  z-index: 2;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter:
    drop-shadow(0 16px 24px rgba(15, 39, 71, 0.12))
    drop-shadow(0 4px 10px rgba(15, 39, 71, 0.06));
  transition:
    opacity 0.4s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.38s ease;
}

/* Premium local storefront catalog photos: fill the media well without crop/stretch. */
.og-product-card.has-catalog-image .og-product-card-image-stack.is-catalog-asset {
  padding: 14px 16px;
  overflow: hidden;
}

.og-product-card.has-catalog-image .og-product-card-image--catalog {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}

.og-card-ratio-balanced .og-product-card-image {
  max-width: 100%;
  max-height: 100%;
}

.og-card-ratio-landscape .og-product-card-image {
  max-width: 100%;
  max-height: 92%;
}

.og-card-ratio-portrait .og-product-card-image {
  max-width: 90%;
  max-height: 100%;
}

.og-card-ratio-wide .og-product-card-image {
  max-width: 100%;
  max-height: 84%;
}

.og-card-ratio-square .og-product-card-image {
  max-width: 94%;
  max-height: 94%;
}

.og-product-card-image--primary {
  position: relative;
  z-index: 1;
}

.og-product-card.has-detail-hover .og-product-card-image-stack {
  padding: 6px;
}

.og-product-card.has-detail-hover .og-product-card-image {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  max-width: calc(100% - 12px);
  max-height: calc(100% - 12px);
  margin: auto;
}

.og-product-card-image--detail {
  opacity: 0;
  z-index: 2;
}

.og-product-card.has-detail-hover:hover .og-product-card-image--primary {
  opacity: 0;
}

.og-product-card.has-detail-hover:hover .og-product-card-image--detail {
  opacity: 1;
}

.og-product-card:not(.has-detail-hover):hover .og-product-card-image--primary {
  transform: scale(1.05) translateY(-3px);
  filter:
    drop-shadow(0 22px 34px rgba(15, 39, 71, 0.16))
    drop-shadow(0 6px 14px rgba(15, 39, 71, 0.08));
}

.og-product-card.has-detail-hover:hover .og-product-card-image--detail {
  transform: scale(1.05) translateY(-3px);
  filter:
    drop-shadow(0 22px 34px rgba(15, 39, 71, 0.16))
    drop-shadow(0 6px 14px rgba(15, 39, 71, 0.08));
}

.og-product-card-placeholder {
  width: 78%;
  height: 62%;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(219, 230, 243, 0.55) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.og-product-card-pill,
.og-product-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  max-width: calc(100% - 28px);
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  color: var(--og-brand, #006cff);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(15, 39, 71, 0.08);
  backdrop-filter: blur(8px);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.og-product-card-badge--popular {
  border-color: #bfd7ff;
  background: rgba(238, 245, 255, 0.96);
  color: #0057cc;
}

.og-product-card-badge--fast {
  border-color: #fed7aa;
  background: rgba(255, 247, 237, 0.96);
  color: #c2410c;
}

.og-product-card-badge--starter {
  border-color: #bbf7d0;
  background: rgba(236, 253, 245, 0.96);
  color: #047857;
}

.og-product-card-badge--value {
  border-color: #ddd6fe;
  background: rgba(245, 243, 255, 0.96);
  color: #6d28d9;
}

.og-product-card:hover .og-product-card-pill,
.og-product-card:hover .og-product-card-badge {
  transform: translateY(-2px);
}

.og-product-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 10px;
  min-height: 196px;
  padding: 22px 22px 24px;
}

.og-product-card-body h3 {
  margin: 0;
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.og-product-card-body p {
  margin: 0;
  color: var(--og-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  min-height: 2.95em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.og-product-card-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.og-product-card-benefit {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #e4edf9;
  background: rgba(255, 255, 255, 0.88);
  color: var(--og-ink);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

.og-product-card-benefit::before {
  content: "✓";
  margin-right: 6px;
  color: var(--og-brand, #006cff);
  font-size: 0.68rem;
  font-weight: 900;
}

.og-product-card-footer-wrap {
  display: grid;
  gap: 5px;
  margin-top: auto;
  padding-top: 6px;
}

.og-product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 0;
}

.og-product-card-trust {
  margin: 0;
  color: #94a3b8;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: right;
}

.og-product-card-price {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.og-product-card-price-label {
  color: var(--og-muted);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.og-product-card-price-value {
  display: inline-flex;
  align-items: flex-start;
  color: var(--og-ink);
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.og-product-card-price-value.is-formatted {
  font-size: 0;
}

.og-product-card-price-value .og-price-prefix,
.og-product-card-price-value .og-price-dollars {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--og-ink);
}

.og-product-card-price-value .og-price-cents {
  margin-top: 0.12em;
  margin-left: 1px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #64748b;
}

.og-product-card-action {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #bfd7ff;
  border-radius: 999px;
  background: #fff;
  color: var(--og-brand, #006cff);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 108, 255, 0.08);
  transition:
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.og-product-card:hover .og-product-card-action,
.og-product-card-action:hover {
  background: var(--og-brand, #006cff);
  border-color: var(--og-brand, #006cff);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 108, 255, 0.24);
}

.og-product-card-action:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(0, 108, 255, 0.18),
    0 10px 22px rgba(0, 108, 255, 0.24);
}

.og-product-card-action-arrow {
  display: inline-block;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.og-product-card:hover .og-product-card-action-arrow,
.og-product-card-action:hover .og-product-card-action-arrow {
  transform: translateX(6px);
}

.og-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: og-step;
}

.og-steps-grid--launch {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.og-step-card {
  display: grid;
  gap: 12px;
  min-height: 148px;
  padding: 22px 18px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--og-shadow-soft);
}

.og-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--og-brand-soft);
  color: var(--og-brand);
  font-size: 0.88rem;
  font-weight: 900;
}

.og-step-card strong {
  font-size: 1rem;
  line-height: 1.35;
  color: var(--og-ink);
}

.og-step-card p {
  margin: 0;
  color: var(--og-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.og-business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.og-business-card {
  display: grid;
  gap: 10px;
  min-height: 148px;
  padding: 24px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--og-shadow-soft);
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.og-business-card:hover {
  transform: translateY(-3px);
  border-color: rgba(147, 197, 253, 0.95);
  box-shadow: var(--og-shadow-hover);
  color: inherit;
}

.og-business-card h3 {
  margin: 0;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.og-business-card p {
  margin: 0;
  color: var(--og-muted);
  line-height: 1.6;
}

.og-business-card-link {
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--og-accent);
  letter-spacing: 0.01em;
}

.og-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.og-feature-card {
  padding: 26px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--og-shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.og-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--og-shadow-hover);
}

.og-feature-card--1 { background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%); }
.og-feature-card--2 { background: linear-gradient(180deg, #ffffff 0%, #ecfeff 100%); }
.og-feature-card--3 { background: linear-gradient(180deg, #ffffff 0%, #f5f3ff 100%); }
.og-feature-card--4 { background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%); }

.og-feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  color: var(--og-ink);
}

.og-feature-card p {
  margin: 0;
  color: var(--og-muted);
  line-height: 1.65;
}

.og-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 230, 243, 0.95);
  color: var(--og-brand);
  font-size: 1rem;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

/* ==========================================================
   WooCommerce product page shell
========================================================== */

.og-print-theme-single-product .og-product-page {
  width: 100%;
  max-width: none;
}

.og-print-theme-single-product div.product {
  width: 100%;
  float: none;
  margin: 0;
}

.og-print-theme-single-product .woocommerce-product-gallery-wrapper,
.og-print-theme-single-product div.product div.images,
.og-print-theme-single-product .summary.entry-summary {
  float: none;
  width: 100%;
}

.og-print-theme-single-product .summary > p.price {
  display: none;
}

/* OG Print Engine layout compatibility */
.og-printco-header,
.og-printco-shell {
  width: var(--og-container);
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.og-printco-shell {
  display: grid;
  grid-template-columns: minmax(520px, 1.15fr) minmax(420px, 0.85fr);
  gap: 48px;
  align-items: start;
}

.og-printco-left,
.og-printco-right {
  min-width: 0;
}

.og-printco-right,
.og-printco-right > .summary,
.og-printco-right > .entry-summary {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.og-configurator-panel,
.og-upload-section,
.og-artwork-upload,
.og-summary-box,
.og-order-summary,
.og-gallery-preview {
  background: var(--og-card);
  border: 1px solid var(--og-line);
  border-radius: var(--og-radius-lg);
  box-shadow: var(--og-shadow);
}

.og-configurator-panel,
.og-upload-section,
.og-artwork-upload,
.og-summary-box,
.og-order-summary {
  padding: 24px;
}

.og-gallery-preview {
  padding: 18px;
}

.og-configurator-head strong,
.og-upload-section-title,
.og-summary-title,
.og-summary-box .og-summary-title {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--og-ink);
}

.og-configurator-field label,
.og-configurator-field span {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--og-muted);
  margin-bottom: 8px;
}

.og-configurator-field select,
.og-generated-select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--og-line);
  border-radius: 14px;
  padding: 0 14px;
  background: #fff;
  color: var(--og-ink);
  font-weight: 700;
}

.og-configurator-field select:focus,
.og-generated-select:focus {
  outline: none;
  border-color: var(--og-brand);
  box-shadow: 0 0 0 3px rgba(0, 108, 255, 0.14);
}

.og-summary-row,
.og-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.og-summary-total {
  border-bottom: 0;
  padding-top: 16px;
}

.og-summary-total strong,
.og-summary-box .og-summary-total strong {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 950;
  color: var(--og-ink);
}

.og-summary-box form.cart,
.og-summary-box .og-summary-cart form.cart {
  margin: 18px 0 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.og-summary-box form.cart .single_add_to_cart_button,
form.cart .single_add_to_cart_button {
  width: 100%;
  min-height: 58px;
  font-size: 1.05rem;
}

.og-gallery-main-card,
.og-gallery-zoom-wrap {
  border-radius: 20px;
  overflow: hidden;
  background: #f6f8fc;
}

.og-gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.og-gallery-thumb {
  border: 1px solid var(--og-line);
  border-radius: 16px;
  background: #fff;
  padding: 10px;
  cursor: pointer;
}

.og-gallery-thumb.is-active {
  border-color: var(--og-brand);
  box-shadow: 0 0 0 3px rgba(0, 108, 255, 0.15);
}

/* ==========================================================
   Footer
========================================================== */

.og-site-footer {
  background: linear-gradient(180deg, #0b1730 0%, #081224 100%);
  color: #cbd5e1;
  padding: 56px 0 28px;
}

.og-site-footer-inner {
  display: grid;
  gap: 28px;
}

.og-footer-top {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.4fr);
  gap: 40px;
}

.og-footer-brand strong {
  display: block;
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.og-footer-brand p {
  margin: 0;
  color: #94a3b8;
  font-weight: 700;
  line-height: 1.6;
}

.og-footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.og-footer-column h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.og-footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.og-footer-column a {
  color: #cbd5e1;
  font-weight: 700;
  font-size: 0.94rem;
}

.og-footer-column a:hover {
  color: #fff;
}

.og-footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.og-footer-copy {
  margin: 0;
  color: #94a3b8;
  font-size: 0.92rem;
}

/* ==========================================================
   Responsive
========================================================== */

@media (max-width: 1080px) {
  :root {
    --og-container: min(820px, calc(100vw - 28px));
  }

  .og-home-hero-inner,
  .og-product-grid,
  .og-feature-grid,
  .og-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .og-trust-bar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .og-finder-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .og-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .og-steps-grid--launch {
    grid-template-columns: 1fr;
  }

  .og-business-grid,
  .og-footer-top,
  .og-footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .og-home-hero {
    padding: 52px 0 64px;
    min-height: clamp(460px, 58vh, 600px);
  }

  .og-home-hero.has-print-background .og-home-hero-background-image.is-pos-right {
    object-position: 74% center;
  }

  .og-home-hero.has-print-background .og-home-hero-background-image.is-pos-left {
    object-position: 22% center;
  }

  .og-home-hero.has-print-background .og-home-hero-background-image.is-pos-center {
    object-position: center center;
  }

  .og-home-hero.has-print-background::before {
    inset: -8% -4% -10% 28%;
    opacity: 0.9;
  }

  .og-home-hero-inner {
    display: block;
  }

  .og-home-hero-copy {
    max-width: min(720px, 100%);
  }

  .og-home-hero-title,
  .og-home-hero-title--launch {
    font-size: clamp(2rem, 2.2vw + 1.1rem, 2.75rem);
    white-space: normal;
  }

  .og-home-hero.has-print-background .og-home-hero-atmosphere {
    background:
      linear-gradient(
        105deg,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(247, 250, 255, 0.92) 26%,
        rgba(238, 245, 255, 0.62) 44%,
        rgba(0, 108, 255, 0.05) 58%,
        transparent 72%
      ),
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.18) 0%,
        transparent 24%,
        transparent 78%,
        rgba(232, 242, 255, 0.2) 100%
      );
  }

  .og-product-card-media,
  .og-product-card-mockup,
  .og-product-card-image-stack {
    min-height: 228px;
  }

  .og-printco-shell {
    display: block;
  }

  .og-printco-left {
    margin-bottom: 22px;
  }

  .og-gallery-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .og-site-header {
    position: static;
    top: auto;
  }

  body.admin-bar .og-site-header,
  html.admin-bar .og-site-header {
    top: auto;
  }

  .og-mega-menu-panel {
    display: none;
    position: static;
    width: 100%;
    padding: 0;
    margin-top: 8px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .og-mega-menu-parent::after,
  .og-mega-menu-panel::before {
    display: none !important;
  }

  .og-mega-menu-parent.is-submenu-open > .og-mega-menu-panel,
  .menu-item-has-children.is-submenu-open > .sub-menu {
    display: block;
  }

  .og-nav-menu > .menu-item-has-children:not(.og-mega-menu-parent):not(.is-submenu-open) > .sub-menu,
  .og-nav-menu > .og-mega-menu-parent:not(.is-submenu-open) > .og-mega-menu-panel {
    display: none;
  }

  .og-mega-menu-parent.is-submenu-open > .og-mega-menu-panel .og-mega-menu-cards,
  .menu-item-has-children.is-submenu-open > .sub-menu {
    display: flex;
  }

  .og-mega-menu-panel-inner,
  .og-mega-menu-layout {
    display: block;
  }

  .og-mega-menu-cards,
  .og-nav-menu .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0 0 8px 12px;
    list-style: none;
  }

  .og-mega-menu-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid #e3ebf7;
    border-radius: 16px;
    background: #fff;
  }

  .og-mega-menu-card-media {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    overflow: hidden;
    background: #eef5ff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .og-mega-menu-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .og-mega-menu-card-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .og-mega-menu-card-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #07142b;
  }

  .og-mega-menu-card-desc {
    font-size: 0.76rem;
    color: #64748b;
    line-height: 1.45;
  }

  .og-mega-menu-card-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 2px 8px;
    border-radius: 999px;
    background: #eef5ff;
    color: #1d4ed8;
    font-size: 0.62rem;
    font-weight: 800;
  }

  .og-mega-menu-featured {
    display: none;
  }

  .og-nav-toggle,
  .og-site-header .og-header-actions {
    display: none !important;
  }

  .og-site-header-inner {
    min-height: 64px;
  }

  body {
    padding-bottom: var(--og-mobile-bottom-nav-offset, calc(64px + env(safe-area-inset-bottom, 0px)));
  }

  .og-site-footer {
    padding-bottom: 8px;
  }

  .og-mobile-bottom-nav {
    display: block;
  }

  .og-chat-widget {
    bottom: var(--og-mobile-assistant-bottom);
  }

  .og-assistant-engage-bubble {
    bottom: calc(100% + 12px);
  }

  .og-chat-panel {
    bottom: calc(var(--og-mobile-assistant-bottom) + 68px);
  }

  .og-site-nav-wrap.og-mobile-menu-sheet,
  .og-site-nav-wrap.og-mobile-menu-portal {
    position: fixed;
    left: 0;
    right: 0;
    bottom: var(--og-mobile-bottom-nav-offset, calc(64px + env(safe-area-inset-bottom, 0px)));
    top: auto;
    z-index: 99978;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    max-height: min(72vh, calc(100vh - var(--og-mobile-bottom-nav-offset, calc(64px + env(safe-area-inset-bottom, 0px))) - 48px));
    margin: 0;
    padding: 10px 16px 18px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border: 1px solid rgba(219, 230, 243, 0.95);
    border-bottom: 0;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -24px 60px rgba(15, 23, 42, 0.16);
    transform: translate3d(0, 100%, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.24s ease,
      visibility 0.24s ease;
  }

  .og-site-nav-wrap.og-mobile-menu-sheet::before,
  .og-site-nav-wrap.og-mobile-menu-portal::before {
    content: "";
    display: block;
    width: 42px;
    height: 4px;
    margin: 2px auto 12px;
    border-radius: 999px;
    background: #dbe6f3;
    flex-shrink: 0;
  }

  .og-site-nav-wrap.og-mobile-menu-sheet.is-open,
  .og-site-nav-wrap.og-mobile-menu-portal.is-open,
  body.og-mobile-nav-open .og-site-nav-wrap.og-mobile-menu-sheet.is-open,
  body.og-mobile-nav-open .og-site-nav-wrap.og-mobile-menu-portal.is-open {
    display: flex;
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .og-site-nav-wrap.og-mobile-menu-sheet .og-site-nav,
  .og-site-nav-wrap.og-mobile-menu-portal .og-site-nav {
    display: block;
    width: 100%;
  }

  .og-site-nav-wrap.og-mobile-menu-sheet .og-nav-menu,
  .og-site-nav-wrap.og-mobile-menu-portal .og-nav-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .og-mobile-drawer-primary {
    list-style: none;
    margin: 10px 0 0;
    padding: 10px 0 0;
    border-top: 1px solid rgba(219, 230, 243, 0.95);
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    flex-shrink: 0;
  }

  .og-mobile-drawer-primary-item {
    margin: 0;
  }

  .og-mobile-drawer-primary a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 14px;
    color: #07142b;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    background: transparent;
  }

  .og-mobile-drawer-primary a:hover,
  .og-mobile-drawer-primary a:focus-visible {
    background: #eef5ff;
    color: #0878ff;
  }

  .og-mobile-quick-access {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(219, 230, 243, 0.95);
    flex-shrink: 0;
  }

  .og-mobile-quick-access-title {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #516176;
  }

  .og-mobile-quick-access-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .og-mobile-quick-access-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid rgba(219, 230, 243, 0.95);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.88);
    color: #071b3b;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
  }

  .og-site-nav-wrap.og-mobile-menu-sheet .og-header-actions,
  .og-site-nav-wrap.og-mobile-menu-portal .og-header-actions {
    display: none !important;
  }

  .og-site-nav-wrap .og-nav-menu > li > a,
  .og-site-nav-wrap .og-nav-menu > .og-mega-menu-parent > .og-mega-menu-trigger {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--og-ink);
  }

  .og-site-nav-wrap .og-nav-menu > li > a:hover,
  .og-site-nav-wrap .og-nav-menu > .og-mega-menu-parent > .og-mega-menu-trigger:hover,
  .og-site-nav-wrap .og-nav-menu > .current-menu-item > a,
  .og-site-nav-wrap .og-nav-menu > .current_page_item > a {
    background: rgba(0, 108, 255, 0.08);
    color: var(--og-brand);
  }

  .og-site-nav-wrap .og-mega-menu-parent.is-submenu-open > .og-mega-menu-trigger,
  .og-site-nav-wrap .menu-item-has-children.is-submenu-open > a {
    background: rgba(0, 108, 255, 0.08);
    color: var(--og-brand);
  }

  .og-site-nav-wrap .og-nav-menu > .og-mega-menu-parent > .og-mega-menu-trigger,
  .og-site-nav-wrap .og-nav-menu > .menu-item-has-children > a {
    justify-content: space-between;
  }

  .og-site-nav-wrap .og-submenu-indicator {
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform 0.22s ease;
  }

  .og-site-nav-wrap .og-mega-menu-parent.is-submenu-open > .og-mega-menu-trigger .og-submenu-indicator,
  .og-site-nav-wrap .menu-item-has-children.is-submenu-open > a .og-submenu-indicator {
    transform: rotate(225deg) translateY(-1px);
  }

  .og-site-nav-wrap.og-mobile-menu-sheet .og-mega-menu-panel,
  .og-site-nav-wrap.og-mobile-menu-portal .og-mega-menu-panel {
    margin-top: 2px;
    padding: 0;
  }

  .og-site-nav-wrap.og-mobile-menu-sheet .og-mega-menu-panel-inner,
  .og-site-nav-wrap.og-mobile-menu-portal .og-mega-menu-panel-inner,
  .og-site-nav-wrap.og-mobile-menu-sheet .og-mega-menu-layout,
  .og-site-nav-wrap.og-mobile-menu-portal .og-mega-menu-layout {
    display: block;
    padding: 0;
    max-width: none;
  }

  .og-site-nav-wrap.og-mobile-menu-sheet .og-mega-menu-cards,
  .og-site-nav-wrap.og-mobile-menu-portal .og-mega-menu-cards,
  .og-site-nav-wrap.og-mobile-menu-sheet .menu-item-has-children.is-submenu-open > .sub-menu,
  .og-site-nav-wrap.og-mobile-menu-portal .menu-item-has-children.is-submenu-open > .sub-menu {
    flex-direction: column;
    gap: 2px;
    margin: 0;
    padding: 0 0 6px 14px;
    list-style: none;
  }

  .og-site-nav-wrap.og-mobile-menu-sheet .og-mega-menu-card-item,
  .og-site-nav-wrap.og-mobile-menu-portal .og-mega-menu-card-item,
  .og-site-nav-wrap.og-mobile-menu-sheet .menu-item-has-children .sub-menu > li,
  .og-site-nav-wrap.og-mobile-menu-portal .menu-item-has-children .sub-menu > li {
    margin: 0;
  }

  .og-site-nav-wrap.og-mobile-menu-sheet .og-mega-menu-card,
  .og-site-nav-wrap.og-mobile-menu-portal .og-mega-menu-card,
  .og-site-nav-wrap.og-mobile-menu-sheet .menu-item-has-children .sub-menu a,
  .og-site-nav-wrap.og-mobile-menu-portal .menu-item-has-children .sub-menu a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 14px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    color: var(--og-muted);
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
  }

  .og-site-nav-wrap.og-mobile-menu-sheet .og-mega-menu-card:hover,
  .og-site-nav-wrap.og-mobile-menu-portal .og-mega-menu-card:hover,
  .og-site-nav-wrap.og-mobile-menu-sheet .menu-item-has-children .sub-menu a:hover,
  .og-site-nav-wrap.og-mobile-menu-portal .menu-item-has-children .sub-menu a:hover {
    background: rgba(0, 108, 255, 0.06);
    color: var(--og-brand);
    transform: none;
    box-shadow: none;
  }

  .og-site-nav-wrap.og-mobile-menu-sheet .og-mega-menu-card-media,
  .og-site-nav-wrap.og-mobile-menu-portal .og-mega-menu-card-media,
  .og-site-nav-wrap.og-mobile-menu-sheet .og-mega-menu-card-desc,
  .og-site-nav-wrap.og-mobile-menu-portal .og-mega-menu-card-desc,
  .og-site-nav-wrap.og-mobile-menu-sheet .og-mega-menu-card-badge,
  .og-site-nav-wrap.og-mobile-menu-portal .og-mega-menu-card-badge {
    display: none !important;
  }

  .og-site-nav-wrap.og-mobile-menu-sheet .og-mega-menu-card-body,
  .og-site-nav-wrap.og-mobile-menu-portal .og-mega-menu-card-body {
    display: block;
    gap: 0;
  }

  .og-site-nav-wrap.og-mobile-menu-sheet .og-mega-menu-card-title,
  .og-site-nav-wrap.og-mobile-menu-portal .og-mega-menu-card-title {
    font-size: 0.94rem;
    font-weight: 700;
    color: inherit;
  }

  .og-mobile-menu-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: var(--og-mobile-bottom-nav-offset, calc(64px + env(safe-area-inset-bottom, 0px)));
    z-index: 99970;
    padding: 0;
    border: 0;
    background: rgba(7, 20, 43, 0.34);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    cursor: pointer;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  .og-mobile-menu-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.og-mobile-nav-open {
    overflow: hidden;
  }

  .og-site-nav,
  .og-header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .og-nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .og-header-actions {
    gap: 10px;
  }

  .og-header-cart,
  .og-header-cta {
    width: 100%;
    justify-content: center;
  }

  .og-site-header-inner {
    position: relative;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  :root {
    --og-container: min(100%, calc(100vw - 20px));
  }

  .og-site-main {
    padding-top: 18px;
  }

  .og-home-hero-inner,
  .og-product-grid,
  .og-feature-grid,
  .og-testimonial-grid,
  .og-steps-grid,
  .og-business-grid,
  .og-footer-top,
  .og-footer-columns,
  .og-trust-bar-grid {
    grid-template-columns: 1fr;
  }

  .og-trust-bar-item {
    justify-content: flex-start;
  }

  .og-final-cta-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .og-final-cta-actions .og-button {
    width: 100%;
    min-width: 0;
  }

  .og-finder-form-row {
    flex-direction: column;
  }

  .og-finder-submit {
    width: 100%;
    min-width: 0;
  }

  .og-finder-results-grid {
    grid-template-columns: 1fr;
  }

  .og-product-card {
    min-height: 0;
  }

  .og-product-card-media,
  .og-product-card-mockup,
  .og-product-card-image-stack {
    min-height: 208px;
  }

  .og-product-card-image-stack {
    padding: 12px 14px 16px;
  }

  .og-product-card-body {
    min-height: 0;
    padding: 18px 18px 20px;
  }

  .og-product-card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .og-product-card-trust {
    text-align: center;
  }

  .og-product-card-action {
    width: 100%;
    min-height: 44px;
  }

  .og-product-card-price-value .og-price-prefix,
  .og-product-card-price-value .og-price-dollars,
  .og-product-card-price-value {
    font-size: 1.65rem;
  }

  .og-home-hero {
    min-height: 0;
    padding: 48px 0 56px;
    align-items: flex-start;
  }

  .og-home-hero.has-print-background .og-home-hero-background-image.is-pos-right {
    object-position: 82% 42%;
  }

  .og-home-hero.has-print-background .og-home-hero-background-image.is-pos-left {
    object-position: 28% 42%;
  }

  .og-home-hero.has-print-background .og-home-hero-background-image.is-pos-center {
    object-position: center 42%;
  }

  .og-home-hero.has-print-background::before {
    inset: 28% -8% -8% -8%;
    background:
      radial-gradient(ellipse 70% 55% at 70% 70%, rgba(0, 108, 255, 0.18), transparent 70%),
      radial-gradient(ellipse 40% 40% at 85% 85%, rgba(0, 196, 255, 0.12), transparent 72%),
      radial-gradient(ellipse 30% 28% at 55% 90%, rgba(232, 64, 152, 0.07), transparent 72%);
    opacity: 0.75;
  }

  .og-home-hero.has-print-background::after {
    opacity: 0.45;
  }

  .og-home-hero.has-print-background .og-home-hero-atmosphere {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(247, 250, 255, 0.9) 48%,
        rgba(247, 250, 255, 0.58) 70%,
        rgba(247, 250, 255, 0.3) 100%
      ),
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.72) 0%,
        rgba(247, 250, 255, 0.35) 55%,
        transparent 100%
      );
  }

  .og-home-hero-copy {
    max-width: 100%;
  }

  .og-home-section {
    padding: 64px 0;
  }

  .og-home-hero-actions .og-button {
    width: 100%;
  }

  .og-home-hero-title,
  .og-home-hero-title--launch {
    max-width: 100%;
    font-size: clamp(1.9rem, 7.2vw, 2.45rem);
    white-space: normal;
  }

  .og-home-hero-text {
    color: #0B1933;
    text-shadow: none;
  }

  .og-steps-grid--launch {
    grid-template-columns: 1fr;
  }

  .og-configurator-panel,
  .og-upload-section,
  .og-summary-box,
  .og-gallery-preview {
    padding: 16px;
    border-radius: 18px;
  }

}

/* ==========================================================
   Get Quote page
========================================================== */

.og-quote-page {
  padding: 48px 0 72px;
}

.og-quote-hero {
  max-width: 760px;
  margin-bottom: 28px;
}

.og-quote-title {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.og-quote-intro {
  margin: 0;
  color: var(--og-muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.og-quote-notice {
  margin-bottom: 20px;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

.og-quote-notice-success {
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.og-quote-notice-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.og-quote-card {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid #dce8fb;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
}

.og-quote-form {
  display: grid;
  gap: 22px;
}

.og-quote-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.og-quote-field {
  display: grid;
  gap: 7px;
}

.og-quote-field-full {
  grid-column: 1 / -1;
}

.og-quote-field span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--og-muted);
}

.og-quote-field input,
.og-quote-field select,
.og-quote-field textarea {
  width: 100%;
  border: 1px solid var(--og-line);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
  color: var(--og-ink);
  font: inherit;
  box-sizing: border-box;
}

.og-quote-field input,
.og-quote-field select {
  min-height: 52px;
}

.og-quote-field textarea {
  resize: vertical;
  min-height: 140px;
}

.og-quote-field input:focus,
.og-quote-field select:focus,
.og-quote-field textarea:focus {
  outline: none;
  border-color: var(--og-brand);
  box-shadow: 0 0 0 3px rgba(0, 108, 255, 0.12);
}

.og-quote-submit {
  width: 100%;
  min-height: 54px;
}

@media (max-width: 820px) {
  .og-quote-form-grid {
    grid-template-columns: 1fr;
  }

  .og-quote-field-full {
    grid-column: auto;
  }
}

/* ==========================================================
   OG Print Assistant widget
========================================================== */

.og-chat-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99990;
}

.og-assistant-engage-bubble {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: min(280px, calc(100vw - 48px));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.og-assistant-engage-bubble.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.og-assistant-engage-bubble[hidden] {
  display: none;
}

.og-assistant-engage-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  width: 100%;
  padding: 14px 36px 14px 14px;
  border: 1px solid #dce8fb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  color: var(--og-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.og-assistant-engage-content:hover {
  border-color: #bfd7ff;
  box-shadow: 0 18px 44px rgba(0, 108, 255, 0.14);
}

.og-assistant-engage-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.og-assistant-engage-text {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
}

.og-assistant-engage-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--og-muted);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.og-assistant-engage-close:hover {
  background: #f3f6fb;
  color: var(--og-ink);
}

.og-chat-toggle.is-idle-pulse {
  animation: og-assistant-idle-pulse 2.4s ease-out 1;
}

@keyframes og-assistant-idle-pulse {
  0% {
    box-shadow: 0 14px 34px rgba(0, 108, 255, 0.28);
    transform: scale(1);
  }

  35% {
    box-shadow: 0 18px 42px rgba(0, 108, 255, 0.38);
    transform: scale(1.04);
  }

  100% {
    box-shadow: 0 14px 34px rgba(0, 108, 255, 0.28);
    transform: scale(1);
  }
}

.og-chat-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px 0 16px;
  border: 1px solid rgba(191, 215, 255, 0.95);
  border-radius: 999px;
  background: linear-gradient(180deg, #0a74ff 0%, #006cff 100%);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 108, 255, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.og-chat-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 108, 255, 0.32);
}

.og-chat-toggle-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.og-chat-panel {
  position: fixed;
  right: 24px;
  bottom: 88px;
  width: min(400px, calc(100vw - 32px));
  max-height: min(82vh, 680px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border: 1px solid #dce8fb;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.og-chat-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.og-chat-panel:not(.is-open),
.og-chat-panel[hidden] {
  pointer-events: none !important;
}

.og-assistant-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid #eef3fb;
  background: linear-gradient(180deg, #fbfcfe 0%, #ffffff 100%);
  border-radius: 24px 24px 0 0;
  flex-shrink: 0;
}

.og-assistant-brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.og-assistant-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, #0a74ff 0%, #006cff 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px rgba(0, 108, 255, 0.22);
  flex-shrink: 0;
}

.og-chat-panel-title {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--og-ink);
}

.og-chat-panel-intro {
  margin: 6px 0 0;
  color: var(--og-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.og-chat-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--og-line);
  border-radius: 999px;
  background: #fff;
  color: var(--og-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.og-chat-close:hover {
  color: var(--og-ink);
  border-color: #bfd7ff;
}

.og-assistant-body {
  display: grid;
  gap: 14px;
  padding: 18px 20px 20px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  justify-items: stretch;
}

.og-assistant-bubble {
  max-width: 92%;
  padding: 12px 14px;
  border-radius: 16px 16px 16px 6px;
  background: #eef5ff;
  color: var(--og-ink);
  font-size: 0.92rem;
  line-height: 1.55;
}

.og-assistant-bubble-welcome {
  align-self: flex-start;
}

.og-assistant-bubble-extended {
  align-self: stretch;
  max-width: none;
  width: 100%;
}

.og-assistant-greeting-lead {
  margin: 0 0 8px;
  font-weight: 800;
}

.og-assistant-bubble-extended p {
  margin: 0 0 8px;
}

.og-assistant-greeting-heading {
  margin-top: 10px !important;
  font-weight: 800;
}

.og-assistant-greeting-list {
  margin: 0 0 10px;
  padding-left: 0;
  list-style: none;
}

.og-assistant-greeting-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 4px;
}

.og-assistant-greeting-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--og-brand);
  font-size: 0.82rem;
}

.og-assistant-greeting-human {
  margin: 0 !important;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 108, 255, 0.12);
  font-size: 0.84rem;
  line-height: 1.55;
}

.og-assistant-greeting-human span {
  display: block;
  margin-top: 4px;
  color: var(--og-muted);
  font-weight: 700;
}

.og-assistant-bubble-response {
  align-self: flex-start;
  max-width: 92%;
  margin-bottom: 0;
  padding: 14px 16px;
  border-radius: 18px 18px 18px 8px;
  background: #f8fbff;
  border: 1px solid #dce8fb;
  box-shadow: 0 8px 24px rgba(15, 39, 71, 0.05);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.24s ease, transform 0.24s ease, margin-bottom 0.32s ease, box-shadow 0.32s ease;
}

.og-assistant-bubble-response.is-visible {
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 20px;
}

.og-assistant-bubble-response.is-revealed {
  opacity: 0;
  transform: translateY(12px);
  box-shadow: 0 12px 32px rgba(15, 39, 71, 0.08);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), margin-bottom 0.35s ease, box-shadow 0.45s ease;
}

.og-assistant-bubble-response.is-revealed.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.og-assistant-bubble-response[hidden] {
  display: none;
}

.og-assistant-bubble-response.is-typing {
  background: #f8fbff;
}

.og-assistant-response-content {
  display: grid;
  gap: 14px;
}

.og-assistant-typing {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}

.og-assistant-typing-text {
  color: var(--og-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.og-assistant-typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.og-assistant-typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--og-brand, #006cff);
  opacity: 0.35;
  animation: og-assistant-typing-dot 1.2s infinite ease-in-out;
}

.og-assistant-typing-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.og-assistant-typing-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes og-assistant-typing-dot {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.og-assistant-response-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.62;
}

.og-assistant-response-tip {
  margin: 0;
  padding: 13px 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #dce8fb;
  font-size: 0.86rem;
  line-height: 1.6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.og-assistant-response-tip-label {
  display: block;
  margin-bottom: 6px;
  color: var(--og-brand);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.og-assistant-response-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  margin-top: 2px;
  border: 1px solid #bfd7ff;
  border-radius: 999px;
  background: #fff;
  color: var(--og-brand);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

button.og-assistant-response-cta {
  font: inherit;
}

.og-assistant-response-cta:hover {
  background: #f7faff;
  border-color: #006cff;
  transform: translateY(-1px);
}

.og-assistant-suggestions {
  display: grid;
  gap: 14px;
  margin-top: 4px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.og-assistant-suggestions.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.og-assistant-suggestions[hidden] {
  display: none;
}

.og-assistant-suggestions-title {
  margin: 0;
  color: var(--og-ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.og-assistant-suggestions-grid {
  display: grid;
  gap: 12px;
}

.og-assistant-suggestion-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid #dce8fb;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 10px 24px rgba(15, 39, 71, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  animation: og-assistant-fade-in 0.32s ease;
}

.og-assistant-suggestion-card:hover {
  transform: translateY(-2px);
  border-color: #bfd7ff;
  box-shadow: 0 16px 34px rgba(15, 39, 71, 0.1);
}

.og-assistant-suggestion-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.og-assistant-suggestion-card h4 {
  margin: 0;
  color: var(--og-ink);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.35;
}

.og-assistant-suggestion-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef5ff;
  border: 1px solid #dce8fb;
  color: var(--og-brand, #006cff);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.og-assistant-suggestion-badge--popular {
  background: #eef5ff;
  border-color: #bfd7ff;
  color: #0057cc;
}

.og-assistant-suggestion-badge--fast-turnaround {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #c2410c;
}

.og-assistant-suggestion-badge--great-starter {
  background: #ecfdf5;
  border-color: #bbf7d0;
  color: #047857;
}

.og-assistant-suggestion-desc {
  margin: 0;
  color: var(--og-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.og-assistant-suggestion-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.og-assistant-suggestion-benefit {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #e4edf9;
  color: var(--og-ink);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

.og-assistant-suggestion-benefit::before {
  content: "✓";
  margin-right: 6px;
  color: var(--og-brand, #006cff);
  font-size: 0.68rem;
  font-weight: 900;
}

.og-assistant-suggestion-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #bfd7ff;
  border-radius: 999px;
  background: #fff;
  color: var(--og-brand, #006cff);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.og-assistant-suggestion-link:hover {
  background: var(--og-brand, #006cff);
  border-color: var(--og-brand, #006cff);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 108, 255, 0.22);
}

.og-assistant-suggestion-card:hover .og-assistant-suggestion-link {
  border-color: #006cff;
}

.og-assistant-file-field {
  display: grid;
  gap: 8px;
}

.og-assistant-file-field[hidden] {
  display: none !important;
}

.og-assistant-file-help {
  margin: 0;
  color: var(--og-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.og-assistant-file-field input[type="file"] {
  width: 100%;
  border: 1px dashed #bfd7ff;
  border-radius: 14px;
  padding: 12px;
  background: #f8fbff;
  color: var(--og-ink);
  font-size: 0.84rem;
  box-sizing: border-box;
}

.og-assistant-file-field input[type="file"].is-invalid {
  border-color: #ef4444;
  background: #fff7f7;
}

.og-assistant-file-preview {
  display: flex;
  align-items: stretch;
  gap: 14px;
  padding: 14px;
  border: 1px solid #dce8fb;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 8px 24px rgba(15, 39, 71, 0.06);
}

.og-assistant-file-preview[hidden] {
  display: none !important;
}

.og-assistant-file-preview-media {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 14px;
  overflow: hidden;
  background: #eef4ff;
  border: 1px solid #dce8fb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.og-assistant-file-preview-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.og-assistant-file-preview-thumb[hidden] {
  display: none;
}

.og-assistant-file-preview-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--og-brand, #006cff);
}

.og-assistant-file-preview-icon[hidden] {
  display: none;
}

.og-assistant-file-preview-icon svg {
  width: 32px;
  height: 32px;
}

.og-assistant-file-preview-content {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  gap: 4px;
  align-content: center;
}

.og-assistant-file-preview-name {
  margin: 0;
  color: var(--og-ink);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
  word-break: break-word;
}

.og-assistant-file-preview-details {
  margin: 0;
  color: var(--og-muted);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
}

.og-assistant-file-preview-separator {
  margin: 0 4px;
}

.og-assistant-file-preview-status {
  margin: 2px 0 0;
  color: #059669;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.og-assistant-file-preview-remove {
  flex: 0 0 auto;
  align-self: center;
  padding: 8px 12px;
  border: 1px solid #bfd7ff;
  border-radius: 999px;
  background: #fff;
  color: var(--og-brand, #006cff);
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.og-assistant-file-preview-remove:hover {
  background: var(--og-brand, #006cff);
  border-color: var(--og-brand, #006cff);
  color: #fff;
}

.og-assistant-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.og-assistant-topic-wrap {
  display: grid;
  gap: 6px;
}

.og-assistant-topic-label {
  margin: 0;
}

.og-assistant-chips.is-invalid {
  padding: 8px;
  border: 1px solid #fecaca;
  border-radius: 16px;
  background: #fff7f7;
}

.og-assistant-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #dce8fb;
  border-radius: 999px;
  background: #fff;
  color: var(--og-brand);
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.og-assistant-chip:hover {
  border-color: #bfd7ff;
  background: #f7faff;
}

.og-assistant-chip.is-selected {
  border-color: #006cff;
  background: #006cff;
  color: #fff;
  transform: translateY(-1px);
}

.og-chat-form {
  display: grid;
  gap: 12px;
  margin-top: 2px;
}

.og-assistant-form-progress {
  display: grid;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #e8f0fc;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.og-assistant-progress-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.og-assistant-progress-step {
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
  color: #94a3b8;
  transition: color 0.24s ease;
}

.og-assistant-progress-step.is-current {
  color: var(--og-ink);
}

.og-assistant-progress-step.is-complete {
  color: var(--og-brand, #006cff);
}

.og-assistant-progress-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #dce8fb;
  background: #fff;
  color: #94a3b8;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
  transition: background 0.24s ease, border-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.og-assistant-progress-step.is-current .og-assistant-progress-marker {
  border-color: var(--og-brand, #006cff);
  background: #eef5ff;
  color: var(--og-brand, #006cff);
  box-shadow: 0 0 0 3px rgba(0, 108, 255, 0.1);
  transform: translateY(-1px);
}

.og-assistant-progress-step.is-complete .og-assistant-progress-marker {
  border-color: var(--og-brand, #006cff);
  background: var(--og-brand, #006cff);
  color: #fff;
  font-size: 0;
  box-shadow: none;
}

.og-assistant-progress-step.is-complete .og-assistant-progress-marker::after {
  content: "✓";
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
}

.og-assistant-progress-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.og-assistant-progress-track {
  height: 4px;
  border-radius: 999px;
  background: #e8f0fc;
  overflow: hidden;
}

.og-assistant-progress-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #006cff 0%, #3b9cff 100%);
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.og-assistant-form-progress.is-ready .og-assistant-progress-fill {
  box-shadow: 0 0 12px rgba(0, 108, 255, 0.28);
}

.og-chat-field {
  display: grid;
  gap: 6px;
}

.og-chat-field span {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--og-muted);
}

.og-chat-field-required span::after {
  content: " *";
  color: #dc2626;
  font-weight: 900;
}

.og-chat-field input,
.og-chat-field textarea {
  width: 100%;
  border: 1px solid var(--og-line);
  border-radius: 14px;
  padding: 11px 13px;
  background: #fff;
  color: var(--og-ink);
  font: inherit;
  box-sizing: border-box;
}

.og-chat-field input:focus,
.og-chat-field textarea:focus {
  outline: none;
  border-color: var(--og-brand);
  box-shadow: 0 0 0 3px rgba(0, 108, 255, 0.12);
}

.og-chat-field input.is-invalid,
.og-chat-field textarea.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.og-chat-field-error {
  margin: 0;
  color: #b91c1c;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.og-chat-field-error[hidden] {
  display: none;
}

.og-chat-field textarea {
  resize: vertical;
  min-height: 88px;
}

.og-assistant-message-helper {
  margin: 2px 0 0;
  padding: 9px 12px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
  border: 1px solid #dce8fb;
  color: var(--og-muted);
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 600;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.og-assistant-message-helper.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.og-assistant-message-helper[hidden] {
  display: none !important;
}

.og-chat-field.has-message-helper {
  gap: 8px;
}

.og-chat-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.og-chat-submit {
  width: 100%;
  min-height: 48px;
}

.og-assistant-trust {
  display: grid;
  gap: 12px;
  padding-top: 4px;
  border-top: 1px solid #eef3fb;
}

.og-assistant-trust-personal {
  margin: 0;
  color: var(--og-ink);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.55;
}

.og-assistant-trust-meta {
  display: grid;
  gap: 8px;
}

.og-assistant-trust-meta p {
  margin: 0;
  color: var(--og-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.og-assistant-trust-label {
  display: block;
  margin-bottom: 2px;
  color: var(--og-ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.og-assistant-hours-status {
  display: grid;
  gap: 8px;
}

.og-assistant-hours-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.og-assistant-hours-pill.is-loading {
  opacity: 0.72;
}

.og-assistant-hours-pill.is-open {
  background: #ecfdf3;
  border-color: #bbf7d0;
  color: #166534;
}

.og-assistant-hours-pill.is-closed {
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #475569;
}

.og-assistant-hours-indicator {
  font-size: 0.72rem;
  line-height: 1;
}

.og-assistant-hours-schedule {
  margin: 0;
  color: var(--og-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.og-assistant-hours-note {
  margin: 0;
  color: var(--og-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.og-assistant-hours-note[hidden] {
  display: none;
}

.og-assistant-quote-prompt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--og-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.og-assistant-quote-link {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.82rem;
}

.og-assistant-success {
  display: grid;
  gap: 10px;
  padding: 20px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.og-assistant-success h3 {
  margin: 0;
  font-size: 1.08rem;
  color: var(--og-ink);
}

.og-assistant-success p {
  margin: 0;
  color: var(--og-muted);
  line-height: 1.6;
}

.og-assistant-success-email {
  font-size: 0.9rem;
  font-weight: 700;
}

.og-assistant-success-email a,
.og-chat-notice-error a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.og-assistant-error-wrap {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1;
  min-height: 0;
}

.og-chat-notice {
  margin: 0 20px 12px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
  flex-shrink: 0;
}

.og-chat-notice-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

@keyframes og-assistant-fade-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.og-chat-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .og-chat-widget {
    right: 16px;
    left: auto;
    bottom: var(--og-mobile-assistant-bottom, calc(var(--og-mobile-bottom-nav-offset) + 26px));
  }

  .og-assistant-engage-bubble {
    width: min(260px, calc(100vw - 32px));
  }

  .og-chat-panel {
    right: 16px;
    left: 16px;
    bottom: calc(var(--og-mobile-assistant-bottom, calc(var(--og-mobile-bottom-nav-offset) + 26px)) + 68px);
    width: auto;
    max-width: none;
    max-height: 85vh;
    border-radius: 20px;
  }

  .og-chat-toggle-label {
    display: none;
  }

  .og-chat-toggle {
    min-width: 56px;
    padding-inline: 16px;
  }

  .og-assistant-suggestion-card {
    padding: 14px;
    gap: 10px;
  }

  .og-assistant-suggestion-card-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .og-assistant-suggestion-benefits {
    gap: 6px;
  }

  .og-assistant-form-progress {
    padding: 10px 12px;
    gap: 8px;
  }

  .og-assistant-progress-marker {
    width: 24px;
    height: 24px;
    font-size: 0.68rem;
  }

  .og-assistant-progress-label {
    font-size: 0.62rem;
  }
}

/* ==========================================================
   Product Page Premium Layout Start
========================================================== */

body.og-print-theme-single-product.single-product .og-site-main {
  padding-top: 20px;
  padding-bottom: 64px;
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 32%);
}

body.og-print-theme-single-product.single-product:has(.og-engine-product-page) .og-site-main,
body.og-print-theme-single-product.single-product:has(.og-engine-product-page) {
  background: #f5f5f5 !important;
}

body.og-print-theme-single-product.single-product .og-product-page {
  padding-bottom: 8px;
}

body.og-print-theme-single-product.single-product .og-engine-product-page.og-printco-shell {
  display: flex !important;
  grid-template-columns: unset !important;
  width: min(1240px, 100%) !important;
  max-width: 1240px !important;
}

body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium {
  padding-top: 6px;
  padding-bottom: 72px;
}

body.og-print-theme-single-product.single-product .og-shop-header,
body.og-print-theme-single-product.single-product .og-shop-title,
body.og-print-theme-single-product.single-product .og-product-page-hidden-title {
  display: none !important;
}

body.og-print-theme-single-product.single-product .og-product-breadcrumbs {
  width: min(1320px, calc(100vw - 48px));
  max-width: 1320px;
  margin: 0 auto 14px;
  box-sizing: border-box;
}

body.og-print-theme-single-product.single-product .og-product-breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  color: #94a3b8;
}

body.og-print-theme-single-product.single-product .og-product-breadcrumbs-item {
  display: inline-flex;
  align-items: center;
}

body.og-print-theme-single-product.single-product .og-product-breadcrumbs-item:not(:first-child)::before {
  content: "/";
  margin: 0 8px;
  color: #cbd5e1;
  font-weight: 600;
}

body.og-print-theme-single-product.single-product .og-product-breadcrumbs-item a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

body.og-print-theme-single-product.single-product .og-product-breadcrumbs-item a:hover {
  color: #f36b21;
}

body.og-print-theme-single-product.single-product .og-product-breadcrumbs-item.is-current {
  color: var(--og-ink);
}

body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-header {
  width: min(1320px, calc(100vw - 48px)) !important;
  max-width: 1320px !important;
  margin: 0 auto 36px !important;
  padding: 28px 32px !important;
  border: 1px solid #e3ebf7 !important;
  border-radius: 28px !important;
  background: #fff !important;
  box-shadow: 0 16px 40px rgba(15, 39, 71, 0.06) !important;
  box-sizing: border-box !important;
}

body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-header .product_title,
body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-header .entry-title {
  margin: 0 !important;
  font-size: clamp(2.1rem, 4.2vw, 2.85rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.05 !important;
  color: #07142b !important;
}

body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-header .woocommerce-product-details__short-description {
  max-width: 820px;
  margin: 16px 0 0 !important;
  font-size: 1.06rem !important;
  line-height: 1.7 !important;
  color: #64748b !important;
}

body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-header .woocommerce-product-details__short-description p {
  margin: 0 0 10px;
}

body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-header .woocommerce-product-details__short-description p:last-child {
  margin-bottom: 0;
}

body.og-print-theme-single-product.single-product .og-product-trust-bar:not(.is-mounted) {
  display: none;
}

body.og-print-theme-single-product.single-product .og-product-trust-bar.is-mounted {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #eef2f7;
}

body.og-print-theme-single-product.single-product .og-product-trust-bar-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.og-print-theme-single-product.single-product .og-product-trust-bar-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 5px 12px;
  border: 1px solid #e3ebf7;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 1px 2px rgba(15, 39, 71, 0.04);
  color: #475569;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

body.og-print-theme-single-product.single-product .og-product-trust-bar-pill.is-rating {
  background: linear-gradient(180deg, #fffdf8 0%, #fff8eb 100%);
  border-color: #fde8b8;
  color: #92400e;
}

body.og-print-theme-single-product.single-product .og-product-trust-bar-stars {
  color: #f59e0b;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

body.og-print-theme-single-product.single-product .og-product-trust-bar-label {
  color: inherit;
}

body.og-print-theme-single-product.single-product .og-upload-section.og-artwork-choice-ready .og-upload-section-subtitle {
  display: none !important;
}

body.og-print-theme-single-product.single-product .og-upload-section.og-artwork-choice-ready .og-upload-section-title {
  margin-bottom: 14px;
}

body.og-print-theme-single-product.single-product .og-artwork-choice-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

body.og-print-theme-single-product.single-product .og-artwork-choice-options {
  display: grid;
  gap: 10px;
}

body.og-print-theme-single-product.single-product .og-artwork-choice-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid #e3ebf7;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 1px 2px rgba(15, 39, 71, 0.04);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body.og-print-theme-single-product.single-product .og-artwork-choice-option:hover {
  border-color: #c7daf5;
  box-shadow: 0 8px 20px rgba(15, 39, 71, 0.06);
}

body.og-print-theme-single-product.single-product .og-artwork-choice-option.is-selected {
  border-color: #8bb8ff;
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
  box-shadow:
    0 0 0 1px rgba(0, 108, 255, 0.12),
    0 10px 24px rgba(0, 108, 255, 0.08);
}

body.og-print-theme-single-product.single-product .og-artwork-choice-input {
  margin: 4px 0 0;
  accent-color: var(--og-brand, #006cff);
  flex-shrink: 0;
}

body.og-print-theme-single-product.single-product .og-artwork-choice-option-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

body.og-print-theme-single-product.single-product .og-artwork-choice-option-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.og-print-theme-single-product.single-product .og-artwork-choice-option-title {
  color: #07142b;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

body.og-print-theme-single-product.single-product .og-artwork-choice-option-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef5ff;
  color: #1d4ed8;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

body.og-print-theme-single-product.single-product .og-artwork-choice-option.is-selected .og-artwork-choice-option-badge {
  background: #dbeafe;
  color: #1e40af;
}

body.og-print-theme-single-product.single-product .og-artwork-choice-option-desc {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.55;
}

body.og-print-theme-single-product.single-product .og-artwork-choice-reference {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2px;
}

body.og-print-theme-single-product.single-product .og-artwork-choice-reference-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
}

body.og-print-theme-single-product.single-product .og-artwork-choice-reference-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  color: #94a3b8;
  flex-shrink: 0;
}

body.og-print-theme-single-product.single-product .og-artwork-choice-reference-icon svg {
  display: block;
  width: 14px;
  height: 14px;
  fill: currentColor;
}

body.og-print-theme-single-product.single-product .og-artwork-choice-reference-text {
  color: inherit;
}

body.og-print-theme-single-product.single-product .og-artwork-upload-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  pointer-events: none;
  transition:
    grid-template-rows 0.34s ease,
    opacity 0.28s ease,
    margin-top 0.28s ease;
}

body.og-print-theme-single-product.single-product .og-artwork-upload-panel.is-expanded {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 12px;
  pointer-events: auto;
}

body.og-print-theme-single-product.single-product .og-artwork-upload-panel-inner {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.og-print-theme-single-product.single-product .og-upload-section.og-artwork-choice-ready .og-artwork-upload-panel .og-upload-grid {
  margin-top: 0;
}

@media (prefers-reduced-motion: reduce) {
  body.og-print-theme-single-product.single-product .og-artwork-upload-panel {
    transition: none;
  }
}

body.og-print-theme-single-product.single-product .og-summary-row-artwork-choice strong {
  color: #1e293b;
}

body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-shell {
  gap: 44px !important;
  margin-bottom: 72px !important;
}

body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-gallery,
body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-configurator {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-panel {
  border-color: #e8eef8 !important;
  border-radius: 26px !important;
  box-shadow: 0 12px 28px rgba(15, 39, 71, 0.05) !important;
}

body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-gallery .og-gallery-preview {
  padding: 22px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%) !important;
}

body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-gallery-main-card,
body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-gallery-zoom-wrap {
  border-radius: 22px !important;
  background: #f8fbff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 30px rgba(15, 39, 71, 0.07) !important;
}

body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-gallery-preview-grid {
  gap: 12px !important;
  margin-top: 16px !important;
}

body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-configurator .og-configurator-panel,
body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-configurator .og-upload-section,
body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-configurator .og-artwork-upload,
body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-configurator .og-summary-box,
body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-configurator .og-order-summary {
  padding: 26px !important;
}

body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-configurator .og-summary-box {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  border-color: #dce8fb !important;
}

body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-configurator-head {
  margin-bottom: 20px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid #edf2fa !important;
}

body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-configurator-fields {
  gap: 20px !important;
}

body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-configurator-field {
  gap: 8px !important;
}

body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-summary-row {
  padding: 12px 0 !important;
  border-bottom-color: #edf2fa !important;
}

body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-summary-total {
  margin-top: 6px !important;
  padding-top: 18px !important;
  border-top-color: #dce8fb !important;
}

body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium form.cart .single_add_to_cart_button {
  min-height: 56px !important;
  border-radius: 16px !important;
}

@media (min-width: 1081px) {
  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-shell {
    align-items: start !important;
    gap: 52px !important;
  }

  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium.is-sticky-configurator .og-product-page-configurator {
    position: sticky;
    top: var(--og-product-sticky-top, 88px);
    align-self: start;
    max-height: var(--og-product-sticky-max-height, calc(100vh - var(--og-product-sticky-top, 88px) - 32px));
    overflow-y: auto;
    overscroll-behavior-y: auto;
    scrollbar-gutter: stable;
    padding-right: 2px;
  }

  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium.is-sticky-configurator .og-product-page-configurator .og-product-page-panel + .og-product-page-panel {
    margin-top: 0;
  }

  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium.is-sticky-configurator .og-product-page-configurator .og-configurator-panel {
    margin-bottom: 0;
  }
}

@media (max-width: 1080px) {
  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-configurator {
    position: static !important;
    top: auto !important;
    max-height: none !important;
    overflow: visible !important;
    padding-right: 0 !important;
  }

  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-header,
  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-shell {
    width: min(820px, calc(100vw - 28px)) !important;
  }

  body.og-print-theme-single-product.single-product .og-product-breadcrumbs {
    width: min(820px, calc(100vw - 28px));
    margin-bottom: 12px;
  }

  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-shell {
    gap: 28px !important;
    margin-bottom: 48px !important;
  }

  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-header {
    margin-bottom: 28px !important;
    padding: 24px !important;
  }

  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-gallery-main-card,
  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-gallery-zoom-wrap {
    min-height: 380px !important;
  }
}

@media (max-width: 640px) {
  body.og-print-theme-single-product.single-product .og-site-main {
    padding-top: 14px;
    padding-bottom: 48px;
  }

  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium {
    padding-bottom: 56px;
  }

  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-header,
  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-shell {
    width: min(100%, calc(100vw - 20px)) !important;
  }

  body.og-print-theme-single-product.single-product .og-product-breadcrumbs {
    width: min(100%, calc(100vw - 20px));
    margin-bottom: 10px;
  }

  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-header {
    margin-bottom: 22px !important;
    padding: 20px 18px !important;
    border-radius: 22px !important;
  }

  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-header .product_title,
  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-header .entry-title {
    font-size: 1.9rem !important;
  }

  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-header .woocommerce-product-details__short-description {
    margin-top: 12px !important;
    font-size: 0.98rem !important;
    line-height: 1.6 !important;
  }

  body.og-print-theme-single-product.single-product .og-product-trust-bar.is-mounted {
    margin-top: 14px;
    padding-top: 12px;
  }

  body.og-print-theme-single-product.single-product .og-product-trust-bar-list {
    gap: 6px;
  }

  body.og-print-theme-single-product.single-product .og-product-trust-bar-pill {
    min-height: 28px;
    padding: 4px 10px;
    font-size: 0.68rem;
    white-space: normal;
  }

  body.og-print-theme-single-product.single-product .og-artwork-choice-option {
    padding: 12px 14px;
  }

  body.og-print-theme-single-product.single-product .og-artwork-choice-option-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  body.og-print-theme-single-product.single-product .og-artwork-choice-option-title {
    font-size: 0.86rem;
  }

  body.og-print-theme-single-product.single-product .og-artwork-choice-option-desc {
    font-size: 0.76rem;
  }

  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-gallery,
  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-configurator {
    gap: 18px;
  }

  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-panel {
    border-radius: 20px !important;
  }

  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-configurator .og-configurator-panel,
  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-configurator .og-upload-section,
  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-configurator .og-artwork-upload,
  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-configurator .og-summary-box,
  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-configurator .og-order-summary,
  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-gallery .og-gallery-preview {
    padding: 18px !important;
  }

  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-gallery-main-card,
  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-gallery-zoom-wrap {
    min-height: 300px !important;
  }

  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium form.cart .single_add_to_cart_button {
    min-height: 52px !important;
  }
}

/* ==========================================================
   Mobile touch scroll — hero & footer
========================================================== */

@media (max-width: 820px) {
  .og-home-hero {
    overflow: visible;
    touch-action: pan-y;
  }

  .og-home-hero-inner {
    touch-action: pan-y;
  }

  .og-home-hero-visual,
  .og-home-hero-showcase,
  .og-home-hero-media,
  .og-home-float-card {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
  }

  .og-home-hero-copy,
  .og-home-hero-copy a,
  .og-home-hero-copy button {
    pointer-events: auto;
  }

  .og-site-footer,
  .og-home-final-cta {
    touch-action: pan-y;
  }

  .og-chat-widget {
    pointer-events: none;
    touch-action: pan-y;
  }

  .og-chat-widget .og-chat-toggle,
  .og-chat-widget .og-chat-panel.is-open,
  .og-chat-widget .og-assistant-engage-bubble.is-visible,
  .og-chat-widget .og-assistant-engage-bubble.is-visible * {
    pointer-events: auto;
  }

  .og-assistant-engage-bubble:not(.is-visible) {
    pointer-events: none !important;
  }
}

/* ==========================================================
   Mobile menu bottom sheet — desktop reset
========================================================== */

@media (min-width: 821px) {
  .og-mobile-menu-backdrop {
    display: none !important;
  }

  .og-site-nav-wrap.og-mobile-menu-sheet,
  .og-site-nav-wrap.og-mobile-menu-portal,
  .og-site-nav-wrap {
    position: static;
    inset: auto;
    z-index: auto;
    width: auto;
    max-height: none;
    overflow: visible;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transition: none;
  }

  .og-site-nav-wrap::before,
  .og-site-nav-wrap.og-mobile-menu-sheet::before,
  .og-site-nav-wrap.og-mobile-menu-portal::before {
    display: none;
  }

  body.og-mobile-nav-open {
    overflow: auto;
  }
}

/* ==========================================================
   Mobile Gallery + Assistant Hotfix v2 (assistant)
   Outermost widget + panel use dvh-safe fixed insets when open.
   Mobile only. Launcher untouched when closed. Desktop untouched.
========================================================== */

@media (max-width: 1100px) {
  body.og-chat-open #og-chat-widget,
  body.og-chat-open .og-chat-widget,
  #og-chat-panel.is-open,
  .og-chat-panel.is-open,
  .og-assistant-panel.is-open {
    position: fixed !important;
    top: 12px !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 86px !important;
    width: auto !important;
    height: auto !important;
    max-height: none !important;
    overflow: hidden !important;
  }

  body.og-chat-open #og-chat-widget,
  body.og-chat-open .og-chat-widget {
    z-index: 99990 !important;
    pointer-events: none !important;
  }

  #og-chat-panel.is-open,
  .og-chat-panel.is-open,
  .og-assistant-panel.is-open {
    display: flex !important;
    flex-direction: column !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  .og-assistant-header,
  .og-chat-panel-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 10 !important;
    background: #ffffff !important;
    flex: 0 0 auto !important;
    padding-right: 56px !important;
  }

  .og-assistant-body,
  .og-assistant-form,
  .og-chat-form,
  .og-assistant-success,
  .og-assistant-error-wrap {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    max-height: none !important;
    padding-bottom: 24px !important;
  }

  .og-assistant-body .og-assistant-form,
  .og-assistant-body .og-chat-form,
  .og-assistant-error-wrap .og-assistant-form,
  .og-assistant-error-wrap .og-chat-form {
    overflow: visible !important;
    flex: 0 0 auto !important;
    min-height: auto !important;
    max-height: none !important;
    padding-bottom: 0 !important;
  }

  .og-chat-close,
  #og-chat-close {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    z-index: 99999 !important;
    min-width: 44px !important;
    min-height: 44px !important;
    width: 44px !important;
    height: 44px !important;
    flex-shrink: 0 !important;
  }
}

/* ==========================================================
   OG Assistant Internal Scroll Fix v2
   Flex column panel; body scrolls inside fixed viewport. Mobile only.
========================================================== */

@media (max-width: 1100px) {
  #og-chat-panel.is-open,
  .og-chat-panel.is-open,
  .og-assistant-panel.is-open {
    display: flex !important;
    flex-direction: column !important;
  }

  .og-assistant-header,
  .og-chat-panel-header {
    flex: 0 0 auto !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 10 !important;
    background: #ffffff !important;
  }

  .og-assistant-body,
  .og-assistant-success,
  .og-assistant-error-wrap {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    max-height: none !important;
    padding-bottom: 24px !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .og-assistant-form,
  .og-chat-form {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow-x: hidden !important;
    max-height: none !important;
    padding-bottom: 24px !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .og-assistant-body > .og-assistant-form,
  .og-assistant-body > .og-chat-form,
  .og-assistant-error-wrap > .og-assistant-form,
  .og-assistant-error-wrap > .og-chat-form {
    overflow-y: visible !important;
    flex: 0 0 auto !important;
    min-height: auto !important;
    padding-bottom: 0 !important;
  }
}

/* ==========================================================
   OG Product Polish 1.0
   Scroll, sticky summary, overflow, and mobile touch fixes.
   No visual redesign — UX stability only.
========================================================== */

body.og-print-theme-single-product.single-product {
  overflow-x: clip;
  scrollbar-gutter: stable;
}

body.og-print-theme-single-product.single-product .og-site-container.og-product-page,
body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium,
body.og-print-theme-single-product.single-product .ogp-product-page-v1.og-product-page {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
}

body.og-print-theme-single-product.single-product .og-product-breadcrumbs,
body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-header,
body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-shell {
  width: min(1320px, 100%);
  max-width: 1320px;
  box-sizing: border-box;
}

body.og-print-theme-single-product.single-product .og-product-page-shell,
body.og-print-theme-single-product.single-product .og-printco-shell,
body.og-print-theme-single-product.single-product .og-printco-left,
body.og-print-theme-single-product.single-product .og-printco-right,
body.og-print-theme-single-product.single-product .og-product-page-gallery,
body.og-print-theme-single-product.single-product .og-product-page-configurator,
body.og-print-theme-single-product.single-product .ogp-product-shell,
body.og-print-theme-single-product.single-product .ogp-layout,
body.og-print-theme-single-product.single-product .ogp-product-hero,
body.og-print-theme-single-product.single-product .ogp-builder-grid,
body.og-print-theme-single-product.single-product .ogp-tabs-card {
  min-width: 0;
  max-width: 100%;
}

body.og-print-theme-single-product.single-product .og-upload-section,
body.og-print-theme-single-product.single-product .og-summary-box,
body.og-print-theme-single-product.single-product .og-order-summary,
body.og-print-theme-single-product.single-product .og-gallery-preview,
body.og-print-theme-single-product.single-product .og-gallery-preview-grid,
body.og-print-theme-single-product.single-product .ogp-tabs-section,
body.og-print-theme-single-product.single-product .ogp-tabs__panels {
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}

body.og-print-theme-single-product.single-product .og-configurator-field select,
body.og-print-theme-single-product.single-product .og-generated-select {
  max-width: 100%;
  box-sizing: border-box;
}

body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium {
  padding-bottom: var(--og-product-page-bottom-space, 72px);
}

body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-shell {
  margin-bottom: var(--og-product-page-bottom-space, 72px) !important;
}

body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium.is-sticky-configurator .og-summary-box,
body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium.is-sticky-configurator .og-order-summary {
  scroll-margin-bottom: 24px;
}

body.og-print-theme-single-product.single-product .og-chat-widget {
  pointer-events: none;
  touch-action: pan-y;
}

body.og-print-theme-single-product.single-product .og-chat-widget .og-chat-toggle,
body.og-print-theme-single-product.single-product .og-chat-widget .og-chat-panel.is-open,
body.og-print-theme-single-product.single-product .og-chat-widget .og-assistant-engage-bubble.is-visible,
body.og-print-theme-single-product.single-product .og-chat-widget .og-assistant-engage-bubble.is-visible * {
  pointer-events: auto;
}

body.og-print-theme-single-product.single-product .og-assistant-engage-bubble:not(.is-visible),
body.og-print-theme-single-product.single-product .og-assistant-engage-bubble[hidden] {
  pointer-events: none !important;
}

@media (max-width: 1100px) {
  body.og-print-theme-single-product.single-product .og-site-main,
  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium,
  body.og-print-theme-single-product.single-product .ogp-product-page-v1.og-product-page {
    touch-action: pan-y;
  }

  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-header,
  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-shell,
  body.og-print-theme-single-product.single-product .og-product-breadcrumbs {
    width: min(100%, calc(100% - 20px));
  }

  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-configurator {
    position: static !important;
    top: auto !important;
    max-height: none !important;
    overflow: visible !important;
    padding-right: 0 !important;
  }

  body.og-print-theme-single-product.single-product .og-gallery-preview-grid {
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body.og-print-theme-single-product.single-product .og-gallery-thumb {
    flex: 0 0 auto;
  }

  body.og-print-theme-single-product.single-product {
    --og-product-page-bottom-space: calc(48px + var(--og-mobile-bottom-nav-offset, calc(64px + env(safe-area-inset-bottom, 0px))));
  }
}

@media (min-width: 641px) and (max-width: 1100px) {
  body.og-print-theme-single-product.single-product .ogp-tabs__nav {
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  body.og-print-theme-single-product.single-product .ogp-tabs__button {
    flex: 0 0 auto;
  }
}

@media (max-width: 640px) {
  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-header,
  body.og-print-theme-single-product.single-product .og-product-page-v17.og-product-page-premium .og-product-page-shell,
  body.og-print-theme-single-product.single-product .og-product-breadcrumbs {
    width: min(100%, calc(100% - 20px));
  }

  body.og-print-theme-single-product.single-product .ogp-benefits {
    gap: 10px;
  }

  body.og-print-theme-single-product.single-product .ogp-tabs__panels {
    padding: 18px 16px 20px;
    overflow-x: clip;
    overflow-wrap: anywhere;
  }

  body.og-print-theme-single-product.single-product .og-configurator-panel,
  body.og-print-theme-single-product.single-product .og-upload-section,
  body.og-print-theme-single-product.single-product .og-summary-box,
  body.og-print-theme-single-product.single-product .og-order-summary {
    padding: 18px !important;
  }
}

/* ---------- OG Product Option Buttons Final Fix ---------- */

body.og-print-theme-single-product.single-product .og-option-button-group {
  display: grid !important;
  gap: 14px !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
}

body.og-print-theme-single-product.single-product .og-configurator-field-size .og-option-button-group {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

body.og-print-theme-single-product.single-product .og-configurator-field-printing .og-option-button-group {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

body.og-print-theme-single-product.single-product .og-configurator-field-quantity .og-option-button-group {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

body.og-print-theme-single-product.single-product .og-option-button {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  flex: none !important;
  box-sizing: border-box !important;
}

@media (max-width: 900px) {
  body.og-print-theme-single-product.single-product .og-option-button-group {
    grid-template-columns: 1fr !important;
  }
}

/* Hide default WooCommerce notices on OG storefront pages */
body.woocommerce-shop .woocommerce-notices-wrapper,
body.woocommerce-cart .woocommerce-notices-wrapper,
body.single-product .woocommerce-notices-wrapper,
body.woocommerce-shop .woocommerce-message,
body.woocommerce-cart .woocommerce-message,
body.single-product .woocommerce-message,
body.woocommerce-shop .woocommerce-info,
body.woocommerce-cart .woocommerce-info,
body.single-product .woocommerce-info,
body.woocommerce-shop .woocommerce-error,
body.woocommerce-cart .woocommerce-error,
body.single-product .woocommerce-error {
    display: none !important;
}

/* Cart Edit Product autosave — edit mode only */
.og-cart-edit-autosave-status {
    margin: 0 0 0.75rem;
    min-height: 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
}

.og-cart-edit-autosave-status[data-status="saving"] {
    color: #4b5563;
}

.og-cart-edit-autosave-status[data-status="saved"] {
    color: #15803d;
}

.og-cart-edit-autosave-status[data-status="error"] {
    color: #b91c1c;
}

/* Progressive enhancement: hide Update only after autosave arms successfully */
html.og-edit-cart-autosave-ready.og-edit-cart-mode form.cart .single_add_to_cart_button,
html.og-edit-cart-autosave-ready.og-edit-cart-mode form.cart button[type="submit"],
html.og-edit-cart-autosave-ready.og-edit-cart-mode form.cart input[type="submit"],
html.og-edit-cart-autosave-ready.og-edit-cart-mode .og-summary-box button[type="submit"],
html.og-edit-cart-autosave-ready.og-edit-cart-mode .og-order-summary button[type="submit"] {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ==========================================================
   OG Platform — hide mobile scrollbars (keep scrolling)
   Mobile / narrow only: max-width 1100px
   Scoped to page + known scroll containers (no global *).
========================================================== */

@media (max-width: 1100px) {
  html,
  body,
  .og-site-nav-wrap.og-mobile-menu-sheet,
  .og-site-nav-wrap.og-mobile-menu-portal,
  .og-mobile-menu-panel,
  .og-mobile-menu-list,
  .og-assistant-body,
  .og-assistant-form,
  .og-chat-form,
  .og-assistant-success,
  .og-assistant-error-wrap,
  .og-chat-panel,
  .og-gallery-preview-grid,
  .ogp-tabs__nav,
  .og-product-page-configurator,
  .og-custom-select__panel,
  .og-custom-select__list,
  .og-cart-page,
  .og-cart-summary,
  .og-checkout-page,
  .og-checkout-summary {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar,
  .og-site-nav-wrap.og-mobile-menu-sheet::-webkit-scrollbar,
  .og-site-nav-wrap.og-mobile-menu-portal::-webkit-scrollbar,
  .og-mobile-menu-panel::-webkit-scrollbar,
  .og-mobile-menu-list::-webkit-scrollbar,
  .og-assistant-body::-webkit-scrollbar,
  .og-assistant-form::-webkit-scrollbar,
  .og-chat-form::-webkit-scrollbar,
  .og-assistant-success::-webkit-scrollbar,
  .og-assistant-error-wrap::-webkit-scrollbar,
  .og-chat-panel::-webkit-scrollbar,
  .og-gallery-preview-grid::-webkit-scrollbar,
  .ogp-tabs__nav::-webkit-scrollbar,
  .og-product-page-configurator::-webkit-scrollbar,
  .og-custom-select__panel::-webkit-scrollbar,
  .og-custom-select__list::-webkit-scrollbar,
  .og-cart-page::-webkit-scrollbar,
  .og-cart-summary::-webkit-scrollbar,
  .og-checkout-page::-webkit-scrollbar,
  .og-checkout-summary::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
    background: transparent !important;
  }
}

/* ==========================================================
   OG Platform — desktop scrollbars (design system)
   Desktop only: min-width 1101px
   Mobile remains hidden via the block above.
========================================================== */

@media (min-width: 1101px) {
  html,
  body,
  .og-site-nav-wrap.og-mobile-menu-sheet,
  .og-site-nav-wrap.og-mobile-menu-portal,
  .og-mobile-menu-panel,
  .og-mobile-menu-list,
  .og-assistant-body,
  .og-assistant-form,
  .og-chat-form,
  .og-assistant-success,
  .og-assistant-error-wrap,
  .og-chat-panel,
  .og-gallery-preview-grid,
  .ogp-tabs__nav,
  .og-product-page-configurator,
  .og-custom-select__panel,
  .og-custom-select__list,
  .og-cart-page,
  .og-cart-summary,
  .og-checkout-page,
  .og-checkout-summary,
  .og-checkout-main {
    scrollbar-width: thin;
    scrollbar-color: var(--og-scrollbar-thumb, var(--og-brand, #006cff))
      var(--og-scrollbar-track, var(--og-bg-soft, #f4f8fc));
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar,
  .og-site-nav-wrap.og-mobile-menu-sheet::-webkit-scrollbar,
  .og-site-nav-wrap.og-mobile-menu-portal::-webkit-scrollbar,
  .og-mobile-menu-panel::-webkit-scrollbar,
  .og-mobile-menu-list::-webkit-scrollbar,
  .og-assistant-body::-webkit-scrollbar,
  .og-assistant-form::-webkit-scrollbar,
  .og-chat-form::-webkit-scrollbar,
  .og-assistant-success::-webkit-scrollbar,
  .og-assistant-error-wrap::-webkit-scrollbar,
  .og-chat-panel::-webkit-scrollbar,
  .og-gallery-preview-grid::-webkit-scrollbar,
  .ogp-tabs__nav::-webkit-scrollbar,
  .og-product-page-configurator::-webkit-scrollbar,
  .og-custom-select__panel::-webkit-scrollbar,
  .og-custom-select__list::-webkit-scrollbar,
  .og-cart-page::-webkit-scrollbar,
  .og-cart-summary::-webkit-scrollbar,
  .og-checkout-page::-webkit-scrollbar,
  .og-checkout-summary::-webkit-scrollbar,
  .og-checkout-main::-webkit-scrollbar {
    width: var(--og-scrollbar-size, 8px);
    height: var(--og-scrollbar-size, 8px);
  }

  html::-webkit-scrollbar-track,
  body::-webkit-scrollbar-track,
  .og-site-nav-wrap.og-mobile-menu-sheet::-webkit-scrollbar-track,
  .og-site-nav-wrap.og-mobile-menu-portal::-webkit-scrollbar-track,
  .og-mobile-menu-panel::-webkit-scrollbar-track,
  .og-mobile-menu-list::-webkit-scrollbar-track,
  .og-assistant-body::-webkit-scrollbar-track,
  .og-assistant-form::-webkit-scrollbar-track,
  .og-chat-form::-webkit-scrollbar-track,
  .og-assistant-success::-webkit-scrollbar-track,
  .og-assistant-error-wrap::-webkit-scrollbar-track,
  .og-chat-panel::-webkit-scrollbar-track,
  .og-gallery-preview-grid::-webkit-scrollbar-track,
  .ogp-tabs__nav::-webkit-scrollbar-track,
  .og-product-page-configurator::-webkit-scrollbar-track,
  .og-custom-select__panel::-webkit-scrollbar-track,
  .og-custom-select__list::-webkit-scrollbar-track,
  .og-cart-page::-webkit-scrollbar-track,
  .og-cart-summary::-webkit-scrollbar-track,
  .og-checkout-page::-webkit-scrollbar-track,
  .og-checkout-summary::-webkit-scrollbar-track,
  .og-checkout-main::-webkit-scrollbar-track {
    background: var(--og-scrollbar-track, var(--og-bg-soft, #f4f8fc));
    border-radius: 999px;
  }

  html::-webkit-scrollbar-thumb,
  body::-webkit-scrollbar-thumb,
  .og-site-nav-wrap.og-mobile-menu-sheet::-webkit-scrollbar-thumb,
  .og-site-nav-wrap.og-mobile-menu-portal::-webkit-scrollbar-thumb,
  .og-mobile-menu-panel::-webkit-scrollbar-thumb,
  .og-mobile-menu-list::-webkit-scrollbar-thumb,
  .og-assistant-body::-webkit-scrollbar-thumb,
  .og-assistant-form::-webkit-scrollbar-thumb,
  .og-chat-form::-webkit-scrollbar-thumb,
  .og-assistant-success::-webkit-scrollbar-thumb,
  .og-assistant-error-wrap::-webkit-scrollbar-thumb,
  .og-chat-panel::-webkit-scrollbar-thumb,
  .og-gallery-preview-grid::-webkit-scrollbar-thumb,
  .ogp-tabs__nav::-webkit-scrollbar-thumb,
  .og-product-page-configurator::-webkit-scrollbar-thumb,
  .og-custom-select__panel::-webkit-scrollbar-thumb,
  .og-custom-select__list::-webkit-scrollbar-thumb,
  .og-cart-page::-webkit-scrollbar-thumb,
  .og-cart-summary::-webkit-scrollbar-thumb,
  .og-checkout-page::-webkit-scrollbar-thumb,
  .og-checkout-summary::-webkit-scrollbar-thumb,
  .og-checkout-main::-webkit-scrollbar-thumb {
    background: var(--og-scrollbar-thumb, var(--og-brand, #006cff));
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: background-color 0.2s ease;
  }

  html::-webkit-scrollbar-thumb:hover,
  body::-webkit-scrollbar-thumb:hover,
  .og-site-nav-wrap.og-mobile-menu-sheet::-webkit-scrollbar-thumb:hover,
  .og-site-nav-wrap.og-mobile-menu-portal::-webkit-scrollbar-thumb:hover,
  .og-mobile-menu-panel::-webkit-scrollbar-thumb:hover,
  .og-mobile-menu-list::-webkit-scrollbar-thumb:hover,
  .og-assistant-body::-webkit-scrollbar-thumb:hover,
  .og-assistant-form::-webkit-scrollbar-thumb:hover,
  .og-chat-form::-webkit-scrollbar-thumb:hover,
  .og-assistant-success::-webkit-scrollbar-thumb:hover,
  .og-assistant-error-wrap::-webkit-scrollbar-thumb:hover,
  .og-chat-panel::-webkit-scrollbar-thumb:hover,
  .og-gallery-preview-grid::-webkit-scrollbar-thumb:hover,
  .ogp-tabs__nav::-webkit-scrollbar-thumb:hover,
  .og-product-page-configurator::-webkit-scrollbar-thumb:hover,
  .og-custom-select__panel::-webkit-scrollbar-thumb:hover,
  .og-custom-select__list::-webkit-scrollbar-thumb:hover,
  .og-cart-page::-webkit-scrollbar-thumb:hover,
  .og-cart-summary::-webkit-scrollbar-thumb:hover,
  .og-checkout-page::-webkit-scrollbar-thumb:hover,
  .og-checkout-summary::-webkit-scrollbar-thumb:hover,
  .og-checkout-main::-webkit-scrollbar-thumb:hover {
    background: var(--og-scrollbar-thumb-hover, var(--og-brand-dark, #0052c3));
  }
}
