/*
 * Pawnyra customer-facing visual refinement.
 * This file deliberately contains presentation only; business logic remains in
 * the existing frontend modules.
 */

:root {
  --p-ink: #073955;
  --p-ink-soft: #2d6079;
  --p-muted: #67879a;
  --p-teal: #65d3e8;
  --p-teal-dark: #168faa;
  --p-aqua: #bceef8;
  --p-aqua-soft: #eafaff;
  --p-coral: #ff6f61;
  --p-coral-dark: #e9554a;
  --p-sun: #ffc94b;
  --p-cream: #fff8e8;
  --p-paper: #ffffff;
  --p-line: rgba(22, 143, 170, 0.14);
  --p-shadow-sm: 0 10px 28px rgba(42, 145, 177, 0.09);
  --p-shadow-md: 0 22px 60px rgba(42, 145, 177, 0.12);
  --p-shadow-lg: 0 34px 90px rgba(42, 145, 177, 0.16);
  --p-radius-sm: 16px;
  --p-radius-md: 26px;
  --p-radius-lg: 40px;
  --p-page: min(1680px, calc(100% - 48px));
  --page-anchor-offset: 132px;
}

html {
  color-scheme: light;
  background: #f5fcff;
  scroll-padding-top: var(--page-anchor-offset) !important;
}

body.home-page,
body.products-page,
body.shipping-page,
body.contact-page,
body.payment-result-body {
  margin: 0;
  color: var(--p-ink);
  background:
    radial-gradient(circle at 8% 24%, rgba(164, 232, 247, 0.3), transparent 25rem),
    radial-gradient(circle at 94% 68%, rgba(201, 241, 250, 0.26), transparent 28rem),
    linear-gradient(180deg, #f4fcff 0%, #ffffff 34%, #f5fbff 100%);
  font-family: ui-rounded, "Avenir Next", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.home-page *,
body.products-page *,
body.shipping-page *,
body.contact-page *,
body.payment-result-body * {
  box-sizing: border-box;
}

body.home-page ::selection,
body.products-page ::selection,
body.shipping-page ::selection,
body.contact-page ::selection,
body.payment-result-body ::selection {
  color: var(--p-ink);
  background: rgba(255, 201, 75, 0.72);
}

body.home-page :is(a, button, input, select, textarea):focus-visible,
body.products-page :is(a, button, input, select, textarea):focus-visible,
body.shipping-page :is(a, button, input, select, textarea):focus-visible,
body.contact-page :is(a, button, input, select, textarea):focus-visible {
  outline: 3px solid rgba(14, 141, 145, 0.34);
  outline-offset: 3px;
}

/* Header */
.sticky-header-shell {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  width: 100%;
  overflow: visible;
  border-bottom: 1px solid rgba(22, 143, 170, 0.1);
  background: rgba(247, 253, 255, 0.9) !important;
  box-shadow: 0 9px 32px rgba(42, 145, 177, 0.08) !important;
  backdrop-filter: blur(18px) saturate(150%);
}

.top-notice {
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: 7px 20px !important;
  color: #07516f !important;
  border-bottom: 1px solid rgba(22, 143, 170, 0.12);
  background: linear-gradient(110deg, rgba(223, 248, 255, 0.98), rgba(177, 232, 246, 0.96)) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  line-height: 1.35;
  letter-spacing: 0.025em;
  text-align: center;
}

.site-header {
  width: var(--p-page) !important;
  min-height: 82px !important;
  margin: 0 auto !important;
  padding: 12px 0 !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: clamp(18px, 3vw, 44px) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 11px !important;
  min-width: max-content;
  padding: 6px 14px 6px 7px !important;
  color: var(--p-ink) !important;
  background: rgba(255, 255, 255, 0.84) !important;
  border: 1px solid rgba(14, 141, 145, 0.13) !important;
  border-radius: 999px !important;
  box-shadow: var(--p-shadow-sm) !important;
  font-size: 1.24rem !important;
  font-weight: 900 !important;
  letter-spacing: -0.025em;
  text-decoration: none !important;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(18, 83, 102, 0.14) !important;
}

.brand-mark {
  width: 48px !important;
  height: 48px !important;
  flex: 0 0 48px;
  padding: 0 !important;
  display: grid !important;
  place-items: center;
  overflow: hidden;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: var(--p-aqua-soft);
  box-shadow: 0 5px 16px rgba(14, 141, 145, 0.18);
}

.brand-mark img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.nav-links {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  min-width: 0;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center;
  padding: 0 17px !important;
  color: var(--p-ink-soft) !important;
  border: 1px solid transparent !important;
  border-radius: 999px !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: #07516f !important;
  background: rgba(218, 246, 253, 0.92) !important;
  transform: translateY(-1px);
}

.home-page .nav-links a[href="index.html"],
.products-page .nav-links a[href="products.html"],
.shipping-page .nav-links a[href="shipping.html"],
.contact-page .nav-links a[href="contact.html"] {
  color: #074462 !important;
  border-color: rgba(22, 143, 170, 0.18) !important;
  background: linear-gradient(135deg, #dcf8ff, #a8e8f5) !important;
  box-shadow: 0 8px 20px rgba(65, 166, 196, 0.16) !important;
}

.header-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  min-width: max-content;
}

.language-picker {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  color: var(--p-muted) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
}

.language-picker select,
.contact-form select,
.contact-form input,
.contact-form textarea,
.tracking-card input,
.checkout-form input,
.checkout-form textarea {
  color: var(--p-ink) !important;
  border: 1px solid rgba(9, 47, 71, 0.15) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.88) inset !important;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.language-picker select {
  min-height: 44px !important;
  padding: 0 34px 0 14px !important;
  border-radius: 14px !important;
  font: inherit !important;
  font-size: 0.84rem !important;
}

.cart-button,
.mobile-menu-button {
  min-height: 46px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center;
  gap: 8px !important;
  padding: 0 14px !important;
  color: var(--p-ink) !important;
  border: 1px solid rgba(9, 47, 71, 0.12) !important;
  border-radius: 15px !important;
  background: #ffffff !important;
  box-shadow: 0 8px 22px rgba(18, 83, 102, 0.08) !important;
  font-weight: 900 !important;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cart-button:hover,
.mobile-menu-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(18, 83, 102, 0.13) !important;
}

.cart-icon svg {
  width: 21px !important;
  height: 21px !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.cart-count {
  min-width: 23px !important;
  height: 23px !important;
  display: inline-grid !important;
  place-items: center;
  padding: 0 6px !important;
  color: #ffffff !important;
  background: var(--p-coral) !important;
  border-radius: 999px !important;
  font-size: 0.72rem !important;
  box-shadow: 0 5px 12px rgba(255, 111, 97, 0.28);
}

.mobile-menu-button {
  display: none !important;
}

/* Shared buttons and type */
.primary-action,
.secondary-action {
  min-height: 52px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 24px !important;
  border-radius: 16px !important;
  font-size: 0.94rem !important;
  font-weight: 900 !important;
  line-height: 1.2;
  text-decoration: none !important;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.primary-action {
  color: #ffffff !important;
  border: 1px solid rgba(232, 73, 62, 0.18) !important;
  background: linear-gradient(135deg, var(--p-coral), var(--p-coral-dark)) !important;
  box-shadow: 0 14px 28px rgba(255, 111, 97, 0.24) !important;
}

.secondary-action {
  color: var(--p-ink) !important;
  border: 1px solid rgba(9, 47, 71, 0.13) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 10px 26px rgba(18, 83, 102, 0.08) !important;
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-3px);
  filter: saturate(108%);
}

.primary-action:hover {
  box-shadow: 0 18px 36px rgba(255, 111, 97, 0.3) !important;
}

.eyebrow {
  width: max-content;
  max-width: 100%;
  margin: 0 0 14px !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  color: var(--p-teal-dark) !important;
  font-size: 0.77rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em !important;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "" !important;
  width: 24px;
  height: 4px;
  flex: 0 0 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--p-coral), var(--p-sun)) !important;
}

.eyebrow::after {
  content: none !important;
}

.section h2,
.contact-hero h1,
.tracking-copy h1 {
  margin: 0;
  color: var(--p-ink) !important;
  font-size: clamp(2rem, 4vw, 3.7rem) !important;
  font-weight: 900 !important;
  line-height: 1.06 !important;
  letter-spacing: -0.045em !important;
}

/* Hero */
.home-page main#top,
.products-page main#top,
.shipping-page main#top {
  padding-top: 24px !important;
}

.home-page .hero,
.products-page .hero,
.shipping-page .hero {
  width: var(--p-page) !important;
  min-height: 600px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr) !important;
  align-items: stretch !important;
  gap: 0 !important;
  overflow: hidden !important;
  position: relative;
  border: 1px solid rgba(52, 168, 199, 0.18) !important;
  border-radius: var(--p-radius-lg) !important;
  background:
    radial-gradient(circle at 68% 18%, rgba(255, 255, 255, 0.88), transparent 22%),
    linear-gradient(128deg, #f0fbff 0%, #e2f8fd 48%, #cdeff8 100%) !important;
  box-shadow: var(--p-shadow-md) !important;
  isolation: isolate;
}

.home-page .hero::before,
.products-page .hero::before,
.shipping-page .hero::before {
  content: "" !important;
  position: absolute;
  inset: auto auto -170px -90px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(167, 230, 245, 0.22) !important;
  pointer-events: none;
  z-index: -1;
}

.home-page .hero::after,
.products-page .hero::after,
.shipping-page .hero::after {
  content: "" !important;
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(238, 250, 255, 0.98) 0%, rgba(230, 248, 253, 0.9) 38%, rgba(218, 244, 251, 0.2) 66%, transparent 100%) !important;
  pointer-events: none;
  z-index: 1;
}

.hero-copy {
  min-width: 0 !important;
  padding: clamp(46px, 4.6vw, 68px) clamp(36px, 4.6vw, 68px) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  position: relative;
  z-index: 2;
  grid-column: 1 / 2;
  min-height: 600px;
}

.hero h1,
.home-page #hero-title {
  width: auto !important;
  max-width: 720px !important;
  margin: 0 !important;
  color: var(--p-ink) !important;
  font-size: clamp(3.2rem, 4.7vw, 4.75rem) !important;
  font-weight: 900 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.058em !important;
  overflow-wrap: normal !important;
}

.hero p:not(.eyebrow) {
  max-width: 610px !important;
  margin: 24px 0 0 !important;
  color: var(--p-ink-soft) !important;
  font-size: clamp(1rem, 1.35vw, 1.17rem) !important;
  font-weight: 650 !important;
  line-height: 1.75 !important;
}

.hero-actions {
  display: flex !important;
  flex-wrap: wrap;
  gap: 12px !important;
  margin-top: 32px !important;
}

.hero-image {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
  filter: none;
  z-index: 0;
}

/* Trust and sections */
.trust-strip {
  width: min(1440px, calc(100% - 96px)) !important;
  margin: -34px auto 0 !important;
  padding: 12px !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  position: relative;
  z-index: 5;
  border: 1px solid rgba(9, 47, 71, 0.08) !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: var(--p-shadow-md) !important;
  backdrop-filter: blur(12px);
}

