@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@400;500;600;700;800&family=Merriweather:wght@300;400;700&display=swap');

@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0&icon_names=border_color,box,counter_1,counter_2,counter_3,credit_card,indeterminate_question_box,mobile_charge,outgoing_mail,phone_in_talk,stacks,timer,upload");

/* ====================================================================
   Branded Contigo - styles
   ==================================================================== */

/* ── Scroll fade-in ─────────────────────────────────────────────────
   Add class="fade-in" to any container to opt in.
   Siblings with .fade-in inside the same parent get auto-staggered.
   ─────────────────────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

:root {
  --text: #212121;
  --text-sub: #3d3d3d;
  --bg: #ffffff;
  --bg-soft: #f7f7f7;
  --line: #d2d2d7;
  --brand: #55d4f4;
  --brand-2: #21819c;
  --accent: #28b3a5;
  --warn: #3f3f3f;
  --danger: #c74b2f;
}

body {
  font-family: 'Merriweather', Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  text-decoration: underline;
}

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

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  font-weight: 700;
  color: var(--text);
  font-family: 'Dosis', -apple-system, "system-ui", sans-serif;
  text-transform: uppercase;
}

h1 {
  font-size: 56px;
  line-height: 1.1;
}

h2 {
  font-size: 36px;
  line-height: 1.15;
}

h3 {
  font-size: 22px;
}

p {
  margin: 0 0 1em;
}

.contain {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- header ---------- */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #000;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: block;
  width: 250px;
}

nav#mainNav {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav#mainNav a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .01em;
  font-family: 'Dosis', -apple-system, "system-ui", sans-serif;
  text-transform: uppercase;
}

nav#mainNav a:hover {
  color: var(--brand);
  text-decoration: none;
}

nav#mainNav a.btn-quote {
  background: var(--brand-2);
  color: #fff;
  padding: 8px 18px;
  border-radius: 980px;
  font-size: 16px;
  font-weight: 600;
}

nav#mainNav a.btn-quote:hover {
  background: var(--brand);
}

.hamburger {
  display: none;
  background: none;
  border: 0;
  width: 34px;
  height: 34px;
  position: relative;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  transition: .25s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  z-index: 90;
}

.nav-backdrop.active {
  display: block;
}

main {
  padding-top: 80px;
}

[id] {
  scroll-margin-top: 80px;
}

/* ---------- hero ---------- */

.hero-wrapper {
  background: url(../images/light-texture-lg.jpg) no-repeat center center;
  background-size: cover;
  padding: 40px 0;
}

.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 650px;
  aspect-ratio: 1;
}

.hero-carousel .carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .9s ease;
  background: transparent;
  padding: 0;
}

.hero-carousel .carousel-slide.active {
  opacity: 1;
}

.hero-carousel .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-left {
  padding: 20px 0;
}

.hero-logo {
  font-size: 14px;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-weight: 600;
}

.hero-logo span {
  color: #000;
}

.hero-headline {
  font-size: 45px;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.hero-description {
  font-size: 18px;
  color: #000;
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 26px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  padding: 12px 26px;
  border: 0;
  border-radius: 980px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  font-family: 'Dosis', -apple-system, "system-ui", sans-serif;
  text-decoration: none;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--brand-2);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand);
  text-decoration: none;
  color: #fff;
}

.btn-secondary {
  background: var(--bg-soft);
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--line);
  text-decoration: none;
  color: var(--text);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--text);
  color: var(--text);
}

.btn-outline:hover {
  background: var(--text);
  color: #fff;
  text-decoration: none;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 15px;
}

.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

/* ---------- products section ---------- */

.products-section {
  background: var(--bg-soft);
  padding: 60px 0 80px;
}

.products-section.home {
  background: #ececec;
}

.products-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.products-heading {
  text-align: center;
  font-size: 38px;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}

.products-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
  color: var(--text-sub);
  font-size: 16px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px 32px;
}

.product-card {
  text-align: center;
  transition: transform .2s;
}

.product-card a {
  display: block;
  color: var(--text);
  padding: 0;
}

.product-card a:hover {
  text-decoration: none;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card .product-sub {
  font-size: 13px;
  color: var(--text-sub);
  margin: 2px 0 8px;
  padding: 0 8px;
  min-height: 32px;
}

.product-image {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 18px;
  aspect-ratio: 1 / 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s;
}

.product-card:hover .product-image {
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 15px;
}

.product-image .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--warn);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  letter-spacing: .5px;
  text-transform: uppercase;
  z-index: 1;
  font-family: 'Dosis', -apple-system, "system-ui", sans-serif;
}

