/** Shopify CDN: Minification failed

Line 1353:0 All "@import" rules must come first

**/
/* ═══════════════════════════════════════════════════════════
   Sleep Doctor Homepage — Custom Styles
   Brand: #032f3d (navy), #BAD233 (lime), #066380 (teal)
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --sd-navy: #032f3d;
  --sd-navy-light: #0a4a5e;
  --sd-lime: #BAD233;
  --sd-lime-dark: #9ab82a;
  --sd-teal: #066380;
  --sd-white: #ffffff;
  --sd-off-white: #f7f9fb;
  --sd-gray-100: #f1f3f5;
  --sd-gray-200: #e8e9eb;
  --sd-gray-500: #6c757d;
  --sd-gray-800: #2d3436;
  --sd-text: #1a2a3a;
  --sd-text-muted: #5a6a7a;
  --sd-radius: 12px;
  --sd-radius-sm: 8px;
  --sd-radius-lg: 20px;
  --sd-shadow: 0 4px 24px rgba(3,47,61,0.08);
  --sd-shadow-lg: 0 12px 48px rgba(3,47,61,0.12);
  --sd-shadow-hover: 0 8px 32px rgba(3,47,61,0.15);
  --sd-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --sd-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Reset for SD sections ──────────────────────────────── */
[class^="sd-section"] *,
[class^="sd-section"] *::before,
[class^="sd-section"] *::after {
  box-sizing: border-box;
}

[class^="sd-section"] {
  font-family: var(--sd-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Scroll progress bar ────────────────────────────────── */
#sd-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--sd-lime), var(--sd-teal));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── Animation base states ──────────────────────────────── */
[data-sd-animate] {
  opacity: 0;
  transition: opacity var(--sd-transition), transform var(--sd-transition);
}
[data-sd-animate="fade-up"] {
  transform: translateY(40px);
}
[data-sd-animate="fade-down"] {
  transform: translateY(-40px);
}
[data-sd-animate="fade-left"] {
  transform: translateX(-40px);
}
[data-sd-animate="fade-right"] {
  transform: translateX(40px);
}
[data-sd-animate="scale-up"] {
  transform: scale(0.92);
}
[data-sd-animate="zoom-in"] {
  transform: scale(0.85);
}

/* Revealed state */
[data-sd-animate].sd-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* ── HERO SECTION ───────────────────────────────────────── */
.sd-section-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--sd-navy);
  color: var(--sd-white);
}

.sd-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.sd-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.sd-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3,47,61,0.7) 0%,
    rgba(3,47,61,0.4) 40%,
    rgba(3,47,61,0.85) 100%
  );
  z-index: 2;
}

.sd-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.sd-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(186,210,51,0.15);
  border: 1px solid rgba(186,210,51,0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sd-lime);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.sd-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.sd-hero__title span {
  color: var(--sd-lime);
}

/* ── Hero Animated Text (TextColor) ─────────────────────── */
.sd-hero__title-animated {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.28em;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.sd-hero__word {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.32);
}

/* Gradient overlay — animates in/out per word */
.sd-hero__word-fg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #BAD233 0%, #ffffff 55%, #BAD233 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  background-size: 200% 200%;
  opacity: 0;
  white-space: nowrap;
  animation: sd-text-shimmer 3s linear infinite;
}

/* Subtle glow behind each word when active */
.sd-hero__word::after {
  content: '';
  position: absolute;
  inset: -8px -12px;
  border-radius: 10px;
  background: radial-gradient(ellipse at center, rgba(186, 210, 51, 0.18) 0%, transparent 70%);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}

/* Per-word animation assignments (9s total cycle) */
.sd-hero__word--1 .sd-hero__word-fg { animation: sd-text-fg-1 9s ease-in-out infinite, sd-text-shimmer 3s linear infinite; }
.sd-hero__word--1::after            { animation: sd-text-bg-1 9s ease-in-out infinite; }
.sd-hero__word--2 .sd-hero__word-fg { animation: sd-text-fg-2 9s ease-in-out infinite, sd-text-shimmer 3s linear infinite; }
.sd-hero__word--2::after            { animation: sd-text-bg-2 9s ease-in-out infinite; }
.sd-hero__word--3 .sd-hero__word-fg { animation: sd-text-fg-3 9s ease-in-out infinite, sd-text-shimmer 3s linear infinite; }
.sd-hero__word--3::after            { animation: sd-text-bg-3 9s ease-in-out infinite; }

