/** Shopify CDN: Minification failed

Line 21:9 Expected identifier but found whitespace
Line 21:11 Unexpected "{"
Line 21:21 Expected ":"
Line 24:9 Expected identifier but found whitespace
Line 24:11 Unexpected "{"
Line 24:21 Expected ":"
Line 27:11 Expected identifier but found whitespace
Line 27:13 Unexpected "{"
Line 27:23 Expected ":"

**/
:root {
  --white: #ffffff;
  --cream: #fafcff;
  --soft-blue: #eaf3fb;
  --soft-blue-2: #d6e7f5;
  --cyan: #7fd1e8;
  --cyan-light: #b5e3f0;
  --navy: {{ settings.color_primary | default: '#0a2540' }};
  --navy-2: #143861;
  --navy-soft: #1f4a7a;
  --text: {{ settings.color_text | default: '#1c2a3a' }};
  --text-muted: #5a6b80;
  --border: #e6eef7;
  --accent: {{ settings.color_accent | default: '#f26b2f' }};
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, .06);
  --shadow-md: 0 12px 32px rgba(10, 37, 64, .08);
  --shadow-lg: 0 24px 60px rgba(10, 37, 64, .12);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --gradient-sky: linear-gradient(180deg, #f4f9fd 0%, #eaf3fb 100%);
  --gradient-deep: linear-gradient(135deg, #0a2540 0%, #143861 60%, #1f4a7a 100%);
  --gradient-accent: linear-gradient(135deg, #7fd1e8 0%, #b5e3f0 100%);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

:root{
  --white:#ffffff;
  --cream:#fafcff;
  --soft-blue:#eaf3fb;
  --soft-blue-2:#d6e7f5;
  --cyan:#7fd1e8;
  --cyan-light:#b5e3f0;
  --navy:#0a2540;
  --navy-2:#143861;
  --navy-soft:#1f4a7a;
  --gold:#c9a94e;
  --gold-light:#f0d98a;
  --text:#1c2a3a;
  --text-muted:#5a6b80;
  --border:#e6eef7;
  --shadow-sm:0 2px 8px rgba(10,37,64,.06);
  --shadow-md:0 12px 32px rgba(10,37,64,.10);
  --shadow-lg:0 24px 60px rgba(10,37,64,.14);
  --radius-sm:10px;
  --radius:18px;
  --radius-lg:28px;
  --gradient-sky:linear-gradient(180deg,#f4f9fd 0%,#eaf3fb 100%);
  --gradient-deep:linear-gradient(135deg,#0a2540 0%,#143861 60%,#1f4a7a 100%);
  --gradient-cta:linear-gradient(135deg,#0a2540 0%,#1f4a7a 100%);
  --gradient-accent:linear-gradient(135deg,#7fd1e8 0%,#b5e3f0 100%);
  --ease:cubic-bezier(.22,.61,.36,1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.visually-hidden,
.skip-link:not(:focus) {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  z-index: 300;
  left: 16px;
  top: 16px;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.3rem);
}

h2 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
}

h3 {
  font-size: clamp(1.28rem, 2vw, 1.55rem);
}

p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--navy-soft);
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  /* padding: 14px 28px; */
  /* background: var(--navy); */
  color: #fff;
  font-size: .96rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}

.button:hover,
.button:focus-visible,
.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(10, 37, 64, .24);
}

.btn--accent,
.button--accent {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
}

.btn--light {
  border: 1.5px solid var(--soft-blue-2);
  background: rgba(255, 255, 255, .72);
  color: var(--navy);
  backdrop-filter: blur(10px);
}

.btn--light:hover {
  background: #fff;
}

.announcement {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  text-align: center;
  font-size: .86rem;
  font-weight: 750;
}

.announcement b {
  color: var(--cyan-light);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ec97f;
  box-shadow: 0 0 0 0 rgba(62, 201, 127, .55);
  animation: dotPulse 1.6s infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .78);
  border-bottom: 1px solid rgba(230, 238, 247, .8);
  backdrop-filter: saturate(180%) blur(20px);
}

.site-header__inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.site-header__brand {
  width: max-content;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.site-header__brand span span {
  color: var(--cyan);
}

.site-header__brand img {
  width: 148px;
  max-height: 48px;
  object-fit: contain;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--text);
  font-size: .92rem;
  font-weight: 700;
}

.site-header__nav a:hover {
  color: var(--navy-soft);
}

.site-header__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.cart-link {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
}

.cart-link:hover {
  border-color: var(--navy);
}

/* === HERO === */

#hero_product_desktop {
  display: none !important;
}

#hero_product_mobile {
  display: grid !important;
  margin: 20px 0px 25px 0px
}

@media (min-width: 768px) {
  #hero_product_desktop {
    display: grid !important;
  }

  #hero_product_mobile {
    display: none !important;
  }
}