.product-image .tag.clearance {
  background: var(--danger);
}

.product-name {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 6px;
  color: var(--text);
  padding: 0 8px;
}

.product-price {
  font-size: 15px;
  color: var(--text-sub);
  margin: 0;
  padding: 0 8px;
}

/* ---------- quote form ---------- */

.inline-icon {
  vertical-align: bottom;
  margin-right: 10px;
  font-size: 1.5rem;
}

.contact-section {
  padding: 90px 0;
  background: var(--bg-soft);
}

.contact-cta {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  padding: 0 34px;
}

.contact-cta h2 {
  font-size: 35px;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.contact-cta > p {
  color: var(--text-sub);
  font-size: 17px;
  line-height: 1.55;
}

.contact-info {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-info p {
  margin-bottom: 0;
  font-size: 1rem;
}

.contact-cta .btn {
  margin-top: 32px;
}

/* ---------- footer ---------- */

footer {
  background: var(--text);
  color: #fff;
  padding: 50px 0 24px;
}

footer .contain {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

footer h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 700;
}

footer p,
footer a {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

footer a:hover {
  color: #fff;
  text-decoration: none;
}

footer .legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 20px;
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6;
}

/* ====================================================================
   product detail page
   ==================================================================== */

.productblock {
  padding: 30px 0 80px;
}

.shop-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* sticky image column */

.sp-images {
  position: sticky;
  top: 90px;
}

.sp-main {
  background: var(--bg-soft);
  border-radius: 24px;
  padding: 36px;
  aspect-ratio: 1 / 1;
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sp-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 40px;
  background: #fff;
}

.sp-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.sp-thumbs .thumb {
  width: 96px;
  height: 96px;
  padding: 10px;
  background: var(--bg-soft);
  border-radius: 12px;
  cursor: pointer;
  transition: .15s;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sp-thumbs .thumb.active {
  border-color: var(--text);
}

.sp-thumbs .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  background: #fff;
}

/* info + configurator column */

.sp-info h1 {
  font-size: 40px;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.sp-info .sp-sub {
  margin-bottom: 18px;
}

.sp-desc {
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 22px;
}

.sp-msrp {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 0 0 30px;
}

.sp-msrp small {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sub);
  margin-left: 4px;
  display: inline;
}

.ph-status {
  display: inline-block;
  background: var(--warn);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: .5px;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 8px;
}

.ph-status.clearance {
  background: var(--danger);
}

/* configurator pages */

.page1.hidden,
.page2.hidden {
  display: none;
}

.quotebox {
  background: var(--bg-soft);
  padding: 22px 24px;
  border-radius: 14px;
  margin-bottom: 28px;
}

.quotebox h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.quotebox p {
  font-size: 14px;
  color: var(--text-sub);
  margin: 0 0 12px;
}

.start-title {
  font-size: 22px;
  margin-bottom: 6px;
}

.start-desc {
  font-size: 14px;
  color: var(--text-sub);
  margin-bottom: 20px;
}

.sp-features {
  margin-top: 40px;
  padding: 26px;
  background: var(--bg-soft);
  border-radius: 18px;
}

.sp-features h3 {
  font-size: 18px;
  margin-bottom: 14px;
}

.sp-features ul {
  margin: 0;
  padding-left: 20px;
}

.sp-features li {
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--text);
}

.sp-dims {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-sub);
}

/* step indicators */

.page2 {
  margin-top: 10px;
}

.step-panel {
  display: block;
  margin-top: 32px;
}

.step-panel:first-child {
  margin-top: 0;
}

.step-panel h3 {
  font-size: 22px;
  margin-bottom: 6px;
  letter-spacing: -.01em;
}

.step-panel .sub {
  color: var(--text-sub);
  font-size: 14px;
  margin-bottom: 24px;
}

/* color picker */

.color-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.color-opt {
  cursor: pointer;
  text-align: center;
  transition: .15s;
}

.color-opt .sw {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
  overflow: hidden;
  transition: .15s;
}

.color-opt .sw img {
  max-width: 100%;
  max-height: 100%;
  padding: 4px;
}

