:root {
  --brand: #1e3a8a;
  --accent: #dc2626;
  --navy: #000000;
  --soft: #f8fafc;
  --line: #cbd5e1;
  --text: #0f172a;
  --muted: #475569;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.narrow {
  max-width: 850px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -44px;
  z-index: 80;
  background: var(--accent);
  color: var(--white);
  padding: 10px 14px;
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 4px solid var(--brand);
}

.top-strip {
  background: var(--navy);
  color: var(--white);
}

.top-strip-inner,
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.top-strip-inner {
  padding-block: 8px;
  font-size: 0.88rem;
  font-weight: 700;
}

.top-strip-inner div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-inner {
  padding-block: 12px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.mobile-brand-name {
  display: none;
  color: var(--brand);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.05;
}

.mobile-brand-name small {
  display: block;
  margin-top: 3px;
  color: var(--accent);
  font-size: 0.6rem;
  font-weight: 900;
}

.brand-lockup img {
  width: 96px;
  height: 58px;
  object-fit: contain;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand-lockup strong {
  font-size: 1rem;
  font-weight: 900;
}

.brand-lockup small {
  margin-top: 4px;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.94rem;
  font-weight: 700;
}

.mobile-menu-head {
  display: none;
}

.primary-menu a {
  color: var(--navy);
  white-space: nowrap;
}

.primary-menu a:hover,
.primary-menu a.active {
  color: var(--accent);
}

.quote-nav {
  background: var(--accent);
  color: var(--white) !important;
  padding: 11px 15px;
  transition: background-color 160ms ease, transform 160ms ease;
}

.quote-nav:hover {
  background: #b91c1c;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.menu-toggle.open span:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.open span:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle.open span:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero-section {
  background: var(--white);
  color: var(--navy);
  border-bottom: 8px solid var(--brand);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: stretch;
  gap: 0;
  min-height: 590px;
}

.hero-copy {
  padding-block: 78px;
  padding-right: 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy .eyebrow,
.section-navy .eyebrow,
.cta-banner .eyebrow {
  color: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 4.8vw, 4.65rem);
  line-height: 1.02;
  font-weight: 900;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #334155;
  font-size: 1.13rem;
  line-height: 1.65;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row {
  margin-top: 28px;
  color: var(--brand);
  font-weight: 700;
}

.trust-row span {
  border-left: 4px solid var(--accent);
  padding: 4px 12px;
  background: #eff6ff;
}

.hero-metrics {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(3, 1fr);
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.hero-metrics div {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px;
  background: var(--soft);
}

.hero-metrics dt {
  color: var(--brand);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.hero-metrics dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 0;
  padding: 11px 17px;
  font-weight: 800;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-outline {
  border-color: var(--brand);
  color: var(--brand);
}

.btn-outline:hover {
  background: var(--brand);
  color: var(--white);
}

.btn-text {
  border-color: transparent;
  color: var(--navy);
  padding-inline: 4px;
}

.btn-text::after {
  content: "\2192";
  margin-left: 8px;
  color: var(--accent);
}

.btn-text:hover {
  box-shadow: none;
  color: var(--brand);
}

.btn-outline.dark {
  border-color: var(--brand);
  color: var(--brand);
}

.btn-light {
  background: var(--white);
  color: var(--brand);
}

.hero-panel {
  display: grid;
  align-content: start;
  background: #f1f5f9;
  color: var(--navy);
  border-left: 8px solid var(--brand);
  padding: 0;
  overflow: hidden;
}

.hero-panel > img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-bottom: 6px solid var(--accent);
}

.hero-panel > :not(img) {
  margin-left: 34px;
  margin-right: 34px;
}

.hero-panel-kicker {
  margin-top: 30px;
  margin-bottom: 14px;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel h2 {
  max-width: 520px;
  margin-bottom: 30px;
  color: var(--navy);
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  line-height: 1.08;
  font-weight: 900;
}

.hero-panel dl {
  margin: 0 34px 34px;
  border-top: 1px solid var(--line);
}

.hero-panel div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-block: 16px;
}

.hero-panel dt {
  color: var(--brand);
  font-weight: 900;
}

.hero-panel dd {
  margin: 0;
  color: var(--muted);
}

.section,
.brand-band {
  padding-block: 72px;
}

.brand-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading.compact {
  margin-bottom: 20px;
}

.section-heading h2,
.page-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  font-weight: 900;
}

.section-heading p,
.page-hero p,
.content-copy {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.brand-strip span,
.brand-list span {
  min-width: 160px;
  flex: 1 1 160px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
  color: var(--brand);
  padding: 18px;
  text-align: center;
  font-weight: 900;
  transition: background-color 160ms ease, color 160ms ease;
}

.brand-strip span:hover,
.brand-list span:hover {
  background: var(--brand);
  color: var(--white);
}

.brand-list {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.expanded {
  display: flex;
}

.supply-list {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.supply-list article {
  display: grid;
  grid-template-columns: 72px minmax(140px, 220px) 1fr;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.supply-list span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  background: var(--brand);
  color: var(--white);
  font-weight: 900;
}

.supply-list h2,
.supply-list h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 900;
}

.supply-list p {
  margin: 0;
  color: var(--muted);
}

.category-slider {
  position: relative;
  max-width: 100%;
}

.slider-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 16px;
}

.slider-toolbar button {
  width: 44px;
  height: 44px;
  border: 2px solid var(--brand);
  background: var(--white);
  color: var(--brand);
  cursor: pointer;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  appearance: none;
}

.slider-toolbar button:hover {
  background: var(--brand);
  color: var(--white);
}

.category-track {
  display: flex !important;
  gap: 0;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.category-track article {
  flex: 0 0 min(360px, 82vw);
  min-height: 420px;
  display: grid;
  align-content: start;
  scroll-snap-align: start;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0 0 26px;
}

.category-track span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  background: var(--brand);
  color: var(--white);
  font-weight: 900;
  margin: -27px 26px 0;
  position: relative;
  z-index: 1;
}

.category-track article > img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-bottom: 5px solid var(--accent);
}

.category-track h3 {
  margin: 18px 26px 10px;
  font-size: 1.32rem;
  font-weight: 900;
}

.category-track p {
  margin-inline: 26px;
  color: var(--muted);
  margin-bottom: 20px;
}

.category-track a {
  width: max-content;
  margin: auto 26px 0;
  border-bottom: 3px solid var(--accent);
  color: var(--brand);
  font-weight: 900;
}

.slider-progress {
  height: 4px;
  margin-top: 16px;
  background: var(--line);
}

.slider-progress span {
  display: block;
  width: 18%;
  height: 100%;
  background: var(--accent);
  transition: width 160ms ease;
}

.section-navy {
  background: var(--brand);
  color: var(--white);
}

.section-navy .section-heading p {
  color: #dbeafe;
}

.split-grid,
.feature-layout,
.contact-grid,
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.reason-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.reason-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 6px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding: 20px 0;
}

.reason-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--accent);
  grid-row: span 2;
}

.reason-list strong {
  align-self: end;
}

.reason-list p {
  margin: 0;
  color: #dbeafe;
  line-height: 1.55;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-list.large {
  grid-template-columns: repeat(4, 1fr);
}

.product-list a {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 18px;
  color: var(--brand);
  font-weight: 800;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.product-list a:hover {
  background: #eff6ff;
  transform: translateY(-2px);
}

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

.catalog-list a {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 4px 14px;
  align-items: start;
}

.catalog-list span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: var(--brand);
  color: var(--white);
  grid-row: span 2;
}

.catalog-list strong {
  color: var(--brand);
}

.catalog-list small {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.quote-panel,
.info-box,
.map-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 28px;
}

.quote-panel.flat {
  border-top: 6px solid var(--accent);
  box-shadow: none;
  position: sticky;
  top: 120px;
}

.quote-panel h2,
.quote-panel h3,
.content-title {
  margin-bottom: 14px;
  font-size: 1.75rem;
  line-height: 1.16;
  font-weight: 900;
}

.quote-panel p {
  margin-bottom: 22px;
  color: var(--muted);
}

.cta-banner {
  padding-block: 64px;
  background: var(--accent);
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-inner h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  font-weight: 900;
}

.cta-inner p {
  margin-bottom: 0;
  color: #fee2e2;
}

.page-hero {
  padding-block: 84px;
  background: var(--navy);
  color: var(--white);
  border-bottom: 8px solid var(--accent);
}

.page-hero p {
  color: #dbeafe;
}

.info-box {
  display: grid;
  gap: 8px;
  border-top: 6px solid var(--brand);
}

.info-box strong {
  margin-top: 10px;
  color: var(--brand);
}

.map-card {
  min-height: 280px;
  display: grid;
  align-content: end;
  background: var(--brand);
  color: var(--white);
  border: 0;
}

.map-card span {
  width: max-content;
  background: var(--accent);
  padding: 8px 10px;
  font-weight: 900;
}

.map-card strong {
  margin-top: 18px;
  font-size: 1.7rem;
}

.map-card p {
  color: #dbeafe;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--brand);
  background: var(--white);
  padding: 28px;
}

.quote-form label,
.quote-form span,
.quote-form small {
  display: block;
}

.quote-form label.full,
.quote-form .alert,
.quote-form button {
  grid-column: 1 / -1;
}

.quote-form span {
  margin-bottom: 8px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 13px 14px;
  outline: none;
  font: inherit;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--brand);
  outline: 3px solid #dbeafe;
}

.quote-form small {
  margin-top: 7px;
  color: var(--accent);
}

.alert {
  padding: 13px 14px;
  font-weight: 700;
}

.alert.success {
  background: #dcfce7;
  color: #166534;
}

.alert.error {
  background: #fee2e2;
  color: #991b1b;
}

.debug-box {
  margin-top: 20px;
  overflow: auto;
  background: #111827;
  padding: 16px;
  color: var(--white);
}

.newsletter-band {
  background: #020617;
  color: var(--white);
  border-top: 6px solid var(--accent);
  padding: 48px 0;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  align-items: center;
  gap: 42px;
}

.newsletter-copy h2 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  line-height: 1.05;
  font-weight: 900;
}

.newsletter-copy p:not(.eyebrow),
.newsletter-form p {
  color: #cbd5e1;
}

.newsletter-form {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
}

.newsletter-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #334155;
  background: var(--white);
  color: var(--text);
  padding: 0 14px;
  font: inherit;
  font-weight: 700;
}

.newsletter-form input:focus {
  border-color: #0ea5e9;
  outline: 3px solid rgba(14, 165, 233, 0.18);
}

.newsletter-email-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 10px;
}

.newsletter-email-row button {
  min-height: 52px;
  border: 0;
  background: var(--accent);
  color: var(--white);
  padding: 0 22px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.newsletter-email-row button:hover {
  background: #b91c1c;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
}

.site-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: inline-flex;
  max-width: min(420px, calc(100% - 32px));
  align-items: center;
  gap: 10px;
  border: 1px solid #bbf7d0;
  background: #052e16;
  color: var(--white);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.24);
  padding: 14px 16px;
  font-weight: 800;
  transition: opacity 220ms ease, transform 220ms ease;
}

.site-toast.error {
  border-color: #fecaca;
  background: #7f1d1d;
}

.site-toast.is-hiding {
  opacity: 0;
  transform: translateY(10px);
}

.site-footer {
  background: #07111f;
  color: var(--white);
  padding-top: 58px;
  padding-bottom: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.9fr 1fr;
  gap: 32px;
}

.footer-logo {
  width: 180px;
  background: var(--white);
}

.site-footer h2 {
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 900;
}

.site-footer a,
.site-footer p {
  display: block;
  margin-top: 10px;
  color: #cbd5e1;
}

.footer-bottom {
  margin-top: 48px;
  display: grid;
  justify-content: center;
  text-align: center;
  gap: 18px;
  border-top: 1px solid #334155;
  padding-block: 20px;
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-bottom a {
  display: inline;
  color: var(--white);
  font-weight: 800;
}

.quick-contact-left {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.quick-contact-left a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  border: 2px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  padding: 10px 18px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.quick-contact-left a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.quick-call {
  background: var(--brand);
}

.quick-whatsapp {
  background: #128c48;
  border-color: #22c55e !important;
  min-width: 310px;
}

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 10px;
  z-index: 35;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  max-width: none;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-top: 5px solid var(--brand);
  background: var(--white);
  padding: 12px 14px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.22);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
  font-weight: 900;
}

.cookie-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.cookie-consent a {
  color: var(--brand);
  font-weight: 800;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  min-height: 38px;
  border: 2px solid var(--brand);
  background: var(--white);
  color: var(--brand);
  padding: 7px 12px;
  cursor: pointer;
  font-weight: 900;
}

.cookie-actions button:last-child {
  background: var(--brand);
  color: var(--white);
}

.legal-content h2 {
  margin: 28px 0 8px;
  color: var(--brand);
  font-size: 1.35rem;
  font-weight: 900;
}

.legal-content p {
  color: var(--muted);
  line-height: 1.75;
}

.legal-content .legal-lead {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
}

.legal-content ul {
  margin: 12px 0 22px;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.75;
}

.legal-content li {
  margin: 8px 0;
}

.cookie-preference-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin: 0 0 32px;
  padding: 24px;
  background: var(--light);
  border: 1px solid var(--line);
  border-left: 5px solid var(--brand);
}

.cookie-preference-panel h2 {
  margin-top: 0;
}

.cookie-current strong {
  display: inline-flex;
  padding: 4px 9px;
  background: var(--white);
  color: var(--brand);
  border: 1px solid var(--line);
}

.cookie-preference-actions {
  display: grid;
  gap: 10px;
  min-width: 240px;
}

.cookie-preference-actions button {
  min-height: 44px;
  border: 2px solid var(--brand);
  background: var(--brand);
  color: var(--white);
  padding: 0 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.cookie-preference-actions button:hover {
  transform: translateY(-2px);
}

.cookie-preference-actions button:nth-child(2) {
  background: var(--white);
  color: var(--brand);
}

.cookie-preference-actions button:nth-child(3) {
  border-color: var(--line);
  background: transparent;
  color: var(--muted);
}

.quote-system-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.quote-system-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.quote-form-section {
  display: grid;
  gap: 16px;
}

.quote-form-section h2,
.quote-section-title h2 {
  margin: 0;
  color: var(--brand);
  font-size: 1.2rem;
  font-weight: 950;
}

.quote-field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.quote-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.quote-add-line,
.quote-item-row button {
  border: 2px solid var(--brand);
  background: var(--white);
  color: var(--brand);
  cursor: pointer;
  font-weight: 900;
}

.quote-add-line {
  min-height: 42px;
  padding: 9px 13px;
}

.quote-items {
  display: grid;
  gap: 12px;
}

.quote-item-row {
  display: grid;
  grid-template-columns: 1.05fr 0.65fr 1fr 42px;
  gap: 12px;
  align-items: end;
  border: 1px solid var(--line);
  background: var(--soft);
  padding: 14px;
}

.quote-item-row button {
  height: 44px;
}

.quote-support-panel {
  position: sticky;
  top: 120px;
  border-top: 6px solid var(--accent);
  background: var(--white);
  padding: 28px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
}

.quote-support-panel h2 {
  margin: 0 0 14px;
  font-size: 1.75rem;
  line-height: 1.15;
  font-weight: 950;
}

.quote-support-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.quote-support-panel .btn {
  width: 100%;
  margin-top: 10px;
}

.quote-support-note {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  border-left: 4px solid var(--brand);
  background: var(--soft);
  padding: 14px;
}

.quote-support-note span {
  color: var(--muted);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* Premium homepage */
.gh-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gh-hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: var(--white);
  color: var(--navy);
  border-bottom: 1px solid var(--line);
}

.gh-hero-bg,
.gh-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gh-hero-bg {
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.9) contrast(1.04);
}

.gh-hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 47%, rgba(255, 255, 255, 0.24) 100%),
    linear-gradient(180deg, rgba(248, 250, 252, 0) 0%, rgba(248, 250, 252, 0.86) 100%);
}

.gh-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 48px;
  align-items: center;
  padding-block: 78px 70px;
}

.gh-hero-copy {
  max-width: 780px;
}

.gh-hero-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(3rem, 6.4vw, 6rem);
  line-height: 0.96;
  font-weight: 950;
}

.gh-hero-copy p:not(.gh-kicker) {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.68;
}

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

.gh-btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  padding: 13px 19px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.gh-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.gh-btn-primary {
  background: var(--accent);
  color: var(--white);
}

.gh-btn-primary:hover {
  background: #b91c1c;
}

.gh-btn-secondary {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--white);
}

.gh-btn-secondary:hover {
  background: var(--brand);
  color: var(--white);
}

.gh-btn-light {
  background: var(--white);
  color: var(--brand);
}

.gh-hero-card {
  border-top: 6px solid var(--accent);
  background: rgba(255, 255, 255, 0.98);
  color: var(--navy);
  padding: 30px;
  border-inline: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.11);
}

.gh-hero-card > strong {
  display: block;
  margin-bottom: 20px;
  color: var(--brand);
  font-size: 1.1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.gh-hero-card dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.gh-hero-card div {
  border-bottom: 1px solid var(--line);
  padding-block: 15px;
}

.gh-hero-card dt {
  color: var(--brand);
  font-weight: 900;
}

.gh-hero-card dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.gh-section,
.gh-brand-band {
  padding-block: 86px;
}

.gh-brand-band {
  background: var(--white);
}

.gh-section {
  background: var(--soft);
}

.gh-section-head {
  max-width: 850px;
  margin-bottom: 34px;
}

.gh-section-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.7vw, 3.4rem);
  line-height: 1.08;
  font-weight: 950;
}

.gh-section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  max-width: none;
}

.gh-link {
  white-space: nowrap;
  color: var(--brand);
  font-weight: 900;
}

.gh-brand-marquee {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--white);
}

.gh-brand-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ghBrandMarquee 28s linear infinite;
}

.gh-brand-marquee:hover .gh-brand-track {
  animation-play-state: paused;
}

.gh-brand-track span {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  min-height: 82px;
  padding-inline: 34px 0;
  color: var(--brand);
  font-size: 1.05rem;
  font-weight: 950;
  text-transform: uppercase;
}

.gh-brand-track span::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

@keyframes ghBrandMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

.gh-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gh-category-card {
  min-height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gh-category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(30, 58, 138, 0.35);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
}

.gh-category-card img {
  width: 100%;
  height: 176px;
  object-fit: cover;
}

.gh-category-card div {
  padding: 24px;
}

.gh-category-card span,
.gh-reason-grid span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: var(--brand);
  color: var(--white);
}

.gh-category-card h3,
.gh-reason-grid h3 {
  margin: 18px 0 9px;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 950;
}

.gh-category-card p,
.gh-reason-grid p {
  color: var(--muted);
  line-height: 1.64;
}

.gh-category-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--brand);
  font-weight: 900;
  border-bottom: 3px solid var(--accent);
}

.gh-why {
  background: var(--white);
}

.gh-why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 52px;
  align-items: start;
}

.gh-why .gh-section-head {
  position: sticky;
  top: 120px;
}

.gh-why .gh-section-head p:not(.gh-kicker) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.gh-operations-list {
  border-top: 1px solid var(--line);
}

.gh-operations-list article {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.gh-operations-list article > span {
  color: var(--accent);
  font-size: 2.15rem;
  font-weight: 950;
  line-height: 1;
}

.gh-operations-list h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 950;
}

.gh-operations-list h3 i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--brand);
  color: var(--white);
  font-size: 0.95rem;
}

.gh-operations-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.gh-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: start;
}

.gh-product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.gh-product-list a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 20px;
  transition: background-color 160ms ease, transform 160ms ease;
}

.gh-product-list a:hover {
  background: #eff6ff;
  transform: translateY(-2px);
}

.gh-product-list i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--brand);
  color: var(--white);
  grid-row: span 2;
}

.gh-product-list strong {
  color: var(--brand);
  font-weight: 950;
}

.gh-product-list small {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.gh-quote-card {
  position: sticky;
  top: 122px;
  border-top: 6px solid var(--accent);
  background: var(--white);
  padding: 30px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
}

.gh-quote-card h3 {
  margin: 0 0 14px;
  font-size: 1.8rem;
  line-height: 1.12;
  font-weight: 950;
}

.gh-quote-card p {
  color: var(--muted);
  line-height: 1.68;
}

.gh-partnership {
  background: var(--brand);
  color: var(--white);
  padding-block: 88px;
}

.gh-partnership-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: center;
}

.gh-partnership h2 {
  max-width: 780px;
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  font-weight: 950;
}

.gh-partnership p {
  max-width: 720px;
  color: #dbeafe;
  font-size: 1.08rem;
  line-height: 1.75;
}

.gh-partnership ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gh-partnership li {
  border: 1px solid rgba(255,255,255,0.26);
  padding: 15px;
  font-weight: 850;
}

.gh-partnership li i {
  margin-right: 8px;
  color: #fecaca;
}

.gh-service-band {
  background: var(--white);
  padding-block: 72px;
}

.gh-service-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 44px;
  align-items: end;
}

.gh-service-grid h2 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.08;
  font-weight: 950;
}

.gh-service-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.gh-final-cta {
  background: var(--accent);
  color: var(--white);
  padding-block: 72px;
}

.gh-final-cta .gh-kicker {
  color: #fee2e2;
}

.gh-final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.gh-final-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
  font-weight: 950;
}

.gh-map-section {
  background: var(--white);
  padding-block: 88px;
}

.gh-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 36px;
  align-items: stretch;
}

.gh-map-copy {
  border-left: 6px solid var(--accent);
  background: var(--soft);
  padding: 34px;
}

.gh-map-copy h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.08;
  font-weight: 950;
}

.gh-map-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.gh-map-frame {
  min-height: 380px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
}

.gh-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.gh-faq-section {
  padding-block: 86px;
  background: var(--white);
}

.gh-faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.gh-faq-list {
  display: grid;
  gap: 12px;
}

.gh-faq-list details {
  border: 1px solid var(--line);
  background: var(--soft);
  padding: 20px 22px;
}

.gh-faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 950;
}

.gh-faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer-socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.footer-socials a:hover {
  background: var(--accent);
  color: var(--white);
}