.remova2-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 6vw, 72px) 0 clamp(34px, 5vw, 56px);
  background:
    radial-gradient(1000px 600px at 100% 0%, rgba(127, 209, 232, .18), transparent 60%),
    radial-gradient(800px 500px at 0% 100%, rgba(10, 37, 64, .06), transparent 60%),
    var(--gradient-sky);
}

.remova2-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 46px);
}

.remova2-hero h1 em {
  /* font-style: normal; */
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  /* -webkit-text-fill-color: transparent; */
  	font-style: italic;
	color: var(--navy-soft);
}


.hero-sub {
  max-width: 560px;
  margin-top: 16px;
  font-size: 1.14rem;
  line-height: 1.66;
}

.hero-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px;
  margin: 20px 0 20px;
}

.hero-price .now {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 800;
}

.hero-price .was {
  color: var(--text-muted);
  font-size: 1.1rem;
  text-decoration: line-through;
}

.save {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: var(--radius-sm);
  background: #ffe5cc;
  color: #a04a00;
  padding: 5px 10px;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  max-width: 560px;
}

.trust-row .item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: .92rem;
  font-weight: 750;
}

.check {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(86%, 470px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 209, 232, .34), rgba(127, 209, 232, 0) 66%);
  filter: blur(26px);
  pointer-events: none;
}

.hero-product-card {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  height: clamp(260px, 34vw, 390px);
  display: grid;
  place-items: center;
}

.hero-product-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 44px rgba(10, 37, 64, .18));
}

.pillow-badge {
  position: absolute;
  left: -18px;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 290px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  z-index: 10
}

.pillow-badge-2 {
  position: absolute;
  top: 10px;
  right: -14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  background: #fff;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  color: var(--navy);
  font-size: .84rem;
  font-weight: 800;
}

.stars {
  color: #ffc24a;
  letter-spacing: 2px;
}

.logo-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  padding: 22px 0;
}

.marquee {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 46px;
  color: var(--text-muted);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.marquee b {
  color: var(--navy);
}

.section {
  position: relative;
  padding: clamp(70px, 8vw, 112px) 0;
}

.section.alt {
  background: var(--cream);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head p {
  margin-top: 14px;
  font-size: 1.08rem;
}

.reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.reviews-stat {
  display: flex;
  align-items: center;
  gap: 18px;
}

.reviews-stat .big {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
}

.reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 0 30px;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 min(360px, 86vw);
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 320px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 30px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.review-card .quote {
  margin: 14px 0 22px;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.58;
}

.person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: var(--navy);
  font-weight: 900;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person .name {
  color: var(--navy);
  font-weight: 850;
}

.person .meta,
.verified {
  color: var(--text-muted);
  font-size: .8rem;
}

.verified {
  color: #2f8a63;
  font-weight: 850;
}

.reviews-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.reviews-controls button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
}

.split-grid,
.interactive-grid,
.buy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(28px, 5vw, 60px);
}

.split-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 48px);
}