.trust-strip > div {
  min-height: 82px;
  padding: 15px 18px 15px 62px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 2px !important;
  position: relative;
  border: 0 !important;
  border-radius: 16px !important;
  background: transparent !important;
}

.trust-strip > div + div {
  border-left: 1px solid var(--p-line) !important;
}

.trust-strip > div::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  color: var(--p-teal-dark);
  background: var(--p-aqua-soft);
  border-radius: 50%;
  font-weight: 950;
}

.trust-strip strong {
  color: var(--p-ink) !important;
  font-size: 0.93rem !important;
  font-weight: 900 !important;
}

.trust-strip span {
  color: var(--p-muted) !important;
  font-size: 0.79rem !important;
  font-weight: 650 !important;
}

/* Prominent B2B entry reusing the existing contact and WhatsApp flows. */
.b2b-quote-panel {
  width: min(1540px, calc(100% - 48px));
  margin: 52px auto 0;
  padding: clamp(28px, 4vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(52, 168, 199, 0.2);
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 255, 255, 0.9), transparent 18rem),
    linear-gradient(135deg, rgba(226, 249, 255, 0.96), rgba(177, 232, 246, 0.88));
  box-shadow: var(--p-shadow-md);
  backdrop-filter: blur(18px) saturate(130%);
}

.b2b-quote-panel::after {
  content: "B2B";
  position: absolute;
  right: -12px;
  bottom: -42px;
  color: rgba(46, 159, 190, 0.08);
  font-size: clamp(6rem, 12vw, 11rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.b2b-quote-copy,
.b2b-quote-window {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.b2b-quote-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--p-ink);
  font-size: clamp(2rem, 3.5vw, 3.65rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.b2b-quote-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--p-ink-soft);
  font-weight: 650;
}

.b2b-benefits {
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.b2b-benefits li {
  padding: 8px 12px 8px 34px;
  position: relative;
  color: #07516f;
  border: 1px solid rgba(52, 168, 199, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
}

.b2b-benefits li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  color: #1597b3;
  font-weight: 950;
}

.b2b-quote-window {
  padding: clamp(24px, 3vw, 38px);
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(65, 166, 196, 0.13);
  backdrop-filter: blur(16px);
}

.b2b-quote-window > span {
  width: max-content;
  padding: 6px 10px;
  color: #07516f;
  border-radius: 999px;
  background: #dff7fd;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.b2b-quote-window > strong {
  color: var(--p-ink);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 900;
}

.b2b-quote-window > p {
  margin: 0;
  color: var(--p-muted);
  font-size: 0.9rem;
}

.b2b-quote-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.b2b-quote-actions .primary-action,
.b2b-quote-actions .secondary-action {
  min-height: 48px;
  flex: 1 1 190px;
  padding-inline: 18px !important;
}

.section {
  width: min(1540px, calc(100% - 48px)) !important;
  margin: clamp(76px, 8vw, 118px) auto 0 !important;
  padding: 0 !important;
}

.section-heading {
  min-height: auto !important;
  display: flex !important;
  align-items: end !important;
  justify-content: space-between !important;
  gap: 28px !important;
  padding: 0 0 30px !important;
  border: 0 !important;
  background: transparent !important;
}

.filters {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 7px !important;
  padding: 6px !important;
  border: 1px solid var(--p-line) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: var(--p-shadow-sm) !important;
}

.filter {
  min-height: 40px !important;
  padding: 0 14px !important;
  color: var(--p-ink-soft) !important;
  border: 0 !important;
  border-radius: 13px !important;
  background: transparent !important;
  font-size: 0.78rem !important;
  font-weight: 850 !important;
}

.filter:hover {
  color: var(--p-teal-dark) !important;
  background: var(--p-aqua-soft) !important;
}

.filter.active {
  color: #074462 !important;
  border: 1px solid rgba(22, 143, 170, 0.16) !important;
  background: linear-gradient(135deg, #dcf8ff, #a8e8f5) !important;
  box-shadow: 0 8px 18px rgba(65, 166, 196, 0.14) !important;
}

.product-grid {
  gap: clamp(22px, 2.7vw, 34px) !important;
}

.product-card.catalog-product-card {
  overflow: hidden !important;
  border: 1px solid rgba(9, 47, 71, 0.1) !important;
  border-radius: 28px !important;
  background: #ffffff !important;
  box-shadow: var(--p-shadow-sm) !important;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease !important;
}

.product-card.catalog-product-card:hover {
  transform: translateY(-7px) !important;
  border-color: rgba(14, 141, 145, 0.24) !important;
  box-shadow: var(--p-shadow-lg) !important;
}

.catalog-product-card .favorite-badge {
  top: 18px !important;
  left: 18px !important;
  min-height: 34px !important;
  padding: 0 14px !important;
  color: #5a3c00 !important;
  border: 1px solid rgba(255, 185, 44, 0.3) !important;
  background: rgba(255, 246, 207, 0.94) !important;
  box-shadow: 0 9px 20px rgba(143, 100, 0, 0.11) !important;
  backdrop-filter: blur(10px);
  font-size: 0.73rem !important;
  letter-spacing: 0.03em;
}

.catalog-product-card .product-media,
.catalog-product-card .main-image-slot {
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(160deg, #f4fffb 0%, #eaf7ef 100%) !important;
}

.catalog-product-card .main-image-slot img {
  transition: transform 260ms ease !important;
}

.catalog-product-card:hover .main-image-slot img {
  transform: scale(1.035);
}

.catalog-product-card .product-info {
  min-height: 160px !important;
  padding: 25px 20px 28px !important;
  gap: 16px !important;
  border-top: 1px solid rgba(9, 47, 71, 0.06);
  background: rgba(255, 255, 255, 0.98);
}

.catalog-product-card .product-title-button {
  color: var(--p-ink) !important;
  font-size: clamp(1.12rem, 1.5vw, 1.32rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.018em;
}

.catalog-product-card .price {
  min-width: 124px !important;
  min-height: 46px !important;
  padding: 0 22px !important;
  color: var(--p-ink) !important;
  border: 1px solid rgba(255, 188, 47, 0.38) !important;
  background: var(--p-cream) !important;
  box-shadow: none !important;
  font-size: 1.13rem !important;
  font-weight: 900 !important;
}

/* Service sections */
.logistics {
  padding: clamp(34px, 5vw, 64px) !important;
  display: grid !important;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr) !important;
  align-items: center !important;
  gap: clamp(32px, 6vw, 80px) !important;
  border: 1px solid rgba(52, 168, 199, 0.17) !important;
  border-radius: var(--p-radius-lg) !important;
  background:
    radial-gradient(circle at 8% 20%, rgba(183, 235, 247, 0.26), transparent 15rem),
    linear-gradient(135deg, #f2fbff, #ddf5fb) !important;
  box-shadow: var(--p-shadow-md) !important;
}

.steps {
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  gap: 12px !important;
  list-style: none;
}

.steps li {
  min-height: 112px;
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 16px !important;
  padding: 19px 22px !important;
  border: 1px solid rgba(9, 47, 71, 0.09) !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: 0 9px 24px rgba(18, 83, 102, 0.06) !important;
}

.steps li > span {
  width: 46px !important;
  height: 46px !important;
  display: grid !important;
  place-items: center;
  color: #074462 !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, #d9f7ff, #91dfee) !important;
  box-shadow: 0 9px 18px rgba(65, 166, 196, 0.15);
  font-weight: 900 !important;
}

.steps strong {
  color: var(--p-ink) !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
}

.steps p {
  margin: 4px 0 0 !important;
  color: var(--p-muted) !important;
  font-size: 0.86rem !important;
  line-height: 1.55 !important;
}

.customization {
  padding: clamp(34px, 5vw, 64px) !important;
  border: 1px solid rgba(255, 188, 47, 0.18) !important;
  border-radius: var(--p-radius-lg) !important;
  background:
    radial-gradient(circle at 94% 6%, rgba(255, 201, 75, 0.2), transparent 17rem),
    #fffdf7 !important;
  box-shadow: var(--p-shadow-sm) !important;
}

.customization-header {
  max-width: 740px;
  margin-bottom: 34px !important;
}

.customization-header > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--p-muted);
}

.custom-steps {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.custom-steps > div {
  min-height: 144px !important;
  padding: 18px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  border: 1px solid rgba(9, 47, 71, 0.08) !important;
  border-radius: 19px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: 0 8px 22px rgba(18, 83, 102, 0.05) !important;
}

.custom-steps > div > span {
  width: 32px !important;
  height: 32px !important;
  display: grid !important;
  place-items: center;
  color: var(--p-teal-dark) !important;
  border-radius: 11px !important;
  background: var(--p-aqua-soft) !important;
  font-weight: 900 !important;
}

.custom-steps strong {
  color: var(--p-ink) !important;
  font-size: 0.87rem !important;
  line-height: 1.35 !important;
}

.custom-steps small {
  color: var(--p-muted) !important;
  font-size: 0.74rem !important;
  line-height: 1.45 !important;
}

.section.contact {
  margin-bottom: clamp(64px, 8vw, 108px) !important;
  padding: clamp(34px, 5vw, 64px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 30px !important;
  color: var(--p-ink) !important;
  border: 1px solid rgba(52, 168, 199, 0.2) !important;
  border-radius: var(--p-radius-lg) !important;
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.72), transparent 15rem),
    linear-gradient(135deg, rgba(224, 248, 255, 0.98), rgba(173, 230, 244, 0.94)) !important;
  box-shadow: var(--p-shadow-md) !important;
}

.section.contact .eyebrow,
.section.contact h2,
.section.contact p {
  color: var(--p-ink) !important;
}

.section.contact .eyebrow::before {
  background: linear-gradient(90deg, #35b8d3, #8cdeee) !important;
}

.section.contact p:not(.eyebrow) {
  max-width: 700px;
  margin: 16px 0 0;
  color: var(--p-ink-soft) !important;
}

.section.contact .primary-action {
  flex: 0 0 auto;
  color: var(--p-ink) !important;
  border-color: rgba(22, 143, 170, 0.18) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 14px 30px rgba(65, 166, 196, 0.14) !important;
}

/* Shipping and contact pages */
.shipping-page .hero,
.products-page .hero {
  min-height: 400px !important;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr) !important;
}

.shipping-page .hero-image,
.products-page .hero-image {
  min-height: 0 !important;
}

.shipping-page .hero-copy,
.products-page .hero-copy {
  min-height: 400px;
}

.shipping-page .hero h1,
.products-page .hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.7rem) !important;
}

.shipping-page #tracking.order-tracking,
.shipping-page .order-tracking {
  width: min(1480px, calc(100% - 48px)) !important;
  margin: clamp(76px, 8vw, 112px) auto 0 !important;
  padding: clamp(34px, 5vw, 60px) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr) !important;
  gap: clamp(30px, 6vw, 76px) !important;
  align-items: center !important;
  border: 1px solid rgba(14, 141, 145, 0.14) !important;
  border-radius: var(--p-radius-lg) !important;
  background: linear-gradient(135deg, #eefbfa, #ffffff) !important;
  box-shadow: var(--p-shadow-md) !important;
}

.tracking-copy p:not(.eyebrow) {
  margin: 18px 0 0 !important;
  color: var(--p-muted) !important;
}

.shipping-page .tracking-card {
  width: 100% !important;
  padding: 28px !important;
  display: grid !important;
  gap: 14px !important;
  border: 1px solid rgba(9, 47, 71, 0.1) !important;
  border-radius: 24px !important;
  background: #ffffff !important;
  box-shadow: var(--p-shadow-sm) !important;
}

.tracking-card label,
.contact-form label,
.checkout-form label {
  color: var(--p-ink-soft) !important;
  font-size: 0.82rem !important;
  font-weight: 850 !important;
}

.tracking-card input,
.contact-form input,
.contact-form select,
.contact-form textarea,
.checkout-form input,
.checkout-form textarea {
  width: 100%;
  min-height: 50px !important;
  margin-top: 7px !important;
  padding: 12px 14px !important;
  border-radius: 14px !important;
  font: inherit !important;
}

.contact-form textarea,
.checkout-form textarea {
  min-height: 128px !important;
  resize: vertical;
}

.tracking-card input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.checkout-form input:focus,
.checkout-form textarea:focus {
  border-color: rgba(14, 141, 145, 0.58) !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(14, 141, 145, 0.1) !important;
}

.contact-page-main {
  width: min(1480px, calc(100% - 48px)) !important;
  margin: 0 auto !important;
  padding: clamp(48px, 7vw, 88px) 0 clamp(70px, 9vw, 118px) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr) !important;
  gap: 24px !important;
  align-items: start !important;
}