/* Gradient shimmer sweep */
@keyframes sd-text-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Foreground opacity — word 1 on first third, etc. */
@keyframes sd-text-fg-1 {
  0%   { opacity: 1; }
  28%  { opacity: 1; }
  35%  { opacity: 0; }
  94%  { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes sd-text-fg-2 {
  0%   { opacity: 0; }
  29%  { opacity: 0; }
  36%  { opacity: 1; }
  61%  { opacity: 1; }
  68%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes sd-text-fg-3 {
  0%   { opacity: 0; }
  62%  { opacity: 0; }
  69%  { opacity: 1; }
  93%  { opacity: 1; }
  100% { opacity: 0; }
}

/* Background glow mirrors foreground */
@keyframes sd-text-bg-1 {
  0%   { opacity: 1; }
  28%  { opacity: 1; }
  35%  { opacity: 0; }
  94%  { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes sd-text-bg-2 {
  0%   { opacity: 0; }
  29%  { opacity: 0; }
  36%  { opacity: 1; }
  61%  { opacity: 1; }
  68%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes sd-text-bg-3 {
  0%   { opacity: 0; }
  62%  { opacity: 0; }
  69%  { opacity: 1; }
  93%  { opacity: 1; }
  100% { opacity: 0; }
}

.sd-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin: 0 0 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sd-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sd-lime);
  color: var(--sd-navy);
  font-family: var(--sd-font);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(186,210,51,0.3);
}

.sd-hero__cta:hover {
  background: var(--sd-lime-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(186,210,51,0.4);
  color: var(--sd-navy);
  text-decoration: none;
}

.sd-hero__cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.sd-hero__cta:hover svg {
  transform: translateX(4px);
}

.sd-hero__trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.sd-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}

.sd-hero__trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--sd-lime);
  flex-shrink: 0;
}

.sd-hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: sd-bounce 2s infinite;
}

@keyframes sd-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* ── THREE STEPS SECTION ────────────────────────────────── */
.sd-section-steps {
  padding: 100px 24px;
  background: var(--sd-off-white);
}

.sd-section-steps .sd-container {
  max-width: 1100px;
  margin: 0 auto;
}

.sd-section__label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sd-teal);
  margin-bottom: 12px;
}

.sd-section__heading {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--sd-navy);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.sd-section__subheading {
  text-align: center;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--sd-text-muted);
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

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

.sd-step-card {
  position: relative;
  background: var(--sd-white);
  border-radius: var(--sd-radius-lg);
  padding: 44px 32px 36px;
  text-align: center;
  box-shadow: var(--sd-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sd-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sd-shadow-hover);
}

.sd-step-card__number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sd-lime);
  color: var(--sd-navy);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(186,210,51,0.3);
}

.sd-step-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(6,99,128,0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sd-step-card__icon svg {
  width: 32px;
  height: 32px;
  color: var(--sd-teal);
}

.sd-step-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--sd-navy);
  margin: 0 0 10px;
}

.sd-step-card__text {
  font-size: 0.95rem;
  color: var(--sd-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Connector line between steps */
.sd-steps__connector {
  display: none;
}

@media (min-width: 768px) {
  .sd-steps__connector {
    display: block;
    position: absolute;
    top: 50%;
    right: -18px;
    width: 36px;
    height: 2px;
    background: var(--sd-gray-200);
  }
  .sd-steps__connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3px;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--sd-lime);
    border-right: 2px solid var(--sd-lime);
    transform: rotate(45deg);
  }
  .sd-step-card { position: relative; overflow: visible; }
  .sd-step-card:last-child .sd-steps__connector { display: none; }
}

/* ── TRUST BAR ──────────────────────────────────────────── */
.sd-section-trust {
  padding: 60px 24px;
  background: var(--sd-navy);
  color: var(--sd-white);
}

.sd-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.sd-trust__item {
  text-align: center;
  padding: 20px;
}