@media (max-width: 1100px) {
  .gh-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .gh-hero {
    min-height: auto;
  }

  .gh-hero-inner,
  .gh-feature-layout,
  .gh-partnership-inner,
  .gh-service-grid,
  .gh-why-layout,
  .gh-map-layout,
  .gh-faq-layout,
  .quote-system-layout {
    grid-template-columns: 1fr;
  }

  .gh-hero-inner {
    padding-block: 76px 42px;
  }

  .gh-hero-card,
  .gh-quote-card,
  .quote-support-panel,
  .gh-why .gh-section-head {
    position: static;
  }

  .gh-section-head-row,
  .gh-final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Production polish overrides */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  gap: 16px;
  background: #ffffff;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.site-loader img {
  width: 112px;
  height: auto;
}

.site-loader span {
  width: 180px;
  height: 5px;
  background: linear-gradient(90deg, #00aeef 0 25%, #ec008c 25% 50%, #ffd500 50% 75%, #07111f 75% 100%);
  animation: loaderPulse 920ms ease-in-out infinite alternate;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

@keyframes loaderPulse {
  from { transform: scaleX(0.72); }
  to { transform: scaleX(1); }
}

.ct-page-hero,
.ct-shop-hero {
  background: #143a85 !important;
  color: #ffffff !important;
  padding: clamp(26px, 4vw, 46px) 0 !important;
}

.ct-page-hero::before,
.ct-shop-hero::before {
  display: none !important;
}

.ct-page-hero .ct-kicker,
.ct-shop-hero .ct-kicker,
.ct-page-hero h1,
.ct-shop-hero h1,
.ct-page-hero p,
.ct-shop-hero p {
  color: #ffffff !important;
}

.ct-hero-red { background: #e1262d !important; }
.ct-hero-yellow { background: #ffd500 !important; color: #07111f !important; }
.ct-hero-yellow .ct-kicker,
.ct-hero-yellow h1,
.ct-hero-yellow p { color: #07111f !important; }
.ct-hero-dark { background: #07111f !important; }

.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 26px;
  align-items: center;
  margin-bottom: 44px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.18);
  border-left: 6px solid #ffd500;
  background: #0d1b2f;
}

.footer-newsletter h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
}

.footer-newsletter p:not(.eyebrow) {
  max-width: 680px;
  color: #cbd5e1;
}

.footer-newsletter .newsletter-form {
  padding: 0;
  border: 0;
  background: transparent;
}

.footer-newsletter .newsletter-form p {
  display: none;
}

.newsletter-band {
  display: none;
}

.ct-product-grid,
.ct-shop-product-grid,
.ct-related-strip {
  gap: clamp(12px, 2vw, 20px);
}

.ct-product-card {
  border: 1px solid #e5edf7 !important;
  background: #ffffff !important;
  box-shadow: 0 12px 30px rgba(15,23,42,.06) !important;
  transform: none !important;
}

.ct-product-thumb {
  min-height: 170px !important;
}

.ct-product-body {
  padding: 14px !important;
}

.ct-product-body h2,
.ct-product-body h3 {
  margin: 6px 0 !important;
  font-size: .98rem !important;
}

.ct-product-body p {
  min-height: 0 !important;
  margin-bottom: 10px;
  font-size: .9rem;
}

.ct-product-whatsapp {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
  border: 1px solid #16a34a !important;
  background: #16a34a !important;
  color: #ffffff !important;
  padding: 0 12px;
  font-weight: 900;
}

.ct-card-actions.product-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.checkout-main,
.checkout-panel,
.checkout-summary {
  display: grid;
  gap: 18px;
}

.checkout-panel,
.checkout-summary {
  border: 1px solid #dbe3ef;
  background: #ffffff;
  padding: 22px;
}

.checkout-panel-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.checkout-panel-head > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: #143a85;
  color: #ffffff;
  font-weight: 900;
}

.checkout-panel-head h2,
.checkout-summary h2 {
  margin: 0 0 4px;
  font-size: 1.25rem;
}

.checkout-panel-head p,
.checkout-summary p {
  color: #475569;
}

.checkout-cart-list {
  display: grid;
  gap: 10px;
}

.checkout-cart-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid #e5edf7;
  padding: 12px;
}

.checkout-cart-item i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #eff6ff;
  color: #143a85;
}

.checkout-cart-item span {
  display: block;
  color: #64748b;
  font-size: .9rem;
}

.checkout-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 1px solid #dbe3ef;
  padding: 12px 14px;
  font: inherit;
}

.ct-alert {
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #166534;
  padding: 14px 16px;
  font-weight: 800;
}

.ct-alert.error {
  border-color: #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.ct-cart-checkout {
  width: 100%;
  margin-top: 18px;
}

.ct-cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ct-cart-qty button {
  width: 30px;
  height: 30px;
  border: 1px solid #dbe3ef;
  background: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 980px) {
  .footer-newsletter,
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ct-product-grid,
  .ct-shop-product-grid,
  .ct-product-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .ct-product-thumb {
    min-height: 118px !important;
  }

  .ct-product-body {
    padding: 10px !important;
  }

  .ct-product-body p,
  .ct-product-actions-float,
  .ct-product-body > span {
    display: none !important;
  }

  .ct-card-actions.product-actions {
    grid-template-columns: 1fr;
  }

  .ct-product-whatsapp span {
    display: none;
  }

  .checkout-cart-item {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .checkout-cart-item b {
    grid-column: 2;
  }
}

@media (max-width: 380px) {
  .ct-product-grid,
  .ct-shop-product-grid,
  .ct-product-grid.compact {
    grid-template-columns: 1fr !important;
  }
}

/* Final public polish: compact footer newsletter, clean mobile header, reusable Google mark. */
.google-mark {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 18px;
  position: relative;
  border-radius: 50%;
  background:
    conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0 100%);
  vertical-align: -3px;
}

.google-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: #ffffff;
  border-radius: 50%;
}

.footer-newsletter {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px) !important;
  gap: 16px !important;
  margin: 0 0 22px !important;
  padding: 14px 16px !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  background: #0b1020 !important;
}

.footer-newsletter .eyebrow {
  margin-bottom: 4px !important;
}

.footer-newsletter h2 {
  font-size: clamp(1rem, 1.25vw, 1.25rem) !important;
  margin: 0 0 3px !important;
}

.footer-newsletter p:not(.eyebrow) {
  font-size: .88rem !important;
  line-height: 1.45 !important;
}

.footer-newsletter .newsletter-form {
  display: grid !important;
  gap: 8px !important;
}

.footer-newsletter .newsletter-form input {
  min-height: 42px !important;
  padding: 10px 12px !important;
}

.footer-newsletter .newsletter-email-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 8px !important;
}

.footer-newsletter .newsletter-email-row button {
  min-height: 42px !important;
  padding: 0 16px !important;
  white-space: nowrap !important;
}

.footer-grid {
  padding-top: 18px !important;
}

@media (max-width: 760px) {
  .ct-announcement {
    height: 28px !important;
    min-height: 28px !important;
    max-height: 28px !important;
    overflow: hidden !important;
  }

  .ct-announcement-track {
    min-height: 28px !important;
    line-height: 28px !important;
    animation-duration: 38s !important;
  }

  .ct-announcement span,
  .ct-announcement a {
    font-size: .74rem !important;
    line-height: 28px !important;
  }

  .ct-brand-row {
    min-height: auto !important;
    padding: 8px 54px 8px !important;
    gap: 6px !important;
  }

  .ct-brand {
    justify-content: center !important;
    max-width: 100% !important;
  }

  .ct-brand img {
    width: 56px !important;
    height: auto !important;
  }

  .ct-wordmark {
    font-size: 1.02rem !important;
    line-height: .95 !important;
  }

  .ct-brand-text small {
    max-width: 190px;
    font-size: .68rem !important;
    line-height: 1.2 !important;
  }

  .ct-print-bars {
    width: 112px !important;
    margin-top: 4px !important;
  }

  .menu-toggle {
    top: 46px !important;
    right: 12px !important;
    width: 38px !important;
    height: 38px !important;
  }

  .ct-mobile-brand-search {
    margin-top: 4px !important;
    width: min(100%, 360px) !important;
  }

  .footer-newsletter {
    grid-template-columns: 1fr !important;
    padding: 14px !important;
  }

  .footer-newsletter p:not(.eyebrow) {
    display: none !important;
  }

  .footer-newsletter .newsletter-email-row {
    grid-template-columns: 1fr !important;
  }
}

/* Final production pass: solid headers, compact ticker, real price filters. */
.page-hero,
.ct-page-hero {
  background: #0f172a !important;
  background-image: none !important;
  color: #ffffff !important;
  min-height: 220px !important;
  padding: 54px 0 !important;
  border-bottom: 6px solid #e4252a !important;
}

.page-hero::before,
.ct-page-hero::before {
  display: none !important;
}

.page-hero h1,
.ct-page-hero h1 {
  color: #ffffff !important;
}

.page-hero p,
.ct-page-hero p {
  color: rgba(255, 255, 255, 0.86) !important;
}

.ct-hero-blue {
  background: #1e3a8a !important;
  border-bottom-color: #00a9e0 !important;
}

.ct-hero-red,
.page-hero-red {
  background: #e4252a !important;
  border-bottom-color: #0f172a !important;
}

.ct-hero-yellow {
  background: #ffce00 !important;
  border-bottom-color: #0f172a !important;
  color: #0f172a !important;
}

.ct-hero-yellow h1,
.ct-hero-yellow p,
.ct-hero-yellow .ct-kicker {
  color: #0f172a !important;
}

.ct-offer-ticker,
.utility-ticker {
  white-space: nowrap;
  overflow: hidden;
}

.ct-offer-ticker *,
.utility-ticker * {
  white-space: nowrap;
}

@media (max-width: 760px) {
  .ct-offer-ticker,
  .utility-ticker,
  .site-utility,
  .top-strip {
    min-height: 32px;
    max-height: 32px;
    overflow: hidden;
  }
}

.ct-price-range {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid #dbe5f2;
  background: #ffffff;
}

.ct-price-range > span {
  color: #0f3a8a;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.ct-price-range-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ct-price-range-grid label {
  display: grid;
  gap: 5px;
}

.ct-price-range-grid small,
.ct-price-range > small {
  color: #475569;
  font-weight: 700;
}

.ct-price-range-grid input {
  width: 100%;
  border: 1px solid #cbd5e1;
  padding: 10px;
  font-weight: 800;
}

/* Final mobile header pass: keep ticker from breaking navigation. */
@media (max-width: 760px) {
  .ct-announcement {
    height: 30px !important;
    min-height: 30px !important;
    max-height: 30px !important;
    overflow: hidden !important;
    display: flex;
    align-items: center;
    background: #050505;
  }

  .ct-announcement-track {
    display: inline-flex !important;
    align-items: center;
    gap: 22px !important;
    white-space: nowrap !important;
    line-height: 30px !important;
    will-change: transform;
  }

  .ct-announcement span,
  .ct-announcement a {
    white-space: nowrap !important;
    font-size: .78rem !important;
    line-height: 30px !important;
  }

  .ct-utility {
    display: none !important;
  }

  .ct-brand-row {
    min-height: 74px !important;
    padding: 8px 0 !important;
    display: grid !important;
    gap: 8px !important;
  }

  .ct-brand {
    width: 100%;
    justify-content: center !important;
    gap: 10px !important;
  }

  .ct-brand img {
    width: 62px !important;
    height: auto !important;
    max-height: 46px !important;
    object-fit: contain;
  }

  .ct-brand-text {
    align-items: flex-start;
  }

  .ct-wordmark {
    font-size: 1.15rem !important;
    line-height: 1 !important;
  }

  .ct-brand-text small {
    max-width: 210px;
    font-size: .66rem !important;
    line-height: 1.1 !important;
    white-space: normal;
  }

  .ct-print-bars {
    height: 4px;
    margin-top: 4px;
  }

  .ct-nav-wrap {
    min-height: 48px !important;
  }

  .ct-nav-inner {
    min-height: 48px !important;
    justify-content: flex-end !important;
  }

  .ct-nav-inner .menu-toggle,
  .menu-toggle {
    width: 42px !important;
    height: 42px !important;
    margin-left: auto;
    border: 1px solid #cbd5e1 !important;
    background: #ffffff !important;
  }

  .ct-primary-menu.open {
    top: 0;
    min-height: 100vh;
    overflow-y: auto;
  }
}

.ct-mobile-brand-search {
  display: none;
}

@media (max-width: 760px) {
  .ct-mobile-brand-search {
    width: min(100%, 420px);
    justify-self: center;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
  }

  .ct-mobile-brand-search input {
    min-width: 0;
    border: 0;
    padding: 10px 12px;
    font: inherit;
    font-size: .86rem;
  }

  .ct-mobile-brand-search button {
    border: 0;
    background: #07111f;
    color: #ffffff;
  }

  .ct-header-search {
    display: none !important;
  }
}

/* Final portal/page polish */
.ct-nav-inner,
.ct-primary-menu {
  align-items: center;
}

.ct-primary-menu a {
  white-space: nowrap;
}

.ct-account-cta,
.ct-cart-cta {
  min-height: 42px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid #143a85;
  padding: 0 16px;
  color: #143a85 !important;
  font-weight: 900;
  text-decoration: none;
  background: #ffffff;
}

.ct-cart-cta {
  border-color: #07111f;
  color: #07111f !important;
}

.ct-account-cta:hover,
.ct-cart-cta:hover,
.ct-account-cta.active,
.ct-cart-cta.active {
  background: #143a85;
  border-color: #143a85;
  color: #ffffff !important;
}

.page-hero,
.ct-page-hero,
.ct-shop-hero {
  position: relative;
  overflow: hidden;
  background: #143a85 !important;
  color: #ffffff !important;
  padding: clamp(34px, 4.6vw, 64px) 0 !important;
  border-bottom: 1px solid #dbe3ef;
}

.page-hero::before,
.ct-page-hero::before,
.ct-shop-hero::before {
  content: "";
  display: block !important;
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, #00aeef 0 25%, #ec008c 25% 50%, #ffd500 50% 75%, #07111f 75% 100%) !important;
}

.page-hero .container,
.ct-page-hero .container,
.ct-shop-hero .container {
  max-width: 980px;
}

.page-hero h1,
.ct-page-hero h1,
.ct-shop-hero h1 {
  max-width: 920px;
  color: inherit !important;
  font-size: clamp(2rem, 4vw, 4.1rem) !important;
  line-height: 1.02 !important;
}

.page-hero p,
.ct-page-hero p,
.ct-shop-hero p,
.page-hero .eyebrow,
.ct-page-hero .ct-kicker {
  color: inherit !important;
}

.page-hero-red,
.ct-hero-red {
  background: #e1262d !important;
}

.ct-hero-dark {
  background: #07111f !important;
}

.ct-hero-yellow {
  background: #ffd500 !important;
  color: #07111f !important;
}

.footer-newsletter {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px) !important;
  gap: 18px !important;
  margin-bottom: 28px !important;
  padding: 16px !important;
  background: #07111f !important;
  border-left-color: #00aeef !important;
}

.footer-newsletter h2 {
  font-size: clamp(1.05rem, 1.5vw, 1.45rem) !important;
  margin-bottom: 4px !important;
}

.footer-newsletter p:not(.eyebrow) {
  margin-bottom: 0 !important;
  font-size: .95rem;
}

.newsletter-email-row button {
  background: #e1262d;
}

.quick-help-widget {
  left: 18px !important;
  right: auto !important;
  bottom: 18px !important;
}

@media (max-width: 720px) {
  .newsletter-band {
    padding: 34px 0;
  }

  .newsletter-inner,
  .newsletter-email-row {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    padding: 18px;
  }

  .newsletter-email-row button {
    width: 100%;
  }

  .site-toast {
    right: 16px;
    bottom: 88px;
  }
}

@media (max-width: 620px) {
  .gh-hero-copy h1 {
    font-size: 3rem;
  }

  .gh-hero-actions,
  .gh-hero-actions .gh-btn {
    width: 100%;
  }

  .gh-category-grid,
  .gh-product-list,
  .quote-field-grid,
  .quote-item-row {
    grid-template-columns: 1fr;
  }

  .gh-operations-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gh-brand-track span {
    min-height: 68px;
    padding-inline: 22px 0;
  }
}