.contact-hero {
  grid-column: 1 / -1;
  max-width: 780px;
  padding: 0 0 30px !important;
}

.contact-hero p:not(.eyebrow) {
  margin: 20px 0 0 !important;
  color: var(--p-muted) !important;
  font-size: 1.06rem !important;
}

.contact-support-card,
.contact-form-card {
  min-height: 100%;
  padding: clamp(30px, 4vw, 48px) !important;
  border: 1px solid rgba(9, 47, 71, 0.1) !important;
  border-radius: 30px !important;
  box-shadow: var(--p-shadow-md) !important;
}

.contact-support-card {
  color: var(--p-ink) !important;
  background:
    radial-gradient(circle at 94% 4%, rgba(255, 255, 255, 0.72), transparent 13rem),
    linear-gradient(145deg, #e3f9ff, #b5e9f5) !important;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.96) !important;
}

.contact-support-card h2,
.contact-support-card p {
  color: var(--p-ink) !important;
}

.contact-support-card > p:not(.contact-pill) {
  color: var(--p-ink-soft) !important;
}

.contact-support-card .primary-action {
  width: 100%;
  margin-top: 18px;
  color: var(--p-ink) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  background: #ffffff !important;
}

.contact-pill {
  width: max-content;
  padding: 7px 12px !important;
  border-radius: 999px !important;
  color: var(--p-teal-dark) !important;
  background: var(--p-aqua-soft) !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-support-card .contact-pill {
  color: #07516f !important;
  background: rgba(255, 255, 255, 0.68) !important;
}

.contact-form {
  margin-top: 26px !important;
  gap: 17px !important;
}

/* Panels and dialogs: presentation only */
.mobile-menu-panel {
  background: rgba(7, 57, 85, 0.2) !important;
  backdrop-filter: blur(5px);
}

.cart-panel,
.mobile-menu-card {
  border-left: 1px solid rgba(9, 47, 71, 0.1) !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: -28px 0 80px rgba(9, 47, 71, 0.18) !important;
  backdrop-filter: blur(18px);
}

.mobile-menu-card {
  width: min(420px, calc(100vw - 24px)) !important;
  color: var(--p-ink) !important;
  border-right: 1px solid rgba(52, 168, 199, 0.2) !important;
  background:
    radial-gradient(circle at 92% 8%, rgba(151, 225, 241, 0.35), transparent 14rem),
    linear-gradient(160deg, rgba(249, 254, 255, 0.99), rgba(224, 247, 252, 0.99)) !important;
  box-shadow: 24px 0 70px rgba(7, 57, 85, 0.2) !important;
}

.mobile-menu-head,
.mobile-menu-links {
  border-color: rgba(22, 143, 170, 0.14) !important;
}

.mobile-menu-brand,
.mobile-menu-links a {
  color: var(--p-ink) !important;
}

.mobile-menu-links {
  gap: 12px !important;
  padding: 30px 0 !important;
}

.mobile-menu-links a {
  padding: 13px 16px !important;
  border: 1px solid rgba(22, 143, 170, 0.12) !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  box-shadow: 0 8px 20px rgba(65, 166, 196, 0.07) !important;
  font-size: 1.2rem !important;
}

.mobile-menu-links a::before {
  color: #1597b3 !important;
}

.mobile-menu-social > span {
  color: var(--p-muted) !important;
}

.mobile-menu-social a {
  color: #07516f !important;
  border-color: rgba(22, 143, 170, 0.15) !important;
  background: rgba(255, 255, 255, 0.82) !important;
  box-shadow: 0 8px 18px rgba(65, 166, 196, 0.08) !important;
}

.mobile-menu-contact {
  border-color: rgba(22, 143, 170, 0.16) !important;
  background: rgba(204, 241, 249, 0.74) !important;
}

.mobile-menu-contact span,
.mobile-menu-contact strong {
  color: #07516f !important;
}

.product-modal-card,
.checkout-card {
  border: 1px solid rgba(9, 47, 71, 0.11) !important;
  border-radius: 30px !important;
  background: #ffffff !important;
  box-shadow: var(--p-shadow-lg) !important;
}

/* Storefront dialogs must remain actionable above the sticky header. */
.product-modal {
  z-index: 1500 !important;
}

.media-lightbox {
  z-index: 1600 !important;
}

.icon-button,
.mobile-menu-close {
  color: var(--p-ink) !important;
  border: 1px solid var(--p-line) !important;
  background: #ffffff !important;
  box-shadow: var(--p-shadow-sm) !important;
}

/* Payment result pages */
.payment-result-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 12%, rgba(189, 239, 241, 0.65), transparent 24rem),
    radial-gradient(circle at 88% 78%, rgba(255, 201, 75, 0.24), transparent 25rem),
    linear-gradient(145deg, #f4ffff, #edf9f7) !important;
}

.payment-result-main {
  min-height: 100vh !important;
  padding: clamp(24px, 6vw, 80px) !important;
}

.payment-thank-you-card {
  width: min(720px, 100%) !important;
  padding: clamp(32px, 6vw, 64px) !important;
  border: 1px solid rgba(9, 47, 71, 0.11) !important;
  border-radius: 36px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: var(--p-shadow-lg) !important;
  backdrop-filter: blur(16px);
}

.payment-pill {
  color: var(--p-teal-dark) !important;
  background: var(--p-aqua-soft) !important;
}

.payment-result-copy h1 {
  color: var(--p-ink) !important;
  font-size: clamp(2.4rem, 6vw, 4.7rem) !important;
  letter-spacing: -0.05em !important;
}

.payment-result-copy h2 {
  color: var(--p-ink-soft) !important;
}

.payment-result-details div {
  border: 1px solid rgba(9, 47, 71, 0.08) !important;
  background: #f4fbfa !important;
}

/* Responsive layout */
@media (max-width: 1060px) {
  .site-header {
    gap: 14px !important;
  }

  .nav-links a {
    padding: 0 11px !important;
    font-size: 0.82rem !important;
  }

  .language-picker > span {
    display: none;
  }

  .home-page .hero,
  .products-page .hero,
  .shipping-page .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr) !important;
  }

  .custom-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  :root {
    --p-page: min(100% - 28px, 760px);
    --page-anchor-offset: 132px;
  }

  .top-notice {
    min-height: 32px;
    padding: 6px 14px !important;
    font-size: 0.68rem !important;
  }

  .site-header {
    min-height: 74px !important;
    grid-template-columns: auto 1fr auto !important;
    gap: 10px !important;
  }

  .brand {
    padding-right: 11px !important;
    font-size: 1.05rem !important;
  }

  .brand-mark {
    width: 42px !important;
    height: 42px !important;
    flex-basis: 42px;
  }

  .nav-links {
    display: none !important;
  }

  .mobile-menu-button {
    display: inline-flex !important;
    justify-self: center;
  }

  .language-picker select {
    max-width: 112px;
  }

  .home-page main#top,
  .products-page main#top,
  .shipping-page main#top {
    padding-top: 14px !important;
  }

  .home-page .hero,
  .products-page .hero,
  .shipping-page .hero {
    min-height: auto !important;
    grid-template-columns: 1fr !important;
    border-radius: 32px !important;
  }

  .hero-copy {
    padding: 48px 34px 26px !important;
  }

  .hero h1,
  .home-page #hero-title,
  .products-page .hero h1,
  .shipping-page .hero h1 {
    max-width: 660px !important;
    font-size: clamp(2.8rem, 9vw, 4.5rem) !important;
  }

  .hero-image,
  .home-page .hero-image,
  .products-page .hero-image,
  .shipping-page .hero-image {
    min-height: 0 !important;
    height: 100% !important;
    object-position: 68% center !important;
    opacity: 0.45;
  }

  .home-page .hero::after,
  .products-page .hero::after,
  .shipping-page .hero::after {
    background: linear-gradient(90deg, rgba(234, 250, 250, 0.97) 0%, rgba(234, 250, 250, 0.84) 62%, rgba(234, 250, 250, 0.46) 100%) !important;
  }

  .trust-strip {
    width: min(100% - 52px, 690px) !important;
    margin-top: -22px !important;
    grid-template-columns: 1fr !important;
  }

  .trust-strip > div {
    min-height: 68px;
  }

  .trust-strip > div + div {
    border-top: 1px solid var(--p-line) !important;
    border-left: 0 !important;
  }

  .b2b-quote-panel {
    width: min(100% - 28px, 760px);
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section,
  .shipping-page #tracking.order-tracking,
  .shipping-page .order-tracking,
  .contact-page-main {
    width: min(100% - 28px, 760px) !important;
  }

  .section-heading {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .filters {
    width: 100% !important;
    justify-content: flex-start !important;
  }

  .logistics,
  .shipping-page #tracking.order-tracking,
  .shipping-page .order-tracking {
    grid-template-columns: 1fr !important;
  }

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

  .section.contact {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .contact-page-main {
    grid-template-columns: 1fr !important;
  }

  .contact-hero {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --p-page: calc(100% - 20px);
    --page-anchor-offset: 148px;
  }

  .sticky-header-shell {
    box-shadow: 0 7px 24px rgba(9, 47, 71, 0.09) !important;
  }

  .top-notice {
    min-height: 30px;
    font-size: 0.61rem !important;
    letter-spacing: 0;
  }

  .site-header {
    width: calc(100% - 20px) !important;
    min-height: 104px !important;
    padding: 8px 0 10px !important;
    grid-template-columns: 1fr auto !important;
    grid-template-areas:
      "brand menu"
      "actions actions" !important;
    row-gap: 8px !important;
  }

  .brand {
    grid-area: brand;
    justify-self: start;
  }

  .mobile-menu-button {
    grid-area: menu;
    min-height: 44px !important;
    justify-self: end;
  }

  .header-actions {
    grid-area: actions;
    width: 100%;
    justify-content: space-between !important;
  }

  .language-picker {
    flex: 1 1 auto;
  }

  .language-picker > span {
    display: inline;
  }

  .language-picker select {
    width: 100%;
    max-width: 142px;
  }

  .cart-button {
    min-width: 92px;
  }

  .home-page main#top,
  .products-page main#top,
  .shipping-page main#top {
    padding-top: 10px !important;
  }

  .home-page .hero,
  .products-page .hero,
  .shipping-page .hero {
    width: calc(100% - 20px) !important;
    border-radius: 26px !important;
  }

  .hero-copy {
    padding: 34px 22px 18px !important;
  }

  .hero h1,
  .home-page #hero-title,
  .products-page .hero h1,
  .shipping-page .hero h1 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(2.2rem, 11vw, 3.25rem) !important;
    line-height: 1.01 !important;
    overflow-wrap: break-word !important;
  }

  .hero p:not(.eyebrow) {
    max-width: 100% !important;
    margin-top: 18px !important;
    font-size: 0.92rem !important;
    line-height: 1.65 !important;
  }

  .hero-actions {
    width: 100%;
    margin-top: 24px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .hero-actions .primary-action,
  .hero-actions .secondary-action {
    width: 100%;
  }

  .hero-image,
  .home-page .hero-image,
  .products-page .hero-image,
  .shipping-page .hero-image {
    height: 100% !important;
    opacity: 0.36;
    object-position: 72% center !important;
  }

  .home-page .hero::after,
  .products-page .hero::after,
  .shipping-page .hero::after {
    background: linear-gradient(180deg, rgba(234, 250, 250, 0.78) 0%, rgba(234, 250, 250, 0.86) 62%, rgba(234, 250, 250, 0.97) 100%) !important;
  }

  .trust-strip {
    width: calc(100% - 34px) !important;
    padding: 8px !important;
    border-radius: 20px !important;
  }

  .trust-strip > div {
    padding-left: 56px !important;
  }

  .b2b-quote-panel {
    width: calc(100% - 20px);
    margin-top: 38px;
    padding: 26px 20px;
    border-radius: 26px;
  }

  .b2b-quote-copy h2 {
    font-size: clamp(1.9rem, 9vw, 2.75rem);
  }

  .b2b-benefits {
    display: grid;
  }

  .b2b-benefits li {
    width: 100%;
    border-radius: 14px;
  }

  .b2b-quote-window {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .b2b-quote-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section,
  .shipping-page #tracking.order-tracking,
  .shipping-page .order-tracking,
  .contact-page-main {
    width: calc(100% - 20px) !important;
  }

  .section {
    margin-top: 66px !important;
  }

  .section h2,
  .contact-hero h1,
  .tracking-copy h1 {
    font-size: clamp(1.9rem, 9vw, 2.75rem) !important;
  }

  .section-heading {
    padding-bottom: 22px !important;
  }

  .filters {
    overflow-x: auto;
    flex-wrap: nowrap !important;
    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filter {
    flex: 0 0 auto;
  }

  .products-page #productGrid.product-grid {
    width: min(100% - 20px, 360px) !important;
  }

  .product-card.catalog-product-card {
    border-radius: 24px !important;
  }

  .catalog-product-card .product-media {
    flex-basis: min(330px, calc(100vw - 40px)) !important;
    height: min(330px, calc(100vw - 40px)) !important;
  }

  .logistics,
  .customization,
  .section.contact,
  .shipping-page #tracking.order-tracking,
  .shipping-page .order-tracking,
  .contact-support-card,
  .contact-form-card {
    padding: 26px 20px !important;
    border-radius: 26px !important;
  }

  .steps li {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    padding: 16px !important;
  }

  .steps li > span {
    width: 40px !important;
    height: 40px !important;
    border-radius: 13px !important;
  }

  .custom-steps {
    grid-template-columns: 1fr !important;
  }

  .custom-steps > div {
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    align-items: center !important;
  }

  .custom-steps small {
    grid-column: 2;
  }

  .contact-page-main {
    padding-top: 52px !important;
  }

  .contact-form {
    grid-template-columns: 1fr !important;
  }

  .contact-form .wide,
  .contact-form .form-notice,
  .contact-form .primary-action {
    grid-column: auto !important;
  }

  .product-modal-card,
  .checkout-card {
    width: calc(100% - 16px) !important;
    border-radius: 24px !important;
  }

  .payment-thank-you-card {
    padding: 26px 18px !important;
    border-radius: 28px !important;
  }
}

/* Owner review: new Pawnyra plush hero, clearer actions and continuous sections. */
.home-page .hero {
  min-height: clamp(560px, 38vw, 690px) !important;
  background: #43ace9 !important;
}

.home-page .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.home-page .hero-media .hero-image {
  width: 100% !important;
  height: 100% !important;
  opacity: 1 !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.home-page .hero::after {
  background: linear-gradient(90deg, rgba(4, 83, 149, 0.34) 0%, rgba(12, 116, 184, 0.18) 43%, rgba(26, 145, 211, 0.02) 66%, transparent 100%) !important;
}

.home-page .hero-copy {
  width: min(58%, 790px);
  min-height: clamp(560px, 38vw, 690px) !important;
  padding-left: max(54px, calc((100vw - var(--p-content)) / 2)) !important;
  padding-right: clamp(28px, 4vw, 62px) !important;
}

.home-page .hero .eyebrow {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  background: rgba(4, 91, 157, 0.34) !important;
  box-shadow: 0 10px 24px rgba(4, 65, 116, 0.16) !important;
  text-shadow: 0 2px 8px rgba(3, 55, 99, 0.28);
}

.home-page #hero-title {
  max-width: 760px !important;
  color: #ffffff !important;
  font-family: "Arial Rounded MT Bold", "Nunito", "Microsoft YaHei UI", "Microsoft YaHei", system-ui, sans-serif !important;
  font-size: clamp(3rem, 4.45vw, 4.75rem) !important;
  font-weight: 900 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.035em !important;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.26);
  text-shadow:
    0 4px 0 rgba(31, 116, 181, 0.72),
    0 10px 24px rgba(2, 55, 103, 0.28) !important;
}

.home-page .hero p:not(.eyebrow) {
  max-width: 650px !important;
  color: #f9fdff !important;
  font-size: clamp(1.02rem, 1.32vw, 1.2rem) !important;
  font-weight: 800 !important;
  line-height: 1.7 !important;
  text-shadow: 0 2px 10px rgba(2, 55, 103, 0.46);
}

.home-page .trust-strip {
  margin-top: 0 !important;
}

.home-page .b2b-benefits {
  gap: 12px !important;
}

.home-page .b2b-benefits li {
  min-height: 42px;
  padding: 10px 16px 10px 40px !important;
  font-size: 0.9rem !important;
  line-height: 1.35 !important;
}

.home-page .b2b-benefits li::before {
  left: 15px !important;
  font-size: 1rem;
}

.home-page .b2b-quote-window > p {
  color: #174f6c !important;
  font-size: 0.96rem !important;
  font-weight: 750 !important;
  line-height: 1.55 !important;
}

@media (min-width: 901px) {
  .home-page .b2b-quote-copy > p:not(.eyebrow) {
    font-size: 1.1rem !important;
    line-height: 1.65 !important;
    font-weight: 750 !important;
  }

  .home-page .b2b-benefits li {
    min-height: 48px;
    padding: 12px 18px 12px 44px !important;
    font-size: 1rem !important;
  }

  .home-page .b2b-benefits li::before {
    left: 17px !important;
    font-size: 1.08rem;
  }
}

.home-page #shipping {
  isolation: auto !important;
  overflow: visible !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.home-page #shipping::after {
  content: none !important;
  display: none !important;
}