.color-opt.active .sw {
  border-color: var(--text);
}

.color-opt .cn {
  font-size: 12px;
  color: var(--text-sub);
  font-weight: 500;
}

.color-opt.active .cn {
  color: var(--text);
  font-weight: 600;
}

/* qty control */

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  width: 44px;
  height: 44px;
  border: 0;
  background: #fff;
  font-size: 20px;
  cursor: pointer;
  color: var(--text);
  transition: .1s;
}

.qty-btn:hover {
  background: var(--bg-soft);
}

#qty-input {
  width: 80px;
  height: 44px;
  text-align: center;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  color: var(--text);
}

#qty-input:focus {
  outline: 0;
}

.moq-warning {
  color: var(--danger);
  font-size: 13px;
  margin-top: 6px;
  opacity: 0;
  transition: .2s;
  min-height: 18px;
}

.moq-warning.visible {
  opacity: 1;
}

.live-price {
  font-size: 32px;
  font-weight: 700;
  margin-top: 14px;
  letter-spacing: -.01em;
}

.live-total {
  font-size: 15px;
  color: var(--text-sub);
  margin-top: 4px;
}

/* pricing tier table */

.tier-table-wrap {
  margin-top: 26px;
}

.tier-table-wrap h4 {
  font-size: 13px;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 10px;
}

#ref-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-soft);
  border-radius: 12px;
  overflow: hidden;
}

#ref-table th {
  background: var(--bg-soft);
  padding: 12px 18px;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-sub);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

#ref-table td {
  padding: 10px 18px;
  font-size: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, .04);
}

#ref-table tr:last-child td {
  border-bottom: 0;
}

#ref-table tr.active-tier td {
  background: #fdfdfd;
  font-weight: 700;
  color: var(--brand-2);
}

/* upload */

.upload-zone {
  border: 2px dashed var(--line);
  border-radius: 18px;
  padding: 50px 24px;
  text-align: center;
  cursor: pointer;
  transition: .15s;
  background: var(--bg-soft);
}

.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--brand-2);
  background: #f0f6ff;
}

.upload-zone .icon {
  font-size: 42px;
  color: var(--text-sub);
  margin-bottom: 10px;
  line-height: 1;
}

.upload-zone strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text);
}

.upload-zone .hint {
  color: var(--text-sub);
  font-size: 13px;
  margin-top: 6px;
}

.upload-zone input {
  display: none;
}

.upload-preview {
  display: none;
  background: #eef7f1;
  border: 1px solid #bfe5cc;
  border-radius: 14px;
  padding: 16px;
  align-items: center;
  gap: 14px;
}

.upload-preview.visible {
  display: flex;
}

.upload-preview .file-icon {
  font-size: 32px;
}

.upload-preview .file-meta {
  flex: 1;
}

.upload-preview .file-meta strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.upload-preview .file-meta span {
  color: var(--text-sub);
  font-size: 12px;
}

.upload-preview button {
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 22px;
  color: var(--text-sub);
  padding: 4px 10px;
}

.skip-upload {
  display: block;
  text-align: center;
  margin-top: 16px;
  color: var(--text-sub);
  font-size: 13px;
}

/* shipping form */

.ship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ship-group {
  display: flex;
  flex-direction: column;
}

.ship-group.full {
  grid-column: 1 / -1;
}

.ship-group label {
  font-size: 12px;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: .6px;
  font-weight: 600;
  margin-bottom: 5px;
}

.ship-group label .req {
  color: var(--danger);
  margin-left: 3px;
}

.ship-group input,
.ship-group select,
.ship-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: .15s;
}

.ship-group input:focus,
.ship-group select:focus,
.ship-group textarea:focus {
  outline: 0;
  border-color: var(--brand-2);
}

.ship-group.has-error input,
.ship-group.has-error select {
  border-color: var(--danger);
}

.ship-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* step nav */

.step-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 34px;
  align-items: center;
}

.btn-hidden {
  visibility: hidden;
}

/* order recap */

.order-recap {
  margin: 30px 0;
  padding: 20px 22px;
  background: var(--bg-soft);
  border-radius: 14px;
}

.recap-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.recap-row:last-of-type {
  border-bottom: 0;
}

.recap-row span {
  color: var(--text-sub);
}

.recap-row strong {
  color: var(--text);
  font-weight: 600;
  text-align: right;
}

