@import url('https://fonts.googleapis.com/css2?family=Unna:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* ===========================
   TABLE OF CONTENTS
=========================== */
/*
1. KEYFRAMES & ANIMATIONS
2. BUTTON STATES & PROCESSING
3. FORM ELEMENTS & INPUTS
4. WEBFLOW OVERRIDES
5. VISIBILITY UTILITIES
6. SWIPER STYLES
7. ANIMATION SYSTEM
8. RADIO STYLES
9. CHECKOUT STYLES
10. SKELETON LOADING
11. UTILITIES
12. DEMO STYLES
*/

/* ===========================
   0. MY CUSTOM STYLES
=========================== */

/* Co-Brand Logo */
.af-cobrand {
  display: flex;
  align-items: center;
  gap: 0;
  height: 40px;
}

.af-cobrand__left {
  display: flex;
  align-items: center;
  padding-right: 10px;
}

.af-cobrand__af-logo {
  height: auto;
  width: 160px;
}

.af-cobrand__divider {
  width: 1.5px;
  height: 32px;
  background: #ccc;
  flex-shrink: 0;
}

.af-cobrand__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 14px;
  gap: 2px;
}

.af-cobrand__label {
  font-size: 11px;
  font-weight: 500;
  color: #555;
  letter-spacing: 0.2px;
  line-height: 1;
  font-family: sans-serif;
}

.af-cobrand__be-logo {
  height: 18px;
  width: auto;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .af-cobrand__af-logo {
    width: 140px;
  }

  .af-cobrand__divider {
    height: 26px;
  }

  .af-cobrand__label {
    font-size: 9px;
  }

  .af-cobrand__be-logo {
    height: 14px;
  }

  .af-cobrand__left {
    padding-right: 6px;
  }

  .af-cobrand__right {
    padding-left: 10px;
  }
}

/* ===========================
   1. KEYFRAMES & ANIMATIONS
=========================== */

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes wave {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@keyframes smooth {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* PageBlock Animation Keyframes */
@keyframes pageblock-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pageblock-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-10px);
  }
  40% {
    transform: translateX(10px);
  }
  60% {
    transform: translateX(-10px);
  }
  80% {
    transform: translateX(10px);
  }
}

@keyframes pageblock-wiggle {
  0%,
  100% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}

@keyframes pageblock-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pageblock-flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0.5;
  }
}

@keyframes pageblock-tada {
  0% {
    transform: scale(1) rotate(0);
  }
  10%,
  20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

@keyframes pageblock-heartbeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}

@keyframes pageblock-swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes pageblock-rubber {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scaleX(1.25) scaleY(0.75);
  }
  40% {
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pageblock-rotate {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(180deg);
  }
}