.sd-trust__number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--sd-lime);
  line-height: 1;
  margin-bottom: 8px;
}

.sd-trust__label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  line-height: 1.4;
}

/* ── PRODUCTS SECTION ───────────────────────────────────── */
.sd-section-products {
  padding: 100px 24px;
  background: var(--sd-white);
}

.sd-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.sd-product-card {
  background: var(--sd-white);
  border-radius: var(--sd-radius);
  overflow: hidden;
  border: 1px solid var(--sd-gray-200);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.sd-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sd-shadow-lg);
  text-decoration: none;
  color: inherit;
}

.sd-product-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sd-gray-100);
}

.sd-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sd-product-card:hover .sd-product-card__image img {
  transform: scale(1.05);
}

.sd-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--sd-lime);
  color: var(--sd-navy);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sd-product-card__body {
  padding: 20px;
}

.sd-product-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--sd-navy);
  margin: 0 0 6px;
  line-height: 1.3;
}

.sd-product-card__subtitle {
  font-size: 0.85rem;
  color: var(--sd-text-muted);
  margin: 0 0 12px;
  line-height: 1.4;
}

.sd-product-card__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sd-navy);
}

.sd-product-card__price-from {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--sd-text-muted);
}

.sd-products__cta {
  text-align: center;
  margin-top: 48px;
}

/* ── BOXED MATTRESS FEATURE ─────────────────────────────── */
.sd-m2go-scroll-wrapper {
  position: relative;
  height: auto;
}
.sd-m2go-scroll-wrapper.frames-ready {
  height: 300vh;
}

.sd-section-feature {
  padding: 100px 24px;
  background: var(--sd-off-white);
  overflow: hidden;
}

.sd-section-feature--sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 0 24px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  overflow: visible;
  z-index: 10;
}

.sd-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.sd-feature__image {
  border-radius: var(--sd-radius-lg);
  overflow: hidden;
  box-shadow: var(--sd-shadow-lg);
}

.sd-feature__image img {
  width: 100%;
  height: auto;
  display: block;
}

.sd-m2go-canvas {
  width: 100%;
  aspect-ratio: 3 / 2;
  display: block;
  background: #0b2530;
}

.sd-feature__content h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--sd-navy);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.sd-feature__content p {
  font-size: 1rem;
  color: var(--sd-text-muted);
  line-height: 1.7;
  margin: 0 0 16px;
}

.sd-feature__content p strong {
  color: var(--sd-navy);
  font-weight: 600;
}

.sd-feature__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.sd-feature__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sd-white);
  border: 1px solid var(--sd-gray-200);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sd-navy);
}

.sd-feature__tag svg {
  width: 16px;
  height: 16px;
  color: var(--sd-lime-dark);
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
.sd-section-testimonials {
  padding: 100px 24px;
  background: var(--sd-off-white);
}

.sd-testimonials__columns {
  display: flex;
  gap: 16px;
  max-width: 1100px;
  margin: 48px auto 0;
  max-height: 620px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.sd-testimonials__column {
  flex: 1;
  min-width: 0;
}

.sd-testimonials__column:hover .sd-testimonials__track {
  animation-play-state: paused;
}

.sd-testimonials__track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: sd-tscroll-up 15s linear infinite;
}

.sd-testimonials__track--down {
  animation-name: sd-tscroll-down;
}

@keyframes sd-tscroll-up {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

@keyframes sd-tscroll-down {
  from { transform: translateY(-50%); }
  to { transform: translateY(0); }
}

.sd-tcard {
  background: var(--sd-white);
  border-radius: var(--sd-radius);
  padding: 24px;
  border: 1px solid rgba(3, 47, 61, 0.08);
  box-shadow: 0 2px 12px rgba(3, 47, 61, 0.06);
  flex-shrink: 0;
}

.sd-tcard__stars {
  color: #f5a623;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.sd-tcard__text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--sd-text);
  margin: 0 0 16px;
}

.sd-tcard__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sd-tcard__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sd-navy);
  color: var(--sd-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.sd-tcard__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--sd-navy);
  line-height: 1.3;
}

.sd-tcard__source {
  font-size: 11px;
  color: #6b7280;
  margin-top: 1px;
}

