/** Shopify CDN: Minification failed

Line 4363:1 Expected "}" to go with "{"

**/
/* =============================================
   STORY MAGAZINE - MAGAZINE STYLE LAYOUT
   ============================================= */

/* Main Container */
.story-magazine-container {
  position: relative;
  overflow: visible; /* Changed from auto - arrows need to be visible outside container */
  padding: clamp(40px, 6vw, 60px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  max-width: 1200px;
  margin: 0 auto;
}

/* =============================================
   MAGAZINE HEADER - FULL WIDTH HEADLINE
   ============================================= */

.story-magazine__header {
  text-align: center;
  margin-bottom: clamp(20px, 4vw, 40px);
}

.story-magazine__headline {
  font-size: clamp(40px, 7vw, 72px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0b1324;
  margin: 0;
  max-width: 1000px;
  margin: 0 auto;
}

/* =============================================
   MAGAZINE BODY - TWO COLUMN LAYOUT
   ============================================= */

.story-magazine__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: start;
}

@media (min-width: 768px) {
  .story-magazine__body {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* =============================================
   LEFT COLUMN - IMAGE
   ============================================= */

.story-magazine__image-column {
  position: relative;
}

.story-magazine__image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.story-magazine__image {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* Image Badges Overlay */
.story-magazine__image-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.story-magazine-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  font-size: 13px;
  font-weight: 600;
  color: #0b1324;
  pointer-events: auto;
  transform: translateY(10px);
  opacity: 0;
  animation: storyFadeInUp 0.8s ease-out forwards;
}

.story-magazine-badge__icon {
  font-size: 14px;
  line-height: 1;
}

.story-magazine-badge__text {
  white-space: nowrap;
  font-size: 12px;
}

/* Badge Positioning */
.story-magazine-badge--setup {
  top: 16px;
  left: 16px;
  animation-delay: 0.3s;
}

.story-magazine-badge--fit {
  top: 16px;
  right: 16px;
  animation-delay: 0.5s;
}

.story-magazine-badge--guarantee {
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  animation-delay: 0.7s;
}

@keyframes storyFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.story-magazine-badge--guarantee {
  animation-name: storyFadeInUpCenter;
}

@keyframes storyFadeInUpCenter {
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* =============================================
   RIGHT COLUMN - CONTENT
   ============================================= */

.story-magazine__content-column {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 32px);
  padding-left: clamp(0px, 3vw, 40px);
}

.story-magazine__subheadline {
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.4;
  color: #5b6574;
  margin: 0;
  font-weight: 400;
}

/* Benefits Section */
.story-magazine__benefits {
  margin: clamp(16px, 3vw, 24px) 0;
}

.story-benefits__title {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 700;
  color: #0b1324;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.story-benefits__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.story-benefits__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 1.4;
}

.story-benefits__icon {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.story-benefits__text {
  color: #5b6574;
  font-weight: 500;
}

/* Social Proof */
.story-magazine__social {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.story-social__avatars {
  display: flex;
  align-items: center;
  gap: -6px;
}

.story-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -6px;
  transition: transform 0.2s ease;
  position: relative;
}

.story-avatar:first-child {
  margin-left: 0;
}

.story-avatar:hover {
  transform: scale(1.1);
  z-index: 1;
}

.story-social__text {
  font-size: 14px;
  color: #5b6574;
  line-height: 1.4;
}

.story-social__text strong {
  color: #0b1324;
  font-weight: 700;
}

/* CTAs */
.story-magazine__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.story-magazine-btn {
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  min-width: 140px;
  text-align: center;
}

.story-magazine-btn--primary {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.story-magazine-btn--primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.story-magazine-btn--secondary {
  background: transparent;
  color: #0b1324;
  border-color: #0b1324;
}

.story-magazine-btn--secondary:hover {
  background: #0b1324;
  color: #ffffff;
  transform: translateY(-2px);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 767px) {
  .story-magazine-container {
    padding: clamp(30px, 6vw, 40px);
  }
  
  .story-magazine__headline {
    font-size: clamp(32px, 8vw, 48px);
  }
  
  .story-magazine__content-column {
    padding-left: 0;
    text-align: center;
  }
  
  .story-magazine__ctas {
    flex-direction: column;
    align-items: center;
  }
  
  .story-magazine-btn {
    width: 100%;
    max-width: 280px;
  }
  
  .story-magazine-badge {
    font-size: 11px;
    padding: 6px 12px;
  }
  
  .story-magazine-badge__text {
    font-size: 10px;
  }
  
  .story-magazine-badge--setup {
    top: 12px;
    left: 12px;
  }
  
  .story-magazine-badge--fit {
    top: 12px;
    right: 12px;
  }
  
  .story-magazine-badge--guarantee {
    bottom: 12px;
  }
  
  .story-benefits__list {
    text-align: left;
  }
}

/* =============================================
   ACCESSIBILITY
   ============================================= */

@media (prefers-reduced-motion: reduce) {
  .story-magazine-badge {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .story-magazine-badge--guarantee {
    transform: translateX(-50%);
  }
  
  .story-magazine__image,
  .story-magazine-badge,
  .story-magazine-btn {
    transition: none;
  }
}

/* Focus States */
.story-magazine-btn:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.story-magazine-badge:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/* Performance Optimization */
.story-magazine__image {
  will-change: transform;
}

.story-magazine-badge {
  will-change: transform, opacity;
}

/* =============================================
   REAL DOORWAYS SECTION - PHOTOREALISTIC
   ============================================= */

.storydeck .real-doorways-section {
  padding: clamp(60px, 10vw, 120px) 0 !important;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
  position: relative;
  }

.storydeck .real-doorways-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.storydeck .real-doorways__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: grid !important;
  grid-template-columns: 1fr;
  gap: clamp(40px, 8vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .storydeck .real-doorways__container {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================
   LEFT COLUMN - CONTENT
   ============================================= */

.storydeck .real-doorways__content {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}

.storydeck .real-doorways__text {
  max-width: 500px;
}

.storydeck .real-doorways__headline {
  font-size: clamp(32px, 6vw, 48px) !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 clamp(16px, 3vw, 24px) 0 !important;
  letter-spacing: -0.02em;
}

.storydeck .real-doorways__subheadline {
  font-size: clamp(16px, 2.5vw, 20px) !important;
  line-height: 1.5 !important;
  color: #475569 !important;
  margin: 0 0 clamp(24px, 4vw, 32px) 0 !important;
  font-weight: 400;
}

/* Benefits List */
.storydeck .real-doorways__benefits {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 clamp(24px, 4vw, 32px) 0 !important;
  display: flex !important;
  flex-direction: column;
  gap: 16px;
}

.storydeck .real-doorways__benefit {
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-size: 16px !important;
  line-height: 1.4;
  color: #334155 !important;
  font-weight: 500;
}

.storydeck .benefit-icon {
  font-size: 20px !important;
  line-height: 1;
  flex-shrink: 0;
}

/* Secondary CTA */
.storydeck .real-doorways__cta {
  margin-top: clamp(16px, 3vw, 24px);
}

.storydeck .doorways-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 14px 28px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent !important;
}

.storydeck .doorways-btn--secondary {
  background: transparent !important;
  color: #475569 !important;
  border-color: #cbd5e1 !important;
}

.storydeck .doorways-btn--secondary:hover {
  background: #475569 !important;
  color: #ffffff !important;
  border-color: #475569 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(71, 85, 105, 0.2);
}

/* =============================================
   RIGHT COLUMN - PHOTOREALISTIC VISUAL
   ============================================= */

.storydeck .real-doorways__visual {
  position: relative;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.storydeck .doorway-showcase {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.storydeck .doorway-showcase__container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  background: #ffffff;
}

.storydeck .doorway-showcase__image {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  transition: transform 0.3s ease;
}

.storydeck .doorway-showcase__container:hover .doorway-showcase__image {
  transform: scale(1.02);
}

/* Measurement Overlay */
.storydeck .measurement-overlay {
  position: absolute !important;
  top: 80px !important;
  left: 30% !important;
  transform: translateX(-50%) !important;
  background: rgba(15, 23, 42, 0.9) !important;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  padding: 12px 20px !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
  z-index: 10;
}

.storydeck .measurement-text {
  font-size: 16px !important;
  display: block !important;
  text-align: center;
  margin-bottom: 4px;
}

.storydeck .measurement-arrows {
  display: flex !important;
  justify-content: space-between;
  font-size: 12px !important;
  opacity: 0.8;
}

/* Protection Badge */
.storydeck .protection-badge {
  position: absolute !important;
  bottom: 20px !important;
  left: 20px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
  font-size: 13px !important;
  max-width: 140px;
  z-index: 10;
}

.storydeck .protection-icon {
  font-size: 16px !important;
  line-height: 1;
  flex-shrink: 0;
}

.storydeck .protection-text {
  line-height: 1.3;
}

.storydeck .protection-text strong {
  color: #0f172a !important;
  font-weight: 700 !important;
  display: block;
}

.storydeck .protection-text small {
  color: #64748b !important;
  font-size: 11px !important;
}

/* Trust Indicator */
.storydeck .doorway-trust {
  margin-top: 24px;
  padding: 20px !important;
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
}

.storydeck .trust-stats {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: center;
}

.storydeck .trust-stat {
  display: flex !important;
  flex-direction: column;
  gap: 4px;
}

.storydeck .trust-number {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #059669 !important;
  line-height: 1;
}

.storydeck .trust-label {
  font-size: 12px !important;
  color: #64748b !important;
  font-weight: 500 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Ensure visibility override */
.storydeck .real-doorways-section *,
.storydeck .comfort-section * {
  visibility: visible !important;
  opacity: 1 !important;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 767px) {
  .real-doorways-section {
    padding: clamp(40px, 8vw, 60px) 0;
  }

  .real-doorways__container {
    gap: clamp(30px, 6vw, 40px);
  }

  .real-doorways__content {
    text-align: center;
  }

  .real-doorways__benefits {
    text-align: left;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .doorways-btn {
    width: 100%;
    max-width: 280px;
  }

  .measurement-overlay {
    top: 15px;
    padding: 10px 16px;
  }

  .measurement-text {
    font-size: 14px;
  }

  .protection-badge {
    bottom: 15px;
    left: 15px;
    padding: 10px 12px;
    font-size: 12px;
    max-width: 120px;
  }

  .protection-text small {
    font-size: 10px;
  }

  .trust-stats {
    gap: 16px;
  }

  .trust-number {
    font-size: 24px;
  }

  .trust-label {
    font-size: 11px;
  }
}

/* =============================================
   ANIMATIONS & INTERACTIONS
   ============================================= */

.real-doorways__content.reveal,
.real-doorways__visual.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.real-doorways__content.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.real-doorways__visual.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.measurement-overlay {
  animation: measurementPulse 3s ease-in-out infinite;
}

@keyframes measurementPulse {
  0%, 100% { 
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); 
  }
  50% { 
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4); 
  }
}

.protection-badge {
  animation: protectionFloat 4s ease-in-out infinite;
}

@keyframes protectionFloat {
  0%, 100% { 
    transform: translateY(0); 
  }
  50% { 
    transform: translateY(-4px); 
  }
}

/* =============================================
   ACCESSIBILITY
   ============================================= */

@media (prefers-reduced-motion: reduce) {
  .real-doorways__content.reveal,
  .real-doorways__visual.reveal,
  .doorway-showcase__image,
  .doorways-btn,
  .measurement-overlay,
  .protection-badge {
    animation: none;
    transition: none;
  }

  .doorway-showcase__container:hover .doorway-showcase__image {
    transform: none;
  }

  .doorways-btn--secondary:hover {
    transform: none;
  }
}

/* Focus States */
.doorways-btn:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Performance */
.doorway-showcase__image {
  will-change: transform;
}

.measurement-overlay,
.protection-badge {
  will-change: transform, box-shadow;
}

/* =============================================
   ENHANCED ADJUSTABLE WIDTH INDICATOR
   ============================================= */

.storydeck .adjustable-width-indicator {
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;
  transform: none !important;
  background: rgba(15, 23, 42, 0.95) !important;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 16px !important;
  padding: 16px 20px !important;
  color: #ffffff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: adjustmentPulse 4s ease-in-out infinite;
  min-width: 180px;
  text-align: center;
  z-index: 10;
}

.storydeck .width-bracket {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.storydeck .bracket-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.storydeck .bracket-line--animated {
  animation: bracketExpand 3s ease-in-out infinite;
}

.storydeck .bracket-end {
  font-size: 18px;
  font-weight: 700;
  color: #10b981;
  opacity: 0.9;
}

.storydeck .bracket-measurement {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.storydeck .measurement-range {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.storydeck .measurement-label {
  font-size: 11px;
  font-weight: 500;
  color: #10b981;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.storydeck .adjustment-arrows {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.storydeck .adjust-arrow {
  font-size: 14px;
  color: #10b981;
  font-weight: 700;
  animation: arrowPulse 2s ease-in-out infinite;
}

.storydeck .adjust-left {
  animation-delay: 0.3s;
}

.storydeck .adjust-right {
  animation-delay: 0.6s;
}

/* Animations */
@keyframes adjustmentPulse {
  0%, 100% { 
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
  }
  50% { 
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.25);
    border-color: rgba(16, 185, 129, 0.3);
  }
}

@keyframes bracketExpand {
  0%, 100% { 
    transform: scaleX(1);
  }
  50% { 
    transform: scaleX(1.1);
  }
}

@keyframes arrowPulse {
  0%, 100% { 
    opacity: 0.6;
    transform: scale(1);
  }
  50% { 
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
  .storydeck .adjustable-width-indicator {
    top: 15px;
    right: 15px;
    padding: 12px 16px;
    min-width: 140px;
  }

  .storydeck .measurement-range {
    font-size: 13px;
  }

  .storydeck .bracket-end {
    font-size: 14px;
  }

  .storydeck .measurement-label {
    font-size: 9px;
  }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .storydeck .adjustable-width-indicator {
    top: 18px;
    right: 18px;
    min-width: 160px;
  }
}

/* Large screens */
@media screen and (min-width: 1200px) {
  .storydeck .adjustable-width-indicator {
    top: 25px;
    right: 25px;
    min-width: 200px;
  }
}

/* Performance optimizations */
.adjustable-width-indicator {
  will-change: transform, box-shadow;
}

/* =============================================
   COMFORT SECTION - ENHANCED COMPARISON
   ============================================= */

/* Force override any conflicting styles */
.storydeck .comfort-section,
.storydeck .comfort-section__container,
.storydeck .comfort-section__content,
.storydeck .comfort-section__visual {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.storydeck .comfort-section {
  padding: clamp(60px, 10vw, 120px) 0 !important;
  background: #ffffff !important;
  position: relative;
  }

.storydeck .comfort-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: grid !important;
  grid-template-columns: 1fr;
  gap: clamp(40px, 8vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .storydeck .comfort-section__container {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================
   LEFT COLUMN - CONTENT
   ============================================= */

.storydeck .comfort-section__content {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}

.storydeck .comfort-section__text {
  max-width: 500px;
}

.storydeck .comfort-section__headline {
  font-size: clamp(32px, 6vw, 48px) !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 clamp(16px, 3vw, 24px) 0 !important;
  letter-spacing: -0.02em;
}

.storydeck .comfort-section__subheadline {
  font-size: clamp(16px, 2.5vw, 20px) !important;
  line-height: 1.5 !important;
  color: #475569 !important;
  margin: 0 0 clamp(24px, 4vw, 32px) 0 !important;
  font-weight: 400;
}

/* Benefits List */
.storydeck .comfort-section__benefits {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 clamp(24px, 4vw, 32px) 0 !important;
  display: flex !important;
  flex-direction: column;
  gap: 16px;
}

.storydeck .comfort-section__benefit {
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-size: 16px !important;
  line-height: 1.4;
  color: #334155 !important;
  font-weight: 500;
}

.storydeck .comfort-benefit-icon {
  font-size: 20px !important;
  line-height: 1;
  flex-shrink: 0;
}

/* CTAs */
.storydeck .comfort-section__ctas {
  display: flex !important;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: clamp(16px, 3vw, 24px);
}

.storydeck .comfort-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 16px 28px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent !important;
  min-width: 140px;
}

.storydeck .comfort-btn--primary {
  background: #2563eb !important;
  color: #ffffff !important;
  border-color: #2563eb !important;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.storydeck .comfort-btn--primary:hover {
  background: #1d4ed8 !important;
  border-color: #1d4ed8 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.storydeck .comfort-btn--secondary {
  background: transparent !important;
  color: #475569 !important;
  border-color: #cbd5e1 !important;
}

.storydeck .comfort-btn--secondary:hover {
  background: #475569 !important;
  color: #ffffff !important;
  border-color: #475569 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(71, 85, 105, 0.2);
}

/* =============================================
   RIGHT COLUMN - COMPARISON CARD
   ============================================= */

.storydeck .comfort-section__visual {
  position: relative;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.storydeck .grip-comparison-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-radius: 20px !important;
  padding: clamp(24px, 4vw, 32px) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1) !important;
  width: 100%;
  max-width: 400px;
  position: relative;
}

.storydeck .comparison-title {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin: 0 0 24px 0 !important;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Grip Comparison */
.storydeck .grip-comparison {
  display: flex !important;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.storydeck .grip-bar-row {
  display: flex !important;
  flex-direction: column;
  gap: 8px;
}

.storydeck .grip-label {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.storydeck .grip-brand {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.storydeck .grip-measurement {
  font-size: 12px !important;
  color: #64748b !important;
  font-weight: 500;
}

/* Animated Bars */
.storydeck .grip-bar-container {
  width: 100% !important;
  height: 24px !important;
  background: #e5e7eb !important;
  border-radius: 12px !important;
  overflow: visible !important;
  position: relative !important;
  display: block !important;
}

.storydeck .grip-bar {
  height: 100% !important;
  border-radius: 12px !important;
  position: relative !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.storydeck .grip-bar--tb7 {
  background: #dc2626 !important;
  background-image: linear-gradient(135deg, #dc2626, #ef4444) !important;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3) !important;
  width: 100% !important;
}

.storydeck .grip-bar--others {
  background: #9ca3af !important;
  background-image: linear-gradient(135deg, #9ca3af, #d1d5db) !important;
  box-shadow: 0 2px 8px rgba(156, 163, 175, 0.2) !important;
  width: 70% !important;
}

/* Animation trigger */
.storydeck .comfort-section__visual.in-view .grip-bar[data-width="100"] {
  width: 100%;
}

.storydeck .comfort-section__visual.in-view .grip-bar[data-width="70"] {
  width: 70%;
}

/* Comparison Note */
.storydeck .comparison-note {
  display: flex !important;
  align-items: center;
  gap: 8px;
  font-size: 13px !important;
  color: #475569 !important;
  line-height: 1.4;
  margin: 16px 0 0 0 !important;
  padding: 12px 16px !important;
  background: rgba(255, 255, 255, 0.7) !important;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.storydeck .note-icon {
  font-size: 16px !important;
  line-height: 1;
  flex-shrink: 0;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 767px) {
  .storydeck .comfort-section {
    padding: clamp(40px, 8vw, 60px) 0 !important;
  }

  .storydeck .comfort-section__container {
    gap: clamp(30px, 6vw, 40px);
  }

  .storydeck .comfort-section__content {
    text-align: center;
  }

  .storydeck .comfort-section__benefits {
    text-align: left;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .storydeck .comfort-section__ctas {
    flex-direction: column;
    align-items: center;
  }

  .storydeck .comfort-btn {
    width: 100%;
    max-width: 280px;
  }

  .storydeck .grip-comparison-card {
    padding: clamp(20px, 4vw, 24px) !important;
  }

  .storydeck .comparison-title {
    font-size: 16px !important;
  }

  .storydeck .grip-brand {
    font-size: 13px !important;
  }

  .storydeck .grip-measurement {
    font-size: 11px !important;
  }

  .storydeck .comparison-note {
    font-size: 12px !important;
  }
}

/* =============================================
   ANIMATIONS & INTERACTIONS
   ============================================= */

.storydeck .comfort-section__content.reveal,
.storydeck .comfort-section__visual.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.storydeck .comfort-section__content.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.storydeck .comfort-section__visual.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* Pulse effect for bars */
.storydeck .grip-bar--tb7::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: inherit;
  opacity: 0;
  animation: barPulse 2s ease-in-out infinite;
  animation-delay: 1.5s;
}

@keyframes barPulse {
  0%, 100% { 
    opacity: 0;
    transform: scale(1);
  }
  50% { 
    opacity: 1;
    transform: scale(1.02);
  }
}

/* =============================================
   ACCESSIBILITY
   ============================================= */

@media (prefers-reduced-motion: reduce) {
  .storydeck .comfort-section__content.reveal,
  .storydeck .comfort-section__visual.reveal,
  .storydeck .grip-bar,
  .storydeck .comfort-btn {
    animation: none;
    transition: none;
  }

  .storydeck .comfort-section__visual.in-view .grip-bar {
    width: var(--final-width);
  }

  .storydeck .comfort-btn--primary:hover,
  .storydeck .comfort-btn--secondary:hover {
    transform: none;
  }
}

/* Focus States */
.storydeck .comfort-btn:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Performance */
.storydeck .grip-bar {
  will-change: width;
}

.storydeck .comfort-btn {
  will-change: transform, box-shadow;
}

/* =============================================
   STRENGTH SECTION - LOAD TEST PROOF
   ============================================= */

/* Force override any conflicting styles */
.storydeck .strength-section,
.storydeck .strength-section__container,
.storydeck .strength-section__content,
.storydeck .strength-section__visual {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.storydeck .strength-section {
  padding: clamp(60px, 10vw, 120px) 0 !important;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
  position: relative;
  }

.storydeck .strength-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: grid !important;
  grid-template-columns: 1fr;
  gap: clamp(40px, 8vw, 80px);
  align-items: start;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .storydeck .strength-section__container {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================
   LEFT COLUMN - CONTENT
   ============================================= */

.storydeck .strength-section__content {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}

.storydeck .strength-section__text {
  max-width: 500px;
}

.storydeck .strength-section__headline {
  font-size: clamp(32px, 6vw, 48px) !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 clamp(16px, 3vw, 24px) 0 !important;
  letter-spacing: -0.02em;
}

.storydeck .strength-section__subheadline {
  font-size: clamp(16px, 2.5vw, 20px) !important;
  line-height: 1.5 !important;
  color: #475569 !important;
  margin: 0 0 clamp(24px, 4vw, 32px) 0 !important;
  font-weight: 400;
}

/* Benefits List */
.storydeck .strength-section__benefits {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column;
  gap: 16px;
}

.storydeck .strength-section__benefit {
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-size: 16px !important;
  line-height: 1.4;
  color: #334155 !important;
  font-weight: 500;
}

.storydeck .strength-benefit-icon {
  font-size: 20px !important;
  line-height: 1;
  flex-shrink: 0;
}

/* =============================================
   RIGHT COLUMN - PROOF CARDS
   ============================================= */

.storydeck .strength-section__visual {
  position: relative;
  display: flex !important;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

/* Load Test Card */
.storydeck .load-test-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 16px !important;
  padding: clamp(20px, 4vw, 28px) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12) !important;
  width: 100%;
  max-width: 350px;
  position: relative;
}

.storydeck .load-test-title {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin: 0 0 20px 0 !important;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Load Test Results */
.storydeck .load-test-results {
  display: flex !important;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.storydeck .load-result {
  display: flex !important;
  align-items: baseline;
  gap: 8px;
  padding: 12px 16px !important;
  border-radius: 10px;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
}

.storydeck .load-result--tested {
  background: linear-gradient(135deg, #fef2f2, #fee2e2) !important;
  border-color: #fecaca !important;
}

.storydeck .load-result--rated {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7) !important;
  border-color: #bbf7d0 !important;
}

.storydeck .load-label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #64748b !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 80px;
}

.storydeck .load-value {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.storydeck .load-unit {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #475569 !important;
}

.storydeck .load-metric {
  font-size: 12px !important;
  color: #64748b !important;
  font-weight: 500;
}

/* Safety Factor */
.storydeck .safety-factor {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px !important;
  background: linear-gradient(135deg, #fefce8, #fef3c7) !important;
  border: 1px solid #fde047 !important;
  border-radius: 10px;
}

.storydeck .safety-label {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #92400e !important;
}

.storydeck .safety-value {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #92400e !important;
}

/* Test Protocol */
.storydeck .test-protocol {
  padding: 16px !important;
  background: #f1f5f9 !important;
  border-radius: 10px;
  border: 1px solid #e2e8f0 !important;
  text-align: center;
}

.storydeck .protocol-text {
  font-size: 12px !important;
  color: #475569 !important;
  line-height: 1.4;
  margin: 0 0 12px 0 !important;
  font-weight: 500;
}

.storydeck .test-link {
  background: none !important;
  border: none !important;
  color: #2563eb !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-decoration: underline;
  cursor: pointer;
  padding: 0 !important;
  transition: color 0.2s ease;
}

.storydeck .test-link:hover {
  color: #1d4ed8 !important;
}

/* Install Steps Card */
.storydeck .install-steps-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 16px !important;
  padding: clamp(20px, 4vw, 24px) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
  width: 100%;
  max-width: 350px;
}

.storydeck .install-title {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin: 0 0 16px 0 !important;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Install Steps */
.storydeck .install-steps {
  display: flex !important;
  flex-direction: column;
  gap: 12px;
}

.storydeck .install-step {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 12px !important;
  background: #f8fafc !important;
  border-radius: 8px;
  border: 1px solid #e2e8f0 !important;
}

.storydeck .step-number {
  width: 24px !important;
  height: 24px !important;
  border-radius: 50%;
  background: #2563eb !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.storydeck .step-text {
  font-size: 14px !important;
  color: #374151 !important;
  font-weight: 500;
  line-height: 1.3;
}

/* =============================================
   COUNT-UP ANIMATIONS
   ============================================= */

.storydeck .load-value {
  transition: all 0.3s ease;
}

.storydeck .strength-section__visual.in-view .load-value {
  animation: countUp 2s ease-out forwards;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 767px) {
  .storydeck .strength-section {
    padding: clamp(40px, 8vw, 60px) 0 !important;
  }

  .storydeck .strength-section__container {
    gap: clamp(30px, 6vw, 40px);
  }

  .storydeck .strength-section__content {
    text-align: center;
  }

  .storydeck .strength-section__benefits {
    text-align: left;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .storydeck .load-test-card,
  .storydeck .install-steps-card {
    max-width: 100%;
  }

  .storydeck .load-value {
    font-size: 20px !important;
  }

  .storydeck .safety-value {
    font-size: 18px !important;
  }
}

/* =============================================
   ANIMATIONS & INTERACTIONS
   ============================================= */

.storydeck .strength-section__content.reveal,
.storydeck .strength-section__visual.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.storydeck .strength-section__content.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.storydeck .strength-section__visual.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* Stagger card animations */
.storydeck .load-test-card {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  transition-delay: 0.3s;
}

.storydeck .install-steps-card {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  transition-delay: 0.5s;
}

.storydeck .strength-section__visual.in-view .load-test-card,
.storydeck .strength-section__visual.in-view .install-steps-card {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   ACCESSIBILITY
   ============================================= */

@media (prefers-reduced-motion: reduce) {
  .storydeck .strength-section__content.reveal,
  .storydeck .strength-section__visual.reveal,
  .storydeck .load-test-card,
  .storydeck .install-steps-card,
  .storydeck .load-value {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* Focus States */
.storydeck .test-link:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Performance */
.storydeck .load-value {
  will-change: contents;
}

/* Ensure visibility override */
.storydeck .strength-section * {
  visibility: visible !important;
  opacity: 1 !important;
}

/* =============================================
   DOORWAY CHECKER SECTION - REDESIGNED FOR CLARITY
   ============================================= */

/* Force override any conflicting styles */
.storydeck .doorway-checker-section,
.storydeck .doorway-checker__container,
.storydeck .doorway-checker__card {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.storydeck .doorway-checker-section {
  padding: clamp(80px, 12vw, 140px) 0 !important;
  background: #f8fafc !important;
  position: relative;
}

.storydeck .doorway-checker__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

@media (max-width: 767px) {
  .storydeck .doorway-checker__container {
    padding: 0 16px;
  }
}

.storydeck .doorway-checker__card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 24px !important;
  padding: clamp(40px, 8vw, 64px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .storydeck .doorway-checker__card {
    width: 100%;
    margin: 0;
    border-radius: 16px;
    padding: 32px 24px;
  }
}

/* Header Section */
.storydeck .checker-header {
  margin-bottom: 48px;
}

.storydeck .doorway-checker__title {
  font-size: clamp(32px, 6vw, 42px) !important;
  font-weight: 800 !important;
  color: #111827 !important;
  margin: 0 0 16px 0 !important;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.storydeck .doorway-checker__help {
  font-size: clamp(16px, 2.5vw, 18px) !important;
  color: #6b7280 !important;
  margin: 0 !important;
  line-height: 1.5;
  font-weight: 400;
}

/* 2. Units Toggle */
.storydeck .units-toggle {
  display: flex !important;
  justify-content: center;
  gap: 2px;
  margin: 0 auto 32px auto;
  background: #f1f5f9 !important;
  border-radius: 12px;
  padding: 4px !important;
  width: fit-content;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.storydeck .unit-btn {
  padding: 12px 24px !important;
  border: none !important;
  background: transparent !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #6b7280 !important;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 56px;
  min-height: 48px;
}

.storydeck .unit-btn--active {
  background: #ffffff !important;
  color: #111827 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.storydeck .unit-btn:hover:not(.unit-btn--active) {
  color: #374151 !important;
}

/* 3. Presets */
.storydeck .preset-buttons {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.storydeck .preset-btn {
  padding: 14px 18px !important;
  border: 2px solid #d1d5db !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #374151 !important;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 64px;
  min-height: 48px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.storydeck .preset-btn:hover {
  border-color: #9ca3af !important;
  background: #f9fafb !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.storydeck .preset-btn:focus-visible {
  outline: 2px solid #3b82f6 !important;
  outline-offset: 2px;
}

.storydeck .preset-btn.active {
  border-color: #3b82f6 !important;
  background: #3b82f6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* 4. Big numeric field */
.storydeck .width-input-container {
  position: relative;
  max-width: 240px;
  margin: 0 auto 40px auto;
}

.storydeck .width-input {
  width: 100% !important;
  height: 80px !important;
  padding: 0 60px 0 24px !important;
  border: 2px solid #d1d5db !important;
  border-radius: 16px !important;
  font-size: 36px !important;
  font-weight: 800 !important;
  text-align: center;
  color: #111827 !important;
  background: #ffffff !important;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.storydeck .width-input:focus {
  outline: none !important;
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1) !important;
  transform: translateY(-1px);
}

.storydeck .input-unit {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #6b7280 !important;
  pointer-events: none;
}

/* 5. Slider */
.storydeck .width-slider {
  width: 100% !important;
  max-width: 480px;
  height: 6px !important;
  margin: 0 auto 48px auto !important;
  background: transparent !important;
  border-radius: 3px;
  outline: none !important;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.storydeck .width-slider::-webkit-slider-track {
  height: 6px;
  background: #e5e7eb;
  border-radius: 4px;
}

.storydeck .width-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  background: #3b82f6;
  border-radius: 50%;
  cursor: pointer;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  transition: all 0.2s ease;
}

.storydeck .width-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.storydeck .width-slider::-moz-range-track {
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  border: none;
}

.storydeck .width-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  background: #3b82f6;
  border-radius: 50%;
  cursor: pointer;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* 6. Gauge - Accurate Range Visualization */
.storydeck .fit-gauge {
  position: relative;
  height: 100px;
  max-width: 480px;
  margin: 0 auto 48px auto;
}

.storydeck .gauge-track {
  position: absolute;
  top: 44px;
  left: 0;
  right: 0;
  height: 12px;
  background: #f3f4f6 !important;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}

/* Fit band for 31.9-36.6 range within 20-40 scale */
.storydeck .gauge-fit-band {
  position: absolute;
  top: 45px;
  height: 10px;
  background: linear-gradient(90deg, #10b981 0%, #059669 100%) !important;
  border-radius: 5px;
  left: 59.5%; /* (31.9-20)/(40-20) * 100 = 59.5% */
  width: 23.5%; /* (36.6-31.9)/(40-20) * 100 = 23.5% */
  box-shadow: inset 0 1px 2px rgba(5, 150, 105, 0.2);
}

.storydeck .gauge-near-bands {
  position: absolute;
  top: 45px;
  height: 10px;
}

/* Near limit bands at 0.3" from each edge */
.storydeck .gauge-near-left {
  position: absolute;
  left: 32%; /* (26.4-20)/(40-20) * 100 = 32% */
  width: 1.5%; /* 0.3/(40-20) * 100 = 1.5% */
  height: 10px;
  background: repeating-linear-gradient(
    45deg,
    #f59e0b 0px,
    #f59e0b 2px,
    transparent 2px,
    transparent 4px
  ) !important;
  border-radius: 5px 0 0 5px;
}

.storydeck .gauge-near-right {
  position: absolute;
  right: 36.5%; /* (32.9-20)/(40-20) = 64.5%, so right = 100-64.5 = 35.5% */
  width: 1.5%; /* 0.3/(40-20) * 100 = 1.5% */
  height: 10px;
  background: repeating-linear-gradient(
    45deg,
    #f59e0b 0px,
    #f59e0b 2px,
    transparent 2px,
    transparent 4px
  ) !important;
  border-radius: 0 5px 5px 0;
}

.storydeck .gauge-marker {
  position: absolute;
  top: 24px;
  left: 50%; /* Default position */
  transform: translateX(-50%);
  transition: left 0.25s ease-out;
}

.storydeck .marker-line {
  width: 3px;
  height: 32px;
  background: #111827 !important;
  border-radius: 2px;
  margin: 0 auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.storydeck .marker-value {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  text-align: center;
  margin-top: 6px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px 8px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.storydeck .gauge-labels {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  display: flex !important;
  justify-content: space-between;
  font-size: 14px !important;
  color: #6b7280 !important;
  font-weight: 600;
}

.storydeck .gauge-label-left {
  text-align: left;
}

.storydeck .gauge-label-right {
  text-align: right;
}

/* 7. Result Section */
.storydeck .result-section {
  margin-bottom: 40px;
  min-height: 60px;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.storydeck .result-main {
  margin-bottom: 4px;
}

.storydeck .result-status {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #10b981 !important;
  display: block;
  margin-bottom: 4px;
}

.storydeck .result-details {
  margin-bottom: 16px;
}

.storydeck .result-detail {
  font-size: 16px !important;
  color: #6b7280 !important;
  line-height: 1.4;
  font-weight: 500;
}

/* Install tips link */
.storydeck .install-tips-link {
  font-size: 14px !important;
  color: #3b82f6 !important;
  text-decoration: underline;
  font-weight: 500;
  margin-top: 8px;
}

.storydeck .install-tips-link:hover {
  color: #2563eb !important;
}

/* Result States */
.storydeck .result-section .result-status.status-fit {
  color: #10b981 !important;
}

.storydeck .result-section .result-status.status-near {
  color: #f59e0b !important;
}

.storydeck .result-section .result-status.status-no-fit {
  color: #ef4444 !important;
}

/* 8. CTA Section */
.storydeck .cta-section {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.storydeck .cta-primary,
.storydeck #checker-cta {
  padding: 20px 40px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  background: #111827 !important;
  border: 2px solid #111827 !important;
  border-radius: 12px !important;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 220px;
  min-height: 56px;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.2);
}

.storydeck .cta-primary:hover,
.storydeck #checker-cta:hover {
  background: #0f172a !important;
  border-color: #0f172a !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(17, 24, 39, 0.3) !important;
}

.storydeck .cta-primary:focus-visible,
.storydeck #checker-cta:focus-visible {
  outline: 2px solid #3b82f6 !important;
  outline-offset: 2px;
}

.storydeck .cta-secondary {
  font-size: 14px !important;
  color: #2563eb !important;
  text-decoration: underline !important;
  cursor: pointer;
  padding: 8px 16px !important;
  border-radius: 6px;
  transition: color 0.2s ease;
  min-height: 44px;
  display: flex !important;
  align-items: center;
}

.storydeck .cta-secondary:hover {
  color: #1d4ed8 !important;
}

.storydeck .hidden {
  display: none !important;
}

/* Screen Reader Only */
.storydeck .sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 767px) {
  .storydeck .doorway-checker-section {
    padding: clamp(40px, 8vw, 60px) 0 !important;
  }

  .storydeck .doorway-checker__card {
    padding: clamp(24px, 6vw, 32px) !important;
  }

  .storydeck .preset-buttons {
    gap: 8px;
  }

  .storydeck .preset-btn {
    min-width: 56px;
    padding: 10px 16px !important;
    font-size: 14px !important;
  }

  .storydeck .width-input {
    height: 56px !important;
    font-size: 20px !important;
  }

  .storydeck .input-unit {
    font-size: 16px !important;
  }

  .storydeck .result-status {
    font-size: 18px !important;
  }

  .storydeck .cta-primary {
    width: 100%;
    max-width: 280px;
  }
}

/* =============================================
   ACCESSIBILITY
   ============================================= */

@media (prefers-reduced-motion: reduce) {
  .storydeck .gauge-marker,
  .storydeck .cta-primary {
    transition: none;
  }

  .storydeck .cta-primary:hover {
    transform: none;
  }
}

/* Focus States */
.storydeck .width-input:focus,
.storydeck .width-slider:focus {
  outline: 2px solid #2563eb !important;
  outline-offset: 2px;
}

/* Performance */
.storydeck .gauge-marker {
  will-change: left;
}

/* Ensure visibility override */
.storydeck .doorway-checker-section * {
  visibility: visible !important;
  opacity: 1 !important;
}

/* =============================================
   HABIT PROGRAM SECTION - 30-DAY SYSTEM
   ============================================= */

.habit-program-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: #ffffff;
  position: relative;
}

.habit-program__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}

/* Header */
.habit-program__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
}

.habit-program__title {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  font-weight: 800;
  color: #0b1324;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.habit-program__subtitle {
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.4;
  color: #5b6574;
  margin: 0;
  font-weight: 500;
}

/* Environment Photo */
.habit-program__visual {
  margin-bottom: clamp(32px, 5vw, 48px);
  text-align: center;
}

.habit-environment-photo {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Streak Counter */
.streak-counter {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: clamp(20px, 4vw, 32px);
  margin-bottom: clamp(32px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 24px);
  align-items: center;
}

.streak-stat {
  text-align: center;
}

.streak-label {
  display: block;
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.streak-value {
  display: block;
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 800;
  color: #0b1324;
  line-height: 1;
}

.streak-unit {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
  margin-left: 4px;
}

.streak-average {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #cbd5e1;
}

.average-label {
  font-size: 13px;
  color: #64748b;
  font-style: italic;
}

/* Habit Tiles */
.habit-tiles {
  display: grid;
  gap: clamp(16px, 3vw, 20px);
  margin-bottom: clamp(32px, 5vw, 48px);
}

.habit-tile {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: clamp(20px, 4vw, 28px);
  transition: all 0.3s ease;
  position: relative;
}

.habit-tile:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.habit-tile.completed {
  border-color: #22c55e;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.tile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.tile-title {
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 700;
  color: #0b1324;
  margin: 0;
  text-transform: capitalize;
}

.habit-checkbox {
  width: 32px;
  height: 32px;
  border: 2px solid #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.habit-checkbox:hover {
  border-color: #22c55e;
  background: #f0fdf4;
}

.habit-checkbox.checked {
  background: #22c55e;
  border-color: #22c55e;
  color: #ffffff;
}

.checkbox-icon {
  width: 16px;
  height: 16px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.habit-checkbox.checked .checkbox-icon {
  opacity: 1;
}

.tile-description {
  font-size: clamp(15px, 2vw, 16px);
  line-height: 1.5;
  color: #475569;
  margin: 0;
}

/* Tracking Tile Special */
.habit-tile--tracking {
  border-color: #3b82f6;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.day-indicator {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.day-number {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 800;
  color: #3b82f6;
}

.day-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

/* Guidelines */
.habit-guidelines {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 48px);
  padding: clamp(16px, 3vw, 20px);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

.guidelines-text {
  font-size: clamp(14px, 2vw, 15px);
  color: #475569;
  margin: 0;
  font-style: italic;
  line-height: 1.4;
}

/* Optional Boosts */
.habit-boosts {
  margin-bottom: clamp(32px, 5vw, 48px);
}

.boosts-title {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
  color: #0b1324;
  margin: 0 0 20px 0;
  text-align: center;
}

.boost-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .boost-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.boost-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(16px, 3vw, 20px);
  transition: border-color 0.2s ease;
}

.boost-card:hover {
  border-color: #cbd5e1;
}

.boost-title {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 600;
  color: #0b1324;
  margin: 0 0 8px 0;
}

.boost-description {
  font-size: clamp(14px, 2vw, 15px);
  color: #475569;
  margin: 0;
  line-height: 1.4;
}

/* Reminder Options */
.reminder-options {
  margin-bottom: clamp(32px, 5vw, 48px);
}

.reminders-title {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
  color: #0b1324;
  margin: 0 0 20px 0;
  text-align: center;
}

.reminder-buttons {
  display: grid;
  gap: 12px;
}

@media (min-width: 640px) {
  .reminder-buttons {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reminder-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(14px, 2.5vw, 16px);
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: clamp(14px, 2vw, 15px);
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.reminder-btn:hover {
  border-color: #3b82f6;
  background: #f0f9ff;
  color: #3b82f6;
}

.reminder-btn.active {
  border-color: #22c55e;
  background: #f0fdf4;
  color: #16a34a;
}

.reminder-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.reminder-text {
  line-height: 1.2;
}

/* Encouragement Message */
.encouragement-message {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #f59e0b;
  border-radius: 16px;
  padding: clamp(20px, 4vw, 24px);
  margin-bottom: clamp(24px, 4vw, 32px);
  text-align: center;
  animation: slideInFromTop 0.5s ease-out;
}

.encouragement-title {
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 700;
  color: #92400e;
  margin: 0 0 8px 0;
}

.encouragement-text {
  font-size: clamp(15px, 2vw, 16px);
  color: #92400e;
  margin: 0;
  line-height: 1.4;
}

@keyframes slideInFromTop {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Safety Notice */
.safety-notice {
  text-align: center;
  padding: clamp(16px, 3vw, 20px);
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
}

.safety-text {
  font-size: clamp(13px, 1.8vw, 14px);
  color: #b91c1c;
  margin: 0;
  line-height: 1.4;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Mobile Responsive */
@media (max-width: 639px) {
  .habit-tiles {
    gap: 14px;
  }
  
  .habit-tile {
    padding: 18px;
  }
  
  .tile-header {
    margin-bottom: 10px;
  }
  
  .habit-checkbox {
    width: 28px;
    height: 28px;
  }
  
  .checkbox-icon {
    width: 14px;
    height: 14px;
  }
  
  .streak-counter {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  
  .streak-average {
    margin-top: 12px;
    padding-top: 12px;
  }
}

/* Focus States */
.habit-checkbox:focus-visible,
.reminder-btn:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Ensure visibility override */
.storydeck .habit-program-section * {
  visibility: visible !important;
  opacity: 1 !important;
}

/* =============================================
   UGC PROOF SECTION - VIDEO REEL SYSTEM
   ============================================= */

/* High specificity to prevent theme overrides */
#story-deck .ugc-proof-section,
.story-deck .ugc-proof-section,
section.ugc-proof-section,
.ugc-proof-section {
  padding: clamp(60px, 8vw, 100px) 0 !important;
  background: #ffffff !important;
  position: relative !important;
  overflow: visible !important;
  display: block !important;
  /* Ensure proper stacking context */
  z-index: 1 !important;
}

/* Strengthen container specificity */
#story-deck .ugc-proof__container,
.story-deck .ugc-proof__container,
.ugc-proof-section .ugc-proof__container,
.ugc-proof__container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 clamp(16px, 4vw, 24px) !important;
  display: block !important;
  position: relative !important;
  overflow: visible !important;
}

/* Header - Give proper bottom margin to prevent reel collision */
.ugc-proof__header {
  margin-bottom: clamp(48px, 8vw, 80px); /* Increased margin for nav button clearance */
}

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

.header-left {
  flex: 1;
  text-align: left;
}

.header-right {
  flex-shrink: 0;
  align-self: center;
}

.ugc-proof__title {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  font-weight: 800;
  color: #0b1324;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

.ugc-proof__subtitle {
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.4;
  color: #5b6574;
  margin: 0;
  font-weight: 500;
}

.ugc-count {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}

/* Mobile header stacking */
@media (max-width: 767px) {
  .header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  
  .header-left {
    text-align: center;
  }
  
  .ugc-count {
    justify-content: center;
  }
}

.count-current {
  color: #3b82f6;
  font-weight: 700;
}

/* Video Reel Container */
/* Strengthen reel container positioning context */
#story-deck .ugc-reel-container,
.story-deck .ugc-reel-container,
.ugc-proof-section .ugc-reel-container,
.ugc-reel-container {
  position: relative !important;
  margin-bottom: clamp(32px, 5vw, 48px) !important;
  padding: clamp(24px, 4vw, 32px) 60px !important; /* Horizontal padding creates gutter space for arrows */
  overflow: visible !important;
  z-index: 5 !important; /* Base stacking context for container */

}

/* High specificity for UGC reel - critical component */
#story-deck .ugc-reel,
.story-deck .ugc-reel,
.ugc-proof-section .ugc-reel,
.ugc-reel {
  display: flex !important;
  gap: 24px !important; /* Fixed gap for reliable calculations */
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-behavior: smooth !important;
  scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  position: relative !important;
  z-index: 1 !important; /* Lower than nav buttons */
  /* Clean scrolling area - no internal padding that could create positioning conflicts */
  padding: 0 !important;
  margin: 0 !important;
}

.ugc-reel::-webkit-scrollbar {
  display: none;
}

/* Navigation Controls - Positioned in outer gutter space */
.reel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 50 !important; /* Much higher than scrolling content */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  pointer-events: auto !important; /* Ensure clicks register */
  /* Ensure minimum tap target */
  min-width: 44px;
  min-height: 44px;
  /* Position in gutter space created by container padding */
}


.reel-nav svg {
  width: 20px;
  height: 20px;
  color: #475569;
}

.reel-nav--prev {
  left: 20px; /* Position in left gutter (60px padding - 48px button = 12px margin, 20px looks better) */
}

.reel-nav--next {
  right: 20px; /* Position in right gutter (60px padding - 48px button = 12px margin, 20px looks better) */
}


.reel-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  /* Keep disabled arrows visible for layout stability */
}

.reel-nav:hover:not(:disabled) {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-50%) scale(1.05);
}

.reel-nav:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* UGC Cards - Fixed flex-basis for stable sizing */
/* High specificity for UGC cards - critical sizing */
#story-deck .ugc-card,
.story-deck .ugc-card,
.ugc-proof-section .ugc-card,
.ugc-reel .ugc-card,
.ugc-card {
  /* Mobile: ~1.33 cards visible with peek */
  flex: 0 0 280px !important;
  min-width: 280px !important;
  scroll-snap-align: start !important;
  position: relative !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid #e2e8f0 !important;
  display: block !important;
}

@media (min-width: 768px) {
  #story-deck .ugc-card,
  .story-deck .ugc-card,
  .ugc-proof-section .ugc-card,
  .ugc-reel .ugc-card,
  .ugc-card {
    /* Desktop: Show ~3.5 cards to create scroll need */
    flex: 0 0 320px !important;
    min-width: 320px !important;
    max-width: 320px !important;
  }
}

@media (min-width: 1024px) {
  #story-deck .ugc-card,
  .story-deck .ugc-card,
  .ugc-proof-section .ugc-card,
  .ugc-reel .ugc-card,
  .ugc-card {
    /* Large desktop: optimal sizing */
    flex: 0 0 260px !important;
    min-width: 260px !important;
    max-width: 260px !important;
  }
}

@media (max-width: 767px) {
  .ugc-reel-container {
    padding: clamp(24px, 4vw, 32px) 20px !important; /* Smaller horizontal padding on mobile since arrows are hidden */
  }
  #story-deck .ugc-reel,
  .story-deck .ugc-reel,
  .ugc-proof-section .ugc-reel,
  .ugc-reel {
    gap: 16px !important; /* Smaller but consistent gap for mobile */
  }
  
  #story-deck .ugc-card,
  .story-deck .ugc-card,
  .ugc-proof-section .ugc-card,
  .ugc-reel .ugc-card,
  .ugc-card {
    flex: 0 0 calc(75vw - 16px) !important; /* Mobile: ~1.33 cards visible with proper peek */
    min-width: 260px !important;
    max-width: 280px !important;
  }
  
  .reel-nav {
    display: none !important;
  }
}

.ugc-video-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  display: block;
}

.ugc-video-container {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: #f8fafc;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.ugc-video-btn:hover .ugc-video-container {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.ugc-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.ugc-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.ugc-video-btn:hover .ugc-play-overlay {
  opacity: 1;
}

.play-button {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b1324;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.2s ease;
}

.ugc-video-btn:hover .play-button {
  transform: scale(1);
}

.play-button svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

/* UGC Caption */
.ugc-caption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 8px 12px;
}

.caption-text {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  display: block;
  /* Ensure two lines max */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* UGC Credit */
.ugc-credit {
  margin-top: 8px;
  font-size: 11px;
  color: #64748b;
  text-align: center;
  line-height: 1.3;
}

/* Submit Link */
.ugc-submit {
  text-align: center;
  padding-top: clamp(24px, 4vw, 32px);
  border-top: 1px solid #e2e8f0;
}

.submit-link {
  color: #3b82f6;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.submit-link:hover {
  color: #2563eb;
  text-decoration: underline;
}

/* =============================================
   UGC VIDEO MODAL
   ============================================= */

.ugc-modal {
  position: fixed;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.ugc-modal.active {
  opacity: 1;
  visibility: visible;
}

.ugc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.ugc-modal__content {
  position: relative;
  width: 90vw;
  max-width: 600px;
  max-height: 90vh;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.ugc-modal.active .ugc-modal__content {
  position: relative;
  width: 90vw;
  max-width: 600px;
  max-height: 90vh;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

/* Modal Header */
.ugc-modal__header {
  position: sticky;
  top: 0;
  z-index: 3;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
}

.ugc-modal__title {
  font-size: 18px;
  font-weight: 600;
  color: #0b1324;
  margin: 0;
}

.ugc-modal__close {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #334155;
  transition: all 0.2s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.ugc-modal__close:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #0b1324;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.ugc-modal__close svg {
  width: 20px;
  height: 20px;
}

/* Modal Video */
.ugc-modal__video-container {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #000000;
}

.ugc-modal__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ugc-modal__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
}

.progress-bar {
  height: 100%;
  background: #3b82f6;
  width: 0%;
  transition: width 0.1s ease;
}

/* Modal Footer */
.ugc-modal__footer {
  padding: 20px;
}

.modal-info {
  margin-bottom: 16px;
}

.modal-location {
  font-size: 14px;
  color: #475569;
  margin: 0 0 4px 0;
  font-weight: 500;
}

.modal-credit {
  font-size: 12px;
  color: #64748b;
  margin: 0;
}

.modal-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.modal-link {
  color: #3b82f6;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.modal-link:hover {
  background: #f0f9ff;
  text-decoration: none;
}

.modal-cta {
  background: #3b82f6;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-cta:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.modal-fit-warning {
  margin-top: 12px;
  padding: 8px 12px;
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 8px;
  text-align: center;
}

.fit-warning-text {
  font-size: 12px;
  color: #92400e;
  margin: 0;
  font-weight: 500;
}

/* Mobile Modal */
@media (max-width: 767px) {
  .ugc-modal__content {
  position: relative;
  width: 90vw;
  max-width: 600px;
  max-height: 90vh;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

/* Focus States */
.ugc-video-btn:focus-visible,
.reel-nav:focus-visible,
.ugc-modal__close:focus-visible,
.modal-link:focus-visible,
.modal-cta:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Video Loading States */
.ugc-video:not([poster]) {
  background: #f8fafc;
}

.ugc-video[poster] {
  background: transparent;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .ugc-video-container,
  .play-button,
  .ugc-modal,
  .ugc-modal__content {
  position: relative;
  width: 90vw;
  max-width: 600px;
  max-height: 90vh;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

/* Performance Optimizations */
.ugc-video {
  will-change: transform;
}

.ugc-modal {
  will-change: opacity, visibility;
}

.ugc-modal__content {
  position: relative;
  width: 90vw;
  max-width: 600px;
  max-height: 90vh;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

/* Ensure visibility override */
.storydeck .ugc-proof-section {
  visibility: visible !important;
  display: block !important;
}

.storydeck .ugc-reel {
  display: flex !important;
}

/* =============================================
   WHY CHOOSE TB7 SECTION - PROOF-BASED CARDS
   ============================================= */

.why-choose-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: #f8fafc;
  position: relative;
}

.why-choose__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}

/* Section Title */
.why-choose__title {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  font-weight: 800;
  color: #0b1324;
  text-align: center;
  margin: 0 0 clamp(40px, 6vw, 60px) 0;
  letter-spacing: -0.02em;
}

/* Grid Layout */
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 24px);
}

@media (min-width: 768px) {
  .why-choose-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Why Cards */
.why-card {
  display: block;
  text-decoration: none;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: clamp(20px, 4vw, 24px);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  cursor: pointer;
}

.why-card:hover {
  border-color: #3b82f6;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
  text-decoration: none;
}

.why-card:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.why-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  gap: clamp(12px, 2vw, 16px);
}

/* Card Icon */
.why-card__icon {
  width: clamp(32px, 5vw, 40px);
  height: clamp(32px, 5vw, 40px);
  color: #3b82f6;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.why-card:hover .why-card__icon {
  transform: scale(1.1);
  color: #2563eb;
}

.why-card__icon svg {
  width: 100%;
  height: 100%;
}

/* Card Text */
.why-card__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(8px, 1.5vw, 12px);
}

.why-card__benefit {
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 700;
  color: #0b1324;
  margin: 0;
  line-height: 1.2;
}

.why-card__number {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
  color: #3b82f6;
  line-height: 1.3;
  margin: clamp(4px, 1vw, 8px) 0;
}

.why-card__proof {
  font-size: clamp(13px, 1.8vw, 14px);
  color: #64748b;
  font-weight: 500;
  line-height: 1.3;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.why-card:hover .why-card__proof {
  opacity: 1;
  color: #3b82f6;
}

/* Specific Card Styling */
.why-card[data-tile="fit"] {
  border-left: 4px solid #22c55e;
}

.why-card[data-tile="fit"]:hover {
  border-color: #22c55e;
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.15);
}

.why-card[data-tile="fit"] .why-card__icon {
  color: #22c55e;
}

.why-card[data-tile="fit"]:hover .why-card__icon {
  color: #16a34a;
}

.why-card[data-tile="fit"] .why-card__number {
  color: #22c55e;
}

.why-card[data-tile="fit"]:hover .why-card__proof {
  color: #22c55e;
}

.why-card[data-tile="comfort"] {
  border-left: 4px solid #f59e0b;
}

.why-card[data-tile="comfort"]:hover {
  border-color: #f59e0b;
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.15);
}

.why-card[data-tile="comfort"] .why-card__icon {
  color: #f59e0b;
}

.why-card[data-tile="comfort"]:hover .why-card__icon {
  color: #d97706;
}

.why-card[data-tile="comfort"] .why-card__number {
  color: #f59e0b;
}

.why-card[data-tile="comfort"]:hover .why-card__proof {
  color: #f59e0b;
}

.why-card[data-tile="install"] {
  border-left: 4px solid #8b5cf6;
}

.why-card[data-tile="install"]:hover {
  border-color: #8b5cf6;
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
}

.why-card[data-tile="install"] .why-card__icon {
  color: #8b5cf6;
}

.why-card[data-tile="install"]:hover .why-card__icon {
  color: #7c3aed;
}

.why-card[data-tile="install"] .why-card__number {
  color: #8b5cf6;
}

.why-card[data-tile="install"]:hover .why-card__proof {
  color: #8b5cf6;
}

.why-card[data-tile="strength"] {
  border-left: 4px solid #dc2626;
}

.why-card[data-tile="strength"]:hover {
  border-color: #dc2626;
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.15);
}

.why-card[data-tile="strength"] .why-card__icon {
  color: #dc2626;
}

.why-card[data-tile="strength"]:hover .why-card__icon {
  color: #b91c1c;
}

.why-card[data-tile="strength"] .why-card__number {
  color: #dc2626;
}

.why-card[data-tile="strength"]:hover .why-card__proof {
  color: #dc2626;
}

/* Mobile Specific */
@media (max-width: 767px) {
  .why-choose-grid {
    gap: 14px;
  }
  
  .why-card {
    padding: 18px 16px;
  }
  
  .why-card__content {
    gap: 10px;
  }
}

/* Tablet Adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Desktop Fine-tuning */
@media (min-width: 1024px) {
  .why-card {
    min-height: 160px;
  }
}

/* Accessibility */
.why-card:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .why-card,
  .why-card__icon,
  .why-card__proof {
    transition: none;
  }
  
  .why-card:hover {
    transform: none;
  }
  
  .why-card:hover .why-card__icon {
    transform: none;
  }
}

/* Performance Optimizations */
.why-card {
  will-change: transform, box-shadow;
}

.why-card__icon {
  will-change: transform, color;
}

/* Ensure visibility override */
.storydeck .why-choose-section * {
  visibility: visible !important;
  opacity: 1 !important;
}

/* =============================================
   BUY FINAL SECTION - SIMPLIFIED & CONVERSION FOCUSED
   ============================================= */

.buy-final-section {
  padding: clamp(60px, 10vw, 100px) 0;
  background: #ffffff;
  position: relative;
}

.buy-final__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}

.buy-final__card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: grid;
  gap: clamp(24px, 5vw, 40px);
  padding: clamp(24px, 5vw, 40px);
  align-items: center;
}

@media (min-width: 768px) {
  .buy-final__card {
    grid-template-columns: 1fr 1fr;
  }
}

/* Visual Column */
.buy-final__visual {
  position: relative;
  text-align: center;
}

.buy-hero-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.buy-final__card:hover .buy-hero-image {
  transform: scale(1.02);
}

.image-caption {
  margin-top: 12px;
  font-size: 14px;
  color: #6b7280;
  font-style: italic;
}

/* Content Column */
.buy-final__content {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 24px);
}

/* Headline */
.buy-final__headline {
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.1;
  font-weight: 800;
  color: #111827;
  margin: 0;
  letter-spacing: -0.025em;
}

/* Price Line */
.buy-final__price-line {
  font-size: clamp(18px, 3vw, 24px);
  color: #374151;
  font-weight: 600;
  margin: 0;
}

/* Express Pay */
.buy-final__express-pay {
  margin: clamp(12px, 2.5vw, 16px) 0;
}

.express-pay-title {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 8px;
}

.express-pay-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.express-pay-logo {
  height: 32px;
  width: auto;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  padding: 4px 8px;
  background: #ffffff;
}

/* Trust Line */
.buy-final__trust-line {
  font-size: 13px;
  color: #059669;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: clamp(8px, 1.5vw, 12px) 0;
}

.trust-line-icon {
  width: 16px;
  height: 16px;
  color: #10b981;
  flex-shrink: 0;
}

/* Reviews */
.buy-final__reviews {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: clamp(8px, 1.5vw, 12px) 0;
}

.review-stars {
  color: #fbbf24;
  font-size: 18px;
  line-height: 1;
}

.review-text {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

/* Fit Status */
.buy-final__fit-status {
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 16px;
  margin: clamp(12px, 2.5vw, 16px) 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.buy-final__fit-status:hover {
  background: #e5e7eb;
  border-color: #9ca3af;
}

.fit-status-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}

.fit-status-icon {
  width: 16px;
  height: 16px;
  color: #6b7280;
}

/* CTAs */
.buy-final__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: clamp(16px, 3vw, 24px);
}

@media (min-width: 640px) {
  .buy-final__ctas {
    flex-direction: row;
    gap: 16px;
  }
}

.buy-final-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 2.5vw, 16px) clamp(24px, 4vw, 32px);
  border-radius: 8px;
  font-size: clamp(15px, 2.2vw, 16px);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  min-width: 160px;
  text-align: center;
}

.buy-final-cta--primary {
  background: #1f2937;
  color: #ffffff;
  border-color: #1f2937;
}

.buy-final-cta--primary:hover {
  background: #111827;
  border-color: #111827;
  transform: translateY(-1px);
  text-decoration: none;
  color: #ffffff;
}

.buy-final-cta--secondary {
  background: #ffffff;
  color: #374151;
  border-color: #d1d5db;
}

.buy-final-cta--secondary:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #111827;
  text-decoration: none;
}

/* Mobile Layout Order */
@media (max-width: 767px) {
  .buy-final__card {
    grid-template-columns: 1fr;
  }
  
  /* Content first on mobile */
  .buy-final__content {
    order: 1;
    text-align: center;
  }
  
  .buy-final__visual {
    order: 2;
    margin-top: 16px;
  }
  
  .buy-final__ctas {
    gap: 10px;
  }
  
  .buy-final-cta {
    width: 100%;
    min-width: auto;
  }
  
  .express-pay-logos {
    justify-content: center;
  }
}

/* Fit Checker Overlay */
.fit-checker-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.fit-checker-overlay.active {
  display: flex;
}

.fit-checker-modal {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.fit-checker__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: #f3f4f6;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 18px;
  transition: all 0.2s ease;
}

.fit-checker__close:hover {
  background: #e5e7eb;
  color: #374151;
}

.fit-checker__title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 16px 0;
  text-align: center;
}

.fit-checker__subtitle {
  font-size: 16px;
  color: #6b7280;
  text-align: center;
  margin-bottom: 24px;
}

.doorway-inputs {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.input-group input {
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  background: #ffffff;
}

.input-group input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.preset-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.preset-btn {
  padding: 8px 12px;
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
}

.preset-btn:hover {
  background: #e5e7eb;
  border-color: #9ca3af;
}

.fit-check-result {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  margin-top: 16px;
  font-weight: 600;
}

.fit-check-result.compatible {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.fit-check-result.incompatible {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 12px 16px;
  z-index: 999;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
  .mobile-sticky-cta.active {
    display: block;
  }
}

.sticky-cta-button {
  width: 100%;
  background: #1f2937;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sticky-cta-button:hover {
  background: #111827;
}

/* Focus States */
.buy-final-cta:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.buy-final__fit-status:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Performance Optimizations */
.buy-hero-image {
  will-change: transform;
}

.buy-final-cta {
  will-change: transform;
}

/* Ensure visibility override */
.storydeck .buy-final-section * {
  visibility: visible !important;
  opacity: 1 !important;
}