.home-page #contact .primary-action,
.products-page #contact .primary-action,
.shipping-page #contact .primary-action {
  color: #ffffff !important;
  border-color: #128c7e !important;
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  box-shadow: 0 12px 28px rgba(18, 140, 126, 0.24) !important;
}

.home-page #contact .primary-action:hover,
.products-page #contact .primary-action:hover,
.shipping-page #contact .primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(18, 140, 126, 0.3) !important;
}

.mobile-menu-contact {
  color: #07516f !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.mobile-menu-contact:hover,
.mobile-menu-contact:focus-visible {
  border-color: rgba(22, 143, 170, 0.42) !important;
  background: rgba(188, 238, 249, 0.94) !important;
  transform: translateY(-2px);
}

.brand-mark img,
.mobile-menu-brand img {
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .home-page .hero {
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    background: linear-gradient(180deg, #54b9ef 0%, #279bdc 100%) !important;
  }

  .home-page .hero::after {
    content: none !important;
    display: none !important;
  }

  .home-page .hero-media {
    width: 100%;
    aspect-ratio: 623 / 434;
    position: relative;
    inset: auto;
    order: -1;
  }

  .home-page .hero-media .hero-image {
    position: absolute !important;
    inset: 0 !important;
    opacity: 1 !important;
    object-position: center center !important;
  }

  .home-page .hero-copy {
    width: 100%;
    min-height: 0 !important;
    padding: 34px clamp(22px, 6vw, 48px) 42px !important;
    align-items: center !important;
    text-align: center;
  }

  .home-page #hero-title {
    max-width: 650px !important;
    font-size: clamp(2.5rem, 8.6vw, 4rem) !important;
    line-height: 1.04 !important;
  }

  .home-page .hero p:not(.eyebrow) {
    max-width: 620px !important;
    font-size: clamp(0.98rem, 2.5vw, 1.12rem) !important;
  }

  .home-page .hero-actions {
    justify-content: center;
  }

  .home-page .b2b-benefits li {
    min-height: 40px;
    padding: 9px 12px 9px 36px !important;
    font-size: 0.82rem !important;
  }

  .home-page .b2b-benefits li::before {
    left: 12px !important;
  }

  .home-page .b2b-quote-window > p {
    color: #174f6c !important;
    font-size: 0.86rem !important;
    font-weight: 750 !important;
  }
}

@media (max-width: 640px) {
  .home-page .hero-copy {
    padding: 28px 20px 34px !important;
  }

  .home-page #hero-title {
    font-size: clamp(2.2rem, 10.8vw, 3.15rem) !important;
  }

  .home-page .hero-actions {
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Owner review polish: varied pastel bands, compact catalog and visible navigation. */
:root {
  --p-page: min(1780px, calc(100% - 20px));
  --p-content: 1540px;
  --p-mint: #e9fbf2;
  --p-butter: #fff8dd;
  --p-peach: #fff0ec;
  --p-lilac: #f3efff;
}

body.home-page,
body.products-page,
body.shipping-page,
body.contact-page {
  background:
    radial-gradient(circle at 6% 12%, rgba(255, 224, 149, 0.22), transparent 22rem),
    radial-gradient(circle at 96% 30%, rgba(139, 221, 240, 0.22), transparent 24rem),
    linear-gradient(180deg, #f9feff 0%, #f1fbff 48%, #fffdf7 100%) !important;
}

@media (min-width: 901px) {
  .nav-links {
    transform: translateX(83px);
  }
}

.home-page main#top,
.products-page main#top,
.shipping-page main#top {
  width: 100% !important;
  max-width: none !important;
  overflow: hidden;
}

.home-page .hero {
  width: min(1780px, calc(100% - 24px)) !important;
}

.home-page #products,
.home-page #shipping,
.home-page .customization,
.home-page #contact,
.products-page #products,
.shipping-page #tracking,
.shipping-page #shipping,
.contact-page-main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.home-page #products::before,
.home-page #shipping::before,
.home-page .customization::before,
.home-page #contact::before,
.products-page #products::before,
.shipping-page #tracking::before,
.shipping-page #shipping::before,
.contact-page-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: none;
  opacity: 0.52;
}

.home-page #products > *,
.home-page #shipping > *,
.home-page .customization > *,
.home-page #contact > *,
.products-page #products > *,
.shipping-page #tracking > *,
.shipping-page #shipping > *,
.contact-page-main > * {
  position: relative;
  z-index: 1;
}

.home-page #products,
.products-page #products {
  width: 100% !important;
  max-width: none !important;
  margin: clamp(56px, 7vw, 92px) 0 0 !important;
  padding: clamp(52px, 6vw, 88px) max(20px, calc((100vw - var(--p-content)) / 2)) clamp(68px, 7vw, 104px) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 209, 122, 0.28), transparent 22rem),
    radial-gradient(circle at 88% 72%, rgba(143, 225, 190, 0.3), transparent 25rem),
    linear-gradient(135deg, #fffaf0 0%, #effcf6 52%, #eefaff 100%) !important;
}