.back-to-top {
  position: relative;
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top svg {
  position: absolute;
  inset: 0;
  width: 54px;
  height: 54px;
  transform: rotate(-90deg);
}

.back-to-top circle {
  fill: none;
  stroke-width: 4;
}

.progress-track {
  stroke: #cbd5e1;
}

.progress-value {
  stroke: var(--accent);
  stroke-dasharray: 125.66;
  stroke-dashoffset: 125.66;
  transition: stroke-dashoffset 120ms linear;
}

.back-to-top span {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  color: var(--navy);
}

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

[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .primary-menu {
    position: fixed;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    border: 0;
    background: var(--navy);
    padding: 96px 24px 32px;
    color: var(--white);
  }

  .primary-menu.open {
    display: flex;
  }

  .primary-menu a {
    border-bottom: 1px solid #334155;
    color: var(--white);
    padding: 18px 0;
    font-size: 1.35rem;
  }

  .primary-menu a.active,
  .primary-menu a:hover {
    color: #fecaca;
  }

  .primary-menu .quote-nav {
    margin-top: 22px;
    border-bottom: 0;
    text-align: center;
  }

  .mobile-menu-head {
    position: absolute;
    left: 24px;
    right: 80px;
    top: 22px;
    display: grid;
    gap: 2px;
    color: var(--white);
  }

  .mobile-menu-head small {
    color: #cbd5e1;
    font-weight: 700;
  }

  .menu-toggle {
    position: relative;
    z-index: 60;
  }

  .hero-grid,
  .split-grid,
  .feature-layout,
  .contact-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-right: 0;
  }

  .brand-list,
  .product-list.large,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cookie-consent {
    grid-template-columns: 1fr;
    bottom: 118px;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .top-strip {
    display: none;
  }

  .brand-lockup {
    min-width: 0;
  }

  .brand-lockup span {
    display: none;
  }

  .brand-lockup img {
    width: 96px;
  }

  .mobile-brand-name {
    display: block;
    margin-inline: auto;
  }

  .hero-copy {
    padding-block: 58px;
  }

  .hero-copy h1 {
    font-size: 2.7rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .product-list,
  .product-list.large,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions .btn-text {
    justify-content: center;
    border: 2px solid #334155;
    padding: 11px 17px;
  }

  .hero-panel {
    padding: 0;
  }

  .hero-panel > :not(img) {
    margin-left: 20px;
    margin-right: 20px;
  }

  .hero-panel dl {
    margin: 0 20px 24px;
  }

  .hero-panel div,
  .supply-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .quick-contact-left {
    left: 12px;
    bottom: 12px;
    gap: 7px;
    align-items: flex-start;
    flex-direction: column;
  }

  .quick-contact-left a {
    min-height: 42px;
    padding: 9px 14px;
    font-size: 0.88rem;
  }

  .quick-call {
    min-width: 96px;
    justify-content: center;
  }

  .quick-whatsapp {
    min-width: min(310px, calc(100vw - 84px));
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .cookie-preference-panel {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .cookie-preference-actions {
    min-width: 0;
  }
}

.brand-mark,
.footer-brand-mark {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: #0f172a;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0;
  border-bottom: 4px solid #dc2626;
}

.brand-mark {
  flex: 0 0 auto;
}

.footer-brand-mark {
  margin-bottom: 18px;
}

.gh-map-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
  background: #f8fafc;
  border: 1px solid #dbe3ef;
}

.gh-map-placeholder > div {
  max-width: 360px;
  padding: 28px;
  text-align: center;
}

.gh-map-placeholder i {
  display: block;
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 12px;
}

.gh-map-placeholder strong,
.gh-map-placeholder span {
  display: block;
}

/* Copitronix ecommerce public rebuild */
.ct-header {
  background: #fff;
  border-top: 4px solid #050505;
  border-bottom: 3px solid #143a85;
  position: sticky;
  top: 0;
  z-index: 50;
}

.ct-announcement {
  overflow: hidden;
  background: #050505;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.ct-announcement-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 34px;
  padding-inline: 18px;
  animation: ctTickerMove 38s linear infinite;
  white-space: nowrap;
}

.ct-announcement:hover .ct-announcement-track {
  animation-play-state: paused;
}

.ct-announcement span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.ct-announcement a {
  color: #fff;
  text-decoration: none;
}

.ct-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 999px;
}

.ct-dot-1 { background: #e1262d; }
.ct-dot-2 { background: #00a3e0; }
.ct-dot-3 { background: #ffd200; }

@keyframes ctTickerMove {
  to { transform: translateX(-50%); }
}

.ct-utility {
  background: #050505;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.ct-utility-inner,
.ct-utility-inner div {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ct-utility a {
  color: #fff;
  text-decoration: none;
}

.ct-utility i {
  margin-right: 7px;
  color: #e1262d;
}

.ct-brand-row {
  display: grid;
  place-items: center;
  padding: 16px 20px 11px;
}

.ct-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #0b1020;
  text-decoration: none;
}

.ct-brand img {
  width: 94px;
  height: auto;
  display: block;
}

.ct-brand-fallback {
  width: 74px;
  height: 56px;
  display: grid;
  place-items: center;
  background: #0b1020;
  color: #fff;
  font-weight: 900;
}

.ct-wordmark,
.ct-brand-text,
.ct-brand small {
  display: block;
}

.ct-wordmark {
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  font-weight: 900;
}

.ct-wordmark span:first-child {
  color: #0b1020;
}

.ct-wordmark span:nth-child(2) {
  color: #143a85;
}

.ct-wordmark span:nth-child(3) {
  color: #e1262d;
}

.ct-brand small {
  margin-top: 4px;
  color: #344866;
  font-weight: 800;
}

.ct-print-bars {
  width: 168px;
  margin-top: 7px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.ct-print-bars span {
  display: block;
  height: 4px;
}

.ct-print-bars span:nth-child(1) { background: #00a3e0; }
.ct-print-bars span:nth-child(2) { background: #ec008c; }
.ct-print-bars span:nth-child(3) { background: #ffd200; }
.ct-print-bars span:nth-child(4) { background: #111827; }

.ct-nav-wrap {
  border-top: 1px solid #e5e7eb;
}

.ct-nav-inner {
  min-height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ct-primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.ct-primary-menu a {
  color: #050505;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.ct-primary-menu a.active {
  color: #e1262d;
}

.ct-header-search {
  width: min(245px, 24vw);
  min-height: 38px;
  display: flex;
  align-items: center;
  border: 1px solid #dbe3ef;
  background: #fff;
}

.ct-header-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  padding: 0 10px;
  color: #0b1020;
  font: inherit;
  font-size: 0.84rem;
  outline: 0;
}

.ct-header-search button {
  width: 40px;
  height: 36px;
  border: 0;
  border-left: 1px solid #dbe3ef;
  background: #0b1020;
  color: #fff;
  cursor: pointer;
}

.ct-nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  background: #e1262d;
  color: #fff !important;
}

.ct-account-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid #143a85;
  background: #fff;
  color: #143a85 !important;
  font-weight: 900;
}

.ct-account-cta:hover,
.ct-account-cta.active {
  background: #143a85;
  color: #fff !important;
}

.ct-nav-inner .menu-toggle {
  display: none;
}

.ct-home-hero {
  min-height: calc(100svh - 190px);
  max-height: 680px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #f4f1ec;
  isolation: isolate;
}

.ct-hero-slider,
.ct-hero-slider::after,
.ct-hero-slide {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.ct-hero-slider {
  background: linear-gradient(135deg, #faf8f4, #e7ebf0);
}

.ct-hero-slider::after {
  content: "";
  z-index: 2;
  background: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(255,255,255,0.78), rgba(255,255,255,0.42));
}

.ct-hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  animation: ctHeroSlide 18s linear infinite;
}

.ct-hero-slide:first-child {
  opacity: 1;
}

.ct-hero-slide-1 {
  background-image: url("https://images.unsplash.com/photo-1612815154858-60aa4c59eaa6?auto=format&fit=crop&fm=webp&q=82&w=1800");
}

.ct-hero-slide-2 {
  background-image: url("https://images.unsplash.com/photo-1612815154858-60aa4c59eaa6?auto=format&fit=crop&fm=webp&q=82&w=1800");
  background-position: center right;
  animation-delay: 6s;
}

.ct-hero-slide-3 {
  background-image: url("https://images.unsplash.com/photo-1612815154858-60aa4c59eaa6?auto=format&fit=crop&fm=webp&q=82&w=1800");
  background-position: center left;
  animation-delay: 12s;
}

@keyframes ctHeroSlide {
  0% { opacity: 0; transform: scale(1.04); }
  8% { opacity: 1; }
  34% { opacity: 1; }
  44% { opacity: 0; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(1.1); }
}

.ct-hero-content {
  position: relative;
  z-index: 3;
  padding: clamp(34px, 4.4vw, 58px) 20px;
}

.ct-hero-content h1 {
  max-width: 980px;
  margin: 0;
  color: #050505;
  font-size: clamp(2.85rem, 5vw, 5.25rem);
  line-height: 1;
  letter-spacing: 0;
}

.ct-hero-content p:not(.ct-kicker) {
  max-width: 680px;
  margin: 16px 0 0;
  color: #344154;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.65;
}

.ct-kicker {
  margin: 0 0 14px;
  color: #e1262d;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ct-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.ct-actions.center {
  justify-content: center;
}

.ct-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid #143a85;
  color: #143a85;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.ct-btn-primary {
  border-color: #e1262d;
  background: #e1262d;
  color: #fff;
}

.ct-btn-outline {
  background: transparent;
}

.ct-text-link {
  color: #143a85;
  font-weight: 900;
  text-decoration: none;
}

.ct-section,
.ct-business,
.ct-location {
  padding: clamp(64px, 8vw, 110px) 0;
}

.ct-soft {
  background: #f5f7fb;
}

.ct-section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.ct-section-head-centered {
  margin-inline: auto;
  text-align: center;
}

.ct-section-head-centered p:not(.ct-kicker) {
  margin-inline: auto;
  max-width: 760px;
}

.ct-section-head h2,
.ct-business h2,
.ct-location h2,
.ct-page-hero h1 {
  margin: 0;
  color: #050505;
  font-size: clamp(2rem, 4.2vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.ct-section-head p:not(.ct-kicker),
.ct-business p,
.ct-location p,
.ct-page-hero p {
  color: #475569;
  line-height: 1.65;
}

.ct-head-row {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

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

.ct-product-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ct-product-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dbe3ef;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.ct-product-card:hover {
  border-color: rgba(20, 58, 133, 0.28);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
  transform: translateY(-4px);
}

.ct-product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.ct-product-card div {
  padding: 18px;
}

.ct-product-card span,
.ct-product-card dt {
  color: #e1262d;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ct-product-card h2,
.ct-product-card h3 {
  margin: 7px 0;
  color: #0b1020;
  font-size: 1.05rem;
  line-height: 1.25;
}

.ct-product-card p {
  color: #475569;
  line-height: 1.5;
  min-height: 48px;
}

.ct-product-card dl {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
}

.ct-product-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
}

.ct-product-card dd {
  margin: 0;
  color: #334155;
  text-align: right;
}

.ct-product-card a {
  color: #143a85;
  font-weight: 900;
  text-decoration: none;
}

.ct-account-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.ct-account-copy h1 {
  margin: 0;
  max-width: 680px;
  color: #0b1020;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1;
}

.ct-account-copy p {
  max-width: 620px;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.75;
}

.ct-account-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.ct-account-copy li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #143a85;
  font-weight: 900;
}

.ct-account-copy li i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: #eff6ff;
  color: #e1262d;
}

.ct-account-panel {
  background: #ffffff;
  border: 1px solid #dbe3ef;
  border-top: 5px solid #e1262d;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

.ct-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 22px;
  border: 1px solid #dbe3ef;
}

.ct-auth-tabs button {
  min-height: 52px;
  border: 0;
  background: #f8fafc;
  color: #0b1020;
  font-weight: 900;
  cursor: pointer;
}

.ct-auth-tabs button.active {
  background: #143a85;
  color: #ffffff;
}

.ct-google-auth {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #dbe3ef;
  color: #0b1020;
  font-weight: 900;
  text-decoration: none;
}

.ct-google-auth:hover {
  border-color: #143a85;
  color: #143a85;
}

.ct-auth-divider {
  position: relative;
  margin: 20px 0;
  text-align: center;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ct-auth-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #dbe3ef;
}

.ct-auth-divider span {
  position: relative;
  z-index: 1;
  padding: 0 12px;
  background: #ffffff;
}

.ct-track-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 28px;
}

.ct-track-panel,
.ct-blog-card {
  background: #ffffff;
  border: 1px solid #dbe3ef;
  padding: 26px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
}

.ct-track-panel h2 {
  margin: 0 0 18px;
  color: #0b1020;
}

.ct-track-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  color: #475569;
}

.ct-form-note {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

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

.ct-blog-card span {
  color: #e1262d;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ct-blog-card h2 {
  margin: 10px 0;
  color: #0b1020;
  font-size: 1.15rem;
  line-height: 1.25;
}

.ct-blog-card p {
  color: #475569;
  line-height: 1.6;
}

.ct-blog-card small {
  color: #143a85;
  font-weight: 900;
}

.ct-search-page-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  max-width: 760px;
  margin-top: 28px;
}

.ct-search-page-form input {
  min-height: 56px;
  border: 2px solid #dbe3ef;
  background: #ffffff;
  padding: 0 18px;
  font: inherit;
  color: #0b1020;
}

.ct-search-page-form input:focus {
  outline: 3px solid rgba(20, 58, 133, 0.16);
  border-color: #143a85;
}

.ct-search-results {
  display: grid;
  gap: 14px;
}

.ct-search-results article {
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid #dbe3ef;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.ct-search-results span {
  color: #e1262d;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ct-search-results h2 {
  margin: 8px 0;
  font-size: 1.2rem;
  line-height: 1.3;
}

.ct-search-results h2 a {
  color: #0b1020;
  text-decoration: none;
}

.ct-search-results h2 a:hover {
  color: #143a85;
}

.ct-search-results p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .ct-account-shell,
  .ct-track-grid,
  .ct-blog-grid,
  .ct-search-page-form {
    grid-template-columns: 1fr;
  }
}

.ct-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding: 12px 0 0 !important;
  border-top: 1px solid #e2e8f0;
}

.ct-product-meta span {
  display: grid;
  gap: 2px;
}

.ct-product-meta em {
  color: #64748b;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.ct-product-meta strong {
  color: #050505;
  font-size: 0.98rem;
  line-height: 1.2;
}

.ct-product-meta small {
  padding: 5px 8px;
  background: #eef2ff;
  color: #143a85;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ct-card-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 15px;
  padding: 0 !important;
}

.ct-card-actions a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid #dbe3ef;
  padding: 7px 10px;
  background: #fff;
  font-size: 0.84rem;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.ct-card-actions a:hover {
  border-color: #143a85;
  background: #143a85;
  color: #fff;
}

.ct-category-grid,
.ct-brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ct-category-tile {
  min-height: 176px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border: 1px solid #dbe3ef;
  color: #0b1020;
  text-decoration: none;
}

.ct-category-tile.large {
  min-height: 210px;
}

.ct-category-tile i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #143a85;
  color: #fff;
}

.ct-category-tile strong,
.ct-category-tile small {
  display: block;
}

.ct-category-tile strong {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.ct-category-tile small {
  color: #475569;
  line-height: 1.5;
}

.ct-business {
  background: #0b1020;
  color: #fff;
}

.ct-business-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 44px;
  align-items: center;
}

.ct-business h2,
.ct-business p {
  color: #fff;
}

.ct-buyer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ct-buyer-list span {
  padding: 16px;
  background: rgba(255,255,255,0.08);
  border-left: 4px solid #e1262d;
  font-weight: 900;
}

.ct-buyer-list i {
  margin-right: 10px;
  color: #22c55e;
}

.ct-logo-marquee {
  overflow: hidden;
  border-block: 1px solid #dbe3ef;
  background: #fff;
}

.ct-logo-track {
  width: max-content;
  display: flex;
  gap: 18px;
  padding: 18px 0;
  animation: ctLogoMove 30s linear infinite;
}

.ct-logo-track span,
.ct-brand-logo-grid article {
  min-width: 150px;
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid #dbe3ef;
  background: #fff;
  color: #143a85;
  text-align: center;
}

.ct-logo-track strong,
.ct-brand-logo-grid span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: #143a85;
  color: #fff;
  border-bottom: 4px solid #e1262d;
  font-weight: 900;
}

.ct-logo-track em,
.ct-brand-logo-grid strong,
.ct-brand-logo-grid small {
  display: block;
  font-style: normal;
  font-weight: 900;
}

.ct-brand-logo-grid small {
  color: #64748b;
  font-size: 0.75rem;
}

@keyframes ctLogoMove {
  to { transform: translateX(-33.333%); }
}

.ct-location-grid,
.ct-contact-layout,
.ct-shop-layout,
.ct-cart-preview,
.ct-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 38px;
  align-items: start;
}

.ct-location iframe,
.ct-contact-side iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.18);
}

.ct-page-hero {
  padding: clamp(70px, 9vw, 118px) 0;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
}

.ct-page-hero .container {
  max-width: 1040px;
}

.ct-filter-panel,
.ct-contact-form,
.ct-contact-side,
.ct-cart-empty,
.ct-cart-summary,
.ct-empty-note {
  padding: 28px;
  background: #fff;
  border: 1px solid #dbe3ef;
}

.ct-filter-panel {
  position: sticky;
  top: 180px;
}

.ct-filter-panel label,
.ct-contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: #0b1020;
  font-weight: 900;
}

.ct-filter-panel input,
.ct-filter-panel select,
.ct-contact-form input,
.ct-contact-form select,
.ct-contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  font: inherit;
}

.ct-contact-form textarea {
  resize: vertical;
}

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

.ct-contact-form small {
  color: #b91c1c;
}

.ct-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  font-weight: 800;
}

.ct-alert.success {
  background: #dcfce7;
  color: #166534;
}

.ct-alert.error {
  background: #fee2e2;
  color: #991b1b;
}

.ct-contact-side dl,
.ct-cart-summary dl {
  display: grid;
  gap: 14px;
}

.ct-contact-side dt,
.ct-cart-summary dt {
  color: #e1262d;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ct-contact-side dd,
.ct-cart-summary dd {
  margin: 4px 0 0;
}

.ct-shop-toolbar {
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
  color: #475569;
  font-weight: 900;
}

.ct-shop-toolbar div:first-child {
  display: grid;
  gap: 2px;
}

.ct-shop-toolbar strong {
  color: #0b1020;
}

.ct-shop-view-actions {
  display: inline-flex;
  gap: 8px;
}

.ct-shop-view-actions button {
  width: 40px;
  height: 40px;
  border: 1px solid #dbe3ef;
  background: #fff;
  color: #143a85;
  cursor: pointer;
}

.ct-shop-view-actions button:first-child,
.ct-shop-view-actions button:hover {
  background: #143a85;
  color: #fff;
}

.ct-compare-table-wrap {
  overflow-x: auto;
}

.ct-compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
}

.ct-compare-table th,
.ct-compare-table td {
  padding: 18px;
  border: 1px solid #dbe3ef;
  text-align: left;
  vertical-align: top;
}

.ct-compare-table th {
  color: #143a85;
}

.ct-empty-note {
  margin-top: 22px;
}

.ct-empty-state {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(38px, 6vw, 70px);
  border: 1px solid #dbe3ef;
  border-top: 6px solid #143a85;
  background: #fff;
  text-align: center;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

.ct-empty-state > i {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  background: #0b1020;
  color: #fff;
  border-bottom: 5px solid #e1262d;
  font-size: 1.45rem;
}

.ct-empty-state h2 {
  margin: 0 0 12px;
  color: #050505;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.ct-empty-state p:not(.ct-kicker) {
  max-width: 560px;
  margin: 0 auto 22px;
  color: #475569;
  line-height: 1.65;
}

.ct-cart-empty {
  text-align: center;
}

.ct-cart-empty i {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  background: #143a85;
  color: #fff;
  font-size: 1.6rem;
}

.ct-faq-list {
  display: grid;
  gap: 12px;
}

.ct-faq-list details {
  background: #fff;
  border: 1px solid #dbe3ef;
  padding: 18px 20px;
}

.ct-faq-list summary {
  cursor: pointer;
  color: #0b1020;
  font-weight: 900;
}

.ct-faq-list p {
  color: #475569;
  line-height: 1.55;
}

.ct-shop-hero {
  padding: clamp(28px, 3.6vw, 48px) 0;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
  border-bottom: 1px solid #dbe3ef;
}

.ct-shop-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.ct-shop-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #050505;
  font-size: clamp(2.2rem, 3.35vw, 3.9rem);
  line-height: 0.98;
}

.ct-shop-hero p:not(.ct-kicker) {
  max-width: 720px;
  margin: 12px 0 0;
  color: #475569;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.55;
}

.ct-shop-search-panel {
  padding: 18px;
  border: 1px solid #dbe3ef;
  border-top: 5px solid #e1262d;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.ct-shop-search-panel label {
  display: block;
  margin-bottom: 10px;
  color: #0b1020;
  font-weight: 900;
}

.ct-shop-search-panel div {
  display: flex;
}

.ct-shop-search-panel input {
  min-width: 0;
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd5e1;
  border-right: 0;
  padding: 0 14px;
  font: inherit;
  outline: 0;
}

.ct-shop-search-panel input:focus {
  border-color: #143a85;
  box-shadow: inset 0 0 0 1px #143a85;
}

.ct-shop-search-panel button {
  min-width: 132px;
  border: 0;
  background: #e1262d;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.ct-shop-search-panel small {
  display: block;
  margin-top: 10px;
  color: #64748b;
  font-weight: 700;
}

.ct-shop-section {
  padding: clamp(28px, 4vw, 52px) 0 clamp(70px, 8vw, 110px);
  background: #fff;
}

.ct-shop-category-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 14px;
  scrollbar-width: thin;
}

.ct-shop-category-strip a {
  flex: 0 0 auto;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  border: 1px solid #dbe3ef;
  background: #f8fafc;
  color: #143a85;
  padding: 0 14px;
  font-weight: 900;
  text-decoration: none;
}

.ct-shop-category-strip a:hover {
  border-color: #143a85;
  background: #143a85;
  color: #fff;
}

.ct-shop-main {
  min-width: 0;
}

.ct-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.ct-filter-head h2 {
  margin: 0;
}

.ct-filter-head a {
  color: #e1262d;
  font-weight: 900;
}

.ct-product-thumb {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

.ct-product-thumb img {
  transition: transform 220ms ease;
}

.ct-product-card:hover .ct-product-thumb img {
  transform: scale(1.045);
}

.ct-product-actions-float {
  position: absolute;
  right: 12px;
  top: 12px;
  display: grid;
  gap: 8px;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.ct-product-card:hover .ct-product-actions-float,
.ct-product-card:focus-within .ct-product-actions-float {
  opacity: 1;
  transform: translateX(0);
}

.ct-product-actions-float a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #dbe3ef;
  background: #fff;
  color: #143a85;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
}

.ct-product-actions-float a:hover {
  background: #e1262d;
  border-color: #e1262d;
  color: #fff;
}

@media (max-width: 1080px) {
  .ct-product-grid,
  .ct-category-grid,
  .ct-brand-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ct-location-grid,
  .ct-contact-layout,
  .ct-shop-layout,
  .ct-cart-preview,
  .ct-faq-grid,
  .ct-business-inner {
    grid-template-columns: 1fr;
  }

  .ct-filter-panel {
    position: static;
  }

  .ct-shop-hero-grid {
    grid-template-columns: 1fr;
  }

  .ct-header-search {
    width: 210px;
  }
}

@media (max-width: 860px) {
  .ct-utility {
    display: none;
  }

  .ct-header {
    position: relative;
  }

  .ct-brand-row {
    justify-items: center;
    padding-inline: 72px;
  }

  .ct-brand img {
    width: 74px;
  }

  .ct-brand {
    justify-content: center;
  }

  .ct-print-bars,
  .ct-brand small {
    display: none;
  }

  .ct-nav-inner {
    min-height: 0;
    justify-content: flex-end;
  }

  .ct-nav-inner .menu-toggle {
    position: absolute;
    right: 18px;
    top: 28px;
    display: grid;
  }

  .ct-primary-menu {
    position: fixed;
    inset: 0;
    z-index: 55;
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    padding: 88px 24px 24px;
    background: #0b1020;
    transform: translateX(100%);
    transition: transform 180ms ease;
  }

  .ct-primary-menu.open {
    transform: translateX(0);
  }

  .ct-primary-menu a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
    color: #fff;
  }

  .ct-header-search {
    width: 100%;
    margin: 18px 0 0;
    border-color: rgba(255,255,255,0.22);
  }

  .ct-header-search input {
    min-height: 46px;
  }

  .ct-header-search button {
    width: 52px;
    height: 46px;
    background: #e1262d;
  }

  .ct-nav-cta {
    margin-top: 18px;
    justify-content: center;
    border-bottom: 0 !important;
  }

  .ct-account-cta {
    margin-top: 18px;
    justify-content: center;
    border-color: rgba(255,255,255,0.28);
    background: transparent;
    color: #fff !important;
  }

  .ct-account-cta:hover,
  .ct-account-cta.active {
    background: #fff;
    color: #143a85 !important;
  }

  .ct-hero-content h1 {
    font-size: clamp(2.8rem, 14vw, 5.2rem);
  }
}

@media (max-width: 620px) {
  .ct-product-grid,
  .ct-product-grid.compact,
  .ct-category-grid,
  .ct-brand-logo-grid,
  .ct-buyer-list,
  .ct-form-grid {
    grid-template-columns: 1fr;
  }

  .ct-head-row,
  .ct-shop-toolbar {
    display: grid;
    align-items: start;
  }

  .ct-shop-search-panel div {
    display: grid;
  }

  .ct-shop-hero {
    padding: 28px 0;
  }

  .ct-shop-hero-grid {
    gap: 22px;
  }

  .ct-shop-hero h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.03;
  }

  .ct-shop-hero p:not(.ct-kicker) {
    font-size: 0.98rem;
  }

  .ct-shop-search-panel {
    padding: 14px;
  }

  .ct-shop-search-panel small {
    display: none;
  }

  .ct-shop-search-panel input {
    border-right: 1px solid #cbd5e1;
  }

  .ct-shop-search-panel button {
    min-height: 48px;
  }

  .ct-actions,
  .ct-btn {
    width: 100%;
  }

  .ct-brand {
    gap: 10px;
  }

  .ct-wordmark {
    font-size: 1rem;
  }

  .ct-shop-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.6rem);
  }

  .ct-product-actions-float {
    opacity: 1;
    transform: none;
  }

  .ct-hero-content {
    padding: 70px 20px;
  }
}

/* Copitronix home polish pass: keep the first CTA visible on desktop. */
.ct-brand-row {
  padding: 10px 20px 7px;
}

.ct-brand img {
  width: 78px;
}

.ct-wordmark {
  font-size: clamp(1.08rem, 1.45vw, 1.38rem);
}

.ct-brand small {
  font-size: 0.82rem;
}

.ct-print-bars {
  width: 140px;
}

.ct-nav-inner {
  min-height: 48px;
}

.ct-primary-menu {
  gap: 22px;
}

.ct-home-hero {
  min-height: calc(100svh - 154px);
  max-height: 640px;
  background: #f8fafc;
}

.ct-hero-slider {
  background: #f8fafc;
}

.ct-hero-slider::after {
  background: linear-gradient(90deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.86) 44%, rgba(255,255,255,0.55) 70%, rgba(255,255,255,0.34) 100%);
}

.ct-hero-content {
  padding: clamp(28px, 3.5vw, 46px) 20px;
}

.ct-hero-content h1 {
  max-width: 790px;
  font-size: clamp(2.65rem, 4.25vw, 4.55rem);
  line-height: 0.98;
}

.ct-hero-content p:not(.ct-kicker) {
  max-width: 720px;
  margin-top: 14px;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.55;
}

.ct-actions {
  margin-top: 16px;
}

.ct-btn {
  min-height: 46px;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.ct-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
}

.ct-btn-outline:hover {
  background: #143a85;
  color: #fff;
}

@media (min-width: 1180px) {
  .ct-home-hero {
    min-height: calc(100vh - 154px);
  }
}

@media (max-width: 860px) {
  .ct-brand img {
    width: 70px;
  }

  .ct-home-hero {
    min-height: auto;
    max-height: none;
  }

  .ct-hero-content h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 11vw, 4.4rem);
    line-height: 1;
  }
}

@media (max-width: 620px) {
  .ct-hero-content {
    padding: 54px 20px;
  }
}