/* ── VISIT / CTA SECTION ────────────────────────────────── */
.sd-section-visit {
  padding: 100px 24px;
  background: var(--sd-navy);
  color: var(--sd-white);
}

.sd-visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.sd-visit__content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.sd-visit__content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0 0 12px;
}

.sd-visit__hours {
  margin: 24px 0;
  padding: 20px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--sd-radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
}

.sd-visit__hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
}

.sd-visit__hours-day {
  color: rgba(255,255,255,0.6);
}

.sd-visit__hours-time {
  font-weight: 500;
}

.sd-visit__actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.sd-visit__image {
  border-radius: var(--sd-radius-lg);
  overflow: hidden;
  box-shadow: var(--sd-shadow-lg);
}

.sd-visit__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.sd-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sd-font);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sd-btn--primary {
  background: var(--sd-lime);
  color: var(--sd-navy);
  box-shadow: 0 4px 16px rgba(186,210,51,0.25);
}

.sd-btn--primary:hover {
  background: var(--sd-lime-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(186,210,51,0.35);
  color: var(--sd-navy);
  text-decoration: none;
}

.sd-btn--outline {
  background: transparent;
  color: var(--sd-white);
  border: 2px solid rgba(255,255,255,0.25);
}

.sd-btn--outline:hover {
  border-color: var(--sd-lime);
  color: var(--sd-lime);
  text-decoration: none;
}

.sd-btn--dark {
  background: var(--sd-navy);
  color: var(--sd-white);
}

.sd-btn--dark:hover {
  background: var(--sd-navy-light);
  transform: translateY(-2px);
  color: var(--sd-white);
  text-decoration: none;
}

/* ── PARTNER LOGOS MARQUEE ───────────────────────────────── */
.sd-section-partner-logos {
  padding: 28px 0;
  background: #fff;
  border-top: 1px solid #e8e9eb;
  border-bottom: 1px solid #e8e9eb;
  overflow: hidden;
}

.sd-partner-logos__label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #bbb;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0 0 20px;
  padding: 0 24px;
}

.sd-partner-logos__overflow {
  position: relative;
  overflow: hidden;
}
.sd-partner-logos__overflow::before,
.sd-partner-logos__overflow::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.sd-partner-logos__overflow::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.sd-partner-logos__overflow::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.sd-partner-logos__track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  padding: 0 32px;
  animation: sd-logos-scroll 40s linear infinite;
}
.sd-partner-logos__overflow:hover .sd-partner-logos__track {
  animation-play-state: paused;
}
@keyframes sd-logos-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.sd-partner-logos__item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.sd-partner-logos__item img {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s, filter 0.3s;
  filter: grayscale(15%);
}
.sd-partner-logos__item img:hover {
  opacity: 1;
  filter: none;
}
.sd-partner-logos__placeholder {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #555;
  background: #fafafa;
  white-space: nowrap;
  font-family: var(--sd-font);
}

/* ── SALE INTERACTIVE SELECTOR ───────────────────────────── */
.sd-section-sale-selector {
  padding: 80px 0;
  background: var(--sd-navy);
  overflow: hidden;
}

.sd-sale-selector__columns {
  display: flex;
  width: calc(100% - 48px);
  max-width: 1100px;
  margin: 48px auto 0;
  height: 560px;
  border-radius: 16px;
  overflow: hidden;
}

.sd-sale-panel {
  position: relative;
  flex: 1 1 0%;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #1a3a4a;
  min-width: 52px;
  transition: flex 0.7s cubic-bezier(0.4,0,0.2,1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.sd-sale-panel.is-active {
  flex: 7 1 0%;
  border-color: var(--sd-lime);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 2;
}

.sd-sale-panel__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.sd-sale-panel__img--placeholder { background: #1a3a4a; }

.sd-sale-panel__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #0b2530;
}
.sd-sale-panel.is-active .sd-sale-panel__img { transform: scale(1.04); }

.sd-sale-panel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,47,61,0.95) 0%, rgba(3,47,61,0.3) 55%, transparent 100%);
  pointer-events: none;
}