.home-page #products .section-heading,
.home-page #productGrid,
.products-page #products .section-heading,
.products-page #productGrid {
  width: 100% !important;
  max-width: var(--p-content) !important;
  margin-inline: auto !important;
}

.products-page .hero,
.products-page .trust-strip,
.shipping-page .hero,
.shipping-page .trust-strip,
.shipping-page #products {
  display: none !important;
}

.products-page main#top,
.shipping-page main#top {
  padding-top: 0 !important;
}

.products-page #products {
  margin-top: 0 !important;
  padding-top: clamp(42px, 5vw, 72px) !important;
}

.products-page #products .section-heading {
  min-height: 0 !important;
  padding: 0 0 clamp(34px, 4vw, 54px) !important;
  align-items: center !important;
  flex-direction: column !important;
  text-align: center;
}

.products-page #products-title {
  font-size: clamp(3rem, 6vw, 5rem) !important;
}

.products-page #products .filters {
  width: min(100%, 980px) !important;
  margin: 26px auto 0 !important;
  justify-content: center !important;
}

.products-page #productGrid.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(24px, 2.6vw, 40px) !important;
}

.product-card.catalog-product-card:nth-child(3n + 1) {
  border-color: rgba(121, 203, 166, 0.42) !important;
  background: linear-gradient(180deg, #f0fff5, #ffffff) !important;
}

.product-card.catalog-product-card:nth-child(3n + 2) {
  border-color: rgba(255, 198, 103, 0.46) !important;
  background: linear-gradient(180deg, #fff9e7, #ffffff) !important;
}

.product-card.catalog-product-card:nth-child(3n) {
  border-color: rgba(178, 158, 231, 0.4) !important;
  background: linear-gradient(180deg, #f6f1ff, #ffffff) !important;
}

.home-page #shipping,
.shipping-page #shipping {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(60px, 7vw, 96px) max(20px, calc((100vw - var(--p-content)) / 2)) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 201, 92, 0.28), transparent 22rem),
    radial-gradient(circle at 12% 86%, rgba(153, 220, 190, 0.34), transparent 24rem),
    linear-gradient(135deg, #ebfbf4, #eefaff 58%, #fff8df) !important;
}

.steps li:nth-child(1) > span {
  color: #7f2f29 !important;
  background: #ffb6ad !important;
}

.steps li:nth-child(2) > span {
  color: #72520b !important;
  background: #ffe49a !important;
}

.steps li:nth-child(3) > span {
  color: #145e47 !important;
  background: #afe8ce !important;
}

.home-page .customization {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(58px, 7vw, 94px) max(20px, calc((100vw - var(--p-content)) / 2)) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 159, 143, 0.22), transparent 20rem),
    linear-gradient(140deg, #fff3ef, #fffbee 52%, #f4f0ff) !important;
}

.home-page #contact {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(58px, 7vw, 92px) max(20px, calc((100vw - var(--p-content)) / 2)) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.82), transparent 19rem),
    linear-gradient(135deg, #dff7ff, #f0eeff 50%, #fff4e5) !important;
}

.shipping-page #tracking {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(48px, 6vw, 82px) max(20px, calc((100vw - 1480px) / 2)) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 213, 111, 0.28), transparent 22rem),
    linear-gradient(135deg, #eefbff, #f4fff8) !important;
  box-shadow: none !important;
}

.shipping-page #shipping {
  padding-top: clamp(48px, 6vw, 80px) !important;
}

.contact-page-main {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(44px, 6vw, 76px) max(20px, calc((100vw - 1480px) / 2)) clamp(70px, 8vw, 110px) !important;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 222, 139, 0.28), transparent 22rem),
    radial-gradient(circle at 90% 78%, rgba(157, 224, 196, 0.3), transparent 25rem),
    linear-gradient(135deg, #effbff, #fffaf0 52%, #f2efff) !important;
}

.contact-support-card {
  display: flex !important;
  flex-direction: column;
}

.contact-platform-heading {
  margin-top: 30px;
  display: grid;
  gap: 6px;
}

.contact-platform-heading strong {
  color: var(--p-ink) !important;
  font-size: 1rem;
}

.contact-platform-heading span {
  color: var(--p-ink-soft) !important;
  font-size: 0.78rem;
  line-height: 1.5;
}

.contact-platform-links {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-platform-link {
  min-width: 0;
  min-height: 74px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  color: var(--p-ink) !important;
  border: 1px solid rgba(22, 143, 170, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 9px 24px rgba(42, 145, 177, 0.09);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-platform-link:nth-child(4n + 2) {
  background: rgba(255, 247, 216, 0.92);
}

.contact-platform-link:nth-child(4n + 3) {
  background: rgba(239, 255, 247, 0.92);
}

.contact-platform-link:nth-child(4n) {
  background: rgba(246, 240, 255, 0.92);
}

.contact-platform-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(42, 145, 177, 0.14);
}

.contact-platform-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #08708e;
  border-radius: 13px;
  background: #dff7ff;
}

.contact-platform-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-platform-arrow {
  color: #168faa;
  font-size: 1.2rem;
  font-weight: 900;
}

.mobile-menu-button {
  color: #633c08 !important;
  border: 2px solid rgba(238, 157, 45, 0.52) !important;
  background: linear-gradient(135deg, #fff4a8, #ffd163) !important;
  box-shadow: 0 10px 25px rgba(226, 153, 42, 0.24) !important;
}

.mobile-menu-button .menu-icon {
  color: #ffffff !important;
  background: linear-gradient(135deg, #ff897c, #f05e54) !important;
  box-shadow: 0 5px 12px rgba(240, 94, 84, 0.22);
}

@media (max-width: 900px) {
  .products-page #products,
  .shipping-page #tracking,
  .shipping-page #shipping,
  .contact-page-main {
    width: 100% !important;
    max-width: none !important;
  }

  .products-page #products .section-heading {
    min-height: 0 !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 640px) {
  :root {
    --p-page: calc(100% - 12px);
  }

  .mobile-menu-button {
    min-width: 116px !important;
    min-height: 50px !important;
    font-size: 1rem !important;
  }

  .home-page #products,
  .products-page #products {
    padding: 34px 8px 56px !important;
  }

  .products-page #products-title {
    font-size: clamp(2.25rem, 12vw, 3.2rem) !important;
  }

  .products-page #products .filters {
    width: 100% !important;
    margin-top: 18px !important;
    padding: 7px !important;
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 5px !important;
    overflow: visible !important;
  }

  .products-page #products .filter {
    min-height: 34px !important;
    padding: 0 9px !important;
    flex: 0 0 auto !important;
    font-size: 0.66rem !important;
  }

  .products-page #products .filter::before {
    margin-right: 4px !important;
    font-size: 0.75em !important;
  }

  .home-page #productGrid.product-grid,
  .products-page #productGrid.product-grid {
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  .home-page .product-card.catalog-product-card,
  .products-page .product-card.catalog-product-card {
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    border-radius: 14px !important;
  }

  .home-page .catalog-product-card .product-media,
  .products-page .catalog-product-card .product-media {
    width: 100% !important;
    height: auto !important;
    flex: 0 0 auto !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 14px 14px 0 0 !important;
  }

  .home-page .catalog-product-card .main-image-slot,
  .products-page .catalog-product-card .main-image-slot,
  .home-page .catalog-product-card .main-image-slot img,
  .products-page .catalog-product-card .main-image-slot img {
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    border-radius: 14px 14px 0 0 !important;
    object-fit: cover !important;
  }

  .home-page .catalog-product-card .favorite-badge,
  .products-page .catalog-product-card .favorite-badge {
    top: 6px !important;
    left: 6px !important;
    min-height: 18px !important;
    padding: 0 6px !important;
    font-size: 0.43rem !important;
    box-shadow: none !important;
  }

  .home-page .catalog-product-card .product-info,
  .products-page .catalog-product-card .product-info {
    min-height: 82px !important;
    padding: 9px 4px 10px !important;
    gap: 7px !important;
  }

  .home-page .catalog-product-card .product-title-button,
  .products-page .catalog-product-card .product-title-button {
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    display: -webkit-box !important;
    overflow: hidden !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: clamp(0.58rem, 2.55vw, 0.72rem) !important;
    line-height: 1.25 !important;
  }

  .home-page .catalog-product-card .price,
  .products-page .catalog-product-card .price {
    min-width: 0 !important;
    min-height: 26px !important;
    padding: 0 7px !important;
    font-size: 0.72rem !important;
  }

  .home-page #shipping,
  .shipping-page #shipping,
  .home-page .customization,
  .home-page #contact,
  .shipping-page #tracking,
  .contact-page-main {
    padding-inline: 12px !important;
  }

  .contact-platform-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .contact-platform-link {
    min-height: 66px;
    padding: 9px;
    grid-template-columns: 32px minmax(0, 1fr) auto;
    gap: 7px;
    border-radius: 15px;
    font-size: 0.72rem;
  }

  .contact-platform-icon {
    width: 32px;
    height: 32px;
    border-radius: 11px;
  }

  .contact-platform-icon svg {
    width: 19px;
    height: 19px;
  }
}