/* Copitronix ecommerce-ready shop refinement */
.ct-shop-hero {
  padding: clamp(24px, 3vw, 38px) 0;
  background: #f8fafc;
}

.ct-shop-hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.58fr);
  align-items: center;
}

.ct-shop-hero h1 {
  max-width: 760px;
  font-size: clamp(2.25rem, 4vw, 4.1rem);
  line-height: 0.98;
}

.ct-shop-hero p:not(.ct-kicker) {
  max-width: 680px;
  font-size: 1.03rem;
}

.ct-shop-section {
  padding-top: 22px;
}

.ct-shop-category-strip {
  margin-bottom: 24px;
}

.ct-shop-layout {
  grid-template-columns: minmax(250px, 0.28fr) minmax(0, 1fr);
  align-items: start;
  gap: 34px;
}

.ct-filter-form {
  display: grid;
  gap: 16px;
}

.ct-filter-panel fieldset {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  border: 0;
}

.ct-filter-panel legend,
.ct-filter-panel label span,
.ct-price-placeholder > span {
  color: #0b1020;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.ct-check-row {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px !important;
  color: #475569;
  font-size: 0.92rem;
}

.ct-check-row input {
  width: 16px;
  min-height: 16px;
  accent-color: #143a85;
}

.ct-price-placeholder {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid #dbe3ef;
  background: #f8fafc;
}

.ct-price-placeholder strong {
  color: #143a85;
}

.ct-price-placeholder small {
  color: #64748b;
  line-height: 1.45;
}

.ct-shop-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ct-shop-controls select {
  min-height: 40px;
  border: 1px solid #dbe3ef;
  background: #fff;
  color: #0b1020;
  padding: 0 38px 0 12px;
  font: inherit;
  font-weight: 800;
}

.ct-shop-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ct-product-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
}

.ct-product-card div {
  padding: 0;
}

.ct-product-thumb {
  min-height: 226px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid #e2e8f0;
  background:
    linear-gradient(135deg, rgba(20, 58, 133, 0.08), rgba(225, 38, 45, 0.07)),
    #f8fafc;
}

.ct-product-thumb img {
  display: block;
  width: 100%;
  height: 226px;
  object-fit: contain;
  padding: 22px;
}

.ct-product-visual {
  display: grid;
  place-items: center;
  gap: 12px;
  color: #143a85;
  text-align: center;
}

.ct-product-visual i {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 58, 133, 0.2);
  background: #fff;
  color: #143a85;
  font-size: 2rem;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.ct-product-visual span {
  max-width: 180px;
  color: #0b1020;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ct-product-visual-fallback {
  display: none;
}

.ct-product-thumb.has-fallback .ct-product-visual-fallback {
  display: grid;
}

.ct-product-body {
  display: grid;
  gap: 10px;
  padding: 18px !important;
}

.ct-product-body > span {
  color: #e1262d;
}

.ct-product-body h2 {
  margin: 0;
  color: #0b1020;
  font-size: 1.06rem;
  line-height: 1.25;
}

.ct-product-body p {
  min-height: 44px;
  margin: 0;
}

.ct-product-body dl {
  margin: 4px 0 0;
}

.ct-product-body dl div {
  padding: 0 !important;
}

.ct-card-actions {
  padding: 0 !important;
}

.ct-card-actions a:first-child {
  width: 100%;
  justify-content: center;
  padding: 11px 12px;
  background: #143a85;
  color: #fff;
  border: 1px solid #143a85;
}

.ct-card-actions a:first-child:hover {
  background: #e1262d;
  border-color: #e1262d;
}

.ct-account-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.3fr);
  gap: 24px;
  align-items: stretch;
}

.ct-account-panel,
.ct-account-features {
  border: 1px solid #dbe3ef;
  background: #fff;
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.ct-account-panel > i {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  background: #143a85;
  color: #fff;
  font-size: 1.8rem;
}

.ct-account-panel h2 {
  margin: 18px 0 10px;
  color: #0b1020;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.ct-account-panel p {
  max-width: 660px;
  color: #475569;
  line-height: 1.65;
}

.ct-account-features {
  display: grid;
  gap: 12px;
}

.ct-account-features div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid #e2e8f0;
  color: #0b1020;
  font-weight: 900;
}

.ct-account-features i {
  color: #143a85;
}

.ct-offers-section {
  background: #fff;
}

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

.ct-offer-tile {
  min-height: 245px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 28px;
  border: 1px solid #dbe3ef;
  border-top: 5px solid #143a85;
  background: #fff;
  color: #0b1020;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ct-offer-tile:hover {
  transform: translateY(-4px);
  border-top-color: #e1262d;
  box-shadow: 0 26px 52px rgba(15, 23, 42, 0.14);
}

.ct-offer-tile > i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: #143a85;
  color: #fff;
  font-size: 1.35rem;
}

.ct-offer-tile strong,
.ct-offer-tile small {
  display: block;
}

.ct-offer-tile strong {
  margin-bottom: 9px;
  font-size: 1.25rem;
}

.ct-offer-tile small {
  color: #475569;
  line-height: 1.55;
}

.ct-offer-tile b {
  color: #e1262d;
  font-size: 0.9rem;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .ct-shop-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .ct-shop-hero-grid,
  .ct-shop-layout,
  .ct-account-preview {
    grid-template-columns: 1fr;
  }

  .ct-filter-panel {
    position: static;
  }

  .ct-shop-controls {
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .ct-shop-hero {
    padding: 24px 0;
  }

  .ct-shop-hero h1 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .ct-shop-search-panel {
    padding: 14px;
  }

  .ct-shop-toolbar,
  .ct-shop-controls {
    display: grid;
    width: 100%;
  }

  .ct-shop-controls select {
    width: 100%;
  }

  .ct-shop-product-grid {
    grid-template-columns: 1fr;
  }

  .ct-offer-grid {
    grid-template-columns: 1fr;
  }

  .ct-product-thumb {
    min-height: 210px;
  }
}

.ct-page-hero {
  padding: clamp(38px, 5vw, 64px) 0;
  background: #f8fafc;
}

.ct-page-hero h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

.ct-section.compact-section {
  padding-top: 34px;
}

.ct-brand-logo-grid a {
  display: grid;
  gap: 10px;
  align-content: center;
  min-height: 142px;
  border: 1px solid #dbe3ef;
  background: #fff;
  color: #0b1020;
  text-decoration: none;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ct-brand-logo-grid a:hover {
  transform: translateY(-3px);
  border-color: #143a85;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.ct-product-actions-float button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #dbe3ef;
  background: #fff;
  color: #143a85;
  cursor: pointer;
}

.ct-product-actions-float button:hover {
  background: #e1262d;
  border-color: #e1262d;
  color: #fff;
}

.product-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(118px, 0.42fr);
  gap: 10px;
}

.ct-product-main-action,
.ct-product-whatsapp {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #143a85;
  background: #143a85;
  color: #fff !important;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.ct-product-main-action:hover,
.ct-product-whatsapp:hover {
  background: #e1262d;
  border-color: #e1262d;
  transform: translateY(-1px);
}

.ct-product-whatsapp {
  background: #129447;
  border-color: #129447;
  color: #fff !important;
  opacity: 1;
  visibility: visible;
  padding-inline: 12px;
  white-space: nowrap;
}

.ct-product-whatsapp span {
  display: inline;
}

.ct-product-meta small.in-stock {
  background: #e7f7ee;
  color: #0f7a3b;
}

.ct-product-meta small.out-stock {
  background: #fff1f2;
  color: #b91c1c;
}

.ct-product-body h2 a,
.ct-product-body h3 a {
  color: inherit;
  text-decoration: none;
}

.ct-product-body h2 a:hover,
.ct-product-body h3 a:hover {
  color: #143a85;
}

.ct-product-detail-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ct-product-actions-float {
  z-index: 3;
  opacity: 1;
  transform: none;
}

.ct-product-actions-float button,
.ct-product-actions-float a {
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.ct-shop-view-actions button.active {
  background: #143a85;
  border-color: #143a85;
  color: #fff;
}

.ct-shop-product-grid.is-list {
  grid-template-columns: 1fr;
}

.ct-shop-product-grid.is-list .ct-product-card {
  grid-template-columns: 260px minmax(0, 1fr);
  grid-template-rows: auto;
}

.ct-shop-product-grid.is-list .ct-product-thumb {
  min-height: 100%;
  border-bottom: 0;
  border-right: 1px solid #e2e8f0;
}

.ct-shop-product-grid.is-list .ct-product-body {
  align-content: center;
}

.ct-product-detail {
  padding: clamp(34px, 5vw, 70px) 0;
  background: #f8fafc;
}

.ct-product-detail-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.ct-product-detail-visual {
  min-height: clamp(300px, 36vw, 460px);
  display: grid;
  place-items: center;
  border: 1px solid #dbe3ef;
  background:
    linear-gradient(135deg, rgba(20, 58, 133, 0.08), rgba(225, 38, 45, 0.07)),
    #fff;
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.1);
}

.ct-product-detail-visual .ct-product-visual i {
  width: 124px;
  height: 124px;
  font-size: 3rem;
}

.ct-product-detail-copy h1 {
  margin: 0;
  color: #0b1020;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.96;
}

.ct-product-detail-copy > p:not(.ct-kicker) {
  color: #475569;
  font-size: 1.08rem;
  line-height: 1.65;
}

.ct-product-meta.detail {
  max-width: 420px;
  padding: 16px 0;
}

.product-detail-actions {
  flex-wrap: wrap;
  margin: 12px 0 24px;
}

.ct-product-specs {
  display: grid;
  max-width: 620px;
  border: 1px solid #dbe3ef;
  background: #fff;
}

.ct-product-specs div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid #e2e8f0;
}

.ct-product-specs div:last-child {
  border-bottom: 0;
}

.ct-product-specs dt {
  color: #143a85;
  font-weight: 900;
}

.ct-product-specs dd {
  margin: 0;
  color: #334155;
}

.ct-product-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.ct-product-info-grid article {
  border: 1px solid #dbe3ef;
  background: #fff;
  padding: clamp(22px, 3vw, 34px);
}

.ct-product-info-grid h2 {
  margin: 0 0 10px;
  color: #0b1020;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

.ct-product-info-grid p {
  color: #475569;
  line-height: 1.65;
}

.ct-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 34px;
}

.ct-pagination a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #dbe3ef;
  background: #fff;
  color: #0b1020;
  font-weight: 900;
  text-decoration: none;
}

.ct-pagination a.active,
.ct-pagination a:hover {
  background: #143a85;
  border-color: #143a85;
  color: #fff;
}

.ct-toast {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 90;
  max-width: min(360px, calc(100vw - 40px));
  padding: 14px 18px;
  background: #0b1020;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.24);
}

.ct-modal[hidden],
.ct-toast[hidden] {
  display: none !important;
}

.ct-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.ct-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
}

.ct-modal-panel {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  background: #fff;
  border-top: 5px solid #e1262d;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.ct-modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid #dbe3ef;
  background: #fff;
  cursor: pointer;
}

.ct-modal-product-icon {
  display: grid;
  place-items: center;
  min-height: 230px;
  background: linear-gradient(135deg, rgba(20, 58, 133, 0.08), rgba(225, 38, 45, 0.07)), #f8fafc;
}

.ct-modal-product-icon i {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #143a85;
  border: 1px solid rgba(20, 58, 133, 0.2);
  font-size: 2.4rem;
}

.ct-modal-panel h2 {
  margin: 0 0 10px;
  color: #0b1020;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.ct-modal-panel p:not(.ct-kicker) {
  color: #475569;
  line-height: 1.65;
}

.ct-modal-panel dl,
.ct-compare-table {
  width: 100%;
}

.ct-modal-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid #e2e8f0;
}

.ct-modal-panel dt,
.ct-compare-table th {
  color: #143a85;
  font-weight: 900;
  text-transform: capitalize;
}

.ct-compare-table-wrap {
  display: grid;
  gap: 18px;
}

.ct-compare-table-scroll {
  overflow-x: auto;
  border: 1px solid #dbe3ef;
  background: #fff;
}

.ct-compare-table {
  min-width: 760px;
  border-collapse: collapse;
}

.ct-compare-table th,
.ct-compare-table td {
  padding: 16px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  vertical-align: top;
}

.ct-compare-table thead th {
  background: #f8fafc;
  color: #0b1020;
}

.ct-cart-items {
  display: grid;
  gap: 16px;
}

.ct-cart-line {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid #dbe3ef;
  background: #fff;
}

.ct-cart-line i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #f1f5f9;
  color: #143a85;
}

.ct-cart-line strong,
.ct-cart-line span {
  display: block;
}

.ct-cart-line span {
  color: #64748b;
  margin-top: 4px;
}

.ct-empty-state.compact {
  padding: clamp(28px, 4vw, 44px);
}