@keyframes pageblock-rotate-360 {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pageblock-pulsate {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Button pulse animation - expands and contracts */
@keyframes button-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* ===========================
     2. BUTTON STATES & PROCESSING
  =========================== */

/* Disabled state */
.next-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Base button processing state */
.next-processing {
  opacity: 0.7;
  pointer-events: none;
}

/* Processing state content */
.next-processing [next-slot='content'] {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.next-processing [next-slot='spinner'] {
  opacity: 1;
}

/* Buttons need relative positioning */
[data-action='submit'] {
  position: relative;
}

/* Universal spinner wrapper */
[next-slot='spinner'] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.2s ease;
}
.cc-stars__wrapper {
  display: flex;
  gap: 2px;
}
/* Universal spinner */
.spinner {
  width: 100%;
  height: 100%;
  border: 2px solid rgba(128, 128, 128, 0.3);
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Spinner color variants */
.cc-light .spinner {
  border-color: rgba(0, 0, 0, 0.1);
  border-top-color: #000000;
}

.cc-dark .spinner {
  border-color: rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
}

/* ===========================
     3. FORM ELEMENTS & INPUTS
  =========================== */

/* Remove native select styling */
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  background-repeat: no-repeat;
  padding-right: 1em;
  border: 1px solid #ccc;
}

select::-ms-expand {
  display: none;
}

/* Input placeholder styling */
input::placeholder {
  color: #808080;
}

input#ship_field_intl::placeholder,
input#billing_field_intl::placeholder {
  opacity: 1;
}

/* Webkit autofill styling */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #fdf8f3 inset !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

/* ===========================
     4. WEBFLOW OVERRIDES
  =========================== */

/* Webflow Design Mode Overrides */
html.wf-design-mode [pb-accordion-element='content'] {
  max-height: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  transition: none !important;
}

html.wf-design-mode [pb-accordion-element='arrow'],
html.wf-design-mode [pb-accordion-element='plus'] {
  pointer-events: none;
}

html.wf-design-mode [pb-accordion-element='plus'] .vertical {
  transform: none !important;
}

html.wf-design-mode [pb-accordion-element='arrow'] {
  transform: none !important;
}

html.wf-design-mode [data-next-accordion-panel] {
  height: auto !important;
}

html.wf-design-mode .swiper-slide.is-thumb {
  max-height: 4rem;
  max-width: 4rem;
}

/* ===========================
     5. VISIBILITY UTILITIES
  =========================== */

.hide {
  display: none !important;
}

@media screen and (max-width: 991px) {
  .hide,
  .hide-tablet {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .hide-mobile-landscape {
    display: none !important;
  }
}

@media screen and (max-width: 479px) {
  .hide-mobile {
    display: none !important;
  }
}

/* ===========================
     6. SWIPER STYLES
  =========================== */

.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

/* ===========================
     7. ANIMATION SYSTEM
  =========================== */

/* Animation Attributes */
[pb-animate='pulse'] {
  animation: pageblock-pulse 1s ease infinite;
}

[pb-animate='shake'] {
  animation: pageblock-shake 0.8s ease-in-out;
}

[pb-animate='wiggle'] {
  animation: pageblock-wiggle 0.8s ease-in-out;
}

[pb-animate='bounce'] {
  animation: pageblock-bounce 1s ease infinite;
}

[pb-animate='flash'] {
  animation: pageblock-flash 1s ease infinite;
}

[pb-animate='tada'] {
  animation: pageblock-tada 1s ease;
}

[pb-animate='heartbeat'] {
  animation: pageblock-heartbeat 1.5s ease infinite;
}

[pb-animate='swing'] {
  transform-origin: top center;
  animation: pageblock-swing 1s ease;
}

[pb-animate='rubber'] {
  animation: pageblock-rubber 0.8s ease;
}

[pb-animate='rotate'] {
  animation: pageblock-rotate 2.5s ease-in-out infinite forwards;
}

[pb-animate='rotate-360'] {
  animation: pageblock-rotate-360 2s linear infinite;
}

[pb-animate='pulsate'] {
  animation: pageblock-pulsate 1s ease-out infinite;
}

/* Animation Modifiers */
[pb-animate-count='once'] {
  animation-iteration-count: 1;
}

[pb-animate-count='infinite'] {
  animation-iteration-count: infinite;
}

[pb-animate-speed='fast'] {
  animation-duration: 0.5s;
}

[pb-animate-speed='slow'] {
  animation-duration: 2s;
}

[pb-animate-state='pause'] {
  animation-play-state: paused;
}

[pb-animate-pause='2s'] {
  animation-duration: 3s !important;
  animation-timing-function: cubic-bezier(0.8, 0, 0.2, 1) !important;
  animation-fill-mode: both;
}

/* ===========================
     8. RADIO STYLES
  =========================== */

/* Base radio styles */
.radio-style-1,
.radio-style-2,
.radio-default {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  background: #fff;
  position: relative;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.radio-style-none {
  display: none;
}

.radio-inner {
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Selected state styles */
.next-selected .radio-style-1 {
  border: 0.1875rem solid #fff;
  background: var(--radio-color, #000);
  box-shadow: 0 0 0 0.125rem var(--radio-color, #000);
}

.next-selected .radio-style-1 .radio-inner {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--radio-color, #000);
}

.next-selected .radio-style-2 {
  border-width: 0.3125rem;
  border-color: var(--radio-color, #000);
  background: #fff;
  box-shadow: 0 0 0 0.0625rem var(--radio-color, #000);
}

.next-selected .radio-style-2 .radio-inner {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: #fff;
}

.next-selected .radio-default {
  border: 0.1875rem solid #fff;
  background: var(--radio-color, #000);
  box-shadow: 0 0 0 0.125rem var(--radio-color, #000);
}

.next-selected .radio-default .radio-inner {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--radio-color, #000);
}

/* ===========================
     9. CHECKOUT STYLES
  =========================== */

/* Preloader */
.preloader {
  position: fixed;
  display: grid;
  place-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #fff;
  transition: opacity 0.2s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.preloader::before {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  border: 1px solid color-mix(in hsl, #000, transparent 50%);
  border-radius: 50%;
  border-top-color: transparent;
  border-right-color: transparent;
  animation: spin 0.6s linear infinite;
  transition: opacity 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.wf-design-mode .preloader,
.site-scrollbar .preloader {
  display: none;
}

[data-os-checkout-ready='true'] .preloader {
  opacity: 0;
  pointer-events: none;
}

/* Checkmark visibility */
.pb-component-checkmark [os-component='check'] {
  display: none;
}

.checkout-bump__head[class*='os--active']
  .pb-component-checkmark
  [os-component='check'] {
  display: flex;
}

.upsell__header [os-component='check'] {
  display: none;
}

.upsell__header.os--active [os-component='check'] {
  display: flex;
}

/* Cart scroll hint */
.cart-items__scroll-hint {
  display: none;
}

.cart-items:has(.cart-item:nth-child(4)) .cart-items__scroll-hint {
  display: flex;
}

/* Hide the auto-added rewards item (packageId 46) */
.cart-item[data-package-id='46'] {
  display: none !important;
}

/* Cart title formatting for cover upsell items */
.cc-cover-cart-title-line {
  display: block;
}

.cc-cover-cart-dim {
  font-weight: 600;
}

.cc-cover-cart-color {
  display: block;
  margin-top: 2px;
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
}

/* ===========================
     Cover Upsell (wblanket)
  =========================== */
.cc-cover__upsell-text-wrapper {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;
}
.cc-cover__upsell-title {
  font-weight: 800;
  font-size: 20px;
}
.cc-cover__upsell-special {
  font-weight: 800;
  font-size: 15px;
  background: #fffd96;
  padding-inline: 4px;
}
.cc-cover__upsell-price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.cc-cover__upsell-old-price {
  font-weight: 400;
  font-size: 15px;
  position: relative;
}
.cc-cover__upsell-old-price::after {
  content: '';
  position: absolute;
  left: 0;
  top: 49%;
  right: 0;
  border-top: 2px solid red;
}
.cc-cover__upsell-new-price {
  font-size: 15px;
  font-weight: 800;
}
.cc-cover__upsell-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.cc-cover__item {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 2px solid color-mix(in hsl, #000, transparent 82%);
  border-radius: 4px;
  background: #fff;
}

.cc-cover__item.active-upsell {
  border: 2px solid #000;
}

.cc-cover__item-left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 0;
  margin-top: 4px;
}

.cc-cover__item-index {
  font-size: 16px;
  font-weight: 700;
}

.cc-cover__item-checkbox {
  width: 28px;
  height: 28px;
  margin-top: 2px;
  flex: 0 0 auto;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 2px solid #000;
  border-radius: 2px;
  display: inline-grid;
  place-content: center;
  cursor: pointer;
}

.cc-cover__item-checkbox::after {
  content: '';
  width: 9px;
  height: 15px;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
  transform: rotate(45deg);
  margin-bottom: 2px;
  opacity: 0;
}

.cc-cover__item-checkbox:checked {
  background: #deff96;
  border-color: #000;
}

.cc-cover__item-checkbox:checked::after {
  opacity: 1;
}

.cc-cover__item-checkbox:focus-visible {
  outline: 3px solid color-mix(in hsl, #000, transparent 65%);
  outline-offset: 2px;
}

.cc-cover__item-title {
  font-weight: 800;
  line-height: 1.15;
}

.cc-cover__item-size {
  margin-top: 8px;
  font-weight: 600;
}

.cc-cover__item-size-label {
  font-weight: 700;
}
.cc-regular {
  font-weight: 400;
}

.cc-cover__item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 0 0 auto;
}

.cc-cover__item-color-label {
  font-weight: 700;
}
.cc-cover__item-color-label span {
  font-weight: 400;
}

.cc-cover__color-dropdown {
  width: 206px;
  max-width: 100%;
  position: relative;
}

.cc-cover__color-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  border: 2px solid color-mix(in hsl, #000, transparent 70%);
  border-radius: 4px;
  background: #fff;
}

.cc-cover__color-toggle-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.cc-cover__color-image {
  width: 109px;
  height: 50px;
  object-fit: cover;
}

.cc-cover__color-toggle-text {
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cc-cover__color-caret {
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 10px solid #000;
  opacity: 0.9;
  flex: 0 0 auto;
}

.cc-cover__color-menu {
  border: 1px solid color-mix(in hsl, #000, transparent 82%);
  border-top: 0;
  border-radius: 0 0 4px 4px;
  background: #fff;
  overflow: hidden;
  position: absolute;
  width: inherit;
  z-index: 10;
}

.cc-cover__color-option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.cc-cover__color-option-image {
  width: 72px;
  height: 34px;
  object-fit: cover;
  flex: 0 0 auto;
}

.cc-cover__color-option:hover {
  background: color-mix(in hsl, #000, transparent 94%);
}

.cc-cover__color-option-label {
  font-weight: 700;
  font-size: 14px;
}

@media (max-width: 640px) {
  .cc-cover__item {
    flex-direction: column;
  }

  .cc-cover__item-right {
    width: 206px;
  }

  .cc-cover__color-dropdown {
    width: 100%;
  }

  .cc-cover__color-image {
    width: 109px;
    height: 50px;
  }
  .cc-cover__upsell-text-wrapper {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 0.4rem;
    flex-direction: column;
  }
  .cc-cover__item-meta {
    display: flex;
    justify-content: space-between;
    align-items: self-start;
    width: 100%;
  }
  .cc-cover__item-size {
    margin: -3px;
  }
  .cc-cover__item-left {
    margin: 0;
  }
  .cc-cover__upsell-title {
    font-size: 18px;
  }
  .cc-cover__color-caret {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
  }
  .cc-cover__color-toggle {
    padding: 8px 10px;
  }
}

/* ===========================
     10. SKELETON LOADING
  =========================== */

/* Base skeleton */
.skeleton {
  background: #e9ecef;
  background-image: linear-gradient(
    90deg,
    #e9ecef 0px,
    #f4f6f8 40px,
    #e9ecef 80px
  );
  background-size: 200% 100%;
  border-radius: 4px;
  line-height: 1;
  animation: shimmer 1.5s ease-in-out infinite;
}

.skeleton--static {
  animation: none;
  background-image: none;
}

/* Skeleton shapes */
.skeleton-text {
  height: 1em;
  width: 100%;
  margin-bottom: 0.25em;
}

.skeleton-text--short {
  width: 10ch;
}
.skeleton-text--medium {
  width: 20ch;
}
.skeleton-text--long {
  width: 40ch;
}
.skeleton-text--full {
  width: 100%;
}

/* Height modifiers */
.skeleton--xs {
  height: 0.75em;
}
.skeleton--sm {
  height: 0.875em;
}
.skeleton--lg {
  height: 1.25em;
}
.skeleton--xl {
  height: 1.5em;
}
.skeleton--2xl {
  height: 2em;
}

/* Avatar shapes */
.skeleton-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.skeleton-avatar--sm {
  width: 32px;
  height: 32px;
}
.skeleton-avatar--lg {
  width: 48px;
  height: 48px;
}
.skeleton-avatar--xl {
  width: 64px;
  height: 64px;
}
.skeleton-avatar--square {
  border-radius: 8px;
}

/* Box shapes */
.skeleton-box {
  width: 100%;
  height: 200px;
}

.skeleton-box--square {
  aspect-ratio: 1;
  height: auto;
}
.skeleton-box--video {
  aspect-ratio: 16/9;
  height: auto;
}
.skeleton-box--thumb {
  width: 80px;
  height: 80px;
}

/* Button shapes */
.skeleton-button {
  height: 2.5rem;
  width: 100px;
  border-radius: 6px;
}

.skeleton-button--sm {
  height: 2rem;
  width: 80px;
}
.skeleton-button--lg {
  height: 3rem;
  width: 120px;
}
.skeleton-button--pill {
  border-radius: 9999px;
}

/* Skeleton utilities */
.skeleton--mb-1 {
  margin-bottom: 0.25rem;
}
.skeleton--mb-2 {
  margin-bottom: 0.5rem;
}
.skeleton--mb-3 {
  margin-bottom: 0.75rem;
}
.skeleton--mb-4 {
  margin-bottom: 1rem;
}

.skeleton--rounded-none {
  border-radius: 0;
}
.skeleton--rounded-sm {
  border-radius: 2px;
}
.skeleton--rounded {
  border-radius: 4px;
}
.skeleton--rounded-lg {
  border-radius: 8px;
}
.skeleton--rounded-xl {
  border-radius: 12px;
}
.skeleton--rounded-full {
  border-radius: 9999px;
}

/* Skeleton variants */
.skeleton--darker {
  background: #d5d7db;
  background-image: linear-gradient(
    90deg,
    #d5d7db 0px,
    #e5e7eb 40px,
    #d5d7db 80px
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

.skeleton--dark {
  background: #374151;
  background-image: linear-gradient(
    90deg,
    #374151 0px,
    #4b5563 40px,
    #374151 80px
  );
}

.skeleton--pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  background-image: none;
}

.skeleton--wave {
  background-image: linear-gradient(
    90deg,
    #e9ecef 25%,
    #f4f6f8 50%,
    #e9ecef 75%
  );
  background-size: 400% 100%;
  animation: wave 2s ease infinite;
}

.skeleton--smooth {
  background-image: linear-gradient(
    105deg,
    #e9ecef 40%,
    #f4f6f8 50%,
    #e9ecef 60%
  );
  background-size: 200% 100%;
  animation: smooth 1.8s ease-in-out infinite;
}

/* Skeleton state management */
[data-next-skeleton] {
  transition: opacity 0.3s ease-out;
}

.next-display-ready [data-next-skeleton] {
  opacity: 0;
  pointer-events: none;
}

/* ===========================
     11. UTILITIES
  =========================== */

/* Diagonal strike */
.diagonal-strike,
.os--compare-diagonal {
  position: relative;
  display: inline-block;
}

.diagonal-strike::after,
.os--compare-diagonal::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  border-top: 1px solid currentColor;
  transform: rotate(-10deg);
  transform-origin: center;
}

/* Empty slot hiding */
[os-slot]:empty {
  display: none;
}

/* ===========================
     12. DEMO STYLES
  =========================== */

.demo-section {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.demo-section h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.demo-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.demo-item {
  padding: 1rem;
  background: #f9fafb;
  border-radius: 8px;
}

.demo-item h3 {
  margin: 0 0 1rem 0;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
}

.demo-flex {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.demo-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ===========================
     ORDER BUTTON PULSE ANIMATION
  =========================== */

.order-btn-pulse {
  animation: button-pulse 2s ease-in-out infinite;
  transform-origin: center;
}

/* OS Dropdown Component - Minimal Essential Styles */
/* Component Container */
os-dropdown {
  display: block;
  position: relative;
}
/* Dropdown Menu - Hidden by default */
os-dropdown-menu,
.os-dropdown-menu,
[os-element='dropdown-menu'] {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  z-index: 1000;
  /* Hide by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}
/* Show state */
os-dropdown-menu.show,
.os-dropdown-menu.show,
[os-element='dropdown-menu'].show,
.os-card__variant-dropdown-menu.show,
.os-card__variant-dropdown-menu-v2.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* Floating UI positioning - Remove legacy positioning */
os-dropdown-menu,
.os-dropdown-menu,
[os-element='dropdown-menu'] {
  /* Remove fixed positioning - handled by Floating UI */
  position: absolute;
  /* Remove default positioning */
  top: initial;
  left: initial;
  right: initial;
  margin-top: 0;
}
/* Arrow styling */
.dropdown-arrow {
  position: absolute;
  width: 8px;
  height: 8px;
  background: inherit;
  border: inherit;
  border-right: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  z-index: -1;
}
/* Arrow positioning based on placement */
os-dropdown-menu.placement-bottom .dropdown-arrow {
  border-left: 0;
  border-top: 0;
  border-right: inherit;
  border-bottom: inherit;
}
os-dropdown-menu.placement-top .dropdown-arrow {
  border-right: 0;
  border-bottom: 0;
  border-left: inherit;
  border-top: inherit;
}
os-dropdown-menu.placement-left .dropdown-arrow {
  border-bottom: 0;
  border-left: 0;
  border-top: inherit;
  border-right: inherit;
}
os-dropdown-menu.placement-right .dropdown-arrow {
  border-top: 0;
  border-right: 0;
  border-bottom: inherit;
  border-left: inherit;
}
/* Active toggle state */
.os-card__variant-dropdown-toggle.active {
  border-color: #333;
  box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1);
}
/* Icon rotation */
.os-card__variant-dropdown-toggle.active .os-card__variant-dropdown-icon,
.dropdown-toggle.active .dropdown-icon {
  transform: rotate(180deg);
}
/* Essential item styles */
os-dropdown-item {
  display: block;
  cursor: pointer;
}
os-dropdown-item[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
/* Z-index management for open dropdowns */
.os-card__variant-dropdown-wrapper:has(.show),
os-dropdown[open] {
  z-index: 999;
  position: relative;
}
/* Mobile responsive */
@media (max-width: 640px) {
  os-dropdown-menu,
  [os-element='dropdown-menu'] {
    position: fixed;
    left: 16px;
    right: 16px;
    width: auto;
  }
}
/* Selection Animation Styles */
/* Content wrapper for smooth transitions */
.os-dropdown__content {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  overflow: hidden;
}
/* Option display with GPU-accelerated animations */
.os-dropdown__option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  transform: translateY(0);
  opacity: 1;
  transition:
    transform var(--animation-duration, 0.3s) cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity calc(var(--animation-duration, 0.3s) * 0.67) ease;
  will-change: transform, opacity;
}
/* Animation states - Slide (default) */
.os-dropdown__option[data-animating='out'] {
  position: absolute;
  transform: translateY(-100%);
  opacity: 0;
}
.os-dropdown__option[data-animating='in'] {
  transform: translateY(100%);
  opacity: 0;
}
/* Reversed slide animation when dropdown is above */
.os-dropdown__option[data-placement='top'][data-animating='out'] {
  transform: translateY(100%);
}
.os-dropdown__option[data-placement='top'][data-animating='in'] {
  transform: translateY(-100%);
}
/* Fade animation */
.os-dropdown__option[data-animation-type='fade'][data-animating='out'] {
  transform: translateY(0);
  opacity: 0;
}
.os-dropdown__option[data-animation-type='fade'][data-animating='in'] {
  transform: translateY(0);
  opacity: 0;
}
/* Scale animation */
.os-dropdown__option[data-animation-type='scale'][data-animating='out'] {
  transform: scale(0.8);
  opacity: 0;
}
.os-dropdown__option[data-animation-type='scale'][data-animating='in'] {
  transform: scale(1.2);
  opacity: 0;
}
/* Slide-fade animation */
.os-dropdown__option[data-animation-type='slide-fade'][data-animating='out'] {
  transform: translateY(-20px);
  opacity: 0;
}
.os-dropdown__option[data-animation-type='slide-fade'][data-animating='in'] {
  transform: translateY(20px);
  opacity: 0;
}
/* Reversed slide-fade when dropdown is above */
.os-dropdown__option[data-placement='top'][data-animation-type='slide-fade'][data-animating='out'] {
  transform: translateY(20px);
}
.os-dropdown__option[data-placement='top'][data-animation-type='slide-fade'][data-animating='in'] {
  transform: translateY(-20px);
}
/* Ensure toggle has overflow hidden for animation */
os-dropdown[animate-selection] .os-card__variant-dropdown-toggle {
  overflow: hidden;
}
/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .os-dropdown__option {
    transition-duration: 0.01ms !important;
  }
}
os-dropdown-item.selected,
os-dropdown-item:hover {
  background-color: #f5f5f5 !important;
}
/* Checkmark SVG styling */
.progress_circle .checkmark-svg {
  opacity: 0;
  position: absolute;
  width: 20px;
  height: 20px;
  transition: opacity 0.3s ease;
}
.progress_circle > div {
  transition: opacity 0.3s ease;
}
/* Active state */
.progress-item.active .progress_circle {
  background-color: #000;
  border-color: #000;
  color: white;
}
.progress-item.active .progress-tex {
  color: #000;
  font-weight: 600;
}
/* Completed state */
.progress-item.completed .progress_circle {
  background-color: #000;
  border-color: #000;
  color: white;
}
.progress-item.completed .progress_circle > div {
  opacity: 0;
}
.progress-item.completed .progress_circle .checkmark-svg {
  opacity: 1;
}
.progress-item.completed .progress-tex {
  color: #000;
  font-weight: 600;
}
.progress-item.completed + .progress-divider {
  background-color: #000;
}
/* Checkmark SVG styling - Fixed selectors */
.progress_circle .icon-check {
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s ease;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.progress_circle .icon-check .checkmark-svg {
  width: 16px;
  height: 16px;
}
.progress_circle > div:first-child {
  transition: opacity 0.3s ease;
}
/* Active state */
.progress-item.active .progress_circle {
  background-color: #000 !important;
  border-color: #000 !important;
  color: white !important;
}
.progress-item.active .progress-tex {
  color: #000 !important;
  font-weight: 600 !important;
}
/* Completed state */
.progress-item.completed .progress_circle {
  background-color: #000 !important;
  border-color: #000 !important;
  color: white !important;
}
.progress-item.completed .progress_circle > div:first-child {
  opacity: 0;
}
.progress-item.completed .progress_circle .icon-check {
  opacity: 1;
}
.progress-item.completed .progress-tex {
  color: #000 !important;
  font-weight: 600 !important;
}
.progress-item.completed + .progress-divider {
  background-color: #000 !important;
}
/* Diagonal strike */
.diagonal-strike,
.os--compare-diagonal {
  position: relative;
  display: inline-block;
}
.diagonal-strike::after,
.os--compare-diagonal::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  border-top: 1px solid #f20404 !important;
  transform: rotate(-10deg);
  transform-origin: center;
}
/* OUT OF STOCK STYLES */
/* For size dropdown - apply opacity to out-of-stock items */
os-dropdown[next-variant-option='size'] os-dropdown-item.next-oos {
  opacity: 0.4;
  cursor: not-allowed;
}
/* For color dropdown - apply opacity only to the inner content, not the X */
os-dropdown[next-variant-option='color'] os-dropdown-item.next-oos {
  position: relative;
  overflow: hidden;
}
/* Apply opacity to the content inside, not the whole item */
os-dropdown[next-variant-option='color']
  os-dropdown-item.next-oos
  .os-card__toggle-option {
  opacity: 0.4;
}
/* X overlay with padding */
os-dropdown[next-variant-option='color'] os-dropdown-item.next-oos::after {
  content: '';
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  /* Or use width/height with calc */
  /* width: calc(100% - 1rem);
  height: calc(100% - 1rem); */
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cline x1='0' y1='0' x2='100' y2='100' stroke='%23666666' stroke-width='1'/%3E%3Cline x1='100' y1='0' x2='0' y2='100' stroke='%23666666' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

:root {
  /* Animation settings - smoother, premium feel */
  --modal-animation-duration: 0.3s;
  --modal-animation-easing: cubic-bezier(0.22, 1, 0.36, 1);
  /* Premium smooth feel */
  /* Overlay settings */
  --modal-overlay-bg: rgba(0, 0, 0, 0.35);
  --modal-overlay-blur: 5px;
  /* Modal styling */
  --modal-bg: #fff;
  --modal-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 0 10px rgba(0, 0, 0, 0.08);
  --modal-border-radius: 16px;
  --modal-max-width: 500px;
  --modal-side-panel-width: 400px;
}

/* Base overlay styles - refined backdrop */
[data-pb-modal='overlay'] {
  position: fixed;
  inset: 0;
  background-color: var(--modal-overlay-bg);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--modal-animation-duration) var(--modal-animation-easing),
    visibility var(--modal-animation-duration) var(--modal-animation-easing);
  z-index: 999;
  /* backdrop-filter: blur(var(--modal-overlay-blur)); */
  /* -webkit-backdrop-filter: blur(var(--modal-overlay-blur)); */
}

[data-pb-modal='overlay'].cc-active {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Base modal styles - refined appearance */
[data-pb-modal='sheet'] {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--modal-bg);
  width: 90%;
  max-width: var(--modal-max-width);
  border-radius: var(--modal-border-radius);
  opacity: 0;
  visibility: hidden;
  transition:
    transform var(--modal-animation-duration) var(--modal-animation-easing),
    opacity var(--modal-animation-duration) var(--modal-animation-easing),
    visibility var(--modal-animation-duration) var(--modal-animation-easing);
  z-index: 1000;
  box-shadow: var(--modal-shadow);
  will-change: transform, opacity;
}

[data-pb-modal='sheet'].cc-active {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Animation variations - more elegant and premium */
/* Fade animation (default) */
[data-animation='fade'] [data-pb-modal='sheet'] {
  opacity: 0;
  transform: translate(-50%, -50%);
}

[data-animation='fade'] [data-pb-modal='sheet'].cc-active {
  opacity: 1;
}

/* Slide-up animation - silky smooth */
[data-animation='slide-up'] [data-pb-modal='sheet'] {
  opacity: 0;
  transform: translate(-50%, 20px);
}

[data-animation='slide-up'] [data-pb-modal='sheet'].cc-active {
  transform: translate(-50%, -50%);
  opacity: 1;
}

/* Slide-down animation - refined motion */
[data-animation='slide-down'] [data-pb-modal='sheet'] {
  opacity: 0;
  transform: translate(-50%, -70%);
}

[data-animation='slide-down'] [data-pb-modal='sheet'].cc-active {
  transform: translate(-50%, -50%);
  opacity: 1;
}

/* Zoom animation - subtle and elegant */
[data-animation='zoom'] [data-pb-modal='sheet'] {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.95);
}

[data-animation='zoom'] [data-pb-modal='sheet'].cc-active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* Side-slide animations - refined distance */
[data-animation='slide-right'] [data-pb-modal='sheet'] {
  opacity: 0;
  transform: translate(-60%, -50%);
}

[data-animation='slide-right'] [data-pb-modal='sheet'].cc-active {
  transform: translate(-50%, -50%);
  opacity: 1;
}

[data-animation='slide-left'] [data-pb-modal='sheet'] {
  opacity: 0;
  transform: translate(-40%, -50%);
}

[data-animation='slide-left'] [data-pb-modal='sheet'].cc-active {
  transform: translate(-50%, -50%);
  opacity: 1;
}

/* Full-width bottom sheet modal - smooth rise */
[data-variant='bottom-sheet'] [data-pb-modal='sheet'] {
  top: auto !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  border-radius: var(--modal-border-radius) var(--modal-border-radius) 0 0;
  transform: translateY(100%);
}

[data-variant='bottom-sheet'] [data-pb-modal='sheet'].cc-active {
  transform: translateY(0);
}

/* Side panel variant - elegant slide */
[data-variant='side-panel'] [data-pb-modal='sheet'] {
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: auto !important;
  width: 90%;
  max-width: var(--modal-side-panel-width);
  height: 100% !important;
  border-radius: 0 !important;
  transform: translateX(100%);
}

[data-variant='side-panel'] [data-pb-modal='sheet'].cc-active {
  transform: translateX(0);
}

/* Left side panel variant - smooth entry */
[data-variant='left-panel'] [data-pb-modal='sheet'] {
  top: 0 !important;
  left: 0 !important;
  right: auto !important;
  bottom: 0 !important;
  width: 90%;
  max-width: var(--modal-side-panel-width);
  height: 100% !important;
  border-radius: 0 !important;
  transform: translateX(-100%);
}

[data-variant='left-panel'] [data-pb-modal='sheet'].cc-active {
  transform: translateX(0);
}

/* Media queries for responsive modals */
@media (max-width: 767px) {
  [data-pb-modal='sheet'] {
    width: 95%;
    max-width: none;
  }

  [data-variant='mobile-full'] [data-pb-modal='sheet'] {
    width: 100%;
    height: 100%;
    max-width: 100%;
    border-radius: 0;
  }
}

/* Focus styles for accessibility */
[data-pb-modal='sheet'] :focus {
  outline: 2px solid rgba(0, 120, 212, 0.5);
  outline-offset: 2px;
}
/* Base styling for the toggle system */
html.wf-design-mode
  pageblock-modal[preview-modal='true']
  [data-pb-modal='overlay'] {
  opacity: 1 !important;
  visibility: visible !important;
}

html.wf-design-mode
  pageblock-modal[preview-modal='true']
  [data-pb-modal='sheet'] {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Standard centered modal preview positioning */
html.wf-design-mode
  pageblock-modal[preview-modal='true']:not([data-variant='bottom-sheet']):not(
    [data-variant='side-panel']
  ):not([data-variant='left-panel'])
  [data-pb-modal='sheet'] {
  transform: translate(-50%, -50%) !important;
}

/* Bottom sheet positioning */
html.wf-design-mode
  pageblock-modal[preview-modal='true'][data-variant='bottom-sheet']
  [data-pb-modal='sheet'] {
  transform: translateY(0) !important;
}

/* Side panel positioning */
html.wf-design-mode
  pageblock-modal[preview-modal='true'][data-variant='side-panel']
  [data-pb-modal='sheet'] {
  transform: translateX(0) !important;
}

/* Left panel positioning */
html.wf-design-mode
  pageblock-modal[preview-modal='true'][data-variant='left-panel']
  [data-pb-modal='sheet'] {
  transform: translateX(0) !important;
}

.section.faq {
  padding-bottom: 80px;
}

@media (max-width: 767px) {
  .section.faq {
    padding-top: 0;
  }
}
@media (max-width: 479px) {
  .section.faq {
    padding-bottom: 60px;
  }
}

.cc-order-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 225%;
  text-align: center;
}
.checkout-inline-image {
  display: none;
}
.cc-button-wrapper {
  width: fit-content;
  margin: 10px 0;
}
@media (max-width: 767px) {
  .cc-button-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}

html,
body {
  font-family:
    Roboto,
    system-ui,
    -apple-system,
    Segoe UI,
    Helvetica,
    Arial,
    'Apple Color Emoji',
    'Segoe UI Emoji';
  font-display: swap;
}

/* Critical font fallbacks to prevent layout shift */
.main-title {
  font-family:
    Outfit,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    sans-serif;
}

.secondary-title {
  font-family:
    Outfit,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    sans-serif;
}

.card-title {
  font-family:
    Poppins,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    sans-serif;
}

.cc-custom {
  padding-bottom: 60px;
}

.green-title {
  font-family: Roboto;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 13px;
  line-height: 14px;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  color: #375c31;
}

@media (max-width: 767px) {
  .green-title {
    font-size: 13px;
    line-height: 13px;
  }
  .cell-video-wrapper {
    max-height: 404px;
  }
}

.secondary-title {
  font-family: Outfit;
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  line-height: 38px;
  letter-spacing: 0%;
  text-align: center;
}

@media (max-width: 767px) {
  .secondary-title {
    font-size: 28px;
    line-height: 34px;
  }
  h4.secondary-title.fs-5.text-md-start.mb-2 {
    line-height: 26px;
  }
  .card-title {
    font-size: 18px !important;
  }
}

.card-title {
  font-family: Poppins;
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0%;
}

.font-size-13 {
  font-size: 13px;
  font-family: Roboto;
}

.bg-beige {
  background: #f6f4f3;
}

.list {
  grid-row-gap: 0 !important;
}

.list__item {
  font-family: Roboto;
  font-weight: 700;
  font-style: Bold;
  font-size: 17px;
  line-height: 31px;
  letter-spacing: 0%;
}

.hero-section {
  padding: 0;
  margin: 0;
}

.main-title {
  color: #000;
  font-family: 'Outfit';
  font-weight: 700;
  font-size: 42px;
  line-height: 49px;
  letter-spacing: -0em;
}

@media (max-width: 767px) {
  .main-title {
    font-size: 35px;
    line-height: 42px;
    margin-bottom: 0;
  }
}

.human-body-section {
  background-color: #000;
  color: #fff;
  border-radius: 8px;
}

.subheadline {
  max-width: 433px;
  font-family: 'Roboto';
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
}

.brand-logo__be {
  height: 32px;
  width: 147px;
}

.low-stock-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.stock-bars {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 2px;
}

.stock-bar {
  width: 10px;
  height: 10px;
  background: #d9d9d9;
}

.stock-levels-text {
  font-family: Barlow;
  font-weight: 400;
  font-size: 11px;
  line-height: 100%;
  letter-spacing: 0%;
}

.stock-bar.is-red {
  background: #d93c25;
}

.low-stock-text {
  font-family: Inter;
  font-size: 11px;
  font-weight: 400;
  color: #d93c25;
}

.logos-inline {
  display: grid;
  grid-auto-flow: column;
  gap: 28px;
  opacity: 0.8;
  align-items: center;
  justify-content: center;
}

.buy-with-confidence {
  top: -90px;
  position: relative;
  z-index: 5;
  background: #dbffa4;
  border-radius: 8px;
  padding: 18px;
  max-width: 816px;
}

.font-size-17 {
  font-size: 17px;
  line-height: 26px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

@media (max-width: 767px) {
  .reviews-section {
    margin-top: -50px !important;
  }
  .row.row-cols-1.row-cols-md-4.g-3 {
    --bs-gutter-y: -3rem;
  }
}

.metric {
  background: #fff;
  border-radius: 8px;
  padding: 28px 20px 20px 20px;
  text-align: center;
}

.num {
  font-family: Outfit, Roboto, sans-serif;
  font-weight: 700;
  font-size: 52px;
  color: #739a38;
  position: relative;
  top: 35px;
  width: fit-content;
}

.feature-card {
  background: #f6f4f3;
  border-radius: 8px;
  padding: 18px;
  height: 100%;
}

.feature-card h4 {
  margin: 10px 0 6px;
}

.color-swatches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 767px) {
  .how-steps {
    grid-template-columns: 1fr;
  }

  .heal-video {
    border-radius: 8px !important;
    margin-bottom: 0 !important;
    height: 237px !important;
  }
}

.heal-video {
  width: 100%;
  height: 385px;
  object-fit: cover;
  margin-bottom: 24px;
}

/* Comparison Table Styles */
.comparison-container {
  background: #f6f4f3;
  border-radius: 12px;
  padding: 0;
  overflow: visible !important;
  padding-bottom: 150px;
  margin: 0 auto;
  max-width: 800px;
}

.product-image-row {
  height: 100px;
  overflow: visible !important;
  border-bottom: none !important;
}

.product-image {
  width: 186px;
  position: absolute;
  margin-top: -90px;
  height: auto;
  overflow: visible !important;
}
.product-image.second {
  margin-top: -100px;
}
/* Larger screens */
@media (min-width: 1200px) {
  .product-image {
    width: 150px;
  }
  .product-image.second {
    width: 143px;
  }
}

@media (max-width: 767px) {
  .product-image {
    width: 120px;
  }

  .bottom-row-metric {
    margin-top: -20px;
  }
}

.body-heal-section {
  background: #f6f4f380;
  padding-bottom: 150px;
}

.comparison-table {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #000;
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.2fr 1.2fr;
  gap: 0;
  border-bottom: 1px dashed #c8c8c8;
  height: 45px;
  align-items: center;
  font-size: 16px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.2fr 1.2fr;
  gap: 0;
  border-bottom: 1px dashed #c8c8c8;
  min-height: 50px;
  align-items: center;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-cell {
  padding: 12px 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  align-items: center;
}

.comparison-cell:first-child {
  justify-content: flex-start;
  text-align: left;
  padding-left: 24px;
  white-space: normal;
  font-size: 16px;
}

.comparison-cell.bareearth {
  background: #e9dfd9;
  height: 100%;
}

.product-image-row .comparison-cell.bareearth {
  border-radius: 8px 8px 0 0;
}

.comparison-row:last-child .comparison-cell.bareearth {
  border-radius: 0 0 8px 8px;
}

.comparison-cell .status-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px !important;
  white-space: nowrap;
}

/* Larger screens */
@media (min-width: 1200px) {
  .comparison-container {
    max-width: 1000px;
  }

  .comparison-header {
    grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
    font-size: 18px;
  }

  .comparison-row {
    grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
  }

  .comparison-cell {
    padding: 16px 20px;
    font-size: 16px;
  }

  .comparison-cell:first-child {
    font-size: 17px;
    padding-left: 32px;
  }
}

@media (max-width: 767px) {
  .comparison-container {
    max-width: 100%;
    margin: 0 8px;
    padding-bottom: 100px;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1.3fr 0.95fr 1fr 1fr;
    gap: 4px;
    min-height: auto;
  }

  .comparison-header {
    font-size: 12px;
    height: 35px;
  }

  .comparison-row {
    min-height: 40px;
  }

  .comparison-cell {
    padding: 6px 4px;
    font-size: 13px;
    line-height: 1.2;
    white-space: normal;
    text-overflow: clip;
  }

  .comparison-cell:first-child {
    font-size: 13px;
    padding-left: 0px;
    line-height: 1.3;
  }

  .comparison-cell.comparison-title.is-border-right {
    text-align: left;
    justify-content: flex-start;
    height: auto;
  }

  .comparison-cell.comparison-title {
    text-align: left;
    justify-content: flex-start;
  }

  .comparison-cell .status-item {
    font-size: 10px;
    gap: 3px;
    padding-left: 14px;
  }

  .comparison-cell .status-item img {
    width: 12px !important;
    height: 12px !important;
  }

  .product-image {
    width: 90px;
  }

  .product-image-row {
    height: 40px;
  }

  .rating-text {
    font-size: 12px !important;
    white-space: nowrap;
  }

  .comparison-header .comparison-cell {
    padding-bottom: 2px;
    padding-top: 1px;
  }
  .comparison-cell.is-border-right {
    height: 100%;
  }
}

.comparison-cell.is-border-right {
  border-right: 1px dashed #c8c8c8;
}

/* Status icons and text */
.status-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #000000;
}

.body-video {
  width: 100%;
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .body-video {
    height: 282px;
    position: relative;
    bottom: -8px;
  }
}

@media (max-width: 900px) {
  .effortless-setup-section {
    display: flex;
    flex-direction: column-reverse;
  }
  .col-lg-8.mx-auto.pt-lg-5.d-flex.gap-3.gap-lg-5.effortless-setup-section {
    display: flex;
    flex-direction: column-reverse;
    margin: 0 0 26px 0;
  }
}

.status-icon {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.status-icon.check {
  background: #375c31;
  color: white;
}

.status-icon.cross {
  background: #b30000;
  color: white;
}

/* ===========================
   Comparison Advantage (2-column)
=========================== */

.cc-compare-advantage {
  margin: 0 auto;
  max-width: 820px;
}

.cc-compare-table {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #000;
}

.cc-compare-tr {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  column-gap: 18px;
  align-items: center;
}

.cc-compare-tr:not(.cc-compare-tr--head) {
  border-top: 1px dashed #c8c8c8;
}

.cc-compare-tr:last-of-type {
  max-height: 20px;
  overflow: hidden;
}

.cc-compare-td {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
}

.cc-compare-td--label {
  justify-content: flex-start;
  text-align: left;
  font-size: 17px;
  font-family: 'Roboto', sans-serif;
}

.cc-compare-td--blanket,
.cc-compare-td--meds {
  background: #e9dfd9;
}

.cc-compare-td--top {
  border-radius: 12px 12px 0 0;
  height: 100%;
}

.cc-compare-td--bottom {
  border-radius: 0 0 12px 12px;
  padding: 0;
  min-height: 20px;
  max-height: 20px;
}
.cc-compare-td.cc-compare-td--label.last {
  padding: 0;
  min-height: 20px;
}

.cc-compare-head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 50px 0 10px;
}

.cc-compare-img {
  width: min(180px, 100%);
  height: 88px;
  border-radius: 10px;
  background: #e9dfd9;
}

.cc-compare-stars {
  display: flex;
  gap: 3px;
  line-height: 1;
  color: #fff;
  font-size: 10px;
  align-items: center;
}

.cc-compare-star {
  width: 14px;
  height: 14px;
  background: #375c31;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cc-compare-coltitle {
  font-size: 17px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

.cc-compare-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

/* .cc-compare-icon--check {
  background: #375c31;
}

.cc-compare-icon--check::before {
  content: "✓";
}

.cc-compare-icon--cross {
  background: #b30000;
}

.cc-compare-icon--cross::before {
  content: "×";
} */

@media (max-width: 767px) {
  .cc-compare-advantage {
    margin: 0 12px;
  }

  .cc-compare-tr {
    grid-template-columns: 1.25fr 1fr 1fr;
    column-gap: 10px;
  }

  .cc-compare-td {
    padding: 10px 10px;
    min-height: 61px;
  }

  .cc-compare-td--label {
    font-size: 13px;
  }

  .cc-compare-img {
    width: min(140px, 100%);
    height: 70px;
  }

  .cc-compare-coltitle {
    font-size: 12px;
  }

  .cc-compare-star {
    width: 12px;
    height: 12px;
    font-size: 9px;
  }
}

.status-icon.warning {
  background: #b39200;
  color: white;
}

/* Rating section */
.rating-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
}

.rating-stars {
  display: flex;
  gap: 1.67px;
}

.rating-star {
  width: 15.16px;
  height: 15.16px;
  background: #1bba86;
  border-radius: 2px;
  position: relative;
}

.rating-star::after {
  content: '★';
  position: absolute;
  color: white;
  font-size: 11px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.rating-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #000000;
}

/* Reviews Section Styles */
.reviews-card__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reviews-container {
  margin: 0 auto;
}

/* Reviews Grid - Clean System */
.reviews-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 23px;
  margin: 0 auto 30px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.review-card {
  width: 100%;
  /* height: 592px; */
  background: #ffffff;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.review-image {
  width: 100%;
  height: 249px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.review-content {
  padding: 20px 15px;
  /* height: calc(592px - 249px); */
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-avatar {
  width: 45px;
  height: 45px;
  border-radius: 100px;
  object-fit: cover;
}

.user-details {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.user-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.43em;
  letter-spacing: 3.57%;
  color: #000000;
  margin-bottom: 2px;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 78px;
  height: 20px;
}

.verified-text {
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.5px;
  vertical-align: middle;
  color: #3ab890;
}

.verified-icon {
  width: 14px;
  height: 14px;
}

.review-date {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2em;
  color: #000000;
  /* width: 187px; */
}

.review-divider {
  width: 100%;
  height: 1px;
  background: #e3e3e3;
}

.review-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2em;
  color: #000000;
}

.review-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.62em;
  color: #0f0f0f;
  flex-grow: 1;
}

/* Tablet: 2 columns */
@media (max-width: 1199px) {
  .reviews-row {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    gap: 25px;
    padding: 0;
  }
}

/* Mobile: 1 column */
@media (max-width: 767px) {
  .review-card {
    height: auto;
    min-height: 500px;
  }

  .review-image {
    height: 320px;
  }
}

@media (max-width: 520px) {
  .reviews-row {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 20px;
  }
}

.fomo {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
}

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

.footer-mini {
  background-color: #000;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
}

.brand-bar {
  background: #000;
  padding: 16px 0;
}

.brand-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 85px;
  flex-wrap: wrap;
}

.brand-logos img {
  height: 26px;
  width: auto;
  opacity: 0.95;
  filter: brightness(0) invert(1);
}

@media (max-width: 767px) {
  .brand-logos img {
    height: 19px;
  }
}

.metrics-data-wrapper {
  position: relative;
  top: -70px;
}

.metrics-data-wrapper .col-12 {
  display: flex;
  flex-direction: column;
}

.metrics-data-wrapper .metric {
  flex: 1;
  display: flex;
}

.peer-review-text {
  font-family: Roboto;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  color: #9b9b9b;
  position: relative;
  top: -33px;
  width: fit-content;
  margin: 0 auto;
}

/* Mobile & small tablet slideshow (up to 900px) */
@media (max-width: 900px) {
  .brand-bar {
    overflow: hidden;
  }

  .brand-logos {
    animation: slide 15s linear infinite;
    gap: 60px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: calc(200%);
  }

  .brand-logos img {
    flex-shrink: 0;
  }
}

/* Mobile utility classes */
.hide-mobile {
  display: block;
}

.flex-reverse-mobile {
  display: flex;
  flex-direction: row;
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }

  .flex-reverse-mobile {
    flex-direction: column-reverse !important;
  }
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Custom Carousel Layout */
/* removed custom .container overrides to use Bootstrap container spacing */

.modern-navbar .container {
  padding-left: inherit;
  padding-right: inherit;
}

/* Performance optimization - prevent layout shifts */
.carousel-main-image {
  aspect-ratio: 1;
  object-fit: cover !important;
  background: #f5f5f5;
}

.user-avatar {
  aspect-ratio: 1;
  object-fit: cover;
  background: #f5f5f5;
}

.carousel-thumb img {
  aspect-ratio: 1;
  object-fit: cover;
  background: #f5f5f5;
}

/* Optimized thumbnail styling */
.carousel-thumb img {
  transition: opacity 0.2s ease;
}

.carousel-thumb:hover img {
  opacity: 0.8;
}

.heal-video {
  width: 100%;
  height: 385px;
  object-fit: cover;
  margin-bottom: 24px;
}

/* Image loading states */
img[loading='lazy'] {
  transition: opacity 0.3s;
}

img[loading='lazy']:not([src]) {
  opacity: 0.5;
  background: #f5f5f5;
}

/* Video optimization */
video {
  transition: opacity 0.3s;
}

video:hover {
  opacity: 0.9;
}

.custom-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-thumbnails {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 15;
}

.carousel-thumb {
  width: 74px;
  height: 74px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  /* border: 2px solid rgba(255, 255, 255, 0.5); */
  opacity: 0.8;
  transition: all 0.3s ease;
}

.carousel-thumb.active {
  border-color: #fff;
  opacity: 1;
}

.carousel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-main-image {
  width: 100%;
  max-height: 672px;
  object-fit: cover;
  display: block;
}

.carousel-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.carousel-badge {
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
  .calming-effects-text {
    font-size: 16px !important;
  }
}

.carousel-badge.green {
  background: #739a38;
  color: white;
}

.carousel-badge.yellow {
  background: #ffd700;
  color: #333;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0000005e;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-nav:hover {
  background: #0000007e;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.carousel-nav.prev {
  left: 20px;
}

.carousel-nav.next {
  right: 20px;
}

.carousel-nav .arrow-icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.carousel-nav .arrow-left {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.carousel-nav .arrow-right {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

/* Modern Navbar Styles */
.modern-navbar {
  background: white;
  padding: 4px 0;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0px 4px 4px 0px #00000005;
}

.navbar-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
}

.navbar-left {
  display: flex;
  align-items: center;
}

.navbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  margin-right: 32px;
}

.nav-link {
  color: #202e3b;
  padding: 8px 16px;
  position: relative;
  font-family: Barlow;
  font-weight: 700;
  font-style: Bold;
  font-size: 15px;
  line-height: 16px;
  letter-spacing: 0%;
}

.nav-link.active {
  color: #202e3b;
  background: transparent;
  font-weight: 700;
  border-bottom: 3px solid #ffdc32;
}

.order-btn,
.sticky-watch {
  background: #ffdc32;
  color: #333;
  border: none;
  white-space: nowrap;
  padding: 6px 24px;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0px 3px 0px 0px #dedede;
  border: 1px solid #d4b000;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: fit-content;
}
.order-btn p {
  margin: 0;
}

.flag-icon {
  font-size: 24px;
  display: flex;
  align-items: center;
}

/* Hamburger Menu Styles */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background: #333;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: fit-content;
  background: white;
  z-index: 102;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  padding: 0;
  visibility: hidden;
  opacity: 0;
}

.mobile-menu.active {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 10px;
  border-bottom: 1px solid #e5e5e5;
}

.mobile-menu-title {
  font-family: Poppins;
  font-weight: 700;
  font-style: Bold;
  font-size: 22px;
  line-height: 44px;
  letter-spacing: 0%;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.mobile-nav-link {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-nav-link.active {
  color: #000;
  font-weight: 600;
  background-color: #ffdc32;
}

/* Sticky Order Button for Mobile */
@media (max-width: 900px) {
  .sticky-order-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    padding: 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    border-top: 1px solid #e0e0e0;
    display: block;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
  }

  .sticky-order-btn.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Desktop Sticky Order Bar */
.desktop-sticky-order-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  padding: 6px 40px;
  padding-top: 8px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  border-top: 1px solid #e0e0e0;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
  pointer-events: none;
}
.py-1-5 {
  padding-top: 0.35rem !important;
  padding-bottom: 0.35rem !important;
}
.desktop-sticky-order-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.desktop-sticky-cta-section {
  display: flex;
  align-items: center;
  gap: 16px;
}

.desktop-sticky-cta-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.desktop-sticky-stars {
  display: flex;
  align-items: center;
}

.desktop-sticky-btn-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.marker-container {
  background-color: #fff8d8;
}

/* Hero Section Improvements */
.hero-section {
  padding: 0;
  margin: 0;
  grid-column-gap: 0 !important;
}

.main-hero {
  width: 100%;
  max-width: none;
  background: #f6f4f3;
}

.gray-text {
  color: #b4b4b4;
}

.quote-text {
  max-width: 399px;
  font-family: Roboto;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}

.before-after-wrapper {
  background: black;
  border-radius: 8px;
  padding: 16px;
}

.text-gray {
  color: #c7c7c7;
}

/* Doctor Carousel Styles */
.doctor-carousel-container {
  position: relative;
  margin: 0 auto;
}

.doctor-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.doctor-slide {
  display: none;
  background-color: #fbf5ef;
  border-radius: 12px;
  padding: 0;
  min-height: 400px;
}

.doctor-slide.active {
  display: block;
}

.testimonial-content {
  padding-right: 20px;
}

.stars {
  font-size: 20px;
  margin-bottom: 20px;
}

.doctor-quote {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
  margin: 0 0 15px 0;
  font-style: italic;
}

.doctor-attribution {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  font-style: normal;
}

.doctor-bio {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin-top: 20px;
}

.doctor-image {
  text-align: center;
}

.doctor-image img {
  width: 150px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.doctor-info h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 0 0 5px 0;
}

.doctor-info p {
  font-family: Roboto;
  font-weight: 400;
  font-style: Italic;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0%;
}

/* Carousel Navigation */
.doctor-carousel-container .carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0000005e;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.doctor-carousel-container .carousel-nav:hover {
  background: #0000007e;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.doctor-carousel-container .carousel-nav.prev {
  left: -12px;
}

.doctor-carousel-container .carousel-nav.next {
  right: -12px;
}

.doctor-carousel-container .carousel-nav svg {
  width: 20px;
  height: 20px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

/* Fallback: render chevrons via CSS background to ensure visibility on iOS Safari */
.carousel-nav::after {
  content: '';
  display: none;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  pointer-events: none;
}

@supports (-webkit-touch-callout: none) {
  .carousel-nav::after {
    display: none;
  }
}

.carousel-nav.prev::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15 18L9 12l6-6' stroke='%23ffffff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.carousel-nav.next::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 18l6-6-6-6' stroke='%23ffffff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  padding: 0;
  margin: 0;
  border: 0;
  background: #d1d5db;
  border-radius: 50%;
  display: inline-block;
  line-height: 0;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: content-box;
  flex: 0 0 auto;
  aspect-ratio: 1 / 1;
  transition: background-color 0.2s ease;
}

@supports not (aspect-ratio: 1 / 1) {
  .carousel-dots .dot {
    width: 12px;
    height: 12px;
  }
}

.carousel-dots .dot.active {
  background: #9ca3af;
}

.carousel-dots .dot:hover {
  background: #9ca3af;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .doctor-carousel-container {
    padding: 0px 10px;
  }

  .doctor-testimonial {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 20px;
  }

  .testimonial-content {
    padding-right: 0;
  }

  .doctor-quote {
    font-size: 16px;
  }

  .doctor-carousel-container .carousel-nav {
    width: 28px;
    height: 28px;
  }

  .doctor-carousel-container .carousel-nav.prev {
    left: 5px;
  }

  .doctor-carousel-container .carousel-nav.next {
    right: 5px;
  }
}

/* Feature Cards Carousel Styles */
.feature-carousel-container {
  position: relative;
  margin-top: -150px;
}

/* Unified carousel for both desktop and mobile */
.feature-carousel-desktop {
  display: block;
  overflow: hidden;
  width: 100%;
  cursor: grab;
  user-select: none;
}

.feature-carousel-desktop.dragging {
  cursor: grabbing;
}

.feature-cards-track {
  display: flex;
  gap: 18px;
  width: fit-content;
  transition: transform 0.1s ease-out;
}

.feature-card-item {
  flex: 0 0 auto;
  width: 280px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .feature-cards-track {
    padding: 0 20px;
  }

  .feature-card-item {
    width: 280px;
  }
}

@keyframes slideFeatures {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-2664px);
  }
}

/* Mobile - Same structure as desktop */
.feature-carousel-mobile {
  display: none;
  overflow: hidden;
  width: 100%;
  cursor: grab;
  user-select: none;
}

.feature-carousel-mobile.dragging {
  cursor: grabbing;
}

.feature-slides-container {
  display: flex;
  gap: 18px;
  padding: 0 20px;
  width: fit-content;
  transition: transform 0.1s ease-out;
}

.feature-slide {
  flex: 0 0 280px;
}

.feature-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.feature-carousel-nav.prev {
  left: -25px;
}

.feature-carousel-nav.next {
  right: -25px;
}

.feature-carousel-dots {
  margin-top: 20px;
}

/* Accordion Styles */
.accordion {
  background: transparent;
}

.accordion__wrapper {
  background: transparent;
}

.accordion__item {
  background: #ffffff;
  border: 1px solid #4f4f4f;
  border-radius: 4px;
}

.accordion__item:last-child {
  margin-bottom: 0;
}

.accordion__item-header {
  width: 100%;
  padding: 0px 16px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.accordion_title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 17px;
  letter-spacing: 0%;
  color: #221c44;
}

.accordion_icon-wrapper {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion_icon {
  width: 24px;
  height: 24px;
  font-size: 20px;
  color: black;
  border: 1px solid black;
  border-radius: 100%;
  padding: 4px;
}

.accordion__item-wrapper {
  display: none !important;
}

.accordion__item-wrapper.is-active {
  margin-top: -20px;
  display: block !important;
}

.accordion__item-body {
  border: none;
  padding: 0 16px;
}

.accordion__text {
  font-family: Roboto;
  font-weight: 400;
  font-style: Regular;
  font-size: 17px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #221c44;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .accordion__item {
    padding: 0;
  }

  .accordion__item-header {
    padding: 16px 20px;
  }

  .accordion_title {
    font-size: 16px;
  }

  .accordion__item-body {
    padding: 0 20px 16px 20px;
  }

  .accordion__text {
    font-size: 16px;
    padding-top: 21px;
  }
  .mob-hide {
    display: none !important;
  }
}

/* Desktop - hide mobile menu completely */
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }

  .hamburger-menu {
    display: none !important;
  }
}

@media (max-width: 520px) {
  .promo-strip .py-2 {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .promo-strip {
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
  }

  .promo-strip .ms-lg-2.promo-code {
    margin-left: 0.5rem;
  }

  .modern-navbar .container {
    padding: 0 !important;
  }

  .navbar-wrapper {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
    flex-wrap: nowrap !important;
  }

  .navbar-wrapper > * {
    flex-basis: auto !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .navbar-left {
    display: flex !important;
    align-items: center;
    padding-left: 10px !important;
  }

  .navbar-right {
    display: none !important;
  }

  .hamburger-menu {
    display: flex !important;
    padding-right: 10px !important;
  }

  .nav-links {
    gap: 20px;
    margin-right: 0;
  }

  .nav-link {
    font-size: 14px;
    padding: 6px 12px;
  }

  /* Feature Carousel Mobile - Use desktop carousel for both */
  .feature-carousel-desktop {
    display: block !important;
  }

  .feature-carousel-mobile {
    display: none !important;
  }

  .feature-carousel-nav {
    width: 28px;
    height: 28px;
  }

  .feature-carousel-nav.prev {
    left: -15px;
  }

  .feature-carousel-nav.next {
    right: -15px;
  }

  /* Hide feature carousel arrows on mobile */
  .feature-carousel-nav {
    display: none !important;
  }

  /* 3 Steps Section - Horizontal Scroll on Mobile */
  .how-steps-mobile {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .how-steps-mobile .col {
    flex: 0 0 300px;
    scroll-snap-align: center;
  }

  .how-steps-mobile {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
  }

  .how-steps-mobile::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
  }

  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .feature-card {
    padding: 16px 16px !important;
  }

  .perks-card {
    padding: 16px 4px !important;
  }

  .metric {
    padding: 16px 6px !important;
  }

  .peer-review-text {
    font-weight: 400;
    font-style: Regular;
    font-size: 12px;
    text-align: center;
  }

  .comparison-container {
    margin: 0 16px !important;
    padding-bottom: 220px !important;
  }

  .buy-with-confidence {
    margin-top: -100px !important;
    padding: 16px !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  /* Reduce excessive spacing */
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 2rem !important;
  }

  .pt-lg-5 {
    padding-top: 2rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 2rem !important;
  }

  /* Hero section mobile spacing */
  .main-hero {
    padding: 20px 0;
  }

  /* Doctor carousel mobile padding */
  .doctor-slide .row > div {
    padding: 20px !important;
  }

  /* Additional font size adjustments for 14px elements */
  .order-btn {
    font-family: Roboto;
    font-weight: 800;
    font-style: ExtraBold;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    padding: 12px 20px !important;
  }

  .font-size-13 {
    font-size: 12px !important;
  }

  .font-size-17 {
    font-size: 16px;
  }

  /* Review cards handled by main responsive breakpoints */

  /* Better mobile spacing for list items */
  .list__item {
    font-size: 16px !important;
    line-height: 28px !important;
    margin-bottom: 8px;
  }

  /* Optimize carousel for mobile */
  .custom-carousel img {
    border-radius: 4px;
  }
}

/* TABLET RESPONSIVE FIXES */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Container and section padding adjustments */
  .container {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  /* Navbar adjustments for tablet */
  .navbar-left {
    padding-left: 10px;
  }

  /* Grid adjustments */
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Reviews are now handled by main responsive breakpoints */

  /* Color swatches - 2 columns on tablet */
  .color-swatches {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* How steps - 2 columns instead of 3 */
  .how-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Feature cards grid - 2 columns for tablet */
  .row-cols-md-3 {
    --bs-gutter-x: 1.5rem;
  }

  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  /* Comparison table adjustments */
  .comparison-container {
    max-width: 90%;
    margin: 0 auto;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1.8fr 1.3fr 1.1fr 1.1fr;
  }

  .comparison-cell {
    padding: 12px 10px;
    font-size: 15px;
  }

  .comparison-cell:first-child {
    font-size: 15px;
    padding-left: 20px;
  }

  /* Doctor carousel tablet adjustments */
  .doctor-carousel-container {
    padding: 20px;
  }

  .doctor-slide .row > div {
    padding: 30px 20px;
  }

  /* Feature carousel adjustments */
  .feature-card-item {
    width: 300px;
  }

  /* Metrics section */
  .metrics-data-wrapper {
    top: -50px;
  }

  /* Hero section adjustments */
  .main-title {
    font-size: 38px;
    line-height: 46px;
  }

  .secondary-title {
    font-size: 32px;
    line-height: 40px;
  }

  /* Better spacing for sections */
  .p-3.p-md-0 {
    padding: 2rem !important;
  }

  /* Buy with confidence section */
  .buy-with-confidence {
    margin-left: 30px;
    margin-right: 30px;
    padding: 24px;
  }

  /* Accordion adjustments */
  .accordion__item-header {
    padding: 20px;
  }

  .accordion__item-body {
    padding: 0 20px 20px 20px;
  }

  /* Brand logos spacing */
  .brand-logos {
    gap: 40px;
  }

  /* Image grid for colors - better tablet layout */
  .row.row-cols-1.row-cols-md-4 {
    --bs-gutter-x: 1.5rem;
  }

  .row.row-cols-1.row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  /* Features grid - 2 columns for 6 features */
  .row.row-cols-2.row-cols-md-3 {
    --bs-gutter-x: 2rem;
  }

  .row.row-cols-2.row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  /* Heal video adjustments */
  .heal-video {
    height: 320px;
    margin-bottom: 20px;
  }

  /* Body video adjustments */
  .body-video {
    height: 300px;
  }

  /* Better font sizes for tablet */
  .font-size-17 {
    font-size: 16px;
    line-height: 24px;
  }

  /* Testimonial adjustments */
  .doctor-quote {
    font-size: 17px;
  }

  /* Order button tablet sizing */
  .order-btn {
    font-size: 16px;
    padding: 12px 28px;
  }

  /* Product images in comparison */
  .product-image {
    width: 157px;
    margin-top: -40px;
  }

  /* Quote text adjustments */
  .quote-text {
    font-size: 13px;
    line-height: 19px;
  }

  /* List items better spacing */
  .list__item {
    font-size: 16px;
    line-height: 30px;
  }

  /* Calming effects text sizing */
  .calming-effects-text {
    font-size: 16px;
  }

  /* Metric number positioning */
  .num {
    font-size: 48px;
    top: 30px;
  }

  /* Status item font size */
  .status-item {
    font-size: 15px;
  }
}

/* Additional tablet landscape adjustments */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .how-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Make feature card titles left-aligned on all screen sizes */
.feature-card-item .secondary-title {
  text-align: left !important;
}
img.cc-image {
  width: 100%;
}
@media (max-width: 991px) {
  .black-banner div {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .col-12.col-lg-4.pt-lg-5.pe-lg-5 {
    text-align: center;
  }
  .doctor-carousel-container .carousel-nav.next {
    right: 20px;
  }
  .doctor-carousel-container .carousel-nav.prev {
    left: 20px;
  }
  .cc-gap-2 {
    gap: 10px;
  }
}

@media screen and (max-width: 900px) {
  .col-12.col-lg-8.p-5 {
    width: 50%;
    padding: 48px 24px 48px 76px !important;
  }
  .col-12.col-lg-4.pt-lg-5.pe-lg-5 {
    width: 50%;
    align-self: center;
  }
  .section.cc-custom.he01 .container {
    padding-right: 20px !important;
    margin-right: 0;
    margin-left: 20px;
    padding-left: 0px !important;
    max-width: 100%;
  }
  .section.cc-custom.he01 .container .headline-component {
    margin-right: auto;
  }
  .section.cc-custom.he01 .container .how-steps-mobile.d-md-none {
    padding-right: 20px;
  }

  /* Feature Carousel Mobile - Use desktop carousel for both */
  .feature-carousel-desktop {
    display: block !important;
  }

  .feature-carousel-mobile {
    display: none !important;
  }

  .feature-carousel-nav {
    width: 28px;
    height: 28px;
  }

  .feature-carousel-nav.prev {
    left: -15px;
  }

  .feature-carousel-nav.next {
    right: -15px;
  }

  /* Hide feature carousel arrows on mobile */
  .feature-carousel-nav {
    display: none !important;
  }

  /* 3 Steps Section - Horizontal Scroll on Mobile */
  .how-steps-mobile {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .how-steps-mobile .col {
    flex: 0 0 280px;
    scroll-snap-align: center;
  }

  .how-steps-mobile {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
  }

  .how-steps-mobile::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
  }

  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .feature-card {
    padding: 16px 16px !important;
  }

  .perks-card {
    padding: 16px 4px !important;
  }

  .metric {
    padding: 16px 6px !important;
  }

  .peer-review-text {
    font-weight: 400;
    font-style: Regular;
    font-size: 12px;
    text-align: center;
  }

  .comparison-container {
    margin: 0 16px !important;
    padding-bottom: 220px !important;
  }

  .buy-with-confidence {
    margin-top: -100px !important;
    padding: 16px !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  /* Reduce excessive spacing */
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 2rem !important;
  }

  .pt-lg-5 {
    padding-top: 2rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 2rem !important;
  }

  /* Hero section mobile spacing */
  .main-hero {
    padding: 20px 0;
  }

  /* Doctor carousel mobile padding */
  .doctor-slide .row > div {
    padding: 20px !important;
  }

  /* Additional font size adjustments for 14px elements */
  .order-btn {
    font-family: Roboto;
    font-weight: 800;
    font-style: ExtraBold;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    padding: 12px 20px !important;
  }

  .font-size-13 {
    font-size: 12px !important;
  }

  .font-size-17 {
    font-size: 16px;
  }

  /* Review cards handled by main responsive breakpoints */

  /* Better mobile spacing for list items */
  .list__item {
    font-size: 16px !important;
    line-height: 28px !important;
    margin-bottom: 8px;
  }

  /* Optimize carousel for mobile */
  .custom-carousel img {
    border-radius: 4px;
  }
  .marker-container.mt-3.d-md-flex.col-lg-10.mx-auto.mt-5 {
    display: flex;
  }
}

.testimonials-images {
  padding-bottom: 20px;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-top: 38px;
  font-family: Poppins;
}
.rating-table .blocks {
  display: flex;
  border-bottom: 1px solid #e1e1e1;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  width: 400px;
}
.rating-table .blocks .block {
  font-size: 16px;
  color: #111827;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 2px 0;
  flex-wrap: nowrap;
  font-family: 'Inter', sans-serif;
}
.middle-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.middle-rating strong {
  font-size: 70px;
  line-height: 1;
  margin-bottom: 5px;
  margin-top: 32px;
}
.middle-rating img {
  margin-bottom: 18px;
}
.middle-rating p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  max-width: 220px;
  text-align: center;
  line-height: 20px;
}
.testimonials-images .images {
  display: flex;
  align-items: center;
}
.rating-table .blocks .block img {
  margin-right: 20px;
  max-width: 168px;
  margin-block: 10px;
  margin-top: 2px;
  margin-bottom: 2px;
}
.testimonials-images .images ul {
  margin-bottom: 0;
}
.testimonials-images ul {
  display: grid;
  grid-template-columns: repeat(4, 97px);
  grid-auto-rows: 97px;
  gap: 7px;
}
.testimonials-images ul {
  list-style-type: none;
  padding: 0;
}
.testimonials-images ul li {
  margin: 0;
  padding: 0;
}
.testimonials-images ul img {
  width: 100%;
  height: auto;
}

.rating {
  max-width: 168px;
  height: 32px;
}
.marquee-section {
  padding: 40px 0;
}
.marquee-section .secondary-title {
  margin-bottom: 40px;
  max-width: 500px;
  margin-inline: auto;
}
.marquee {
  overflow: hidden;
  width: 100%;
}

.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 12px;
  animation: marquee-scroll 30s linear infinite;
  will-change: transform;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--marquee-shift, -50%));
  }
}

@media (min-width: 992px) {
  .cc-content-wrapper.cc-green-bg .cc-content-right__wrapper {
    height: -webkit-fill-available;
  }
  .cc-content-wrapper.cc-green-bg .cc-content-right__wrapper img {
    height: 100%;
    object-fit: cover;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}

@media (max-width: 768px) {
  .testimonials-images {
    padding-bottom: 0;
    flex-direction: column;
    align-items: center;
    padding-top: 5px;
    margin-bottom: 2rem;
  }
  .rating-table {
    margin-bottom: 30px;
  }
  .rating-table .blocks .block:nth-child(1) {
    max-width: 143px;
    width: 45%;
    font-size: 14px;
  }
  .rating-table .blocks .block + .block {
    margin-left: 3%;
    width: 53%;
    justify-content: end;
    font-size: 14px;
  }
  .rating-table .blocks .block img {
    width: 45%;
    max-width: 215px;
    margin-right: 10px;
  }
  li.list__item.cc-gap.cc-md.px-4 {
    margin-inline: auto;
  }
  li.list__item.cc-gap.cc-md.px-4 .fw-bold {
    width: 193px;
  }
  .col-12.col-lg-8.p-5 {
    width: 100%;
    padding: 24px 24px 24px 24px !important;
  }
  .col-12.col-lg-4.pt-lg-5.pe-lg-5 {
    width: 100%;
    align-self: center;
  }
  .marker-container.mt-3.d-md-flex.col-lg-10.mx-auto.mt-5 {
    display: block;
  }
  .carousel-thumb {
    width: 60px;
    height: 60px;
  }
  .marquee__track img {
    width: 145px;
  }
}

.container {
  max-width: 1203px;
}
/* 50-50 Section */
.section-50-50 {
  padding: 30px 0;
}

/* 50-50 Variant: REM Sleep (image left on desktop, placeholder support) */
.cc-rem-section .cc-rem-image {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  min-height: 320px;
}

.cc-rem-section .cc-num__wrapper {
  justify-content: flex-start;
}

@media (min-width: 769px) {
  .cc-rem-section .cc-content-wrapper {
    flex-direction: row-reverse;
  }
}
.cc-title-wrapper {
  display: flex;
  flex-flow: column;
  gap: 16px;
  margin-bottom: 32px;
}
.cc-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 56px;
}
.cc-content-left__wrapper,
.cc-content-right__wrapper {
  width: 50%;
}
.third-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 125%;
  margin-bottom: 16px;
  font-family: 'Outfit', sans-serif;
}
.cc-num__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.cc-content__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 163%;
  margin-bottom: 24px;
}
.cc-num {
  font-weight: 700;
  font-size: 56px;
  line-height: 63%;
  margin: 0;
  font-family: 'Unna', serif;
}
.cc-num__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 163%;
  margin: 0;
}
.cc-green__wrapper {
  padding: 20px;
  border-radius: 4px;
  background: rgba(167, 224, 82, 0.29);
}
.cc-quote-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 171%;
  margin: 0;
}

/* Section background helpers (requested) */
.cc-green-bg {
  background: #e6f6cd;
  border-radius: 12px;
  padding-left: 40px;
  overflow: hidden;
}

.cc-white-bg {
  background: #fff;
}

/* 50-50 Variant: Cooling/Washable (image placeholder) */
.cc-cooling-section .cc-cooling-image {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  min-height: 320px;
}

/* 50-50 Variant: Science */
.cc-science-section .cc-science-image {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  min-height: 320px;
}

.cc-science-quote {
  background: #e6f6cd;
  border-radius: 4px;
  padding: 18px;
  margin: 16px 0 22px;
}

.cc-science-metrics {
  display: flex;
  gap: 42px;
  align-items: flex-start;
  margin-top: 10px;
}

.cc-science-metric__num {
  font-family: 'Unna', serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
}

.cc-science-metric__label {
  font-size: 16px;
  line-height: 1.25;
  margin-top: 6px;
  text-align: center;
}
.mb-7 {
  margin-bottom: 4rem;
}

.cc-science-cta {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.cc-content-wrapper.cc-green-bg .cc-content-left__wrapper {
  width: 45%;
  padding: 30px 0;
}

@media (max-width: 768px) {
  .cc-green-bg {
    padding: 0;
  }
  .cc-content-wrapper.cc-green-bg .cc-content-left__wrapper {
    width: 100%;
    padding: 0 16px 24px;
  }
  .container.cc-mb-p-0 {
    padding: 0 !important;
  }
  .cc-green-bg {
    border-radius: 0;
  }
}

@media (max-width: 768px) {
  .cc-content-wrapper {
    flex-direction: column-reverse;
    gap: 20px;
  }

  /* Cooling section should keep image on top (not reversed) */
  .cc-cooling-section .cc-content-wrapper {
    flex-direction: column;
  }
  .cc-content-left__wrapper,
  .cc-content-right__wrapper {
    width: 100%;
  }

  .cc-science-metrics {
    gap: 0;
    justify-content: space-between;
  }

  .cc-science-metrics .cc-science-metric {
    padding: 5px;
  }
}

@media (max-width: 520px) {
  .third-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .cc-content__text {
    margin-bottom: 16px;
  }
  .cc-num__wrapper {
    margin-bottom: 16px;
  }
  .cc-green__wrapper {
    padding: 20px 14px 14px;
  }
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  row-gap: 30px;
}
.cc-content-grid__item {
  display: flex;
  flex-direction: column;
}
.cc-content-grid__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 159%;
  margin-bottom: 7px;
  margin-top: 7px;
}
@media (max-width: 768px) {
  .section-50-50.cc-rev .cc-content-wrapper {
    flex-direction: column;
  }
  .grid-2-col {
    column-gap: 20px;
  }
}

/* Protect Your Comfort / Mood Section */
.cc-mood-section {
  padding: 30px 0;
}

.cc-mood-title {
  text-align: center;
  margin-bottom: 22px;
}

.cc-mood-subheadline {
  max-width: 720px;
  margin: 10px auto 0;
  font-family:
    Roboto,
    system-ui,
    -apple-system,
    Segoe UI,
    Helvetica,
    Arial,
    sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.8;
}

.cc-mood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 744px;
  margin: 0 auto;
}

/* Support current mood markup where images are direct children */
.cc-mood-grid > img {
  width: 100%;
  display: block;
  border-radius: 12px;
  background: #f6f4f3;
}

.cc-mood-card {
  background: #f6f4f3;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}

.cc-mood-card__media {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-mood-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family:
    Roboto,
    system-ui,
    -apple-system,
    Segoe UI,
    Helvetica,
    Arial,
    sans-serif;
  font-weight: 500;
  font-size: 12px;
  opacity: 0.5;
}

.cc-mood-card__label {
  margin-top: 12px;
  font-family:
    Roboto,
    system-ui,
    -apple-system,
    Segoe UI,
    Helvetica,
    Arial,
    sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
}
#comparison {
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .cc-mood-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .cc-mood-card__media {
    aspect-ratio: 16 / 10;
  }
}

/* Two Sizes Section */
.cc-two-sizes-section {
  padding: 30px 0;
}

.cc-two-sizes-title {
  text-align: center;
  margin-bottom: 18px;
}

.cc-two-sizes-subheadline {
  max-width: 760px;
  margin: 10px auto 0;
  font-family:
    Roboto,
    system-ui,
    -apple-system,
    Segoe UI,
    Helvetica,
    Arial,
    sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  opacity: 0.8;
}

.cc-two-sizes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1117px;
  margin: 0 auto;
}

.cc-two-sizes-grid--mobile {
  display: none;
}

.cc-two-sizes-card {
  border-radius: 12px;
  overflow: hidden;
  background: #f6f4f3;
  /* aspect-ratio: 16 / 10; */
}

.cc-two-sizes-img {
  width: 100%;
  height: auto;
  display: block;
}

.cc-two-sizes-cta {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.review-problem__wrapper {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 162%;
  font-weight: 400;
  color: #000;
}
/* .cc-content-left__wrapper.cc-height-mob {
  width: -webkit-fill-available;
} */

@media (max-width: 767px) {
  .cc-two-sizes-grid--desktop {
    display: none;
  }
  .cc-two-sizes-grid--mobile {
    display: grid;
  }
  .cc-compare-head {
    padding: 30px 0 10px;
  }
  #comparison {
    padding-bottom: 220px;
    padding-inline: 10px;
  }
  .product-image {
    margin-top: -60px;
  }
  .product-image.second {
    margin-top: -60px;
  }
  .cc-compare-td--top {
    border-radius: 4px 4px 0 0;
  }
  .cc-compare-td--bottom {
    border-radius: 0 0 4px 4px;
    padding: 0;
    min-height: 20px;
    max-height: 20px;
    justify-content: space-between;
  }
  .rating-table .blocks {
    width: unset;
  }
  .testimonials-images ul {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: unset;
  }
  .quote-text {
    text-align: left !important;
  }
  .marquee-section {
    padding: 40px 0 0px;
  }
  .marquee-section .secondary-title {
    margin-bottom: 20px;
  }
  .cc-num__wrapper {
    align-items: start;
  }
  .cc-num {
    margin-top: 10px;
  }
  .cc-button-wrapper.d-lg-none {
    width: 100%;
    padding-inline: 30px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .cc-two-sizes-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .third-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .cc-content__text {
    margin-bottom: 16px;
  }
  .cc-num__wrapper {
    margin-bottom: 16px;
  }
  .cc-green__wrapper {
    padding: 20px 14px 14px;
  }
  .cc-button-wrapper.d-lg-none {
    margin: 0 auto !important;
  }
  .cc-title-wrapper {
    margin-bottom: 22px;
  }
  .cc-content-grid__title {
    width: 157px;
  }
  .cc-two-sizes-cta {
    margin-top: 0;
  }
  .rating {
    max-width: 124px;
    height: auto;
  }
  .middle-rating strong {
    margin-top: 0;
  }
  .cc-content-wrapper.cc-green-bg .cc-content-right__wrapper {
    height: auto;
  }
  .cc-content-left__wrapper.cc-height-mob {
    width: unset;
    margin-right: -20px;
  }
  .msb-1 {
    margin-bottom: 8px;
  }
  .d-flex.flex-column.mx-auto.mb-lg-5.pb-lg-0,
  .d-flex.gap-2.mt-3 {
    width: 100% !important;
    max-width: 320px;
  }
  .col-12.col-lg-6.mb-3.mt-4.pb-5 {
    padding-bottom: 0 !important;
  }
  .order-btn,
  .sticky-watch {
    width: 100%;
  }
  .cc-button-wrapper {
    width: 100%;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.cc-footer__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 520px) {
  .cc-footer__wrapper .separator-3 {
    display: none;
  }
  .cc-footer__wrapper {
    gap: 12px 20px;
  }
}

.section-50-50.cc-rev {
  padding-top: 0;
}

.tablet-show {
  display: none;
}
@media (max-width: 991px) {
  .tablet-show {
    display: block;
  }
  .tablet-hide {
    display: none;
  }
  .mb-7 {
    margin-bottom: 2.5rem;
  }
  .section.faq.mt-5 {
    margin-top: 1.5rem !important;
  }
}