/* Boss-selected coastal background and final preview adjustments. */
:root {
  --p-coastal-sky: #bcecf7;
  --p-coastal-glass: rgba(246, 254, 255, 0.82);
  --p-coastal-coral: rgba(255, 231, 226, 0.94);
  --p-coastal-cream: rgba(255, 249, 224, 0.94);
  --p-coastal-mint: rgba(229, 250, 241, 0.94);
  --p-coastal-lilac: rgba(242, 238, 255, 0.94);
}

html {
  min-height: 100%;
  background: var(--p-coastal-sky) !important;
}

body.home-page,
body.products-page,
body.shipping-page,
body.contact-page,
body.payment-result-body {
  min-height: 100vh;
  background-color: var(--p-coastal-sky) !important;
  background-image:
    linear-gradient(rgba(238, 252, 255, 0.16), rgba(238, 252, 255, 0.16)),
    url("../brand/pawnyra-coastal-background-v1.png") !important;
  background-image:
    linear-gradient(rgba(238, 252, 255, 0.16), rgba(238, 252, 255, 0.16)),
    image-set(
      url("../brand/pawnyra-coastal-background-v1-desktop.avif") type("image/avif") 1x,
      url("../brand/pawnyra-coastal-background-v1-desktop.webp") type("image/webp") 1x,
      url("../brand/pawnyra-coastal-background-v1.png") type("image/png") 1x
    ) !important;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
}

.home-page #products,
.home-page #shipping,
.home-page .customization,
.home-page #contact,
.products-page #products,
.shipping-page #tracking,
.shipping-page #shipping,
.contact-page-main {
  background: transparent !important;
}

.home-page #products::before,
.home-page #shipping::before,
.home-page .customization::before,
.home-page #contact::before,
.products-page #products::before,
.shipping-page #tracking::before,
.shipping-page #shipping::before,
.contact-page-main::before,
.products-page #products .section-heading::before,
.products-page #products .section-heading::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

.products-page #products .section-heading {
  width: min(1120px, calc(100% - 28px)) !important;
  margin-inline: auto !important;
  padding: clamp(30px, 4vw, 48px) clamp(16px, 3vw, 38px) !important;
  border: 1px solid rgba(39, 160, 190, 0.2);
  border-radius: 34px;
  background: rgba(225, 249, 253, 0.8) !important;
  box-shadow: 0 20px 52px rgba(6, 60, 82, 0.1);
  backdrop-filter: blur(10px);
}

.products-page #products .filters {
  width: min(100%, 1040px) !important;
  min-height: 76px;
  padding: 10px 14px !important;
  gap: 9px !important;
  border-color: rgba(39, 160, 190, 0.22) !important;
  background: rgba(255, 255, 255, 0.88) !important;
}

.products-page #products .filter {
  min-height: 54px !important;
  padding: 0 20px !important;
  gap: 8px;
  color: #29566e !important;
  background: rgba(247, 254, 255, 0.96) !important;
}

.products-page #products .filter::before {
  content: "" !important;
  display: inline-block !important;
  width: 28px !important;
  height: 28px !important;
  flex: 0 0 28px;
  margin: 0 !important;
  opacity: 1 !important;
  background: url("../brand/pink-paw-filter.svg") center / contain no-repeat !important;
  vertical-align: middle;
}

.products-page #products .filter.active {
  color: #063e57 !important;
  border-color: rgba(29, 158, 188, 0.38) !important;
  background: linear-gradient(135deg, #d6f8ff, #93e3f0) !important;
  box-shadow: 0 9px 22px rgba(34, 157, 185, 0.18) !important;
}

.home-page .b2b-quote-panel {
  background: linear-gradient(135deg, var(--p-coastal-coral), rgba(234, 247, 255, 0.94)) !important;
}

.home-page .b2b-quote-window {
  background: var(--p-coastal-cream) !important;
}

.home-page #shipping .steps li:nth-child(1),
.shipping-page #shipping .steps li:nth-child(1) {
  background: var(--p-coastal-coral) !important;
}

.home-page #shipping .steps li:nth-child(2),
.shipping-page #shipping .steps li:nth-child(2) {
  background: var(--p-coastal-cream) !important;
}

.home-page #shipping .steps li:nth-child(3),
.shipping-page #shipping .steps li:nth-child(3) {
  background: var(--p-coastal-mint) !important;
}

.home-page .custom-steps > div:nth-child(4n + 1) {
  background: var(--p-coastal-coral) !important;
}

.home-page .custom-steps > div:nth-child(4n + 2) {
  background: var(--p-coastal-cream) !important;
}

.home-page .custom-steps > div:nth-child(4n + 3) {
  background: var(--p-coastal-mint) !important;
}

.home-page .custom-steps > div:nth-child(4n) {
  background: var(--p-coastal-lilac) !important;
}

.home-page #contact > div,
.shipping-page #tracking .tracking-copy {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(39, 160, 190, 0.17);
  border-radius: 26px;
  background: var(--p-coastal-lilac) !important;
  box-shadow: 0 15px 38px rgba(6, 60, 82, 0.09);
}

.shipping-page .tracking-card,
.contact-page-main .contact-support-card,
.contact-page-main .contact-form-card {
  background: var(--p-coastal-glass) !important;
  backdrop-filter: blur(12px);
}

.contact-page-main .contact-support-card:nth-of-type(1) {
  background: var(--p-coastal-mint) !important;
}

.contact-page-main .contact-support-card:nth-of-type(2) {
  background: var(--p-coastal-cream) !important;
}

.mobile-menu-button {
  color: #064563 !important;
  border: 2px solid rgba(24, 153, 184, 0.46) !important;
  background: linear-gradient(135deg, #d6f9ff, #79d9e9) !important;
  box-shadow: 0 10px 25px rgba(27, 151, 181, 0.22) !important;
}

.mobile-menu-button .menu-icon {
  color: #ffffff !important;
  background: linear-gradient(135deg, #20b7d1, #087ea0) !important;
  box-shadow: 0 5px 12px rgba(8, 126, 160, 0.24) !important;
}

body.checkout-open {
  overflow: hidden !important;
}

body.checkout-open .sticky-header-shell {
  z-index: 1300 !important;
}

body.checkout-open .top-notice,
body.checkout-open .nav-links,
body.checkout-open .header-actions,
body.checkout-open .mobile-menu-button {
  display: none !important;
}

body.checkout-open .site-header {
  min-height: 58px !important;
  padding: 5px 0 !important;
  grid-template-columns: 1fr !important;
}

body.checkout-open .brand {
  min-height: 46px;
  justify-self: start;
  padding-block: 3px !important;
}

body.checkout-open .brand-mark {
  width: 38px !important;
  height: 38px !important;
  flex-basis: 38px;
}

body.checkout-open .checkout-modal {
  z-index: 1200 !important;
  place-items: start center !important;
  padding: 72px 14px 14px !important;
}

body.checkout-open .checkout-card {
  max-height: calc(100dvh - 86px) !important;
}

body.ui-scroll-locked {
  position: fixed !important;
  inset-inline: 0;
  width: 100%;
  overflow: hidden !important;
}

.cart-remove {
  width: auto !important;
  min-width: 58px;
  padding-inline: 10px;
  color: #9b2f3d;
  border-color: rgba(155, 47, 61, 0.22) !important;
  background: #fff4f5 !important;
  font-size: 0.72rem;
  font-weight: 800;
}

.catalog-empty-state {
  grid-column: 1 / -1;
  min-height: 220px;
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 32px;
  text-align: center;
  border: 1px dashed rgba(14, 127, 153, 0.3);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.catalog-empty-state strong {
  color: var(--p-ink);
  font-size: 1.15rem;
}

.catalog-empty-state span {
  color: var(--p-ink-soft);
}

.image-placeholder-visible {
  display: flex;
}

.detail-media-placeholder {
  min-height: min(56vh, 520px);
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 900px) {
  body.home-page,
  body.products-page,
  body.shipping-page,
  body.contact-page,
  body.payment-result-body {
    background-position: 56% center !important;
    background-image:
      linear-gradient(rgba(238, 252, 255, 0.16), rgba(238, 252, 255, 0.16)),
      url("../brand/pawnyra-coastal-background-v1-mobile.webp") !important;
    background-image:
      linear-gradient(rgba(238, 252, 255, 0.16), rgba(238, 252, 255, 0.16)),
      image-set(
        url("../brand/pawnyra-coastal-background-v1-mobile.avif") type("image/avif") 1x,
        url("../brand/pawnyra-coastal-background-v1-mobile.webp") type("image/webp") 1x,
        url("../brand/pawnyra-coastal-background-v1.png") type("image/png") 1x
      ) !important;
    background-attachment: scroll !important;
  }

  .products-page #products .filters {
    width: 100% !important;
    min-height: 0;
    flex-wrap: wrap !important;
    overflow: visible !important;
  }

  .products-page #products .filter {
    min-height: 46px !important;
    padding: 0 12px !important;
    font-size: 0.82rem !important;
  }

  .products-page #products .filter::before {
    width: 22px !important;
    height: 22px !important;
    flex-basis: 22px;
  }
}

@media (max-width: 640px) {
  .products-page #products .section-heading {
    width: calc(100% - 12px) !important;
    padding: 28px 8px 32px !important;
  }

  .products-page #products .filter {
    min-height: 42px !important;
    padding: 0 8px !important;
    font-size: 0.72rem !important;
  }

  .products-page #products .filter::before {
    width: 19px !important;
    height: 19px !important;
    flex-basis: 19px;
  }

  body.checkout-open .brand span:last-child {
    display: inline !important;
    font-size: 1rem !important;
  }
}

body.home-page :is(a, button, input, select, textarea, [tabindex]):focus-visible,
body.products-page :is(a, button, input, select, textarea, [tabindex]):focus-visible,
body.shipping-page :is(a, button, input, select, textarea, [tabindex]):focus-visible,
body.contact-page :is(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid #087ea0 !important;
  outline-offset: 3px !important;
}

@media (prefers-reduced-motion: reduce) {
  body.home-page,
  body.products-page,
  body.shipping-page,
  body.contact-page,
  body.payment-result-body {
    background-attachment: scroll !important;
  }
}

/* Complete storefront polish: responsive density, readability, and alignment. */
@media (min-width: 901px) {
  .site-header {
    grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr) !important;
  }

  .brand {
    justify-self: start;
  }

  .nav-links {
    justify-self: center;
    transform: none !important;
  }

  .header-actions {
    justify-self: end;
  }

  .products-page #products .filter {
    min-height: 50px !important;
    font-size: 0.9rem !important;
  }
}

.contact-support-card,
.contact-form-card {
  min-height: 0 !important;
  height: auto !important;
  align-self: start !important;
}

/* Contact workspace: keep the desktop support and message columns together,
   rather than allowing the outer page grid to place the wrapper in one column. */
.contact-page-main > .contact-workspace {
  grid-column: 1 / -1;
  width: min(1240px, 100%);
  margin-inline: auto;
}

.contact-workspace .contact-platform-links {
  grid-template-columns: 1fr;
}

@media (max-width: 700px) {
  .contact-page-main > .contact-workspace {
    grid-template-columns: 1fr;
  }

  .contact-workspace .contact-platform-heading,
  .contact-workspace .contact-platform-links {
    display: none !important;
  }
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-size: 1rem !important;
}