.split-card.problem {
  border: 1px solid #ffe2cc;
  background: linear-gradient(160deg, #fff2ea 0%, #ffe8d8 100%);
}

.split-card.solution {
  background: var(--gradient-deep);
  color: #fff;
}

.split-card.solution h3,
.split-card.solution strong {
  color: #fff;
}

.split-card.solution p,
.split-card.solution li {
  color: rgba(255, 255, 255, .82);
}

.split-card h3 {
  margin-bottom: 22px;
}

.split-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.split-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
}

.split-list .ico {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .25);
  color: currentColor;
  font-weight: 900;
}

.problem .ico {
  background: #ffd5b8;
  color: #a04a00;
}

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

.benefit-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 34px 30px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: var(--soft-blue);
  color: var(--navy);
  font-weight: 900;
}

.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #e6f0fa;
  box-shadow: var(--shadow-md);
}

.media-frame img,
.media-frame video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.interactive-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.interactive-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 18px 22px;
}

.interactive-item .num {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--soft-blue);
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

.compare-wrap {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  border-bottom: 1px solid var(--border);
  padding: 20px 22px;
  text-align: left;
  font-size: .96rem;
}

.compare-table th {
  background: var(--cream);
  color: var(--navy);
}

.compare-table th.remova {
  background: var(--gradient-deep);
  color: #fff;
}

.compare-table td.remova {
  background: rgba(127, 209, 232, .06);
  color: var(--navy);
  font-weight: 850;
}

.yes {
  color: #2f8a63;
  font-weight: 900;
}

.no {
  color: #b44848;
  font-weight: 850;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 210px 210px;
  gap: 18px;
}

.lifestyle-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e6f0fa;
}

.lifestyle-card.tall {
  grid-row: span 2;
}

.lifestyle-card img,
.lifestyle-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-card .overlay {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

.lifestyle-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, .38));
}

.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--navy);
  font-size: 1.06rem;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--soft-blue);
}

.faq-item[open] summary::after {
  content: "-";
  background: var(--navy);
  color: #fff;
}

.faq-answer {
  max-width: 90%;
  padding: 0 0 24px;
  color: var(--text-muted);
}

.final-cta {
  overflow: hidden;
  background:
    radial-gradient(800px 500px at 50% 0%, rgba(127, 209, 232, .18), transparent 60%),
    var(--gradient-deep) !important;
  color: #fff;
}

.final-cta h2,
.final-cta h3 {
  color: #fff;
}

.final-cta p {
  color: rgba(255, 255, 255, .78);
}

.buy-panel {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .08);
  padding: clamp(24px, 4vw, 38px);
  backdrop-filter: blur(16px);
}

.product-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: currentColor;
  font-weight: 850;
}

.select,
.quantity {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  padding: 0 14px;
}

.quantity {
  max-width: 120px;
}

.assurance-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.assurance-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, .86);
  font-size: .84rem;
  font-weight: 750;
}

.site-footer {
  background: #061a30;
  color: rgba(255, 255, 255, .7);
  padding: 70px 0 30px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 42px;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
}

.site-footer a,
.site-footer p {
  color: rgba(255, 255, 255, .72);
}

.product-page,
.cart-page,
.simple-page {
  min-height: 60vh;
  padding: 56px 0 84px;
  background: #fff;
}

.main-product,
.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
}

.product-gallery,
.product-summary {
  display: grid;
  gap: 16px;
}

.product-gallery__main,
.product-gallery__thumb,
.product-card,
.cart-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.product-gallery__main img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-gallery__thumbs,
.collection-grid,
.product-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.product-gallery__thumb img,
.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-summary {
  align-self: start;
  position: sticky;
  top: 100px;
}

.price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--navy);
}

.price__current {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
}

.price__compare {
  color: var(--text-muted);
  text-decoration: line-through;
}

.sticky-buy {
  display: none;
}

@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(62, 201, 127, .55); }
  70% { box-shadow: 0 0 0 12px rgba(62, 201, 127, 0); }
  100% { box-shadow: 0 0 0 0 rgba(62, 201, 127, 0); }
}