.recap-row.total {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 2px solid var(--text);
  border-bottom: 0;
  font-size: 16px;
}

.recap-row.total strong {
  font-size: 20px;
  font-weight: 700;
}

.submit-note {
  color: var(--text-sub);
  font-size: 12px;
  text-align: right;
  margin-top: 15px;
}

/* success overlay */

.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(29, 29, 31, .9);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.success-overlay.visible {
  display: flex;
}

.success-box {
  background: #fff;
  border-radius: 24px;
  padding: 50px 40px;
  max-width: 480px;
  text-align: center;
}

.success-box .check {
  width: 70px;
  height: 70px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
}

.success-box h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.success-box p {
  color: var(--text-sub);
  margin-bottom: 24px;
}

/* ---------- why / stats ---------- */

.why-section {
  background: url(../images/why-contigo-bg-lg-light.jpg) no-repeat center center;
  background-size: cover;
  color:#000;
}

.why-overlay {
  padding: 100px 0;
}

.why-img-mobile {
  display: none;
}

.why-section h2,
.why-section p {
  color: #000;
}

/* ---------- process ---------- */

.process-section {
  padding: 90px 0;
  background: url(../images/dark-texture-lg.jpg) no-repeat center center;
  background-size: cover;
}

.process-section h2,
.process-section h3,
.process-section p {
  color: #fff;
}

.section-heading {
  text-align: center;
  font-size: 36px;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.process-step {
  border-radius: 18px;
  padding: 24px 0 0 0;
  text-align: center;
}

.process-step .step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 5px solid;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 45px;
  margin-bottom: 16px;
  font-family: 'Dosis', -apple-system, "system-ui", sans-serif;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 16px;
  line-height: 1.55;
}

/* ---------- FAQ ---------- */

.faq-section {
  padding: 60px 0 80px 0;
  background: var(--brand-2);
}

.faq-section .section-heading {
  margin-left: auto;
  margin-right: auto;
  font-size: 32px;
  color: #fff;
}

.faq-list {
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #fff;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: none;
  border: 0;
  padding: 22px 0;
  text-align: left;
  cursor: pointer;
  font-family: 'Dosis', -apple-system, "system-ui", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.01em;
  font-size: 20px;
}

.faq-q:hover {
  color: var(--bg-soft);
}