.sd-sale-panel__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--sd-lime);
  color: var(--sd-navy);
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.sd-sale-panel__price-block {
  position: absolute;
  top: 14px; right: 14px;
  text-align: right;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.45s 0.2s ease, transform 0.45s 0.2s ease;
  pointer-events: none;
}
.sd-sale-panel.is-active .sd-sale-panel__price-block {
  opacity: 1;
  transform: translateY(0);
}
.sd-sale-panel__price {
  font-size: 1.5rem; font-weight: 800;
  color: var(--sd-lime);
  line-height: 1.1;
}
.sd-sale-panel__compare {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
}

.sd-sale-panel__cta {
  position: absolute;
  bottom: 72px; right: 16px;
  background: var(--sd-lime);
  color: var(--sd-navy);
  font-weight: 700; font-size: 0.85rem;
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s 0.15s ease, transform 0.45s 0.15s ease;
}
.sd-sale-panel.is-active .sd-sale-panel__cta {
  opacity: 1;
  transform: translateY(0);
}
.sd-sale-panel__cta:hover { background: #d0ea3a; }

.sd-sale-panel__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.sd-sale-panel__icon {
  min-width: 44px; width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(3,47,61,0.85);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(186,210,51,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.sd-sale-panel__info { overflow: hidden; }

.sd-sale-panel__title {
  font-weight: 700; font-size: 1.05rem;
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(25px);
  transition: opacity 0.6s 0.1s ease, transform 0.6s 0.1s ease;
}
.sd-sale-panel__sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(25px);
  transition: opacity 0.6s 0.18s ease, transform 0.6s 0.18s ease;
}
.sd-sale-panel.is-active .sd-sale-panel__title,
.sd-sale-panel.is-active .sd-sale-panel__sub {
  opacity: 1;
  transform: translateX(0);
}

.sd-section-sale-selector .sd-section__label { color: var(--sd-lime); }
.sd-section-sale-selector .sd-section__heading { color: var(--sd-white); }
.sd-section-sale-selector .sd-section__subheading { color: rgba(255,255,255,0.7); }

@media (max-width: 768px) {
  .sd-sale-panel--mobile-hidden { display: none; }
  .sd-sale-selector__columns {
    height: 340px;
    width: calc(100% - 24px);
  }
  .sd-sale-panel { min-width: 44px; }
}

/* ── CLICK & COLLECT BANNER ─────────────────────────────── */
.sd-section-notice {
  padding: 32px 24px;
  background: linear-gradient(135deg, var(--sd-teal), var(--sd-navy));
  color: var(--sd-white);
  text-align: center;
}

.sd-notice__text {
  font-size: 1rem;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.sd-notice__text strong {
  color: var(--sd-lime);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .sd-steps__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 400px;
    margin: 0 auto;
  }
  .sd-steps__connector { display: none !important; }

  .sd-trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .sd-products__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .sd-feature__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sd-m2go-scroll-wrapper.frames-ready {
    height: 350vh;
  }

  .sd-section-feature--sticky {
    top: 65px;
    height: calc(100vh - 65px);
    align-items: flex-start;
    padding-top: 16px;
    overflow: visible;
  }

  .sd-m2go-canvas {
    aspect-ratio: 16 / 9;
    max-height: 38vh;
  }

  .sd-section-sale-selector {
    margin-top: 280px;
  }

  .sd-testimonials__column--sm-hidden {
    display: none;
  }

  .sd-testimonials__columns {
    max-height: 500px;
  }

  .sd-visit__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .sd-products__grid {
    grid-template-columns: 1fr;
  }

  .sd-hero__trust {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .sd-hero__scroll-hint {
    display: none;
  }

  .sd-section-steps,
  .sd-section-products,
  .sd-section-feature,
  .sd-section-testimonials {
    padding: 60px 16px;
  }

  .sd-section-visit {
    padding: 60px 16px;
  }

  .sd-visit__actions {
    flex-direction: column;
  }

  .sd-visit__actions .sd-btn {
    justify-content: center;
    width: 100%;
  }
}

/* ── FONT IMPORT ────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── Header scrolled state ──────────────────────────────── */
.sd-header-scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08) !important;
  transition: box-shadow 0.3s ease !important;
}