.ct-remove-item {
  width: max-content;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #fecaca;
  background: #fff1f2;
  color: #b91c1c;
  padding: 8px 11px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.ct-remove-item:hover {
  background: #e1262d;
  border-color: #e1262d;
  color: #fff;
}

@media (max-width: 720px) {
  .ct-modal-panel {
    grid-template-columns: 1fr;
  }

  .ct-modal-product-icon {
    min-height: 170px;
  }

  .ct-cart-line {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .ct-cart-line b {
    grid-column: 2;
  }

  .ct-shop-product-grid.is-list .ct-product-card,
  .ct-product-detail-grid,
  .ct-product-info-grid {
    grid-template-columns: 1fr;
  }

  .ct-shop-product-grid.is-list .ct-product-thumb {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid #e2e8f0;
  }

  .ct-product-specs div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }
}

.ct-brand-row {
  padding-top: 9px;
  padding-bottom: 9px;
}

.ct-brand img {
  width: 72px;
  height: auto;
}

.ct-wordmark {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.ct-brand-text small {
  font-size: 0.82rem;
}

.ct-nav-inner {
  min-height: 52px;
}

.ct-page-hero {
  padding: clamp(24px, 3.5vw, 42px) 0;
}

.ct-page-hero h1 {
  max-width: 980px;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
}

.ct-page-hero p {
  max-width: 820px;
}

.ct-page-hero + .ct-section {
  padding-top: 24px;
}

@media (max-width: 640px) {
  .ct-brand-row {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .ct-page-hero h1 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }
}

/* Product merchandising refinement: lighter storefront tiles, less boxed UI. */
.ct-product-grid,
.ct-shop-product-grid {
  align-items: stretch;
}

.ct-product-card {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.ct-product-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: translateY(-3px);
}

.ct-product-thumb {
  min-height: 178px;
  border: 1px solid #e5edf7;
  border-bottom: 0;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 30%),
    linear-gradient(145deg, #f8fafc 0%, #edf3f9 100%);
}

.ct-product-thumb::before {
  content: "";
  position: absolute;
  width: 128px;
  height: 92px;
  border: 1px solid #d9e3f0;
  background:
    linear-gradient(#143a85, #143a85) 18px 18px / 42px 5px no-repeat,
    linear-gradient(#e1262d, #e1262d) 18px 30px / 68px 5px no-repeat,
    linear-gradient(#cbd5e1, #cbd5e1) 18px 54px / 88px 8px no-repeat,
    linear-gradient(#e2e8f0, #e2e8f0) 18px 70px / 64px 7px no-repeat,
    #fff;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
  transform: translateY(6px);
}

.ct-product-thumb::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 12px;
  margin-top: 104px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.12);
  filter: blur(7px);
}

.ct-product-thumb img {
  position: relative;
  z-index: 2;
  height: 178px;
  padding: 18px;
}

.ct-product-visual {
  position: relative;
  z-index: 3;
  gap: 0;
  margin-top: -8px;
}

.ct-product-visual i {
  width: 54px;
  height: 54px;
  border: 0;
  background: #143a85;
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 14px 28px rgba(20, 58, 133, 0.22);
}

.ct-product-visual span {
  display: none;
}

.ct-product-actions-float {
  top: 12px;
  right: 12px;
  opacity: 1;
  transform: none;
}

.ct-product-actions-float button,
.ct-product-actions-float a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid #dbe3ef;
  background: rgba(255, 255, 255, 0.94);
  color: #143a85;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.ct-product-actions-float button:hover,
.ct-product-actions-float a:hover {
  background: #143a85;
  border-color: #143a85;
  color: #fff;
}

.ct-product-body {
  gap: 8px;
  padding: 15px 0 0 !important;
  background: transparent;
}

.ct-product-body > span {
  color: #e1262d;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.ct-product-body h2,
.ct-product-body h3 {
  min-height: 42px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.ct-product-body p {
  min-height: 0;
  margin: 0;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.45;
}

.ct-product-meta {
  margin-top: 6px;
  padding: 0 !important;
  border-top: 0;
}

.ct-product-meta em {
  display: none;
}

.ct-product-meta strong {
  color: #0b1020;
  font-size: 0.95rem;
}

.ct-product-meta small {
  border: 1px solid transparent;
  background: #eef2ff;
  font-size: 0.68rem;
}

.product-actions {
  grid-template-columns: minmax(0, 1fr) 44px;
  margin-top: 10px;
}

.ct-product-main-action,
.ct-product-whatsapp {
  min-height: 42px;
}

.ct-product-whatsapp {
  padding: 0;
}

.ct-product-whatsapp span {
  display: none;
}

.ct-shop-product-grid.is-list .ct-product-card {
  gap: 20px;
  align-items: center;
  border: 1px solid #e5edf7;
  background: #fff;
  padding: 14px;
}

.ct-shop-product-grid.is-list .ct-product-thumb {
  min-height: 180px;
  border: 0;
}

.ct-shop-product-grid.is-list .ct-product-body {
  padding-top: 0 !important;
}

@media (max-width: 640px) {
  .ct-product-thumb {
    min-height: 164px;
  }

  .ct-product-thumb img {
    height: 164px;
  }

  .ct-product-body h2,
  .ct-product-body h3 {
    min-height: 0;
  }
}

/* Customer account access */
.ct-account-access {
  padding: clamp(42px, 6vw, 86px) 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    radial-gradient(circle at 12% 18%, rgba(20, 58, 133, 0.08), transparent 34%),
    #f8fafc;
}

/* Customer account page: Shofy-inspired, Copitronix branded */
.ct-account-page {
  padding: clamp(34px, 5vw, 72px) 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.ct-account-intro {
  max-width: 820px;
  margin: 0 auto clamp(26px, 4vw, 42px);
  text-align: center;
}

.ct-account-intro h1,
.ct-account-dashboard-head h1,
.ct-account-reset-card h1 {
  margin: 0;
  color: #0b1020;
  font-size: clamp(2rem, 4.4vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.ct-account-intro p:not(.ct-kicker),
.ct-account-dashboard-head p,
.ct-account-reset-card p {
  max-width: 680px;
  margin: 12px auto 0;
  color: #475569;
  line-height: 1.65;
}

.ct-account-auth-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid #dbe3ef;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

.ct-account-auth-panel {
  min-width: 0;
  padding: clamp(26px, 4vw, 46px);
}

.ct-account-auth-primary {
  border-right: 1px solid #dbe3ef;
}

.ct-auth-title {
  margin-bottom: 22px;
}

.ct-auth-title span {
  color: #e1262d;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ct-auth-title h2 {
  margin: 8px 0 0;
  color: #0b1020;
  font-size: clamp(1.6rem, 2.7vw, 2.45rem);
  line-height: 1.05;
}

.ct-account-form {
  display: grid;
  gap: 15px;
}

.ct-account-form label {
  display: grid;
  gap: 8px;
  color: #0b1020;
  font-weight: 900;
}

.ct-account-form input,
.ct-reset-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d7e0eb;
  background: #ffffff;
  color: #0b1020;
  padding: 0 14px;
  font: inherit;
  outline: 0;
}

.ct-account-form input:focus,
.ct-reset-form input:focus {
  border-color: #143a85;
  box-shadow: 0 0 0 3px rgba(20, 58, 133, 0.12);
}

.ct-password-wrap {
  position: relative;
}

.ct-password-wrap input {
  padding-right: 50px;
}

.ct-password-wrap button {
  position: absolute;
  right: 8px;
  bottom: 6px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #143a85;
  cursor: pointer;
}

.ct-password-wrap button:hover {
  background: #eef2ff;
}

.ct-account-form-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  font-size: 0.92rem;
}

.ct-inline-check {
  display: inline-flex !important;
  align-items: center;
  gap: 8px !important;
  font-weight: 800 !important;
}

.ct-inline-check input {
  width: auto;
  min-height: 0;
}

.ct-account-form-row a {
  color: #143a85;
  font-weight: 900;
  text-decoration: none;
}

.ct-account-submit {
  min-height: 52px;
  border: 2px solid #e1262d;
  background: #e1262d;
  color: #ffffff;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.ct-account-submit.secondary {
  border-color: #143a85;
  background: #ffffff;
  color: #143a85;
}

.ct-account-submit:hover {
  transform: translateY(-2px);
  background: #b91c1c;
  border-color: #b91c1c;
  box-shadow: 0 16px 32px rgba(225, 38, 45, 0.18);
}

.ct-account-submit.secondary:hover {
  background: #143a85;
  border-color: #143a85;
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(20, 58, 133, 0.16);
}

.ct-account-reset,
.ct-account-reset-card {
  max-width: 1060px;
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.74fr);
  gap: 22px;
  align-items: center;
  border: 1px solid #dbe3ef;
  background: #f8fafc;
  padding: clamp(22px, 3vw, 32px);
}

.ct-account-reset h2 {
  margin: 0;
  color: #0b1020;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.ct-account-reset p {
  margin: 8px 0 0;
  color: #475569;
}

.ct-reset-form {
  display: flex;
  gap: 10px;
}

.ct-reset-form button {
  min-width: 160px;
  border: 0;
  background: #0b1020;
  color: #ffffff;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.ct-account-dashboard {
  max-width: 1160px;
  margin-inline: auto;
}

.ct-account-dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.ct-account-dashboard-head p {
  margin-inline: 0;
}

.ct-account-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ct-account-dashboard-grid article {
  border: 1px solid #dbe3ef;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.ct-account-dashboard-grid i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: #143a85;
  color: #ffffff;
}

.ct-account-dashboard-grid h2 {
  margin: 16px 0 8px;
  color: #0b1020;
  font-size: 1.15rem;
}

.ct-account-dashboard-grid p {
  margin: 0;
  color: #475569;
  line-height: 1.55;
}

.ct-account-reset-card {
  max-width: 620px;
  grid-template-columns: 1fr;
}

@media (max-width: 900px) {
  .ct-account-auth-grid,
  .ct-account-reset,
  .ct-account-dashboard-head {
    grid-template-columns: 1fr;
  }

  .ct-account-auth-grid {
    display: grid;
  }

  .ct-account-auth-primary {
    border-right: 0;
    border-bottom: 1px solid #dbe3ef;
  }

  .ct-account-dashboard-head {
    display: grid;
  }

  .ct-account-dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .ct-account-page {
    padding-top: 28px;
  }

  .ct-account-intro {
    text-align: left;
  }

  .ct-account-auth-panel {
    padding: 22px;
  }

  .ct-account-form-row,
  .ct-reset-form {
    display: grid;
  }

  .ct-reset-form button {
    min-height: 50px;
  }

  .ct-account-dashboard-grid {
    grid-template-columns: 1fr;
  }
}

.ct-account-access-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.ct-account-copy h1 {
  max-width: 620px;
  margin: 0;
  color: #0b1020;
  font-size: clamp(2.5rem, 5.2vw, 5.6rem);
  line-height: 0.96;
}

.ct-account-copy p:not(.ct-kicker) {
  max-width: 560px;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
}

.ct-account-proof {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.ct-account-proof span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #143a85;
  font-weight: 900;
}

.ct-account-proof i {
  color: #e1262d;
}

.ct-auth-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ct-auth-card {
  border: 1px solid #dbe3ef;
  background: #fff;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.1);
}

.ct-auth-card-muted {
  background: #f8fafc;
}

.ct-auth-head {
  margin-bottom: 22px;
}

.ct-auth-head span {
  display: block;
  color: #e1262d;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ct-auth-head strong {
  display: block;
  margin-top: 7px;
  color: #0b1020;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.ct-auth-form {
  display: grid;
  gap: 14px;
}

.ct-auth-form label {
  display: grid;
  gap: 7px;
  color: #0b1020;
  font-weight: 900;
}

.ct-auth-form input {
  min-height: 48px;
  border: 1px solid #dbe3ef;
  background: #fff;
  padding: 0 13px;
  color: #0b1020;
  font: inherit;
}

.ct-auth-form input:focus {
  border-color: #143a85;
  outline: 2px solid rgba(20, 58, 133, 0.12);
}

.ct-auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.88rem;
}

.ct-auth-check {
  display: inline-flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px !important;
  font-weight: 800 !important;
}

.ct-auth-check input {
  min-height: 0;
}

.ct-auth-row a {
  color: #143a85;
  font-weight: 900;
  text-decoration: none;
}

.ct-auth-form p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Homepage product discovery */
.ct-product-discovery {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1.25fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
}

.ct-product-discovery-copy h2 {
  margin: 0;
  color: #0b1020;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

.ct-product-discovery-copy p:not(.ct-kicker) {
  color: #475569;
  line-height: 1.65;
}

.ct-product-lines {
  border-top: 1px solid #dbe3ef;
}

.ct-product-line {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #dbe3ef;
  color: #0b1020;
  text-decoration: none;
}

.ct-product-line:hover strong {
  color: #143a85;
}

.ct-product-line-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: #143a85;
  color: #fff;
}

.ct-product-line strong,
.ct-product-line small {
  display: block;
}

.ct-product-line small {
  margin-top: 4px;
  color: #64748b;
}

.ct-product-line em {
  color: #0b1020;
  font-style: normal;
  font-weight: 950;
}

.ct-product-line b {
  padding: 7px 9px;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.ct-product-line b.in-stock {
  background: #e7f7ee;
  color: #0f7a3b;
}

.ct-product-line b.out-stock {
  background: #fff1f2;
  color: #b91c1c;
}

@media (max-width: 980px) {
  .ct-account-access-grid,
  .ct-auth-shell,
  .ct-product-discovery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ct-product-line {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .ct-product-line em,
  .ct-product-line b {
    grid-column: 2;
    justify-self: start;
  }
}
/* Copitronix refinement pass: product detail, related products, account auth, and editorial blog */
.ct-primary-menu a {
  white-space: nowrap;
}

.ct-google-auth i.fa-google {
  color: #4285f4;
}

.product-actions,
.ct-card-actions.product-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.ct-product-whatsapp {
  min-width: 48px;
  min-height: 44px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #128c4a !important;
  background: #128c4a !important;
  color: #fff !important;
  padding: 0 14px;
  font-weight: 900;
  text-decoration: none;
  opacity: 1 !important;
  visibility: visible !important;
  line-height: 1;
}

.ct-product-whatsapp i,
.ct-product-whatsapp span {
  display: inline-flex !important;
  color: #fff !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.ct-product-whatsapp:hover {
  border-color: #0f7a3b !important;
  background: #0f7a3b !important;
  color: #fff !important;
}

.ct-product-detail {
  padding: clamp(32px, 5vw, 64px) 0;
}

.ct-product-detail-grid {
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.ct-product-detail-copy h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(2.35rem, 6vw, 5.6rem);
  line-height: 0.94;
}

.ct-product-detail-copy > p:not(.ct-kicker) {
  max-width: 690px;
  color: #475569;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}

.ct-product-detail-visual .ct-product-visual {
  min-height: clamp(260px, 36vw, 430px);
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.ct-product-specs {
  max-width: 760px;
}

.ct-related-section {
  background: #fff;
}

.ct-related-strip {
  display: grid;
  gap: 12px;
}

.ct-related-product {
  display: grid;
  grid-template-columns: 72px minmax(0, 1.45fr) minmax(150px, 0.38fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid #dbe3ef;
  background: #fff;
  padding: 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ct-related-product:hover {
  border-color: #143a85;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.ct-related-icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: #143a85;
  text-decoration: none;
  font-size: 1.45rem;
}

.ct-related-copy span,
.ct-blog-feature span,
.ct-blog-list span {
  color: #e1262d;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ct-related-copy h3 {
  margin: 5px 0 6px;
  color: #0b1020;
  font-size: 1.05rem;
  line-height: 1.25;
}

.ct-related-copy h3 a {
  color: inherit;
  text-decoration: none;
}

.ct-related-copy h3 a:hover {
  color: #143a85;
}

.ct-related-copy p {
  margin: 0;
  color: #475569;
  line-height: 1.5;
}

.ct-related-meta {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.ct-related-meta strong {
  color: #0b1020;
  font-size: 1rem;
  font-weight: 900;
}

.ct-related-meta small {
  padding: 5px 8px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ct-related-meta small.in-stock {
  background: #e7f7ee;
  color: #0f7a3b;
}

.ct-related-meta small.out-stock {
  background: #fff1f2;
  color: #b91c1c;
}

.ct-related-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.ct-related-view,
.ct-related-icon-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbe3ef;
  background: #fff;
  color: #143a85;
  padding: 0 13px;
  font-weight: 900;
  text-decoration: none;
}

.ct-related-icon-button {
  width: 42px;
  padding: 0;
  cursor: pointer;
}

.ct-related-view:hover,
.ct-related-icon-button:hover {
  border-color: #143a85;
  background: #143a85;
  color: #fff;
}

.ct-blog-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
}

.ct-blog-feature {
  align-self: start;
  border-top: 5px solid #e1262d;
  border-bottom: 1px solid #dbe3ef;
  padding: 28px 0 26px;
}

.ct-blog-feature h2 {
  margin: 12px 0 16px;
  color: #0b1020;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.ct-blog-feature p,
.ct-blog-list p {
  color: #475569;
  line-height: 1.65;
}

.ct-blog-feature small,
.ct-blog-list small {
  color: #143a85;
  font-weight: 900;
}

.ct-blog-list {
  display: grid;
}

.ct-blog-list article {
  border-bottom: 1px solid #dbe3ef;
  padding: 18px 0;
}

.ct-blog-list article:first-child {
  padding-top: 0;
}

.ct-blog-list h2 {
  margin: 8px 0 8px;
  color: #0b1020;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.25;
}

@media (max-width: 980px) {
  .ct-related-product {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .ct-related-meta,
  .ct-related-actions {
    grid-column: 2;
  }

  .ct-related-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .ct-blog-editorial {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ct-product-detail-copy h1 {
    font-size: clamp(2rem, 12vw, 3.5rem);
  }

  .ct-product-detail-visual {
    order: -1;
  }

  .ct-related-product {
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 12px;
  }

  .ct-related-icon {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
  }

  .ct-product-whatsapp span {
    display: none !important;
  }
}

/* Public secondary page refinements */
.page-hero,
.ct-page-hero,
.ct-shop-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px) 0 !important;
  background:
    linear-gradient(90deg, rgba(20, 58, 133, 0.08), rgba(225, 38, 45, 0.055), rgba(255, 213, 0, 0.06)),
    #f8fafc !important;
  color: #0b1020 !important;
  border-bottom: 1px solid #dbe3ef !important;
}

.page-hero::before,
.ct-page-hero::before,
.ct-shop-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, #159bd7 0 25%, #e1268d 25% 50%, #ffd500 50% 75%, #111827 75% 100%);
}

.page-hero .container,
.ct-page-hero .container {
  max-width: 980px;
}

.page-hero h1,
.ct-page-hero h1,
.ct-shop-hero h1 {
  color: #0b1020 !important;
  font-size: clamp(2rem, 4vw, 4.3rem) !important;
  line-height: 1.02 !important;
}

.page-hero p,
.ct-page-hero p,
.ct-shop-hero p {
  max-width: 760px;
  color: #475569 !important;
}

.eyebrow,
.ct-kicker {
  color: #e1262d !important;
}

.section,
.ct-section {
  padding-block: clamp(44px, 6vw, 84px);
}

.ct-guide-hero .container {
  max-width: 980px;
}

.ct-guide-meta {
  display: inline-flex;
  margin-top: 18px;
  border: 1px solid #dbe3ef;
  background: #fff;
  color: #143a85;
  padding: 8px 12px;
  font-weight: 900;
}

.ct-guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.ct-guide-article {
  max-width: 820px;
}

.ct-guide-article section {
  border-bottom: 1px solid #dbe3ef;
  padding: 0 0 26px;
  margin-bottom: 26px;
}

.ct-guide-article h2 {
  margin: 0 0 12px;
  color: #0b1020;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.15;
}

.ct-guide-article p {
  color: #334155;
  font-size: 1.03rem;
  line-height: 1.85;
}

.ct-guide-article a {
  color: #143a85;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.ct-guide-cta {
  border: 1px solid #dbe3ef;
  border-top: 5px solid #e1262d;
  background: #fff;
  padding: 24px;
  margin: 30px 0;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.ct-guide-cta .ct-btn {
  text-decoration: none;
}

.ct-guide-related {
  position: sticky;
  top: 170px;
  display: grid;
  gap: 12px;
  border-left: 4px solid #143a85;
  padding-left: 20px;
}

.ct-guide-related h2 {
  margin: 0 0 8px;
  color: #0b1020;
  font-size: 1.2rem;
}

.ct-guide-related a {
  display: grid;
  gap: 5px;
  border-bottom: 1px solid #dbe3ef;
  padding: 0 0 13px;
  color: #0b1020;
  text-decoration: none;
}

.ct-guide-related span {
  color: #e1262d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ct-guide-related small {
  color: #64748b;
  font-weight: 800;
}

.ct-guide-more {
  width: max-content;
  border: 2px solid #143a85 !important;
  padding: 10px 14px !important;
  color: #143a85 !important;
  font-weight: 900;
}

.ct-blog-feature h2 a,
.ct-blog-list h2 a {
  color: inherit;
  text-decoration: none;
}

.ct-blog-feature h2 a:hover,
.ct-blog-list h2 a:hover {
  color: #143a85;
}

.quick-contact-left {
  display: none !important;
}

.quick-help-widget {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 34;
  display: grid;
  gap: 10px;
  justify-items: start;
}

.quick-help-launcher {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #143a85;
  color: #fff;
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.28);
  animation: ct-help-pulse 2.6s ease-in-out infinite;
}

.quick-help-widget.open .quick-help-launcher {
  animation: none;
}

.quick-help-panel {
  display: grid;
  gap: 8px;
  width: min(280px, calc(100vw - 36px));
  border: 1px solid #dbe3ef;
  border-top: 5px solid #e1262d;
  background: #fff;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.24);
}

.quick-help-panel a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.quick-help-panel .quick-call {
  background: #143a85;
}

.quick-help-panel .quick-whatsapp {
  min-width: 0;
  background: #128c4a;
}

@keyframes ct-help-pulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 14px 34px rgba(15, 23, 42, 0.28); }
  50% { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(225, 38, 45, 0.24); }
}

@media (max-width: 900px) {
  .ct-guide-layout {
    grid-template-columns: 1fr;
  }

  .ct-guide-related {
    position: static;
  }
}

/* Final production overrides: solid colors, compact footer newsletter, mobile commerce cards. */
.ct-page-hero,
.ct-shop-hero {
  background: #143a85 !important;
  color: #ffffff !important;
  padding: clamp(26px, 4vw, 46px) 0 !important;
}

.ct-page-hero::before,
.ct-shop-hero::before {
  display: none !important;
}

.ct-page-hero .ct-kicker,
.ct-shop-hero .ct-kicker,
.ct-page-hero h1,
.ct-shop-hero h1,
.ct-page-hero p,
.ct-shop-hero p {
  color: #ffffff !important;
}

.ct-hero-red { background: #e1262d !important; }
.ct-hero-dark { background: #07111f !important; }
.ct-hero-yellow { background: #ffd500 !important; color: #07111f !important; }
.ct-hero-yellow .ct-kicker,
.ct-hero-yellow h1,
.ct-hero-yellow p { color: #07111f !important; }

.newsletter-band {
  display: none !important;
}

.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 26px;
  align-items: center;
  margin-bottom: 44px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.18);
  border-left: 6px solid #ffd500;
  background: #0d1b2f;
}

.footer-newsletter h2 {
  color: #ffffff;
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.footer-newsletter p:not(.eyebrow) {
  color: #cbd5e1;
}

.footer-newsletter .newsletter-form {
  padding: 0;
  border: 0;
  background: transparent;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  gap: 16px;
  background: #ffffff;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.site-loader img {
  width: 112px;
}

.site-loader span {
  width: 180px;
  height: 5px;
  background: linear-gradient(90deg, #00aeef 0 25%, #ec008c 25% 50%, #ffd500 50% 75%, #07111f 75% 100%);
  animation: loaderPulse 920ms ease-in-out infinite alternate;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.ct-product-card {
  border: 1px solid #e5edf7 !important;
  background: #ffffff !important;
  box-shadow: 0 12px 30px rgba(15,23,42,.06) !important;
}

.ct-product-thumb {
  min-height: 170px !important;
}

.ct-product-body {
  padding: 14px !important;
}

.ct-product-whatsapp {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
  border: 1px solid #16a34a !important;
  background: #16a34a !important;
  color: #ffffff !important;
  padding: 0 12px;
  font-weight: 900;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.checkout-panel,
.checkout-summary {
  border: 1px solid #dbe3ef;
  background: #ffffff;
  padding: 22px;
}

.checkout-main,
.checkout-panel,
.checkout-summary,
.checkout-cart-list {
  display: grid;
  gap: 18px;
}

.checkout-panel-head {
  display: flex;
  gap: 14px;
}

.checkout-panel-head > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: #143a85;
  color: #ffffff;
  font-weight: 900;
}

.checkout-cart-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid #e5edf7;
  padding: 12px;
}

.checkout-cart-item i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #eff6ff;
  color: #143a85;
}

.checkout-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 1px solid #dbe3ef;
  padding: 12px 14px;
  font: inherit;
}

.ct-alert {
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #166534;
  padding: 14px 16px;
  font-weight: 800;
}

.ct-alert.error {
  border-color: #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.ct-cart-checkout {
  width: 100%;
  margin-top: 18px;
}

.ct-cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ct-cart-qty button {
  width: 30px;
  height: 30px;
  border: 1px solid #dbe3ef;
  background: #ffffff;
  font-weight: 900;
}

@media (max-width: 980px) {
  .footer-newsletter,
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ct-product-grid,
  .ct-shop-product-grid,
  .ct-product-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .ct-product-thumb {
    min-height: 118px !important;
  }

  .ct-product-body {
    padding: 10px !important;
  }

  .ct-product-body p,
  .ct-product-actions-float,
  .ct-product-body > span {
    display: none !important;
  }

  .ct-card-actions.product-actions {
    grid-template-columns: 1fr;
  }

  .ct-product-whatsapp span {
    display: none;
  }
}

@media (max-width: 380px) {
  .ct-product-grid,
  .ct-shop-product-grid,
  .ct-product-grid.compact {
    grid-template-columns: 1fr !important;
  }
}

/* Homepage ecommerce section pass: compact strips, category tiles, offers, help CTA. */
.ct-popular-strip {
  background: #07111f;
  color: #ffffff;
  border-top: 4px solid #00a3e0;
  border-bottom: 4px solid #e4252a;
}

.ct-popular-strip-inner {
  min-height: 118px;
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.ct-popular-strip .ct-kicker,
.ct-popular-strip h2 {
  color: #ffffff;
}

.ct-popular-strip h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.05;
}

.ct-popular-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.ct-popular-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.24);
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  background: rgba(255,255,255,.06);
}

.ct-popular-links a:hover,
.ct-popular-links a:focus {
  background: #ffffff;
  color: #07111f;
}

.ct-category-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.ct-category-tile {
  min-height: 156px;
  align-content: start;
  padding: 16px;
  border: 1px solid #dbe3ef;
  background: #ffffff;
}

.ct-category-tile i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: #ffffff;
  background: #143a85;
}

.ct-category-tile:nth-child(2n) i { background: #e4252a; }
.ct-category-tile:nth-child(3n) i { background: #00a3e0; }
.ct-category-tile:nth-child(4n) i { background: #07111f; }
.ct-category-tile:nth-child(5n) i { background: #f2c300; color: #07111f; }

.ct-category-tile small {
  display: block;
  margin-top: 7px;
  font-size: .82rem;
  line-height: 1.45;
}

.ct-offers-section {
  background: #ffffff;
  border-top: 1px solid #e5edf7;
  border-bottom: 1px solid #e5edf7;
}

.ct-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ct-offer-tile {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 20px;
  border: 1px solid #dbe3ef;
  background: #f8fafc;
  color: #0b1020;
  text-decoration: none;
}

.ct-offer-tile > i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #e4252a;
}

.ct-offer-tile strong,
.ct-offer-tile small,
.ct-offer-tile b {
  display: block;
}

.ct-offer-tile small {
  margin-top: 6px;
  color: #475569;
  line-height: 1.55;
}

.ct-offer-tile b {
  grid-column: 2;
  margin-top: 8px;
  color: #143a85;
}

.ct-help-choosing {
  background: #143a85;
  color: #ffffff;
  border-top: 5px solid #f2c300;
}

.ct-help-choosing-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 42px;
}

.ct-help-choosing .ct-kicker,
.ct-help-choosing h2,
.ct-help-choosing p {
  color: #ffffff;
}

.ct-help-choosing h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.04;
}

.ct-help-choosing p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.86);
}

.ct-help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.ct-help-choosing .ct-btn-outline {
  border-color: #ffffff;
  color: #ffffff;
}

.ct-supported-brand img {
  max-width: 100px;
  max-height: 42px;
  object-fit: contain;
  display: block;
}

.ct-supported-brand strong {
  min-width: 58px;
}

@media (max-width: 1120px) {
  .ct-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .ct-popular-strip-inner,
  .ct-help-choosing-inner {
    grid-template-columns: 1fr;
  }

  .ct-popular-links,
  .ct-help-actions {
    justify-content: flex-start;
  }

  .ct-offer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 430px) {
  .ct-category-grid {
    grid-template-columns: 1fr;
  }

  .ct-popular-links a {
    width: 100%;
  }
}

/* Import/product polish pass: compact footer newsletter and account access. */
.site-footer {
  padding-top: 36px !important;
  background: #07111f !important;
}

.footer-newsletter {
  max-width: 1180px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px) !important;
  align-items: center !important;
  gap: 18px !important;
  margin: 0 auto 28px !important;
  padding: 14px 16px !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  background: #0b1728 !important;
  box-shadow: none !important;
}

.footer-newsletter .eyebrow {
  margin-bottom: 3px !important;
  color: #f2c300 !important;
}

.footer-newsletter h2 {
  margin: 0 0 4px !important;
  color: #ffffff !important;
  font-size: clamp(1rem, 1.25vw, 1.28rem) !important;
  line-height: 1.15 !important;
}

.footer-newsletter p:not(.eyebrow) {
  max-width: 700px !important;
  margin: 0 !important;
  color: #cbd5e1 !important;
  font-size: .9rem !important;
  line-height: 1.45 !important;
}

.footer-newsletter .newsletter-form {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  display: grid !important;
  gap: 8px !important;
}

.footer-newsletter .newsletter-form > input[type="text"] {
  display: none !important;
}

.footer-newsletter .newsletter-email-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 8px !important;
  margin: 0 !important;
}

.footer-newsletter .newsletter-form input {
  min-height: 40px !important;
  padding: 9px 12px !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  background: #ffffff !important;
}

.footer-newsletter .newsletter-email-row button {
  min-height: 40px !important;
  padding: 0 16px !important;
  background: #e4252a !important;
  color: #ffffff !important;
  border: 0 !important;
  font-weight: 900 !important;
}

.footer-grid {
  border-top: 1px solid rgba(255,255,255,.12) !important;
  padding-top: 26px !important;
}

.ct-account-page {
  padding: clamp(34px, 5vw, 70px) 0 !important;
  background: #f8fafc !important;
}

.ct-account-shell {
  max-width: 1180px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(300px, .82fr) minmax(360px, .68fr) !important;
  gap: clamp(26px, 4vw, 58px) !important;
  align-items: center !important;
}

.ct-account-copy {
  padding: clamp(20px, 3vw, 34px) !important;
  border-left: 6px solid #143a85 !important;
  background: #ffffff !important;
  box-shadow: 0 18px 48px rgba(15,23,42,.08) !important;
}

.ct-account-copy h1 {
  max-width: 680px !important;
  margin: 0 !important;
  font-size: clamp(2rem, 4.2vw, 4.4rem) !important;
  line-height: .98 !important;
  letter-spacing: 0 !important;
}

.ct-account-copy p:not(.ct-kicker) {
  max-width: 640px !important;
  margin: 16px 0 0 !important;
  color: #475569 !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
}

.ct-account-copy ul {
  margin: 22px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.ct-account-copy li {
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  min-height: 44px !important;
  padding: 9px 10px !important;
  border: 1px solid #dbe3ef !important;
  background: #f8fafc !important;
  color: #143a85 !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
}

.ct-account-copy li i {
  color: #e4252a !important;
}

.ct-account-panel {
  padding: clamp(20px, 2.4vw, 30px) !important;
  background: #ffffff !important;
  border: 1px solid #dbe3ef !important;
  box-shadow: 0 22px 56px rgba(15,23,42,.1) !important;
}

.ct-auth-tabs {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  margin-bottom: 18px !important;
  border: 1px solid #dbe3ef !important;
}

.ct-auth-tabs button {
  min-height: 48px !important;
  border: 0 !important;
  background: #ffffff !important;
  color: #0b1020 !important;
  font-weight: 900 !important;
}

.ct-auth-tabs button.active {
  background: #143a85 !important;
  color: #ffffff !important;
}

.ct-google-auth {
  min-height: 48px !important;
  border: 1px solid #dbe3ef !important;
  background: #ffffff !important;
  color: #0b1020 !important;
  font-weight: 900 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
}

.ct-account-form {
  gap: 13px !important;
}

.ct-account-form input,
.ct-reset-form input {
  min-height: 46px !important;
}

.ct-account-submit {
  min-height: 48px !important;
}

.ct-account-reset {
  max-width: 1180px !important;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px) !important;
  margin-top: 20px !important;
  padding: 18px !important;
  background: #ffffff !important;
  border: 1px solid #dbe3ef !important;
  box-shadow: none !important;
}

@media (max-width: 980px) {
  .ct-account-shell,
  .ct-account-reset,
  .footer-newsletter {
    grid-template-columns: 1fr !important;
  }

  .ct-account-copy ul {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 620px) {
  .footer-newsletter {
    padding: 13px !important;
  }

  .footer-newsletter p:not(.eyebrow) {
    display: none !important;
  }

  .footer-newsletter .newsletter-email-row {
    grid-template-columns: 1fr !important;
  }

  .ct-account-page {
    padding: 24px 0 !important;
  }

  .ct-account-copy,
  .ct-account-panel,
  .ct-account-reset {
    padding: 18px !important;
  }

  .ct-account-copy h1 {
    font-size: clamp(1.9rem, 12vw, 3rem) !important;
  }
}

/* Final strip/header fix: slimmer home supply strip and solid request availability header. */
.ct-popular-strip {
  background: #07111f !important;
  color: #ffffff !important;
  border-top: 3px solid #00a3e0 !important;
  border-bottom: 3px solid #e4252a !important;
}

.ct-popular-strip-inner {
  min-height: 76px !important;
  grid-template-columns: minmax(210px, 290px) minmax(0, 1fr) !important;
  gap: 20px !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.ct-popular-strip .ct-kicker {
  margin: 0 0 4px !important;
  color: #e4252a !important;
  font-size: .72rem !important;
}

.ct-popular-strip h2 {
  margin: 0 !important;
  max-width: 300px !important;
  font-size: clamp(1.05rem, 1.7vw, 1.65rem) !important;
  line-height: 1.05 !important;
  color: #ffffff !important;
}

.ct-popular-links {
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  scrollbar-width: thin;
}

.ct-popular-links a {
  min-height: 38px !important;
  flex: 0 0 auto !important;
  padding: 0 14px !important;
  border-color: rgba(255,255,255,.22) !important;
  background: #111c2d !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.ct-popular-links a:hover,
.ct-popular-links a:focus {
  background: #ffffff !important;
  color: #07111f !important;
}

.page-hero.page-hero-red {
  background: #e4252a !important;
  background-image: none !important;
  border-bottom: 5px solid #07111f !important;
  padding: clamp(28px, 4vw, 52px) 0 !important;
}

.page-hero.page-hero-red::before {
  display: none !important;
}

.page-hero.page-hero-red .eyebrow,
.page-hero.page-hero-red h1,
.page-hero.page-hero-red p {
  color: #ffffff !important;
}

.page-hero.page-hero-red h1 {
  font-size: clamp(2rem, 3.6vw, 3.6rem) !important;
  line-height: 1.04 !important;
}

@media (max-width: 760px) {
  .ct-popular-strip-inner {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .ct-popular-strip h2 {
    max-width: none !important;
  }

  .ct-popular-links {
    margin-inline: calc(var(--container-padding, 20px) * -1) !important;
    padding-inline: var(--container-padding, 20px) !important;
  }
}

/* Compact ecommerce cards and clean home supply sections. */
.ct-popular-strip {
  background: #ffffff !important;
  color: #0b1020 !important;
  border-top: 1px solid #e5edf7 !important;
  border-bottom: 1px solid #e5edf7 !important;
}
.ct-popular-strip-inner {
  display: block !important;
  min-height: 0 !important;
  padding-top: clamp(34px, 5vw, 64px) !important;
  padding-bottom: clamp(34px, 5vw, 64px) !important;
}
.ct-popular-strip .ct-kicker { color: #e4252a !important; text-align: center !important; }
.ct-popular-strip h2 {
  max-width: 760px !important;
  margin: 0 auto 24px !important;
  color: #0b1020 !important;
  text-align: center !important;
  font-size: clamp(2rem, 4vw, 4.2rem) !important;
  line-height: .98 !important;
}
.ct-popular-links {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
  justify-content: stretch !important;
}
.ct-popular-links a {
  min-height: 96px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 18px !important;
  border: 1px solid #dbe3ef !important;
  background: #f8fafc !important;
  color: #143a85 !important;
  text-align: center !important;
  font-weight: 900 !important;
  box-shadow: none !important;
}
.ct-popular-links a:nth-child(2n) { color: #e4252a !important; }
.ct-popular-links a:nth-child(3n) { color: #07111f !important; }
.ct-popular-links a:nth-child(4n) { border-top: 4px solid #f2c300 !important; }
.ct-popular-links a:hover,
.ct-popular-links a:focus { background: #143a85 !important; color: #ffffff !important; border-color: #143a85 !important; }
.ct-product-discovery { display: block !important; }
.ct-product-discovery-copy { max-width: 850px !important; margin: 0 auto 26px !important; text-align: center !important; }
.ct-product-discovery-copy h2 { font-size: clamp(1.8rem, 3.4vw, 3.7rem) !important; line-height: 1 !important; }
.ct-product-lines { display: grid !important; grid-template-columns: repeat(4, minmax(0, 1fr)) !important; gap: 14px !important; }
.ct-product-line {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  align-content: start !important;
  min-height: 190px !important;
  padding: 16px !important;
  border: 1px solid #dbe3ef !important;
  background: #ffffff !important;
  text-decoration: none !important;
}
.ct-product-line-icon { width: 46px !important; height: 46px !important; display: grid !important; place-items: center !important; background: #143a85 !important; color: #ffffff !important; }
.ct-product-line em,
.ct-product-line b { margin: 0 !important; justify-self: start !important; }
.ct-shop-product-grid,
.ct-product-grid { gap: 16px !important; }
.ct-shop-product-grid { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)) !important; }
.ct-product-card { box-shadow: none !important; }
.ct-product-thumb { min-height: 148px !important; }
.ct-product-thumb img { height: 148px !important; padding: 14px !important; }
.ct-product-body { padding: 12px !important; gap: 7px !important; }
.ct-product-body h2,
.ct-product-body h3 { min-height: 0 !important; font-size: .95rem !important; line-height: 1.25 !important; }
.ct-product-body p { min-height: 0 !important; font-size: .86rem !important; line-height: 1.4 !important; }
.ct-product-actions-float { display: flex !important; flex-direction: column !important; opacity: 1 !important; transform: none !important; }
.ct-product-actions-float button,
.ct-product-actions-float a { width: 34px !important; height: 34px !important; background: #ffffff !important; border: 1px solid #dbe3ef !important; color: #143a85 !important; }
.ct-card-actions.product-actions { display: grid !important; grid-template-columns: minmax(0, 1fr) 42px !important; gap: 8px !important; }
.ct-product-whatsapp { opacity: 1 !important; visibility: visible !important; min-width: 42px !important; background: #15a85a !important; border-color: #15a85a !important; color: #ffffff !important; }
.quick-help-widget { display: block !important; left: 18px !important; right: auto !important; bottom: 22px !important; z-index: 80 !important; }
@media (max-width: 980px) {
  .ct-popular-links,
  .ct-product-lines { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 620px) {
  .ct-shop-product-grid,
  .ct-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 12px !important; }
  .ct-product-thumb { min-height: 112px !important; }
  .ct-product-thumb img { height: 112px !important; padding: 10px !important; }
  .ct-product-body { padding: 9px !important; }
  .ct-product-body > span,
  .ct-product-body p { display: none !important; }
  .ct-product-meta { display: grid !important; gap: 6px !important; align-items: start !important; }
  .ct-product-meta strong { font-size: .85rem !important; }
  .ct-card-actions.product-actions { grid-template-columns: 1fr 36px !important; }
  .ct-product-main-action { min-height: 38px !important; font-size: .78rem !important; padding: 0 8px !important; }
  .ct-product-whatsapp { min-width: 36px !important; min-height: 38px !important; }
  .ct-product-whatsapp span { display: none !important; }
  .ct-product-actions-float { top: 8px !important; right: 8px !important; gap: 5px !important; }
  .ct-product-actions-float button,
  .ct-product-actions-float a { width: 30px !important; height: 30px !important; font-size: .75rem !important; }
  .ct-popular-strip h2,
  .ct-product-discovery-copy h2 { font-size: clamp(1.8rem, 10vw, 2.8rem) !important; }
  .ct-popular-links,
  .ct-product-lines { grid-template-columns: 1fr !important; }
}

/* 2026-06-30 focused UX fixes: mobile header, shop filters, newsletter, and product-card polish. */
.ct-filter-toggle {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid #d9e2ef;
  background: #ffffff;
  color: #143a85;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
}

.ct-shop-controls select[data-shop-sort] {
  min-width: 190px;
  background: #ffffff;
  border: 1px solid #d9e2ef;
  color: #0f172a;
  font-weight: 800;
}

.ct-product-card {
  background: #ffffff !important;
  border: 1px solid #dbe3ef !important;
  box-shadow: none !important;
}

.ct-shop-product-grid {
  align-items: stretch;
}

.ct-shop-product-grid .ct-product-card {
  min-width: 0;
}

.ct-product-body h2,
.ct-product-body h3 {
  overflow-wrap: anywhere;
}

.ct-product-main-action {
  white-space: nowrap;
}

.ct-product-whatsapp {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: #12a15c !important;
  border-color: #12a15c !important;
  color: #ffffff !important;
  min-width: 44px !important;
  width: 44px !important;
  padding: 0 !important;
}

.ct-product-whatsapp span {
  display: none !important;
}

.ct-product-actions-float {
  opacity: 1 !important;
  transform: none !important;
}

.footer-newsletter {
  border-top: 4px solid #143a85 !important;
  background: #ffffff !important;
}

.newsletter-form button[disabled] {
  cursor: wait;
  opacity: .72;
}

.ct-narrow {
  max-width: 720px;
}

.ct-simple-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid #dbe3ef;
  background: #ffffff;
}

.ct-simple-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.ct-simple-form input {
  min-height: 48px;
  border: 1px solid #d9e2ef;
  padding: 0 14px;
}

.ct-form-alert {
  margin-bottom: 14px;
  padding: 14px 16px;
  border: 1px solid #dbe3ef;
  font-weight: 800;
}

.ct-form-alert.success {
  border-color: #bbf7d0;
  color: #047857;
  background: #f0fdf4;
}

.ct-form-alert.error {
  border-color: #fecaca;
  color: #b91c1c;
  background: #fef2f2;
}

@media (min-width: 1000px) {
  .ct-shop-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .ct-shop-product-grid .ct-product-thumb {
    min-height: 150px !important;
  }

  .ct-shop-product-grid .ct-product-thumb img {
    height: 150px !important;
    object-fit: contain !important;
  }

  .ct-shop-product-grid .ct-product-body {
    padding: 14px !important;
  }

  .ct-shop-product-grid .ct-product-body h2 {
    font-size: 1rem !important;
    line-height: 1.25 !important;
  }

  .ct-shop-product-grid .ct-product-body p {
    font-size: .88rem !important;
    line-height: 1.45 !important;
  }

  .ct-card-actions.product-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 44px !important;
    gap: 8px !important;
  }
}

@media (max-width: 760px) {
  .ct-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(15, 23, 42, .08);
  }

  .ct-announcement {
    height: 30px !important;
    min-height: 30px !important;
    overflow: hidden !important;
    background: #050505 !important;
  }

  .ct-announcement-track {
    min-height: 30px !important;
    align-items: center !important;
  }

  .ct-announcement span,
  .ct-announcement a {
    font-size: .76rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .ct-utility {
    display: none !important;
  }

  .ct-brand-row {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 8px !important;
    padding: 8px 14px 8px !important;
    align-items: center !important;
  }

  .ct-brand {
    justify-self: center !important;
    min-width: 0 !important;
  }

  .ct-brand img {
    width: 54px !important;
    height: auto !important;
  }

  .ct-wordmark {
    font-size: 1.08rem !important;
    white-space: nowrap !important;
  }

  .ct-brand-text small,
  .ct-print-bars {
    display: none !important;
  }

  .ct-mobile-brand-search {
    grid-column: 1 / -1 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 44px !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .ct-mobile-brand-search input,
  .ct-mobile-brand-search button {
    min-height: 42px !important;
  }

  .ct-nav-wrap {
    position: absolute !important;
    right: 12px !important;
    top: 48px !important;
    width: auto !important;
    border: 0 !important;
    background: transparent !important;
    z-index: 1002 !important;
  }

  .ct-nav-inner {
    min-height: 0 !important;
    padding: 0 !important;
  }

  .menu-toggle {
    width: 42px !important;
    height: 42px !important;
    background: #ffffff !important;
    border: 1px solid #d9e2ef !important;
  }

  .ct-primary-menu.open {
    position: fixed !important;
    inset: 0 !important;
    z-index: 1003 !important;
    display: grid !important;
    align-content: start !important;
    gap: 0 !important;
    padding: 76px 18px 28px !important;
    overflow-y: auto !important;
    background: #ffffff !important;
  }

  .ct-primary-menu.open a,
  .ct-primary-menu.open .ct-account-cta,
  .ct-primary-menu.open .ct-cart-cta,
  .ct-primary-menu.open .ct-nav-cta {
    display: flex !important;
    align-items: center !important;
    min-height: 46px !important;
    border-bottom: 1px solid #edf2f7 !important;
    color: #0f172a !important;
    background: transparent !important;
  }

  .ct-primary-menu.open .ct-header-search {
    display: none !important;
  }

  .ct-shop-hero,
  .ct-page-hero {
    margin-top: 0 !important;
  }

  .ct-shop-hero {
    padding: 24px 0 18px !important;
  }

  .ct-shop-hero-grid {
    gap: 14px !important;
  }

  .ct-shop-hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.55rem) !important;
    line-height: 1.02 !important;
  }

  .ct-shop-search-panel {
    margin-top: 0 !important;
  }

  .ct-shop-section {
    padding-top: 18px !important;
  }

  .ct-filter-panel {
    position: static !important;
    padding: 14px !important;
    margin-bottom: 14px !important;
  }

  .ct-filter-toggle {
    display: flex;
  }

  .ct-filter-panel .ct-filter-form {
    display: none !important;
    margin-top: 14px !important;
  }

  .ct-filter-panel.is-open .ct-filter-form {
    display: grid !important;
  }

  .ct-shop-toolbar {
    gap: 12px !important;
  }

  .ct-shop-controls {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 8px !important;
  }

  .ct-shop-controls select[data-shop-sort] {
    min-width: 0 !important;
    width: 100% !important;
  }

  .ct-shop-product-grid .ct-card-actions.product-actions,
  .ct-product-grid .ct-card-actions.product-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 38px !important;
    gap: 6px !important;
  }

  .ct-product-main-action {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}

/* Shop card placeholder and list-view repair pass. */
.ct-product-visual {
  position: relative !important;
  overflow: hidden !important;
  background: linear-gradient(180deg, #f8fafc 0%, #eef4fb 100%) !important;
}

.ct-product-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px solid #dbe6f2;
  background:
    linear-gradient(#143a85, #143a85) 50% 36% / 72px 18px no-repeat,
    linear-gradient(#e5242a, #e5242a) 50% 56% / 86px 8px no-repeat,
    linear-gradient(#13a8df, #13a8df) 50% 68% / 86px 8px no-repeat,
    linear-gradient(#111827, #111827) 50% 80% / 86px 8px no-repeat,
    #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .08);
}

.ct-product-visual i {
  position: relative !important;
  z-index: 2 !important;
  background: #143a85 !important;
  color: #ffffff !important;
  width: 58px !important;
  height: 58px !important;
  display: grid !important;
  place-items: center !important;
  margin: auto !important;
  border-bottom: 4px solid #e5242a !important;
}

.ct-product-visual span {
  position: relative !important;
  z-index: 2 !important;
  display: block !important;
  margin-top: 8px !important;
  color: #143a85 !important;
  font-weight: 900 !important;
}

.ct-shop-view-actions button {
  background: #ffffff !important;
  color: #143a85 !important;
  border: 1px solid #d9e2ef !important;
}

.ct-shop-view-actions button.active {
  background: #143a85 !important;
  color: #ffffff !important;
  border-color: #143a85 !important;
}

.ct-shop-product-grid.is-list {
  grid-template-columns: 1fr !important;
}

@media (min-width: 900px) {
  .ct-shop-product-grid.is-list .ct-product-card {
    display: grid !important;
    grid-template-columns: 210px minmax(0, 1fr) !important;
    min-height: 210px !important;
  }

  .ct-shop-product-grid.is-list .ct-product-thumb {
    min-height: 100% !important;
    height: 100% !important;
  }

  .ct-shop-product-grid.is-list .ct-product-thumb img {
    height: 100% !important;
    max-height: 230px !important;
  }

  .ct-shop-product-grid.is-list .ct-product-body {
    display: grid !important;
    align-content: center !important;
    padding: 18px !important;
  }
}

@media (max-width: 760px) {
  .ct-shop-view-actions {
    display: none !important;
  }
}

/* Solid placeholder correction: no gradient/shady product placeholder backgrounds. */
.ct-product-visual {
  background: #f8fafc !important;
}

.ct-product-visual::before {
  background:
    linear-gradient(#143a85, #143a85) 50% 36% / 72px 18px no-repeat,
    linear-gradient(#e5242a, #e5242a) 50% 56% / 86px 8px no-repeat,
    linear-gradient(#13a8df, #13a8df) 50% 68% / 86px 8px no-repeat,
    linear-gradient(#111827, #111827) 50% 80% / 86px 8px no-repeat,
    #ffffff !important;
}

/* Public website polish pass: compact footer, cleaner mobile header, denser product cards. */
.site-footer {
  padding-top: 34px !important;
}

.footer-newsletter {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px) !important;
  gap: 20px !important;
  margin-bottom: 32px !important;
  padding: 18px 20px !important;
  border: 1px solid #1e293b !important;
  border-top: 4px solid #ffd500 !important;
  border-left: 0 !important;
  background: #ffffff !important;
  color: #0f172a !important;
}

.footer-newsletter .eyebrow {
  margin-bottom: 4px !important;
  color: #143a85 !important;
  font-size: .72rem !important;
}

.footer-newsletter h2 {
  margin-bottom: 4px !important;
  color: #0f172a !important;
  font-size: 1.05rem !important;
  line-height: 1.2 !important;
}

.footer-newsletter p:not(.eyebrow) {
  max-width: 760px !important;
  margin-top: 4px !important;
  color: #475569 !important;
  font-size: .9rem !important;
}

.footer-newsletter .newsletter-form {
  display: grid !important;
  gap: 8px !important;
}

.footer-newsletter .newsletter-form > input[type="text"] {
  display: none !important;
}

.footer-newsletter .newsletter-email-row {
  margin-top: 0 !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 8px !important;
}

.footer-newsletter .newsletter-email-row input,
.footer-newsletter .newsletter-email-row button {
  min-height: 44px !important;
}

.footer-newsletter .newsletter-email-row input {
  border-color: #cbd5e1 !important;
  font-weight: 700 !important;
}

.footer-newsletter .newsletter-email-row button {
  background: #e5242a !important;
  padding-inline: 18px !important;
}

.footer-grid {
  gap: 26px !important;
}

.footer-logo {
  width: 142px !important;
  padding: 6px !important;
}

.site-footer h2 {
  margin-bottom: 10px !important;
}

.site-footer a,
.site-footer p {
  margin-top: 7px !important;
}

.footer-bottom {
  margin-top: 32px !important;
}

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

.ct-shop-product-grid {
  grid-template-columns: repeat(auto-fill, minmax(205px, 1fr)) !important;
}

.ct-product-card {
  min-width: 0 !important;
}

.ct-product-thumb {
  min-height: 148px !important;
}

.ct-product-thumb img {
  aspect-ratio: 4 / 3 !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 12px !important;
  background: #f8fafc !important;
}

.ct-product-actions-float {
  right: 10px !important;
  top: 10px !important;
  gap: 6px !important;
}

.ct-product-actions-float button {
  width: 34px !important;
  height: 34px !important;
}

.ct-product-body {
  display: grid !important;
  gap: 8px !important;
}

.ct-product-body > span {
  font-size: .68rem !important;
}

.ct-product-body h2,
.ct-product-body h3 {
  min-height: 2.4em !important;
  line-height: 1.2 !important;
}

.ct-product-body p {
  display: -webkit-box !important;
  min-height: 2.7em !important;
  overflow: hidden !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  color: #475569 !important;
}

.ct-product-meta {
  align-items: center !important;
}

.ct-product-meta strong {
  font-size: 1rem !important;
}

.ct-product-meta small {
  white-space: nowrap !important;
}

.ct-product-main-action,
.ct-product-whatsapp {
  min-height: 40px !important;
}

.ct-product-whatsapp span {
  max-width: 72px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.ct-popular-strip {
  background: #ffffff !important;
  border-block: 1px solid #e5edf7 !important;
}

.ct-popular-strip-inner {
  padding-block: 24px !important;
}

.ct-popular-links a {
  border-color: #d9e2ef !important;
  background: #f8fafc !important;
}

.ct-product-discovery {
  background: #ffffff !important;
  border: 1px solid #e5edf7 !important;
  box-shadow: none !important;
}

@media (max-width: 900px) {
  .footer-newsletter,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

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

  .ct-product-thumb {
    min-height: 126px !important;
  }

  .ct-product-body {
    padding: 10px !important;
  }

  .ct-product-body h2,
  .ct-product-body h3 {
    font-size: .9rem !important;
  }

  .ct-product-body p {
    font-size: .8rem !important;
  }
}

@media (max-width: 640px) {
  .ct-announcement {
    height: 34px !important;
    overflow: hidden !important;
  }

  .ct-announcement-track {
    min-height: 34px !important;
    align-items: center !important;
  }

  .ct-utility {
    display: none !important;
  }

  .ct-brand-row {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    display: grid !important;
    grid-template-columns: 1fr 48px !important;
    gap: 10px !important;
    align-items: center !important;
    padding: 10px 12px !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e5edf7 !important;
  }

  .ct-brand {
    justify-self: start !important;
  }

  .ct-nav-wrap {
    top: 44px !important;
    right: 12px !important;
  }

  .ct-mobile-brand-search {
    grid-column: 1 / -1 !important;
    order: 3 !important;
  }

  .ct-shop-hero {
    padding-top: 20px !important;
  }

  .ct-shop-search-panel {
    border-top: 4px solid #e5242a !important;
  }

  .footer-newsletter {
    padding: 16px !important;
  }

  .footer-newsletter .newsletter-email-row {
    grid-template-columns: 1fr !important;
  }

  .footer-newsletter .newsletter-email-row button {
    width: 100% !important;
  }

  .ct-product-grid,
  .ct-shop-product-grid {
    gap: 10px !important;
  }

  .ct-product-actions-float button {
    width: 32px !important;
    height: 32px !important;
  }

  .ct-product-meta {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }

  .ct-card-actions.product-actions {
    grid-template-columns: 1fr 38px !important;
  }

  .ct-product-whatsapp {
    padding: 0 !important;
  }

  .ct-product-whatsapp span {
    display: none !important;
  }
}

@media (max-width: 380px) {
  .ct-product-grid,
  .ct-shop-product-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Customer/public visibility correction pass. */
.quick-help-widget {
  position: fixed !important;
  left: 18px !important;
  right: auto !important;
  bottom: 24px !important;
  z-index: 5000 !important;
  display: grid !important;
  gap: 10px !important;
  justify-items: start !important;
  pointer-events: auto !important;
}

.quick-help-launcher {
  min-height: 48px !important;
  border: 2px solid #ffffff !important;
  background: #143a85 !important;
  color: #ffffff !important;
  padding: 0 18px !important;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .35) !important;
}

.quick-help-launcher i {
  color: #ffffff !important;
}

.quick-help-panel {
  width: min(290px, calc(100vw - 36px)) !important;
  border: 1px solid #dbe3ef !important;
  border-top: 5px solid #e5242a !important;
  background: #ffffff !important;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .28) !important;
}

.quick-help-panel a {
  min-height: 46px !important;
  color: #ffffff !important;
}

.site-footer {
  padding-top: 26px !important;
}

.footer-newsletter {
  max-width: 1180px !important;
  margin: 0 auto 20px !important;
  padding: 12px 0 18px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.14) !important;
  background: transparent !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.footer-newsletter h2 {
  color: #ffffff !important;
  font-size: 1rem !important;
}

.footer-newsletter p:not(.eyebrow) {
  max-width: 560px !important;
  color: #94a3b8 !important;
  font-size: .84rem !important;
}

.footer-newsletter .newsletter-form input {
  min-height: 38px !important;
  border: 1px solid #334155 !important;
  background: #ffffff !important;
  font-size: .9rem !important;
}

.footer-newsletter .newsletter-email-row button {
  min-height: 38px !important;
  background: #e5242a !important;
  padding: 0 15px !important;
  font-size: .9rem !important;
}

.ct-business {
  background: #ffffff !important;
  color: #0f172a !important;
  border-block: 1px solid #e5edf7 !important;
}

.ct-business-inner {
  padding-block: clamp(34px, 5vw, 62px) !important;
}

.ct-business h2,
.ct-business p {
  color: #0f172a !important;
}

.ct-business p:not(.ct-kicker) {
  color: #475569 !important;
}

.ct-buyer-list span {
  background: #f8fafc !important;
  color: #143a85 !important;
  border: 1px solid #dbe3ef !important;
  border-left: 4px solid #e5242a !important;
}

.ct-account-page {
  min-height: 100vh !important;
  padding: 28px 0 44px !important;
  background: #f8fafc !important;
}

.ct-account-back-home {
  display: inline-flex !important;
  min-height: 42px !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 18px !important;
  border: 1px solid #dbe3ef !important;
  background: #ffffff !important;
  color: #143a85 !important;
  padding: 0 14px !important;
  font-weight: 900 !important;
}

.ct-account-shell {
  grid-template-columns: minmax(0, .9fr) minmax(360px, .62fr) !important;
  align-items: stretch !important;
}

.ct-account-copy {
  display: grid !important;
  align-content: center !important;
  min-height: 560px !important;
  border-left: 0 !important;
  border-top: 5px solid #143a85 !important;
  background: #ffffff !important;
}

.ct-account-copy h1 {
  font-size: clamp(2.15rem, 4.6vw, 4.8rem) !important;
}

.ct-account-panel {
  align-self: center !important;
}

.google-mark {
  position: relative !important;
  display: inline-grid !important;
  width: 20px !important;
  height: 20px !important;
  place-items: center !important;
  border-radius: 0 !important;
  background: transparent !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 900 !important;
  font-size: 20px !important;
  line-height: 1 !important;
}

.google-mark::before {
  content: "G" !important;
  color: #4285f4 !important;
}

.google-mark::after {
  content: "" !important;
  position: absolute !important;
  right: 0 !important;
  bottom: 2px !important;
  width: 7px !important;
  height: 4px !important;
  background: #34a853 !important;
  box-shadow: -8px 0 0 #fbbc05, -4px -10px 0 #ea4335 !important;
  opacity: .9 !important;
}

@media (max-width: 760px) {
  .quick-help-widget {
    left: 12px !important;
    bottom: 14px !important;
  }

  .quick-help-launcher span {
    display: inline !important;
  }

  .footer-newsletter {
    padding-bottom: 14px !important;
  }

  .ct-account-shell {
    grid-template-columns: 1fr !important;
  }

  .ct-account-copy {
    min-height: auto !important;
  }

  .ct-account-copy h1 {
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }
}

/* Customer portal completion pass. */
.ct-customer-portal {
  display: grid !important;
  grid-template-columns: 270px minmax(0, 1fr) !important;
  gap: 22px !important;
  align-items: start !important;
}

.ct-customer-sidebar {
  position: sticky !important;
  top: 18px !important;
  display: grid !important;
  gap: 16px !important;
  border: 1px solid #dbe3ef !important;
  background: #ffffff !important;
  padding: 16px !important;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .08) !important;
}

.ct-customer-profile {
  display: grid !important;
  gap: 5px !important;
  border-bottom: 1px solid #e5edf7 !important;
  padding-bottom: 14px !important;
}

.ct-customer-profile span {
  width: 48px !important;
  height: 48px !important;
  display: grid !important;
  place-items: center !important;
  background: #143a85 !important;
  color: #ffffff !important;
  font-weight: 950 !important;
}

.ct-customer-profile strong {
  color: #0f172a !important;
  font-weight: 950 !important;
}

.ct-customer-profile small {
  color: #64748b !important;
  word-break: break-word !important;
}

.ct-customer-sidebar nav {
  display: grid !important;
  gap: 6px !important;
}

.ct-customer-sidebar nav a,
.ct-customer-sidebar form button {
  min-height: 42px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  border: 1px solid transparent !important;
  background: transparent !important;
  color: #143a85 !important;
  padding: 0 10px !important;
  font: inherit !important;
  font-weight: 900 !important;
  text-align: left !important;
  cursor: pointer !important;
}

.ct-customer-sidebar nav a:hover,
.ct-customer-sidebar form button:hover {
  border-color: #dbe3ef !important;
  background: #f8fafc !important;
}

.ct-customer-sidebar form button {
  width: 100% !important;
  color: #e5242a !important;
}

.ct-customer-main {
  display: grid !important;
  gap: 18px !important;
}

.ct-customer-topbar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  border-top: 5px solid #143a85 !important;
  background: #ffffff !important;
  padding: clamp(18px, 2.5vw, 28px) !important;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .07) !important;
}

.ct-customer-topbar h1 {
  margin: 0 !important;
  color: #0f172a !important;
  font-size: clamp(1.8rem, 3vw, 3.2rem) !important;
  line-height: 1 !important;
}

.ct-customer-topbar p:not(.ct-kicker) {
  max-width: 680px !important;
  margin-top: 8px !important;
  color: #475569 !important;
}

.ct-customer-stats {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.ct-customer-stats article {
  border: 1px solid #dbe3ef !important;
  background: #ffffff !important;
  padding: 18px !important;
}

.ct-customer-stats span {
  display: block !important;
  color: #143a85 !important;
  font-size: 1.8rem !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

.ct-customer-stats small {
  color: #64748b !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: .04em !important;
}

.ct-customer-panel {
  border: 1px solid #dbe3ef !important;
  background: #ffffff !important;
  padding: clamp(16px, 2vw, 22px) !important;
}

.ct-customer-panel-head {
  display: flex !important;
  justify-content: space-between !important;
  gap: 14px !important;
  align-items: flex-start !important;
  border-bottom: 1px solid #e5edf7 !important;
  padding-bottom: 12px !important;
  margin-bottom: 14px !important;
}

.ct-customer-panel-head h2 {
  margin: 0 !important;
  color: #0f172a !important;
  font-size: 1.25rem !important;
}

.ct-customer-panel-head p {
  margin-top: 4px !important;
  color: #64748b !important;
}

.ct-customer-panel-head a,
.ct-customer-panel-head button,
.ct-customer-empty a {
  min-height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid #143a85 !important;
  background: #ffffff !important;
  color: #143a85 !important;
  padding: 0 13px !important;
  font-weight: 900 !important;
  cursor: pointer !important;
}

.ct-customer-empty {
  display: grid !important;
  justify-items: start !important;
  gap: 8px !important;
  background: #f8fafc !important;
  border: 1px solid #e5edf7 !important;
  padding: 18px !important;
}

.ct-customer-empty.compact {
  grid-template-columns: auto minmax(0, 1fr) !important;
  align-items: center !important;
}

.ct-customer-empty i {
  width: 42px !important;
  height: 42px !important;
  display: grid !important;
  place-items: center !important;
  background: #143a85 !important;
  color: #ffffff !important;
}

.ct-customer-empty strong {
  color: #0f172a !important;
  font-weight: 950 !important;
}

.ct-customer-empty p {
  color: #64748b !important;
}

.ct-customer-table-wrap {
  overflow-x: auto !important;
}

.ct-customer-table {
  width: 100% !important;
  border-collapse: collapse !important;
}

.ct-customer-table th,
.ct-customer-table td {
  border: 1px solid #e5edf7 !important;
  padding: 11px 12px !important;
  text-align: left !important;
}

.ct-customer-table th {
  background: #f8fafc !important;
  color: #334155 !important;
  font-size: .8rem !important;
  text-transform: uppercase !important;
}

.ct-status {
  display: inline-flex !important;
  padding: 4px 8px !important;
  background: #eef2ff !important;
  color: #143a85 !important;
  font-size: .78rem !important;
  font-weight: 950 !important;
  text-transform: uppercase !important;
}

.ct-status.paid {
  background: #dcfce7 !important;
  color: #166534 !important;
}

.ct-status.failed,
.ct-status.cancelled {
  background: #fee2e2 !important;
  color: #991b1b !important;
}

.ct-customer-profile-list {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.ct-customer-profile-list div {
  border: 1px solid #e5edf7 !important;
  background: #f8fafc !important;
  padding: 12px !important;
}

.ct-customer-profile-list dt {
  color: #64748b !important;
  font-size: .78rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.ct-customer-profile-list dd {
  margin: 4px 0 0 !important;
  color: #0f172a !important;
  font-weight: 900 !important;
  word-break: break-word !important;
}

@media (max-width: 980px) {
  .ct-customer-portal {
    grid-template-columns: 1fr !important;
  }

  .ct-customer-sidebar {
    position: static !important;
  }

  .ct-customer-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .ct-customer-topbar,
  .ct-customer-panel-head {
    display: grid !important;
  }
}

@media (max-width: 620px) {
  .ct-customer-sidebar nav,
  .ct-customer-stats,
  .ct-customer-profile-list {
    grid-template-columns: 1fr !important;
  }

  .ct-customer-empty.compact {
    grid-template-columns: 1fr !important;
  }
}

/* Customer auth standalone page: no public header/footer, coming-soon style composition. */
.ct-customer-auth-body {
  min-height: 100vh;
  background: #eef3f9;
}

.ct-customer-auth-body .ct-account-page {
  min-height: 100vh !important;
  display: grid !important;
  align-items: center !important;
  padding: 24px 0 !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.92) 52%, rgba(15,23,42,.2) 100%),
    url('/public/assets/images/copitronix-logo.webp') center 14% / 150px auto no-repeat,
    #eef3f9 !important;
}

.ct-customer-auth-body .ct-account-back-home {
  position: fixed !important;
  left: 22px !important;
  top: 22px !important;
  z-index: 10 !important;
}

.ct-customer-auth-body .ct-account-shell {
  grid-template-columns: minmax(0, .92fr) minmax(360px, .58fr) !important;
  gap: clamp(24px, 4vw, 56px) !important;
}

.ct-customer-auth-body .ct-account-copy,
.ct-customer-auth-body .ct-account-panel,
.ct-customer-auth-body .ct-account-reset {
  border-color: #dbe3ef !important;
  box-shadow: 0 24px 70px rgba(15,23,42,.12) !important;
}

.ct-customer-auth-body .ct-account-copy {
  min-height: 540px !important;
  border-top: 5px solid #143a85 !important;
}

.ct-customer-auth-body .ct-account-panel {
  border-top: 5px solid #e5242a !important;
}

.google-mark {
  width: 20px !important;
  height: 20px !important;
  display: inline-block !important;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%234285F4' d='M44.5 20H24v8.5h11.8C34.7 33.9 30.1 37 24 37c-7.2 0-13-5.8-13-13s5.8-13 13-13c3.1 0 5.9 1.1 8.1 3.1l6-6C34.4 4.7 29.5 3 24 3 12.4 3 3 12.4 3 24s9.4 21 21 21c10.5 0 20.1-7.6 20.1-21 0-1.3-.1-2.7-.4-4z'/%3E%3Cpath fill='%2334A853' d='M6.3 14.1l7 5.1C15.2 14.4 19.4 11 24 11c3.1 0 5.9 1.1 8.1 3.1l6-6C34.4 4.7 29.5 3 24 3 16 3 9.1 7.5 5.6 14.1z'/%3E%3Cpath fill='%23FBBC05' d='M24 45c5.7 0 10.5-1.9 14-5.1l-6.5-5.3C29.6 36 27.1 37 24 37c-6 0-11.1-4.1-12.7-9.6l-7.1 5.5C7.7 40 15.2 45 24 45z'/%3E%3Cpath fill='%23EA4335' d='M11.3 27.4c-.4-1.1-.6-2.2-.6-3.4s.2-2.3.6-3.4l-7.1-5.5C3.4 17.8 3 20.8 3 24s.4 6.2 1.2 8.9z'/%3E%3C/svg%3E") center / contain no-repeat !important;
  border-radius: 0 !important;
}

.google-mark::before,
.google-mark::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 980px) {
  .ct-customer-auth-body .ct-account-shell {
    grid-template-columns: 1fr !important;
  }

  .ct-customer-auth-body .ct-account-copy {
    min-height: auto !important;
  }
}

/* Service error page */
.ct-error-page {
  min-height: 58vh;
  display: grid;
  align-items: center;
  background: #f5f7fb;
  border-top: 5px solid #143a85;
  border-bottom: 5px solid #e5242a;
}
.ct-error-shell {
  max-width: 780px;
  padding-block: clamp(56px, 8vw, 96px);
}
.ct-error-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #07111f;
  background: #ffd500;
  border: 3px solid #07111f;
  font-weight: 900;
  font-size: 1.6rem;
  margin-bottom: 22px;
}
.ct-error-shell h1 {
  max-width: 760px;
  margin: 0 0 16px;
  color: #07111f;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: .98;
  letter-spacing: 0;
}
.ct-error-shell p:not(.eyebrow) {
  max-width: 660px;
  color: #40506a;
  font-size: 1.05rem;
  line-height: 1.7;
}
.ct-error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Strong no-image product placeholder */
.ct-product-thumb.has-fallback,
.ct-product-thumb:not(:has(img)) {
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f9 100%);
}
.ct-product-visual,
.ct-product-visual-fallback {
  position: relative;
  min-height: 128px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(20,58,133,.12) 18% 28%, transparent 28% 100%),
    #f8fafc;
  border: 1px solid #dbe3ef;
}
.ct-product-visual::before,
.ct-product-visual-fallback::before {
  content: "";
  width: 88px;
  height: 58px;
  display: block;
  background:
    linear-gradient(#143a85 0 0) 18px 0 / 52px 6px no-repeat,
    linear-gradient(#e5242a 0 0) 18px 10px / 52px 5px no-repeat,
    linear-gradient(#cbd5e1 0 0) 18px 21px / 52px 8px no-repeat,
    linear-gradient(#94a3b8 0 0) 18px 36px / 52px 8px no-repeat,
    #ffffff;
  border: 1px solid #cbd5e1;
  box-shadow: 0 14px 30px rgba(15,23,42,.12);
}
.ct-product-visual i,
.ct-product-visual-fallback i {
  position: absolute;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: #143a85;
  color: #ffffff;
  font-size: 1.2rem;
  box-shadow: 0 10px 24px rgba(20,58,133,.24);
}
@media (max-width: 640px) {
  .ct-product-visual,
  .ct-product-visual-fallback { min-height: 96px; }
  .ct-product-visual::before,
  .ct-product-visual-fallback::before { transform: scale(.82); }
}

/* Product image visibility and quick view media */
.ct-product-thumb > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: contain;
  background: #fff;
  display: block;
}
.ct-product-thumb > img + .ct-product-visual-fallback {
  display: none !important;
}
.ct-product-thumb.has-fallback > .ct-product-visual-fallback {
  display: grid !important;
}
.ct-modal-product-media {
  min-height: 240px;
  display: grid;
  place-items: center;
  background: #f8fafc;
  border-right: 1px solid #dbe3ef;
}
.ct-modal-product-media img {
  width: min(100%, 320px);
  max-height: 260px;
  object-fit: contain;
  padding: 20px;
}
@media (max-width: 760px) {
  .ct-product-thumb > img { min-height: 120px; }
  .ct-modal-product-media { min-height: 180px; border-right: 0; border-bottom: 1px solid #dbe3ef; }
}

/* Auth page convergence: customer/team/developer use the same centered portal feel */
.ct-customer-auth-body {
  min-height: 100vh !important;
  background:
    linear-gradient(rgba(245,247,251,.88), rgba(245,247,251,.88)),
    url('/public/assets/images/hero-printer.webp') center / cover no-repeat !important;
}
.ct-customer-auth-body .ct-account-page {
  min-height: 100vh !important;
  padding: clamp(18px, 4vh, 36px) 0 !important;
  display: grid !important;
  align-items: center !important;
  background: transparent !important;
}
.ct-customer-auth-body .ct-account-page > .container {
  max-width: 1040px !important;
}
.ct-customer-auth-body .ct-account-back-home,
.admin-back-site {
  position: fixed !important;
  top: 18px !important;
  left: 18px !important;
  z-index: 30 !important;
  min-height: 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: #fff !important;
  border: 1px solid #dbe3ef !important;
  color: #143a85 !important;
  padding: 0 14px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  box-shadow: 0 12px 28px rgba(15,23,42,.10) !important;
}
.ct-customer-auth-body .ct-alert {
  max-width: 760px !important;
  margin: 0 auto 14px !important;
}
.ct-customer-auth-body .ct-account-shell {
  max-width: 980px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, .82fr) minmax(340px, .58fr) !important;
  gap: 28px !important;
  align-items: stretch !important;
}
.ct-customer-auth-body .ct-account-copy,
.ct-customer-auth-body .ct-account-panel,
.ct-customer-auth-body .ct-account-reset {
  background: rgba(255,255,255,.94) !important;
  border: 1px solid #dbe3ef !important;
  box-shadow: 0 26px 70px rgba(15,23,42,.14) !important;
}
.ct-customer-auth-body .ct-account-copy {
  min-height: auto !important;
  padding: clamp(28px, 4vw, 46px) !important;
  border-top: 5px solid #143a85 !important;
}
.ct-customer-auth-body .ct-account-copy h1 {
  font-size: clamp(2.2rem, 4.2vw, 4.2rem) !important;
  line-height: .98 !important;
  max-width: 620px !important;
}
.ct-customer-auth-body .ct-account-copy ul {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin-top: 24px !important;
}
.ct-customer-auth-body .ct-account-copy li {
  min-height: 58px !important;
  padding: 10px !important;
  border: 1px solid #dbe3ef !important;
  background: #f8fafc !important;
  font-size: .92rem !important;
}
.ct-customer-auth-body .ct-account-panel {
  align-self: center !important;
  border-top: 5px solid #e5242a !important;
  padding: clamp(22px, 3vw, 32px) !important;
}
.ct-customer-auth-body .ct-account-reset {
  max-width: 980px !important;
  margin: 18px auto 0 !important;
  padding: 18px !important;
  display: grid !important;
  grid-template-columns: 1fr minmax(320px, .8fr) !important;
  gap: 18px !important;
  align-items: end !important;
}
.ct-customer-auth-body .ct-account-reset h2 {
  font-size: 1.7rem !important;
  margin: 0 0 6px !important;
}
.ct-customer-auth-body .ct-account-reset p {
  margin: 0 !important;
}
.admin-auth-full {
  min-height: 100vh !important;
  overflow: hidden !important;
}
.admin-auth-coming-header {
  height: 104px !important;
  padding: 10px 0 !important;
}
.admin-auth-coming {
  min-height: calc(100vh - 104px) !important;
  padding: 18px !important;
  display: grid !important;
  place-items: center !important;
}
.admin-auth-launch-card {
  width: min(680px, 94vw) !important;
  padding: clamp(24px, 4vh, 38px) clamp(28px, 4vw, 58px) !important;
  max-height: calc(100vh - 140px) !important;
  overflow: auto !important;
}
.admin-auth-launch-card h1 {
  font-size: clamp(2rem, 4vh, 2.8rem) !important;
  line-height: 1.05 !important;
}
.admin-auth-logo-img {
  max-height: 46px !important;
}
.admin-auth-contact-row {
  margin-top: 16px !important;
}
@media (max-width: 900px) {
  .ct-customer-auth-body .ct-account-page { align-items: start !important; padding-top: 72px !important; }
  .ct-customer-auth-body .ct-account-shell { grid-template-columns: 1fr !important; gap: 16px !important; }
  .ct-customer-auth-body .ct-account-copy h1 { font-size: clamp(2rem, 10vw, 3rem) !important; }
  .ct-customer-auth-body .ct-account-copy ul { grid-template-columns: 1fr !important; }
  .ct-customer-auth-body .ct-account-reset { grid-template-columns: 1fr !important; }
  .admin-auth-full { overflow: auto !important; }
  .admin-auth-coming-header { height: 88px !important; }
  .admin-auth-coming { min-height: calc(100vh - 88px) !important; padding: 12px !important; }
  .admin-auth-launch-card { max-height: none !important; padding: 22px !important; }
}
@media (max-height: 760px) and (min-width: 901px) {
  .admin-auth-coming-header { height: 82px !important; }
  .admin-auth-coming { min-height: calc(100vh - 82px) !important; }
  .admin-auth-launch-card { padding-top: 20px !important; padding-bottom: 20px !important; }
  .admin-auth-logo-img { max-height: 36px !important; }
  .admin-auth-launch-card hr,
  .admin-auth-contact-row { margin-top: 10px !important; margin-bottom: 10px !important; }
}

/* Final July polish: official Google mark, focused mobile menu, centered customer auth. */
.google-mark {
  display: inline-block !important;
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 20px !important;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23FFC107' d='M43.6 20.5H42V20H24v8h11.3C33.7 32.7 29.2 36 24 36c-6.6 0-12-5.4-12-12s5.4-12 12-12c3.1 0 5.9 1.2 8 3.1l5.7-5.7C34.1 6.1 29.3 4 24 4 12.9 4 4 12.9 4 24s8.9 20 20 20 20-8.9 20-20c0-1.3-.1-2.4-.4-3.5z'/%3E%3Cpath fill='%23FF3D00' d='M6.3 14.7l6.6 4.8C14.7 15.1 19 12 24 12c3.1 0 5.9 1.2 8 3.1l5.7-5.7C34.1 6.1 29.3 4 24 4 16.3 4 9.6 8.3 6.3 14.7z'/%3E%3Cpath fill='%234CAF50' d='M24 44c5.1 0 9.8-2 13.3-5.2l-6.2-5.2C29.1 35.1 26.7 36 24 36c-5.2 0-9.6-3.3-11.3-7.9l-6.5 5C9.5 39.5 16.2 44 24 44z'/%3E%3Cpath fill='%231976D2' d='M43.6 20.5H42V20H24v8h11.3c-.8 2.4-2.3 4.3-4.2 5.6l6.2 5.2C36.9 39.1 44 34 44 24c0-1.3-.1-2.4-.4-3.5z'/%3E%3C/svg%3E") center/contain no-repeat !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: transparent !important;
  position: relative !important;
}
.google-mark::before,
.google-mark::after { display: none !important; content: none !important; }

.ct-customer-auth-body .ct-account-page {
  min-height: 100vh !important;
  padding: clamp(18px, 3vh, 28px) 14px !important;
  background: linear-gradient(rgba(248,250,252,.88), rgba(248,250,252,.88)), url('../images/coming-soon/printer-hero.webp') center/cover no-repeat !important;
}
.ct-customer-auth-body .ct-account-page > .container { max-width: 760px !important; }
.ct-customer-auth-body .ct-account-shell { display: block !important; max-width: 640px !important; margin: 0 auto !important; }
.ct-customer-auth-body .ct-account-copy { display: none !important; }
.ct-customer-auth-body .ct-account-panel {
  width: min(100%, 640px) !important;
  margin: 0 auto !important;
  padding: clamp(24px, 4vw, 44px) !important;
  background: rgba(255,255,255,.95) !important;
  border: 2px solid #050505 !important;
  border-top: 6px solid #e5242a !important;
  box-shadow: 0 24px 70px rgba(15,23,42,.22) !important;
}
.ct-customer-auth-body .ct-account-panel::before {
  content: 'CUSTOMER ACCOUNT';
  display: block;
  width: max-content;
  margin: 0 auto 16px;
  padding: 8px 14px;
  background: #e5242a;
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ct-customer-auth-body .ct-account-reset {
  width: min(100%, 640px) !important;
  margin: 14px auto 0 !important;
  padding: 16px !important;
  grid-template-columns: 1fr !important;
  background: rgba(255,255,255,.95) !important;
  border: 1px solid #dbe3ef !important;
  box-shadow: 0 14px 38px rgba(15,23,42,.12) !important;
}
.ct-customer-auth-body .ct-account-reset h2 { font-size: 1.35rem !important; }
.ct-customer-auth-body .ct-account-back-home {
  top: 18px !important;
  left: 18px !important;
  min-height: 42px !important;
  background: #fff !important;
  border: 1px solid #dbe3ef !important;
  box-shadow: 0 12px 28px rgba(15,23,42,.12) !important;
}

@media (max-width: 980px) {
  .ct-header { position: sticky !important; top: 0 !important; z-index: 1000 !important; background: #fff !important; }
  .ct-announcement { height: 28px !important; overflow: hidden !important; }
  .ct-announcement-track { min-height: 28px !important; align-items: center !important; }
  .ct-utility { display: none !important; }
  .ct-brand-row { min-height: 92px !important; padding: 10px 58px 8px 14px !important; display: grid !important; gap: 8px !important; }
  .ct-brand { justify-content: center !important; gap: 8px !important; }
  .ct-brand img { width: 54px !important; height: auto !important; }
  .ct-wordmark { font-size: 1.18rem !important; letter-spacing: .04em !important; }
  .ct-brand-text small { font-size: .68rem !important; }
  .ct-mobile-brand-search { display: flex !important; width: min(100%, 390px) !important; margin: 0 auto !important; }
  .ct-mobile-brand-search input { flex: 1 !important; min-height: 42px !important; font-size: .92rem !important; }
  .ct-mobile-brand-search button { width: 48px !important; min-height: 42px !important; }
  .ct-nav-wrap { position: absolute !important; top: 24px !important; right: 12px !important; width: auto !important; border: 0 !important; background: transparent !important; }
  .ct-nav-inner { padding: 0 !important; min-height: 0 !important; }
  .ct-nav-inner .menu-toggle, .menu-toggle {
    display: block !important;
    position: relative !important;
    width: 44px !important;
    height: 44px !important;
    background: #fff !important;
    border: 1px solid #cbd5e1 !important;
    z-index: 1006 !important;
    cursor: pointer !important;
  }
  .ct-nav-inner .menu-toggle span:not(.sr-only), .menu-toggle span:not(.sr-only) {
    position: absolute !important;
    left: 10px !important;
    width: 24px !important;
    height: 3px !important;
    border-radius: 2px !important;
    background: #0f172a !important;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease !important;
  }
  .ct-nav-inner .menu-toggle span:nth-of-type(2), .menu-toggle span:nth-of-type(2) {
    top: 14px !important;
  }
  .ct-nav-inner .menu-toggle span:nth-of-type(3), .menu-toggle span:nth-of-type(3) {
    top: 21px !important;
  }
  .ct-nav-inner .menu-toggle span:nth-of-type(4), .menu-toggle span:nth-of-type(4) {
    top: 28px !important;
  }
  .ct-nav-inner .menu-toggle.open span:nth-of-type(2), .menu-toggle.open span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg) !important;
  }
  .ct-nav-inner .menu-toggle.open span:nth-of-type(3), .menu-toggle.open span:nth-of-type(3) {
    opacity: 0 !important;
  }
  .ct-nav-inner .menu-toggle.open span:nth-of-type(4), .menu-toggle.open span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }
  .ct-primary-menu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: min(100%, 320px) !important;
    z-index: 1005 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    padding: 88px 20px 24px !important;
    background: #ffffff !important;
    box-shadow: -10px 0 40px rgba(15, 23, 42, 0.15) !important;
    transform: translateX(100%) !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow-y: auto !important;
  }
  .ct-primary-menu.open {
    transform: translateX(0) !important;
    left: auto !important;
    display: flex !important;
    flex-direction: column !important;
    z-index: 1005 !important;
  }
  .mobile-menu-head { display: block !important; padding: 0 0 16px !important; margin-bottom: 8px !important; border-bottom: 1px solid #e2e8f0 !important; }
  .mobile-menu-head strong { display: block !important; font-size: 1.25rem !important; font-weight: 850 !important; letter-spacing: .02em !important; color: #143a85 !important; }
  .mobile-menu-head small { display: block !important; color: #64748b !important; font-size: .8rem !important; margin-top: 2px !important; }
  .ct-primary-menu.open a,
  .ct-primary-menu.open .ct-account-cta,
  .ct-primary-menu.open .ct-cart-cta,
  .ct-primary-menu.open .ct-nav-cta {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-height: 48px !important;
    padding: 10px 16px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: transparent !important;
    color: #0f172a !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-align: left !important;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
  }
  .ct-primary-menu.open a:hover,
  .ct-primary-menu.open a.active {
    background: #f1f5f9 !important;
    color: #143a85 !important;
  }
  .ct-primary-menu.open .ct-account-cta {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    color: #143a85 !important;
    margin-top: 14px !important;
  }
  .ct-primary-menu.open .ct-account-cta i {
    margin-right: 12px !important;
    font-size: 1.1rem !important;
    color: #143a85 !important;
  }
  .ct-primary-menu.open .ct-cart-cta {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    color: #0f172a !important;
  }
  .ct-primary-menu.open .ct-cart-cta i {
    margin-right: 12px !important;
    font-size: 1.1rem !important;
    color: #0f172a !important;
  }
  .ct-primary-menu.open .ct-account-cta:hover,
  .ct-primary-menu.open .ct-cart-cta:hover {
    background: #f1f5f9 !important;
  }
  .ct-primary-menu.open .ct-nav-cta {
    background: #e5242a !important;
    color: #ffffff !important;
    justify-content: center !important;
    font-weight: 700 !important;
    margin-top: 14px !important;
    box-shadow: 0 4px 12px rgba(229, 36, 42, 0.2) !important;
  }
  .ct-primary-menu.open .ct-nav-cta:hover {
    background-color: #c21a20 !important;
  }
  .ct-primary-menu.open .ct-header-search { display: none !important; }
  body.menu-open::after {
    content: "" !important;
    position: fixed !important;
    inset: 0 !important;
    background: rgba(15, 23, 42, 0.35) !important;
    backdrop-filter: blur(2px) !important;
    z-index: 1004 !important;
    animation: ctFadeIn 0.24s ease-out !important;
  }
  @keyframes ctFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
}

@media (max-width: 720px) {
  .ct-customer-auth-body .ct-account-page { padding-top: 82px !important; align-items: start !important; }
  .ct-customer-auth-body .ct-account-panel { padding: 20px 16px !important; }
  .ct-customer-auth-body .ct-account-back-home { position: absolute !important; top: 14px !important; left: 14px !important; }
}

/* Product detail gallery and uploaded media */
.ct-product-gallery {
  width: 100%;
  display: grid;
  gap: 14px;
}

.ct-product-gallery-main {
  min-height: clamp(260px, 34vw, 440px);
  display: grid;
  place-items: center;
  background: #f8fafc;
  border: 1px solid #dbe3ef;
  position: relative;
  overflow: hidden;
}

.ct-product-gallery-main > img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: contain;
  padding: clamp(18px, 3vw, 34px);
  position: relative;
  z-index: 2;
}

.ct-product-gallery-main > img + .ct-product-visual-fallback {
  display: none !important;
}

.ct-product-gallery-main.has-fallback > .ct-product-visual-fallback {
  display: grid !important;
}

.ct-product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(64px, 78px));
  gap: 10px;
}

.ct-product-gallery-thumbs button {
  height: 72px;
  border: 1px solid #dbe3ef;
  background: #fff;
  padding: 6px;
  cursor: pointer;
}

.ct-product-gallery-thumbs button.is-active {
  border-color: #1e3a8a;
  box-shadow: inset 0 -3px 0 #e5232a;
}

.ct-product-gallery-thumbs img,
.ct-related-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ct-related-icon {
  overflow: hidden;
  background: #f8fafc;
}

.ct-related-icon img + i {
  display: none !important;
}

.ct-related-icon.has-fallback i {
  display: inline-flex !important;
}

@media (max-width: 760px) {
  .ct-product-gallery-main {
    min-height: 230px;
  }

  .ct-product-gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Production mobile offcanvas fix: overlay stays behind drawer, drawer owns pointer events. */
@media (max-width: 980px) {
  body.menu-open {
    overflow: hidden !important;
    touch-action: none;
  }

  .ct-header {
    isolation: isolate;
  }

  .ct-brand-row {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    gap: 12px !important;
    padding-block: 12px 10px !important;
  }

  .ct-brand-row .ct-brand {
    grid-column: 1 / -1 !important;
    justify-self: center !important;
    min-width: 0 !important;
  }

  .ct-mobile-brand-search {
    grid-column: 1 / 2 !important;
    grid-row: 2 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    align-self: center !important;
  }

  .ct-nav-wrap {
    position: static !important;
    min-height: 0 !important;
    border: 0 !important;
  }

  .ct-nav-inner {
    position: static !important;
    min-height: 0 !important;
    padding: 0 !important;
  }

  .ct-nav-inner .menu-toggle,
  .menu-toggle {
    position: absolute !important;
    top: auto !important;
    right: 16px !important;
    bottom: 10px !important;
    z-index: 1007 !important;
    display: grid !important;
    width: 44px !important;
    height: 44px !important;
    place-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #cbd5e1 !important;
    background: #ffffff !important;
    box-shadow: none !important;
    cursor: pointer !important;
  }

  .ct-nav-inner .menu-toggle::before,
  .ct-nav-inner .menu-toggle::after,
  .menu-toggle::before,
  .menu-toggle::after {
    content: none !important;
    display: none !important;
  }

  .ct-nav-inner .menu-toggle span:not(.sr-only),
  .menu-toggle span:not(.sr-only) {
    position: absolute !important;
    left: 11px !important;
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background: #07111f !important;
    opacity: 1 !important;
    transition: transform 180ms ease, opacity 180ms ease !important;
  }

  .ct-nav-inner .menu-toggle span:nth-of-type(2),
  .menu-toggle span:nth-of-type(2) { top: 14px !important; }
  .ct-nav-inner .menu-toggle span:nth-of-type(3),
  .menu-toggle span:nth-of-type(3) { top: 21px !important; }
  .ct-nav-inner .menu-toggle span:nth-of-type(4),
  .menu-toggle span:nth-of-type(4) { top: 28px !important; }

  .ct-nav-inner .menu-toggle.open span:nth-of-type(2),
  .menu-toggle.open span:nth-of-type(2) { transform: translateY(7px) rotate(45deg) !important; }
  .ct-nav-inner .menu-toggle.open span:nth-of-type(3),
  .menu-toggle.open span:nth-of-type(3) { opacity: 0 !important; }
  .ct-nav-inner .menu-toggle.open span:nth-of-type(4),
  .menu-toggle.open span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg) !important; }

  .ct-primary-menu {
    position: fixed !important;
    inset: 0 0 0 auto !important;
    width: min(85vw, 340px) !important;
    max-width: 340px !important;
    height: 100dvh !important;
    z-index: 1006 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    padding: 24px 18px max(28px, env(safe-area-inset-bottom)) !important;
    background: #ffffff !important;
    color: #07111f !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    box-shadow: -18px 0 42px rgba(7, 17, 31, 0.22) !important;
    transform: translate3d(100%, 0, 0) !important;
    transition: transform 260ms cubic-bezier(.22, 1, .36, 1) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .ct-primary-menu.open {
    transform: translate3d(0, 0, 0) !important;
  }

  .mobile-menu-head {
    display: block !important;
    padding: 0 48px 18px 0 !important;
    margin: 0 0 10px !important;
    border-bottom: 1px solid #e2e8f0 !important;
  }

  .mobile-menu-head strong {
    display: block !important;
    color: #143a85 !important;
    font-size: 1.08rem !important;
    font-weight: 950 !important;
    line-height: 1.15 !important;
  }

  .mobile-menu-head small {
    display: block !important;
    margin-top: 4px !important;
    color: #64748b !important;
    font-size: .78rem !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
  }

  .ct-primary-menu a,
  .ct-primary-menu .ct-cart-cta,
  .ct-primary-menu .ct-nav-cta {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-height: 46px !important;
    width: 100% !important;
    padding: 11px 12px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    color: #07111f !important;
    font-size: .98rem !important;
    font-weight: 850 !important;
    line-height: 1.2 !important;
    text-align: left !important;
    text-decoration: none !important;
    box-shadow: none !important;
    pointer-events: auto !important;
  }

  .ct-primary-menu a + a,
  .ct-primary-menu a + .ct-cart-cta,
  .ct-primary-menu .ct-cart-cta + .ct-nav-cta {
    border-top: 1px solid #edf2f7 !important;
  }

  .ct-primary-menu a:hover,
  .ct-primary-menu a:focus-visible,
  .ct-primary-menu a.active {
    background: #f8fafc !important;
    color: #143a85 !important;
    outline: none !important;
  }

  .ct-primary-menu .ct-header-search,
  .ct-primary-menu .ct-account-cta {
    display: none !important;
  }

  .ct-primary-menu .ct-cart-cta {
    margin-top: 14px !important;
    border: 1px solid #07111f !important;
    justify-content: center !important;
  }

  .ct-primary-menu .ct-nav-cta {
    margin-top: 10px !important;
    justify-content: center !important;
    background: #e5242a !important;
    color: #ffffff !important;
    border: 1px solid #e5242a !important;
  }

  body.menu-open::after {
    content: "" !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 1002 !important;
    background: rgba(7, 17, 31, 0.54) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    animation: ctOffcanvasOverlayIn 180ms ease-out both !important;
  }

  @keyframes ctOffcanvasOverlayIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
}

@media (max-width: 420px) {
  .ct-brand-row {
    gap: 10px !important;
  }

  .ct-mobile-brand-search input {
    font-size: .9rem !important;
  }

  .ct-nav-inner .menu-toggle,
  .menu-toggle {
    right: 12px !important;
  }
}

/* Production error pages */
.ct-error-page {
  min-height: 58vh;
  display: grid;
  align-items: center;
  background: #f5f7fb;
  border-top: 5px solid #143a85;
  border-bottom: 5px solid #e5242a;
}
.ct-error-page.ct-error-403 { border-top-color: #07111f; border-bottom-color: #ffd500; }
.ct-error-page.ct-error-404 { border-top-color: #00aeef; border-bottom-color: #143a85; }
.ct-error-page.ct-error-500 { border-top-color: #e5242a; border-bottom-color: #07111f; }
.ct-error-shell {
  max-width: 820px;
  padding-block: clamp(54px, 8vw, 92px);
}
.ct-error-mark {
  width: 64px;
  min-width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #07111f;
  background: #ffd500;
  border: 3px solid #07111f;
  font-weight: 950;
  font-size: 1.18rem;
  margin-bottom: 22px;
}
.ct-error-404 .ct-error-mark { background: #00aeef; color: #ffffff; }
.ct-error-500 .ct-error-mark { background: #e5242a; color: #ffffff; }
.ct-error-shell h1 {
  max-width: 790px;
  margin: 0 0 16px;
  color: #07111f;
  font-size: clamp(2.25rem, 5vw, 4.7rem);
  line-height: 1;
  letter-spacing: 0;
}
.ct-error-shell p:not(.eyebrow) {
  max-width: 680px;
  color: #40506a;
  font-size: 1.05rem;
  line-height: 1.7;
}
.ct-error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
@media (max-width: 640px) {
  .ct-error-page { min-height: 52vh; }
  .ct-error-shell { padding-block: 40px; }
  .ct-error-actions { flex-direction: column; align-items: stretch; }
  .ct-error-actions .ct-btn { justify-content: center; }
}

@media (max-width: 980px) {
  .ct-nav-inner .menu-toggle.open,
  .menu-toggle.open {
    position: fixed !important;
    top: 16px !important;
    right: 16px !important;
    bottom: auto !important;
    z-index: 1007 !important;
  }
}

/* Final mobile drawer overlay: real element behind drawer, never above it. */
.ct-menu-overlay {
  display: none;
}

@media (max-width: 980px) {
  .ct-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1002;
    display: block;
    background: rgba(7, 17, 31, 0.56);
    border: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .ct-menu-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.menu-open::after {
    content: none !important;
    display: none !important;
  }

  .ct-primary-menu.open {
    opacity: 1 !important;
    filter: none !important;
    backdrop-filter: none !important;
    pointer-events: auto !important;
  }
}
/* Customer auth alignment with team/developer login shell. */
.ct-customer-auth-body .ct-customer-auth-full {
  min-height: 100vh;
}

.ct-customer-auth-body .ct-customer-auth-card {
  max-width: 680px;
}

.ct-customer-auth-body .ct-auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 18px 0 18px;
  border: 1px solid #d6e0ee;
}

.ct-customer-auth-body .ct-auth-tabs button {
  min-height: 48px;
  border: 0;
  background: #fff;
  color: #07111f;
  font-weight: 900;
  cursor: pointer;
}

.ct-customer-auth-body .ct-auth-tabs button.active {
  background: #1e4592;
  color: #fff;
}

.ct-customer-auth-body .ct-customer-auth-reset {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #d6e0ee;
}

.ct-customer-auth-body .ct-customer-auth-reset form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.ct-customer-auth-body .ct-customer-auth-reset .ct-kicker {
  margin-bottom: 8px;
}

@media (max-width: 760px) {
  .ct-customer-auth-body .ct-customer-auth-reset form {
    grid-template-columns: 1fr;
  }
}

.ct-related-strip {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
}

@media (max-width: 1024px) {
  .ct-related-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .ct-related-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 380px) {
  .ct-related-strip {
    grid-template-columns: 1fr !important;
  }
}