.faq-icon {
  flex-shrink: 0;
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.faq-icon::before {
  width: 2px;
  height: 18px;
  top: 0;
  left: 8px;
}

.faq-icon::after {
  width: 18px;
  height: 2px;
  top: 8px;
  left: 0;
}

.faq-item.open .faq-icon::before {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-item.open .faq-a {
  max-height: 600px;
}

.faq-a > div {
  padding-bottom: 22px;
}

.faq-a p {
  color: #fff;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* ---------- breadcrumbs ---------- */

.breadcrumbs {
  padding: 20px 0 0;
  font-size: 13px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--text-sub);
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li + li::before {
  content: "\2023";
  color: var(--text-sub);
}

.breadcrumbs a {
  color: var(--text-sub);
}

.breadcrumbs a:hover {
  color: var(--text);
}

.breadcrumbs li[aria-current] {
  color: var(--text);
  font-weight: 500;
}

/* ---------- SEO content block ---------- */

.seo-content {
  padding: 70px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.seo-content .contain {
  max-width: 1200px;
}

.seo-content h2 {
  font-size: 28px;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}

.seo-content h3 {
  font-size: 20px;
  margin: 26px 0 8px;
}

.seo-content p {
  color: var(--text-sub);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.seo-content strong {
  color: var(--text);
}

.related-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 60px;
}

.related-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  transition: transform .15s, box-shadow .15s;
  color: var(--text);
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
  text-decoration: none;
  color: var(--text);
}

.related-image {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.related-name {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 2px;
  color: var(--text);
}

.related-price {
  font-size: 12px;
  color: var(--text-sub);
  margin: 0;
}

/* ---------- mobile ---------- */

@media (max-width: 992px) {

  .hero-headline,
  .hero-description {
    text-align: center;
  }

  .hero-description {
    max-width: none;
  }

  .hero-wrapper .btn-lg {
    display: block;
    margin: 0 auto;
  }

  .hero-ctas {
    padding-bottom: 40px;
  }

  .why-section {
    background: none;
  }

  .why-section h2,
  .why-section p {
    color: #000;
  }

  .why-overlay {
    background: none;
    padding: 60px 0 20px;
    text-align: center;
    background: #f5f6f8;
  }

  .why-img-mobile {
    display: block;
    width: 100%;
    height: 500px;
    background: url(../images/why-contigo-bg-mobile.jpg) no-repeat top left;
    background-size: cover;
  }
}

@media (max-width: 840px) {

  h1,
  .hero-headline {
    font-size: 35px;
  }

  h2 {
    font-size: 28px;
  }

  nav#mainNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #1e1e1e;
    flex-direction: column;
    align-items: stretch;
    padding: 80px 30px 30px;
    transition: right .25s;
    gap: 24px;
    text-align: center;
  }

  nav#mainNav.open {
    right: 0;
  }

  nav#mainNav a.btn-quote {
    text-align: center;
  }

  .hamburger {
    display: block;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
  }

  .product-image {
    padding: 14px;
    border-radius: 14px;
  }

  .shop-product {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sp-images {
    position: static;
  }

  .sp-main {
    padding: 24px;
    max-height: none;
  }

  .sp-info h1 {
    font-size: 28px;
  }

  .sp-msrp {
    font-size: 26px;
  }

  .ship-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
 
  .process-steps {
    grid-template-columns: 1fr;
  }

  footer .contain {
    grid-template-columns: 1fr;
    gap: 24px;
  }

}

@media (max-width: 540px) {
   .related-products {
    grid-template-columns: 1fr;
  }
}

/* ======================================================================
   Quote Cart — drawer, product card footer, and cart UI
   ====================================================================== */

/* ─── Header cart button ─── */
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  transition: background .2s;
  font-family: 'Dosis', -apple-system, "system-ui", sans-serif;
  text-transform: uppercase;
  letter-spacing: .03em;
  white-space: nowrap;
}
.cart-btn:hover { background: rgba(255,255,255,.12); }
.cart-btn svg { flex-shrink: 0; }

.cart-count {
  background: var(--brand-2);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-count.is-empty { display: none; }

/* ─── Product card footer ─── */
.product-card-foot {
  padding: 0 0 8px;
}

.btn-add-quote {
  background: var(--brand-2);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  cursor: pointer;
  font-family: 'Dosis', -apple-system, "system-ui", sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: background .15s, transform .15s;
  flex-shrink: 0;
}
.btn-add-quote:hover { background: var(--brand); color: #000; transform: translateY(-1px); }
.btn-add-quote:active { transform: translateY(0); }

/* ─── Overlay ─── */
.cc-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 105;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.cc-overlay.is-open { opacity: 1; pointer-events: auto; }

/* ─── Drawer ─── */
.cc-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: 100%;
  max-width: 440px;
  background: #fff;
  transform: translateX(105%);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
  z-index: 110;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 50px rgba(0,0,0,.2);
}
.cc-drawer.is-open { transform: translateX(0); }

.cc-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.cc-drawer__head h3 {
  font-family: 'Dosis', -apple-system, "system-ui", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin: 0;
  color: var(--text);
}
.cc-drawer__close {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: none; border: 0; cursor: pointer;
  color: var(--text);
  transition: background .2s;
  flex-shrink: 0;
}
.cc-drawer__close:hover { background: var(--bg-soft); }
.cc-drawer__close svg { width: 18px; height: 18px; }

.cc-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 22px;
  -webkit-overflow-scrolling: touch;
}
.cc-drawer__foot {
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  flex-shrink: 0;
}

/* ─── Cart empty state ─── */
.cc-cart-empty {
  text-align: center;
  padding: 50px 20px;
}
.cc-cart-empty svg {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  color: var(--line);
}
.cc-cart-empty h4 {
  font-family: 'Dosis', -apple-system, "system-ui", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--text);
  margin: 0 0 8px;
}
.cc-cart-empty p { font-size: 14px; color: var(--text-sub); margin: 0; }

/* ─── Cart items ─── */
.cc-cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.cc-cart-item:last-of-type { border-bottom: 0; }

.cc-cart-item__img {
  width: 70px; height: 70px;
  background: var(--bg-soft);
  border-radius: 10px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cc-cart-item__img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }

.cc-cart-item__info h5 {
  font-family: 'Dosis', -apple-system, "system-ui", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--text);
  margin: 0 0 3px;
  line-height: 1.3;
}
.cc-cart-item__meta { font-size: 12px; color: var(--text-sub); margin-bottom: 10px; }
.cc-cart-item__warn { font-size: 11px; color: var(--danger); margin-top: 5px; }

/* ─── Qty control in drawer ─── */
.cc-qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  height: 30px;
}
.cc-qty button {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: 0; cursor: pointer;
  font-size: 16px; font-weight: 500;
  color: var(--text-sub);
  transition: background .12s;
}
.cc-qty button:hover { background: var(--bg-soft); }
.cc-qty button:disabled { opacity: .3; cursor: not-allowed; }
.cc-qty input {
  width: 48px;
  text-align: center;
  background: transparent;
  border: 0;
  font-size: 13px; font-weight: 600;
  color: var(--text);
  -moz-appearance: textfield;
}
.cc-qty input::-webkit-outer-spin-button,
.cc-qty input::-webkit-inner-spin-button { -webkit-appearance: none; }

.cc-cart-item__right { text-align: right; }
.cc-cart-item__price {
  font-family: 'Dosis', -apple-system, "system-ui", sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.cc-cart-item__remove {
  background: none; border: 0; cursor: pointer;
  font-size: 11px; color: var(--text-sub);
  text-decoration: underline; text-underline-offset: 2px;
  transition: color .15s;
}
.cc-cart-item__remove:hover { color: var(--danger); }

/* ─── Cart note ─── */
.cc-cart-note {
  margin-top: 14px;
  padding: 12px 14px;
  background: #edf5fb;
  border: 1px solid #b8d9ed;
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--text-sub);
  display: flex; gap: 10px; align-items: flex-start;
}
.cc-cart-note svg { width: 15px; height: 15px; color: var(--brand-2); flex-shrink: 0; margin-top: 2px; }

/* ─── Cart total + CTA ─── */
.cc-cart-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 14px;
}
.cc-cart-total strong { font-size: 13px; color: var(--text-sub); font-weight: 500; }
.cc-cart-total span {
  font-family: 'Dosis', -apple-system, "system-ui", sans-serif;
  font-size: 24px; font-weight: 700;
  color: var(--text);
}

.cc-drawer-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 980px;
  font-size: 14px; font-weight: 700;
  cursor: pointer;
  font-family: 'Dosis', -apple-system, "system-ui", sans-serif;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: all .15s;
  text-decoration: none;
  margin-top: 8px;
}
.cc-drawer-btn-primary { background: var(--brand-2); color: #fff; }
.cc-drawer-btn-primary:hover { background: var(--brand); color: #000; text-decoration: none; }
.cc-drawer-btn-secondary { background: var(--bg-soft); color: var(--text); }
.cc-drawer-btn-secondary:hover { background: var(--line); text-decoration: none; }

/* ─── Mobile: hide "Quote" label text on very small screens ─── */
@media (max-width: 400px) {
  .cart-btn .cart-label { display: none; }
}

/* ======================================================================
   Out-of-stock & product-removed states
   ====================================================================== */

/* ── OOS notice (hidden until body.out-of-stock is set) ── */
.oos-notice {
  display: none;
}

body.out-of-stock .oos-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff8f0;
  border: 1px solid #f5c07a;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.oos-notice__icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.oos-notice__text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

.oos-notice__text p {
  font-size: 13px;
  color: var(--text-sub);
  margin: 0;
  line-height: 1.5;
}

.oos-notice__text a {
  color: var(--brand-2);
}

/* Dim and disable the Add to Quote button when OOS */
body.out-of-stock .btn-primary {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}

/* ── Product-removed notice (hidden until body.product-removed is set) ── */
.removed-notice {
  display: none;
}

body.product-removed .removed-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff2f2;
  border: 1px solid #f5a0a0;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.removed-notice__icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.removed-notice__text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

.removed-notice__text p {
  font-size: 13px;
  color: var(--text-sub);
  margin: 0;
  line-height: 1.5;
}

/* Hide the configurator entirely when product is removed */
body.product-removed .page2 {
  display: none;
}

/* ── Product grid card states (home page) ── */
.product-price--oos {
  color: #c0392b;
  font-weight: 600;
}

.product-card--oos .product-image {
  opacity: 0.45;
}

.product-card--removed {
  display: none;
}