@media (max-width: 920px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-header__nav {
    display: none;
  }

  .remova2-hero__grid,
  .split-grid,
  .interactive-grid,
  .buy-grid,
  .main-product,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .remova2-hero {
    text-align: center;
  }

  .hero-sub,
  .trust-row {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-price,
  .hero-cta-row {
    justify-content: center;
  }

  .reviews-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .product-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }

  .button,
  .btn {
    width: 100%;
  }

  .site-header__actions .button {
    display: none;
  }

  .trust-row,
  .benefits-grid,
  .product-gallery__thumbs,
  .product-assurance,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .lifestyle-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 190px);
  }

  .lifestyle-card.tall {
    grid-row: span 1;
  }

  .pillow-badge,
  .pillow-badge-2 {
    position: static;
    margin: 12px auto 0;
  }

  .compare-table th,
  .compare-table td {
    padding: 13px 12px;
    font-size: .84rem;
  }
}


/* ===== SCALAPAY ===== */
.scalapay{display:flex;align-items:center;gap:7px;font-size:.82rem;color:var(--text-muted);margin-bottom:18px;animation:fadeUp .8s var(--ease) .37s both}
.scalapay .sp{background:#00c4a0;color:#fff;font-size:.7rem;font-weight:800;padding:2px 7px;border-radius:4px}


/* ===== BUNDLE ===== */

.bundle-section {
  background: linear-gradient(180deg, #f7fafc 0%, #edf5f9 100%);
}

.bundle-section__header {
  margin-bottom: 38px;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.bundle-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto auto 1fr auto auto;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(16, 24, 39, 0.08);
}

.bundle-card--highlight {
  border-color: rgba(242, 107, 47, 0.46);
  box-shadow: 0 22px 48px rgba(7, 29, 58, 0.14);
}

.bundle-card__badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--color-primary);
  color: #fff;
  padding: 7px 12px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.bundle-card__qty {
  margin: 0 0 7px;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bundle-card h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.bundle-card__saving {
  width: max-content;
  max-width: 100%;
  margin: 14px 0 0;
  border-radius: var(--radius);
  background: rgba(17, 141, 87, 0.1);
  color: var(--color-success);
  padding: 7px 10px;
  font-size: 0.84rem;
  font-weight: 900;
}

.bundle-card__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 210px;
  margin: 18px 0;
  border-radius: var(--radius);
  background: #f3f7fa;
  overflow: hidden;
}

.bundle-card__media img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.bundle-card__media span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 950;
}

.bundle-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}

.bundle-card__price strong {
  color: var(--color-primary);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 950;
  line-height: 1;
}

.bundle-card__price s {
  color: var(--color-muted);
  font-size: 1rem;
}

.bundle-card__price small {
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.bundle-card__features {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.bundle-card__features li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  align-items: start;
  color: #344054;
  font-size: 0.94rem;
  font-weight: 700;
}

.bundle-card__features li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.24) 50%),
    var(--color-success);
}

.bundle-card__installments {
  margin: 0 0 14px;
  color: var(--color-muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.bundle-card__form {
  margin: 0;
}

.bundle-card .button {
  width: 100%;
}

.bundle-gift {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  border: 1px solid rgba(7, 29, 58, 0.12);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(16, 24, 39, 0.08);
}

.bundle-gift h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.bundle-gift p {
  margin: 6px 0 0;
  color: var(--color-muted);
}

@media (max-width: 920px) {
  .bundle-grid {
    grid-template-columns: 1fr;
  }

  .bundle-gift {
    align-items: stretch;
    flex-direction: column;
  }
}



/**/

.br-25 {
  border-radius: 25px !important;
}




/* === BUTTON === */

.btn-gold {
	background: linear-gradient(135deg,#c9a94e,#f0d98a);
	color: var(--navy);
	box-shadow: 0 12px 28px rgba(201,169,78,.35);
}

.btn-blu {
  background: var(--navy);
}

/* .btn-blu:hover {
  background: #fff;
} */


/* === MARGIN === */

.mb-10 {
  margin-bottom:10px !important
}