.product-card.catalog-product-card,
.b2b-quote-panel,
.shipping-page .tracking-card,
.contact-support-card,
.contact-form-card,
.steps li {
  box-shadow: 0 12px 30px rgba(6, 60, 82, 0.08) !important;
}

.b2b-quote-panel,
.b2b-quote-window,
.shipping-page .tracking-card,
.contact-support-card,
.contact-form-card {
  backdrop-filter: blur(8px) saturate(112%);
}

.shipping-page #tracking.order-tracking,
.shipping-page .order-tracking {
  margin-top: clamp(36px, 5vw, 64px) !important;
  padding-block: clamp(32px, 4vw, 50px) !important;
  gap: clamp(24px, 4vw, 50px) !important;
}

.shipping-page .tracking-card {
  padding: 22px !important;
}

@media (max-width: 640px) {
  .top-notice {
    min-height: 28px !important;
    padding: 2px 8px !important;
    font-size: 0.61rem !important;
    line-height: 1.2 !important;
  }

  .site-header {
    min-height: 100px !important;
    padding: 6px 0 !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas:
      "brand menu"
      "actions actions" !important;
    column-gap: 8px !important;
    row-gap: 4px !important;
  }

  .brand {
    grid-area: brand;
    min-width: 0 !important;
    min-height: 42px !important;
    height: 44px !important;
    padding: 4px 10px 4px 5px !important;
    gap: 7px !important;
    font-size: 0.98rem !important;
  }

  .brand-mark {
    width: 36px !important;
    height: 36px !important;
    flex-basis: 36px !important;
    border-width: 2px !important;
  }

  .mobile-menu-button {
    grid-area: menu;
    min-width: 104px !important;
    min-height: 42px !important;
    height: 42px !important;
    padding-inline: 10px !important;
    font-size: 0.92rem !important;
    justify-self: end;
  }

  .mobile-menu-button .menu-icon {
    width: 30px !important;
    height: 30px !important;
    flex-basis: 30px !important;
  }

  .header-actions {
    grid-area: actions;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 7px !important;
    min-height: 40px !important;
    height: 40px !important;
  }

  .language-picker {
    min-width: 0 !important;
    gap: 5px !important;
    font-size: 0.7rem !important;
  }

  .language-picker select {
    min-width: 0 !important;
    min-height: 40px !important;
    height: 40px !important;
    max-height: 40px !important;
    padding: 0 28px 0 9px !important;
    font-size: 0.78rem !important;
  }

  .cart-button {
    min-height: 40px !important;
    height: 40px !important;
    max-height: 40px !important;
    padding-inline: 10px !important;
    font-size: 0.82rem !important;
  }

  .products-page #products {
    padding-top: 20px !important;
  }

  .products-page #products .section-heading {
    width: calc(100% - 10px) !important;
    padding: 18px 8px 20px !important;
    border-radius: 24px !important;
  }

  .products-page #products-title {
    font-size: clamp(2rem, 10vw, 2.55rem) !important;
    line-height: 1 !important;
  }

  .products-page #products .filters {
    min-height: 0 !important;
    margin-top: 12px !important;
    padding: 5px !important;
    gap: 5px !important;
    border-radius: 17px !important;
    box-shadow: 0 7px 20px rgba(6, 60, 82, 0.07) !important;
  }

  .products-page #products .filter {
    min-height: 44px !important;
    padding: 0 9px !important;
    gap: 4px !important;
    font-size: 0.75rem !important;
  }

  .products-page #products .filter::before {
    width: 18px !important;
    height: 18px !important;
    flex-basis: 18px !important;
  }

  .home-page #productGrid.product-grid,
  .products-page #productGrid.product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  .home-page .catalog-product-card .favorite-badge,
  .products-page .catalog-product-card .favorite-badge {
    max-width: calc(100% - 12px);
    min-height: 16px !important;
    padding: 0 5px !important;
    overflow: hidden;
    opacity: 0.72;
    box-shadow: none !important;
    font-size: 0.47rem !important;
    letter-spacing: 0 !important;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .home-page .catalog-product-card .product-info,
  .products-page .catalog-product-card .product-info {
    min-height: 84px !important;
    padding: 9px 4px 10px !important;
    gap: 6px !important;
  }

  .home-page .catalog-product-card .product-title-button,
  .products-page .catalog-product-card .product-title-button {
    -webkit-line-clamp: 3;
    font-size: 0.75rem !important;
    line-height: 1.18 !important;
  }

  .home-page .catalog-product-card .price,
  .products-page .catalog-product-card .price {
    min-height: 27px !important;
    padding: 0 6px !important;
    font-size: 0.8125rem !important;
  }

  .b2b-quote-panel {
    margin-top: 24px !important;
    padding: 22px 16px !important;
    gap: 16px !important;
    border-radius: 24px !important;
  }

  .b2b-quote-copy h2 {
    font-size: 1.75rem !important;
  }

  .b2b-quote-copy > p:not(.eyebrow) {
    margin-top: 10px !important;
    font-size: 0.84rem !important;
  }

  .b2b-benefits {
    margin-top: 16px !important;
    gap: 6px !important;
  }

  .b2b-benefits li {
    padding: 5px 8px 5px 25px !important;
    font-size: 0.68rem !important;
  }

  .b2b-benefits li::before {
    left: 8px !important;
  }

  .b2b-quote-window {
    padding: 14px 12px !important;
    gap: 8px !important;
    border-radius: 20px !important;
  }

  .b2b-quote-window > strong {
    font-size: 1.2rem !important;
  }

  .b2b-quote-window > p {
    font-size: 0.78rem !important;
  }

  .b2b-quote-actions {
    margin-top: 4px !important;
    gap: 6px !important;
  }

  .b2b-quote-actions .primary-action,
  .b2b-quote-actions .secondary-action {
    min-height: 44px !important;
  }

  .shipping-page #tracking.order-tracking,
  .shipping-page .order-tracking {
    margin-top: 0 !important;
    padding-block: 28px !important;
    gap: 18px !important;
  }

  .shipping-page .tracking-card {
    padding: 16px !important;
    gap: 11px !important;
    border-radius: 20px !important;
  }

  .shipping-page .tracking-copy h1 {
    font-size: 1.75rem !important;
    line-height: 1.08 !important;
  }

  .shipping-page .tracking-copy p:not(.eyebrow) {
    margin-top: 10px !important;
    font-size: 0.84rem !important;
  }

  .shipping-page .tracking-icon {
    display: none !important;
  }

  .shipping-page .tracking-card input {
    min-height: 44px !important;
  }

  .shipping-page .tracking-hint {
    font-size: 0.72rem !important;
  }

  .home-page #shipping,
  .shipping-page #shipping {
    padding-block: 36px !important;
  }

  .steps {
    gap: 9px !important;
  }

  .steps li {
    min-height: 92px !important;
    padding: 14px !important;
    gap: 12px !important;
  }

  .contact-page-main {
    padding-top: 28px !important;
  }

  .contact-support-card,
  .contact-form-card {
    padding: 22px 16px !important;
    border-radius: 24px !important;
  }
}

/* Owner review: reveal the coastal artwork by removing non-functional frames. */
.home-page main#top {
  padding-top: 0 !important;
}

.home-page .hero {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.home-page .hero::after,
.home-page .hero-image {
  border-radius: 0 !important;
}

.home-page .trust-strip {
  width: 100% !important;
  max-width: none !important;
  margin: clamp(18px, 2.4vw, 34px) 0 0 !important;
  padding: 12px max(16px, calc((100vw - var(--p-content)) / 2)) !important;
  border-right: 0 !important;
  border-left: 0 !important;
  border-radius: 0 !important;
  box-shadow: 0 12px 30px rgba(6, 60, 82, 0.08) !important;
}

.home-page .b2b-quote-panel {
  width: 100% !important;
  max-width: none !important;
  margin: clamp(44px, 6vw, 84px) 0 0 !important;
  padding: clamp(32px, 5vw, 66px) max(20px, calc((100vw - var(--p-content)) / 2)) !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.home-page .b2b-quote-panel::after {
  content: none !important;
  display: none !important;
}

.home-page .b2b-quote-window {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.shipping-page #tracking.order-tracking,
.shipping-page .order-tracking {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(42px, 6vw, 78px) max(20px, calc((100vw - 1480px) / 2)) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.shipping-page #tracking .tracking-copy {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.shipping-page #tracking .tracking-copy p:not(.eyebrow) {
  color: #215b75 !important;
}

.home-page #contact,
.products-page #contact,
.shipping-page #contact {
  width: min(1540px, calc(100% - 48px)) !important;
  max-width: 1540px !important;
  margin: clamp(58px, 7vw, 96px) auto clamp(64px, 8vw, 108px) !important;
  padding: clamp(34px, 5vw, 64px) !important;
  border: 1px solid rgba(52, 168, 199, 0.2) !important;
  border-radius: var(--p-radius-lg) !important;
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.72), transparent 15rem),
    linear-gradient(135deg, rgba(224, 248, 255, 0.96), rgba(173, 230, 244, 0.9)) !important;
  box-shadow: 0 12px 30px rgba(6, 60, 82, 0.08) !important;
}

.home-page #contact > div {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

@media (max-width: 900px) {
  .home-page #hero-title {
    width: 100% !important;
    max-width: 620px !important;
    font-size: clamp(2.2rem, 7vw, 3rem) !important;
    line-height: 1.05 !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }

  .home-page .trust-strip {
    grid-template-columns: 1fr !important;
  }

  .home-page .trust-strip > div + div {
    border-top: 1px solid var(--p-line) !important;
    border-left: 0 !important;
  }
}

@media (max-width: 640px) {
  .home-page .trust-strip {
    padding: 8px 10px !important;
  }

  .home-page .b2b-quote-panel {
    padding: 28px 16px !important;
  }

  .shipping-page #tracking.order-tracking,
  .shipping-page .order-tracking {
    padding: 32px 14px !important;
  }

  .home-page #contact,
  .products-page #contact,
  .shipping-page #contact {
    width: calc(100% - 20px) !important;
    margin-top: 52px !important;
    padding: 26px 20px !important;
    border-radius: 26px !important;
  }
}

/* Final cascade for the approved plush hero and owner review corrections. */
.site-header {
  width: 100% !important;
  margin-inline: 0 !important;
  padding-inline: max(18px, calc((100vw - var(--p-content)) / 2)) !important;
  background: #f8fdff !important;
}

.home-page .hero {
  height: clamp(560px, 38vw, 690px) !important;
  min-height: 0 !important;
  display: block !important;
  grid-template-columns: none !important;
  background: #43ace9 !important;
}

.home-page .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.home-page .hero-media .hero-image {
  width: 100% !important;
  height: 100% !important;
  opacity: 1 !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.home-page .hero::after {
  background: linear-gradient(90deg, rgba(4, 83, 149, 0.34) 0%, rgba(12, 116, 184, 0.18) 43%, rgba(26, 145, 211, 0.02) 66%, transparent 100%) !important;
}

.home-page .hero-copy {
  width: 50% !important;
  height: 100%;
  min-height: 0 !important;
  box-sizing: border-box;
  padding: clamp(42px, 3.2vw, 56px) clamp(20px, 1.6vw, 30px) clamp(34px, 2.6vw, 46px) max(54px, calc((100vw - var(--p-content)) / 2)) !important;
  grid-column: auto !important;
  justify-content: flex-start !important;
}

.home-page .hero .eyebrow {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  background: rgba(4, 91, 157, 0.34) !important;
  text-shadow: 0 2px 8px rgba(3, 55, 99, 0.28);
}

.home-page #hero-title {
  width: 100% !important;
  max-width: none !important;
  color: #ffffff !important;
  font-family: "Arial Rounded MT Bold", "Nunito", "Microsoft YaHei UI", "Microsoft YaHei", system-ui, sans-serif !important;
  font-size: clamp(3rem, 3.75vw, 4.35rem) !important;
  font-weight: 900 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.035em !important;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.26);
  text-shadow: 0 4px 0 rgba(31, 116, 181, 0.72), 0 10px 24px rgba(2, 55, 103, 0.28) !important;
}

.home-page .hero p:not(.eyebrow) {
  width: 100% !important;
  max-width: none !important;
  color: #f9fdff !important;
  font-size: clamp(1.02rem, 1.32vw, 1.2rem) !important;
  font-weight: 800 !important;
  line-height: 1.7 !important;
  text-shadow: 0 2px 10px rgba(2, 55, 103, 0.46);
}

html:lang(fr) .home-page #hero-title,
html:lang(es) .home-page #hero-title,
html:lang(de) .home-page #hero-title {
  font-size: clamp(2.75rem, 3.25vw, 3.85rem) !important;
  line-height: 1.04 !important;
}

.home-page .trust-strip {
  margin-top: 0 !important;
}

.home-page .b2b-benefits {
  gap: 12px !important;
}

.home-page .b2b-benefits li {
  min-height: 42px;
  padding: 10px 16px 10px 40px !important;
  font-size: 0.9rem !important;
  line-height: 1.35 !important;
}

.home-page .b2b-benefits li::before {
  left: 15px !important;
  font-size: 1rem;
}

.home-page .b2b-quote-window > p {
  color: #174f6c !important;
  font-size: 0.96rem !important;
  font-weight: 750 !important;
  line-height: 1.55 !important;
}

.home-page #shipping {
  isolation: auto !important;
  overflow: visible !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.home-page #shipping::after {
  content: none !important;
  display: none !important;
}

.shipping-page #shipping {
  isolation: auto !important;
  overflow: visible !important;
  border: 0 !important;
  border-bottom: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.shipping-page #shipping::before,
.shipping-page #shipping::after {
  content: none !important;
  display: none !important;
}

.home-page #contact .primary-action,
.products-page #contact .primary-action,
.shipping-page #contact .primary-action {
  color: #ffffff !important;
  border-color: #128c7e !important;
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  box-shadow: 0 12px 28px rgba(18, 140, 126, 0.24) !important;
}

.mobile-menu-contact {
  grid-template-columns: minmax(88px, auto) 1fr !important;
  color: #07516f !important;
  text-decoration: none !important;
  cursor: pointer;
}

.mobile-menu-contact span {
  width: auto !important;
  min-width: 88px;
  padding: 8px 10px;
  text-align: center;
  line-height: 1.2;
  white-space: normal;
}

.mobile-menu-contact:hover,
.mobile-menu-contact:focus-visible {
  border-color: rgba(22, 143, 170, 0.42) !important;
  background: rgba(188, 238, 249, 0.94) !important;
  transform: translateY(-2px);
}

.brand-mark img,
.mobile-menu-brand img {
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .site-header {
    padding-inline: 14px !important;
  }

  .home-page .hero {
    height: auto !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    background: linear-gradient(180deg, #54b9ef 0%, #279bdc 100%) !important;
  }

  .home-page .hero::after {
    content: none !important;
    display: none !important;
  }

  .home-page .hero-media {
    width: 100%;
    aspect-ratio: 623 / 434;
    position: relative;
    inset: auto;
    order: -1;
  }

  .home-page .hero-media .hero-image {
    position: absolute !important;
    inset: 0 !important;
    opacity: 1 !important;
    object-position: center center !important;
  }

  .home-page .hero-copy {
    width: 100% !important;
    height: auto;
    min-height: clamp(500px, 74vh, 590px) !important;
    padding: 34px clamp(22px, 6vw, 48px) 30px !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    text-align: center;
  }

  .home-page #hero-title {
    width: 100% !important;
    max-width: none !important;
    font-size: clamp(2.5rem, 8.6vw, 4rem) !important;
    line-height: 1.04 !important;
  }

  .home-page .hero p:not(.eyebrow) {
    width: 100% !important;
    max-width: none !important;
    font-size: clamp(0.98rem, 2.5vw, 1.12rem) !important;
  }

  .home-page .hero-actions {
    width: 100% !important;
    max-width: none !important;
    margin-top: auto !important;
    margin-inline: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-items: stretch;
    gap: 12px !important;
  }

  .home-page .hero-actions .primary-action,
  .home-page .hero-actions .secondary-action {
    width: 100% !important;
    min-height: 54px;
    padding-inline: 14px !important;
    white-space: normal;
    line-height: 1.2;
  }

  .home-page .b2b-benefits li {
    min-height: 40px;
    padding: 9px 12px 9px 36px !important;
    font-size: 0.82rem !important;
  }

  .home-page .b2b-benefits li::before {
    left: 12px !important;
  }

  .home-page .b2b-quote-window > p {
    color: #174f6c !important;
    font-size: 0.86rem !important;
    font-weight: 750 !important;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 10px !important;
  }

  .home-page .hero-copy {
    padding: 28px 20px 24px !important;
  }

  .home-page #hero-title {
    font-size: clamp(2.2rem, 10.8vw, 3.15rem) !important;
  }

  .home-page .hero-actions {
    max-width: none !important;
    margin-inline: 0 !important;
  }
}

/* Owner-approved final sizing for the replacement hero assets. */
@media (min-width: 901px) {
  .home-page .b2b-quote-copy > p:not(.eyebrow) {
    font-size: 1.1rem !important;
    line-height: 1.65 !important;
    font-weight: 750 !important;
  }

  .home-page .b2b-benefits li {
    min-height: 48px;
    padding: 12px 18px 12px 44px !important;
    font-size: 1.08rem !important;
    line-height: 1.35 !important;
  }

  .home-page .b2b-benefits li::before {
    left: 17px !important;
    font-size: 1.08rem;
  }
}

@media (max-width: 900px) {
  .home-page .hero-copy {
    width: 100% !important;
    min-height: clamp(500px, 74vh, 590px) !important;
    padding: 34px clamp(22px, 6vw, 48px) 30px !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    text-align: center;
  }

  .home-page #hero-title,
  .home-page .hero p:not(.eyebrow) {
    width: 100% !important;
    max-width: none !important;
  }

  .home-page .hero-actions {
    width: 100% !important;
    max-width: none !important;
    margin: auto 0 0 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-items: stretch;
    gap: 12px !important;
  }

  .home-page .hero-actions .primary-action,
  .home-page .hero-actions .secondary-action {
    width: 100% !important;
    min-height: 54px;
    padding-inline: 14px !important;
    white-space: normal;
    line-height: 1.2;
  }
}

@media (max-width: 640px) {
  .home-page .hero-copy {
    padding: 28px 20px 24px !important;
  }
}

/* Final owner review: hero spacing, floating trust bar, mobile sea tone and rainbow accent. */
.home-page .hero::before {
  content: none !important;
  display: none !important;
}

@media (min-width: 901px) {
  .home-page .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      90deg,
      rgba(5, 91, 153, 0.28) 0%,
      rgba(15, 125, 183, 0.12) 39%,
      rgba(35, 159, 203, 0.02) 55%,
      transparent 64%
    );
  }

  .home-page .hero::after {
    content: "" !important;
    display: block !important;
    inset: auto auto 34px -8vw !important;
    width: min(58vw, 900px) !important;
    height: clamp(210px, 18vw, 320px) !important;
    z-index: 1 !important;
    border-radius: 0 !important;
    pointer-events: none;
    opacity: 0.92;
    background: radial-gradient(
      ellipse 84% 108% at 44% 108%,
      transparent 0 54%,
      rgba(248, 155, 190, 0.95) 54.5% 57.5%,
      rgba(255, 183, 139, 0.95) 58% 61%,
      rgba(255, 225, 128, 0.96) 61.5% 64.5%,
      rgba(144, 222, 183, 0.95) 65% 68%,
      rgba(111, 205, 237, 0.96) 68.5% 71.5%,
      rgba(187, 164, 239, 0.92) 72% 75%,
      transparent 75.5%
    ) !important;
  }

  .home-page .hero-copy {
    display: flex !important;
    flex-direction: column !important;
    position: relative;
    z-index: 2;
  }

  .home-page .hero-actions {
    margin-top: auto !important;
    margin-bottom: clamp(14px, 1.6vw, 26px) !important;
    position: relative;
    z-index: 3;
  }

  .home-page .trust-strip {
    min-height: 160px;
    margin-bottom: -38px !important;
    padding-block: 14px !important;
    position: relative;
    z-index: 6;
    background: rgba(255, 255, 255, 0.97) !important;
    box-shadow: 0 18px 42px rgba(4, 69, 101, 0.16) !important;
  }

  .home-page .trust-strip > div {
    min-height: 132px;
    padding-block: 17px !important;
  }

  .home-page .trust-strip strong {
    font-size: 1.03rem !important;
    line-height: 1.3 !important;
  }

  .home-page .trust-strip span {
    font-size: 0.87rem !important;
    line-height: 1.45 !important;
  }
}

@media (max-width: 900px) {
  .home-page .hero {
    background: linear-gradient(
      180deg,
      #58bce4 0%,
      #70cfe1 54%,
      #9be2d9 100%
    ) !important;
  }

  .home-page .hero-copy {
    min-height: 0 !important;
  }

  .home-page .hero-actions {
    margin: clamp(44px, 9vw, 64px) 0 0 !important;
  }
}

@media (max-width: 640px) {
  .contact-page .contact-hero h1 {
    font-size: 1.75rem !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em !important;
  }

  .contact-page .contact-hero p:not(.eyebrow) {
    margin-top: 10px !important;
    font-size: 0.84rem !important;
    line-height: 1.65 !important;
  }
}

/* Owner correction: show the supplied banner cleanly and keep multilingual actions aligned. */
@media (min-width: 901px) {
  .home-page .hero-media::after,
  .home-page .hero::after,
  .home-page .hero-copy::before,
  .home-page .hero-copy::after {
    content: none !important;
    display: none !important;
    background: none !important;
    box-shadow: none !important;
    filter: none !important;
  }

  .home-page .hero-actions {
    width: min(100%, 620px) !important;
    max-width: 620px !important;
    align-self: center !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-items: stretch !important;
    justify-content: stretch !important;
    gap: 12px !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .home-page .hero-actions .primary-action,
  .home-page .hero-actions .secondary-action {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    white-space: normal !important;
    text-align: center !important;
  }
}
