/* ==========================================================================
   Fall Sale Campaign Stylesheet
   - Timeline Schedule: Faithful to Figma Campaign (Orange Accents, Maple Leaf, Timeline Dots & Status Buttons)
   - Other Sections: Aligned with Site-wide Design Standards & Shared Linear Icons
   ========================================================================== */

:root {
  --sale-header-height: 60px;
  --sale-border: #E5E7EB;
  --sale-text-main: #191C1D;
  --sale-text-muted: #667085;
  --sale-bg-alt: #F8F9FA;
  --sale-radius-block: 20px;
  --sale-orange: #FF5300;
}

.fall-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--sale-text-main);
  background-color: #FFFFFF;
}

#fall-sale {
  background-color: #FFFFFF;
}

#fall-sale .section {
  padding: 72px 0;
  background-color: #FFFFFF;
}

#fall-sale .container {
  width: min(100% - 48px, var(--max-width, 1128px));
  max-width: var(--max-width, 1128px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

/* Headings & Typography (Centered as site standard) */
#fall-sale h1 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  color: var(--sale-text-main);
}

#fall-sale h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: var(--sale-text-main);
}

#fall-sale h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--sale-text-main);
}

#fall-sale p {
  font-size: 14px;
  line-height: 22px;
  color: var(--sale-text-muted);
}

#fall-sale .section-heading {
  margin-bottom: 48px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

#fall-sale .section-heading h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: var(--sale-text-main);
  text-align: center;
}

#fall-sale .section-heading p {
  font-size: 16px;
  line-height: 24px;
  color: var(--sale-text-muted);
  margin-top: 8px;
  text-align: center;
}

#fall-sale [id] {
  scroll-margin-top: calc(var(--sale-header-height) + 64px);
}

/* Eyebrow badge */
.sale-eyebrow {
  display: inline-block;
  color: var(--sale-orange);
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Hero Section */
@font-face {
  font-family: 'Sale Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('fonts/inter-black.ttf') format('truetype');
}
@font-face {
  font-family: 'Sale Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url('fonts/inter-black-italic.ttf') format('truetype');
}

.sale-hero {
  background: linear-gradient(180deg, #f8ba7b 0%, #ffffff 68.721%);
  overflow: hidden;
}

.sale-hero-inner {
  height: min(37.2vw, 600px);
  min-height: 420px;
  position: relative;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
}

.sale-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 0;
  transform: translateY(-12px);
}

.sale-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 20px;
  border-radius: var(--rounded-pill, 999px);
  background: linear-gradient(90deg, #fe9c69, #ff5906);
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  white-space: nowrap;
  margin-bottom: 4px;
}

.sale-date-badge img {
  width: 24px;
  height: 24px;
}

#fall-sale .sale-hero h1 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  letter-spacing: -0.02em;
}

#fall-sale .sale-offer {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: 'Sale Inter', 'Inter', sans-serif;
  font-size: clamp(48px, 4.6vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
  white-space: nowrap;
  margin: -8px 0 0;
  color: #000000;
}

.sale-offer strong {
  font-weight: 900;
  font-style: italic;
  background: linear-gradient(110deg, #ff884c 0%, #ff5500 64%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  padding-right: 0.1em;
}

#fall-sale .sale-hero-description {
  font-size: 16px;
  line-height: 24px;
  color: #929292;
  margin: -4px 0 0;
}

.sale-hero-visual {
  width: 100%;
  height: 100%;
  position: relative;
}

.sale-hero-crop {
  position: absolute;
  width: 132%;
  aspect-ratio: 987/573;
  top: 19%;
  left: -13%;
  overflow: hidden;
}

.sale-hero-art {
  position: absolute;
  width: 136.06%;
  height: 100.44%;
  max-width: none;
  left: -36.06%;
  top: -0.22%;
  margin: 0;
}

/* ==========================================================================
   01.5. GLOBAL HEADER MOBILE OVERRIDES (1:1 from Product Page & site.css)
   ========================================================================== */
@media (max-width: 1024px) {
  .site-header {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    padding: 0 16px !important;
    background-color: #FFFFFF !important;
  }
  .site-header .header-container {
    width: 100% !important;
    height: 56px !important;
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
  }
  .site-header .brand {
    grid-column: 2 !important;
    justify-self: center !important;
    margin: 0 !important;
  }
  .site-header .brand-logo {
    height: 24px !important;
    width: auto !important;
  }
  .site-header .header-right {
    display: contents !important;
  }
  .site-header .nav-toggle {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    margin-left: 0 !important;
  }
  .site-header .header-icon[aria-label="Search"],
  .site-header .header-icon[aria-label="検索"] {
    display: flex !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    margin-left: 48px !important;
  }
  .site-header .header-icon[aria-label="Account"],
  .site-header .header-icon[aria-label="アカウント"] {
    display: flex !important;
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    margin-right: 48px !important;
  }
  .site-header .header-cart,
  .site-header .header-icon[aria-label="Cart"],
  .site-header .header-icon[aria-label="カート"] {
    display: flex !important;
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .site-header .nav-toggle,
  .site-header .header-icon {
    width: 24px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
  }
  .site-header .header-icon svg,
  .site-header .header-icon i {
    width: 22px !important;
    height: 22px !important;
  }
  .site-header .nav-toggle span {
    width: 22px !important;
    height: 2px !important;
    margin: 0 !important;
  }
  .site-header .nav-toggle {
    gap: 5px !important;
  }
}

/* ==========================================================================
   02. QUICK NAVIGATION (Direct reuse from comu-action-pro / product.css)
   ========================================================================== */
.quick-nav-module {
  background-color: #f8f9fa;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 60px; /* Offset for site header */
  z-index: 90;
  transition: all 0.3s ease;
}

.quick-nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex-wrap: nowrap;
}

.quick-nav-list::-webkit-scrollbar {
  display: none;
}

.quick-nav-list li {
  flex-shrink: 0;
}

.quick-nav-link {
  display: block;
  padding: 16px 28px;
  color: #667085;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.quick-nav-link:hover {
  color: var(--sale-orange);
}

.quick-nav-link.active,
.quick-nav-link[aria-current="page"] {
  color: var(--sale-orange) !important;
  border-bottom-color: var(--sale-orange) !important;
  font-weight: 600;
}

@media (max-width: 900px) {
  .quick-nav-module {
    top: 60px;
  }
  .quick-nav-list {
    justify-content: flex-start;
    padding-left: 16px;
    padding-right: 16px;
  }
  .quick-nav-link {
    padding: 14px 20px;
    font-size: 14px;
  }
}

/* Standard Buttons (for products & dialogs) */
.sale-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 24px;
  border-radius: var(--rounded-pill, 999px);
  background: #191C1D;
  color: #FFFFFF;
  border: 1px solid #191C1D;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  box-shadow: none !important;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sale-button:hover {
  background: #000000;
  border-color: #000000;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.sale-button-disabled,
.sale-button:disabled {
  background: #E5E7EB !important;
  background-color: #E5E7EB !important;
  border-color: #E5E7EB !important;
  color: #9CA3AF !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  transform: none !important;
  box-shadow: none !important;
}

.sale-button-outline {
  background: #FFFFFF;
  border: 1px solid var(--sale-border);
  color: var(--sale-text-main);
}

.sale-button-outline:hover {
  background: #F9FAFB;
  border-color: #D1D5DB;
  color: #000000;
  transform: translateY(-1px);
}

/* ==========================================================================
   03. Section: Timeline / Schedule
   ========================================================================== */
.sale-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 36px;
  position: relative;
}

/* Orange horizontal timeline connecting line with smooth fade on both outer wings */
.sale-timeline::before {
  content: '';
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(255, 83, 0, 0) 0%, 
    rgba(255, 83, 0, 0.4) 6%, 
    #FF5300 16.66%, 
    #FF5300 83.33%, 
    rgba(255, 83, 0, 0.4) 94%, 
    rgba(255, 83, 0, 0) 100%
  );
  left: 0;
  right: 0;
  top: 8px;
  z-index: 1;
}

/* Timeline phase card with same background as other section cards, no shadow */
.sale-phase {
  background: var(--sale-bg-alt);
  border: none;
  border-radius: var(--sale-radius-block);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: none !important;
}

/* Orange timeline node dot with white ring */
.sale-phase::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  top: -34px;
  left: calc(50% - 7px);
  border-radius: 50%;
  background: var(--sale-orange);
  border: 3px solid #FFFFFF;
  box-shadow: 0 0 0 1px rgba(255, 83, 0, 0.25);
  z-index: 2;
}

.sale-phase-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
}

/* Orange maple leaf icon */
.sale-phase-top .sale-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Outlined orange date badge */
.sale-phase-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--sale-orange);
  background: transparent;
  border: 1.5px solid var(--sale-orange);
  padding: 3px 12px;
  border-radius: var(--rounded-pill, 999px);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Title & Subtitle */
.sale-phase-title {
  font-size: 22px;
  line-height: 28px;
  font-weight: 800;
  color: #000000;
  margin: 0;
}

.sale-phase-sub {
  font-size: 20px;
  line-height: 26px;
  font-weight: 800;
  color: #000000;
  margin: 0 0 4px 0;
}

.sale-phase-desc {
  font-size: 14px;
  line-height: 22px;
  color: #666666;
  margin-bottom: 16px;
}

.sale-phase .sale-button {
  margin-top: auto;
  width: 100%;
  background: #191C1D;
  border: 1px solid #191C1D;
  color: #FFFFFF;
}

.sale-phase .sale-button:hover {
  background: #000000;
  border-color: #000000;
}

.sale-phase .sale-button-disabled,
.sale-phase .sale-button:disabled {
  background: #C4C7C9 !important;
  border-color: #C4C7C9 !important;
  color: #FFFFFF !important;
}

/* ==========================================================================
   04. Section: Trust Badges (Replicating Homepage Compliance Card Style)
   ========================================================================== */
.sale-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sale-trust-card {
  background-color: var(--sale-bg-alt, #F8FAFC);
  border: none;
  border-radius: var(--sale-radius-block, 24px);
  padding: 36px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sale-trust-card .sale-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(43%) sepia(97%) saturate(3015%) hue-rotate(2deg) brightness(101%) contrast(106%);
}

.sale-trust-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .sale-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    width: 100%;
    box-sizing: border-box;
  }
  .sale-trust-card {
    padding: 24px 14px;
    border-radius: var(--sale-radius-block, 20px);
    min-height: 136px;
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .sale-trust-card .sale-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 14px auto;
  }
  .sale-trust-card h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .sale-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .sale-trust-card {
    padding: 22px 10px;
    border-radius: 16px;
    min-height: 128px;
  }
  .sale-trust-card .sale-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 12px auto;
  }
  .sale-trust-card h3 {
    font-size: 13px;
    line-height: 1.35;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
}

/* ==========================================================================
   05. Section: Products
   ========================================================================== */
.sale-products {
  display: grid;
  gap: 32px;
}

.sale-product {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  background: var(--sale-bg-alt);
  padding: 40px;
  border: none;
  border-radius: 24px;
  box-shadow: none !important;
}

.sale-product:nth-child(even) .sale-lifestyle {
  grid-column: 1;
  grid-row: 1;
}

.sale-product:nth-child(even) .sale-product-info {
  grid-column: 2;
}

.sale-product-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.sale-product-info h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  color: var(--sale-text-main);
  margin-bottom: 8px;
}

#fall-sale .sale-muted {
  color: var(--sale-text-muted);
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 8px;
}

.sale-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.sale-tags span {
  padding: 3px 12px;
  border-radius: var(--rounded-pill, 999px);
  font-size: 12px;
  font-weight: 700;
  background: transparent;
  border: 1.5px solid var(--sale-orange);
  color: var(--sale-orange);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.sale-product-image {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: contain;
  margin: 20px auto;
}

.sale-lifestyle {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 16px;
}

.sale-color-label {
  font-size: 13px;
  line-height: 18px;
  color: var(--sale-text-main);
  margin-bottom: 8px;
}

.sale-color-label span {
  font-weight: 600;
}

.sale-swatches {
  display: flex;
  gap: 10px;
}

.sale-swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 3px solid #FFFFFF;
  outline: 1px solid var(--sale-border);
  background: var(--swatch);
  cursor: pointer;
  transition: all 0.2s ease;
}

.sale-swatch[aria-pressed=true] {
  outline: 2px solid var(--sale-orange);
}

.sale-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 24px 0 16px;
}

.sale-price strong {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--sale-orange);
}

.sale-price span,
.sale-price s {
  font-size: 13px;
  color: var(--sale-text-muted);
}

.sale-product-actions {
  display: flex;
  gap: 12px;
}

.sale-product-actions .btn {
  flex: 1;
  font-size: 14px;
  padding: 10px 16px;
}

#fall-sale .sale-price-note {
  text-align: center;
  color: var(--sale-text-muted);
  font-size: 13px;
  margin-top: 24px;
  line-height: 20px;
}

/* ==========================================================================
   06. Section: Lucky Draw
   ========================================================================== */
.sale-draw {
  background: #FFFFFF !important;
}

.sale-draw-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  background: var(--sale-bg-alt);
  border: none;
  border-radius: 24px;
  padding: 48px;
  box-shadow: none !important;
}

.sale-draw-inner h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: var(--sale-text-main);
}

.sale-draw-inner p {
  max-width: 470px;
  color: var(--sale-text-muted);
  font-size: 15px;
  line-height: 22px;
  margin: 16px 0 24px;
}

.sale-draw-inner > img {
  width: 100%;
  height: 280px;
  object-fit: contain;
}

/* ==========================================================================
   07. Section: Why Choose Comu & Perks (Shared Linear Icons)
   ========================================================================== */
.sale-reasons-art {
  display: block;
  width: 340px;
  height: 240px;
  object-fit: contain;
  margin: -12px auto 24px;
}

.sale-reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sale-info-card {
  background: var(--sale-bg-alt, #F8FAFC);
  border: none;
  border-radius: var(--sale-radius-block, 24px);
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  min-width: 0;
  box-shadow: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sale-info-card .sale-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 20px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(43%) sepia(97%) saturate(3015%) hue-rotate(2deg) brightness(101%) contrast(106%);
}

.sale-info-card h3 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 10px 0;
  text-align: center;
  letter-spacing: -0.01em;
}

.sale-info-card p {
  color: var(--sale-text-muted, #667085);
  font-size: 14px;
  line-height: 22px;
  margin: 0;
  text-align: center;
}

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

.sale-text-link {
  color: var(--sale-text-main, #111827);
  font-size: 14px;
  font-weight: 600;
  margin: 20px auto 0 auto;
  text-decoration: underline;
  text-underline-offset: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: opacity 0.2s ease;
}

.sale-text-link:hover {
  opacity: 0.7;
}

.sale-accent-orange {
  color: var(--sale-orange);
  font-weight: inherit;
}

/* ==========================================================================
   08. Section: FAQ
   ========================================================================== */
.sale-faq {
  background: #FFFFFF;
}

.sale-faq-list {
  max-width: 800px;
  margin: auto;
}

.sale-faq-list details {
  border-bottom: 1px solid var(--sale-border);
}

.sale-faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--sale-text-main);
  list-style: none;
}

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

.sale-faq-list summary span {
  font-size: 20px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
  font-weight: 600;
  color: var(--sale-text-main, #111827);
  transition: transform 0.2s ease;
}

.sale-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.sale-faq-list p {
  padding-bottom: 24px;
  color: var(--sale-text-muted);
  font-size: 14px;
  line-height: 22px;
}

.sale-products-nav-arrows {
  display: none;
}

.nav-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F3F4F6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.1s ease;
  color: #111827;
  padding: 0;
}

.nav-arrow:hover {
  background: #E5E7EB;
}

.nav-arrow:active {
  transform: scale(0.95);
}

.nav-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.sale-carousel-dots {
  display: none;
}

/* Dialog */
.sale-dialog {
  position: fixed;
  inset: 0;
  margin: auto;
  max-width: calc(100% - 32px);
  width: 440px;
  border: 1px solid var(--sale-border);
  border-radius: var(--sale-radius-block);
  background: #FFFFFF;
  padding: 40px 32px 32px;
  box-shadow: 0 20px 48px rgba(16, 24, 40, 0.12);
}

.sale-dialog::backdrop {
  background: rgba(16, 24, 40, 0.45);
}

.sale-dialog h2 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: var(--sale-text-main);
}

.sale-dialog p {
  color: var(--sale-text-muted);
  font-size: 14px;
  line-height: 22px;
  margin: 16px 0 24px;
}

.sale-dialog-close {
  position: absolute;
  right: 12px;
  top: 8px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  font-size: 24px;
  color: var(--sale-text-muted);
  cursor: pointer;
}

.fall-page :focus-visible {
  outline: 2px solid var(--sale-text-main);
  outline-offset: 4px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .sale-hero-inner {
    min-height: 360px;
  }
  #fall-sale .sale-hero h1 {
    font-size: 20px;
    line-height: 28px;
  }
  #fall-sale .sale-offer {
    font-size: clamp(40px, 5.4vw, 48px);
  }
  .sale-date-badge {
    font-size: 14px;
    padding: 6px 16px;
  }
  .sale-phase {
    padding: 24px 20px;
  }
  .sale-reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sale-product {
    padding: 24px;
    gap: 24px;
  }
  .sale-product-actions {
    flex-direction: column;
  }
  .sale-draw-inner {
    padding: 32px;
  }
}

@media (max-width: 600px) {
  #fall-sale .container {
    width: min(100% - 32px, var(--max-width, 1128px));
    padding-left: 0;
    padding-right: 0;
  }
  #fall-sale .section {
    padding: 48px 0;
  }
  #fall-sale .section-heading {
    margin-bottom: 28px;
  }
  .sale-hero {
    background: linear-gradient(180deg, #f8ba7b, #ffffff);
  }
  .sale-hero-inner {
    height: 617px;
    min-height: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .sale-hero-copy {
    padding: 60px 0 0;
    gap: 12px;
    width: 100%;
    align-items: center;
    transform: none;
  }
  .sale-date-badge {
    font-size: 13px;
    line-height: 18px;
    gap: 8px;
    padding: 6px 16px;
    margin-bottom: 8px;
  }
  .sale-date-badge img {
    width: 16px;
    height: 16px;
  }
  #fall-sale .sale-hero h1 {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.025em;
  }
  #fall-sale .sale-offer {
    font-size: 48px;
    line-height: 1.15;
    gap: 8px;
    letter-spacing: -0.045em;
    margin: 0;
  }
  #fall-sale .sale-hero-description {
    font-size: 14px;
    line-height: 20px;
    color: #6b7480;
    margin: 0;
  }
  .sale-hero-visual {
    height: 310px;
    flex-shrink: 0;
    margin-top: 24px;
  }
  .sale-hero-crop {
    width: 506px;
    height: 310px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .sale-hero-art {
    width: 136.05%;
    height: 100.44%;
    left: -36.05%;
    top: -0.22%;
    margin: 0;
  }
  .sale-jump-nav .container {
    justify-content: flex-start;
    gap: 24px;
  }
  .sale-jump-nav a {
    font-size: 13px;
    padding: 14px 0;
  }
  .sale-timeline {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding-top: 36px;
    padding-bottom: 12px;
    padding-left: 0;
    padding-right: 16px;
    margin-left: 0;
    margin-right: -16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }
  .sale-timeline::-webkit-scrollbar {
    display: none;
  }
  .sale-timeline::before {
    display: none;
  }
  .sale-phase {
    flex: 0 0 clamp(148px, 41vw, 185px);
    scroll-snap-align: start;
    padding: 18px 12px;
    border-radius: 16px;
    gap: 6px;
    position: relative;
    box-shadow: none !important;
  }
  .sale-phase-top {
    gap: 4px;
    margin-bottom: 4px;
  }
  .sale-phase-top .sale-icon {
    width: 18px;
    height: 18px;
  }
  .sale-phase-badge {
    font-size: 10px;
    padding: 2.5px 7px;
  }
  .sale-phase-title {
    font-size: 15px;
    line-height: 20px;
    font-weight: 800;
  }
  .sale-phase-sub {
    font-size: 13.5px;
    line-height: 18px;
    font-weight: 800;
    margin: 0 0 4px 0;
  }
  .sale-phase-desc {
    font-size: 10.5px;
    line-height: 1.45;
    color: #888888;
    margin-bottom: 10px;
  }
  .sale-phase .sale-button {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 11.5px;
    font-weight: 700;
  }
  .sale-phase::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    top: -27px;
    left: calc(50% - 7px);
    border-radius: 50%;
    background: var(--sale-orange);
    border: 3px solid #FFFFFF;
    box-shadow: 0 0 0 1px rgba(255, 83, 0, 0.3);
    z-index: 2;
    display: block !important;
  }
  .sale-phase::after {
    content: '';
    position: absolute;
    top: -21px;
    height: 2px;
    background: var(--sale-orange);
    z-index: 1;
    display: block !important;
  }
  .sale-phase:first-child::after {
    left: 0;
    right: -10px;
    background: linear-gradient(90deg, rgba(255, 83, 0, 0) 0%, rgba(255, 83, 0, 0.4) 20%, #FF5300 50%, #FF5300 100%);
  }
  .sale-phase:nth-child(2)::after {
    left: -10px;
    right: -10px;
    background: #FF5300;
  }
  .sale-phase:last-child::after {
    left: -10px;
    right: 0;
    background: linear-gradient(90deg, #FF5300 0%, #FF5300 50%, rgba(255, 83, 0, 0.4) 80%, rgba(255, 83, 0, 0) 100%);
  }
  .sale-products {
    display: flex;
    overflow: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 2px 0 8px;
  }
  .sale-product {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
    min-width: 0;
    scroll-snap-align: start;
  }
  .sale-product-info {
    display: flex;
    flex-direction: column;
  }
  .sale-product-image {
    height: 190px;
  }
  .sale-product-actions {
    flex-direction: row;
  }
  .sale-lifestyle {
    height: 160px;
    min-height: 0;
    order: 2;
  }
  .sale-draw-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 24px;
  }
  .sale-draw-inner > img {
    height: 220px;
    order: -1;
  }
  .sale-draw-inner p {
    margin: 16px 0 20px;
  }
  .sale-reasons-art {
    display: none;
  }
  .sale-reasons-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    box-sizing: border-box;
  }
  .sale-reasons-grid .sale-info-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 16px;
    row-gap: 10px;
    padding: 24px 20px;
    border-radius: 20px;
    min-width: 0;
    box-sizing: border-box;
    text-align: left;
  }
  .sale-reasons-grid .sale-info-card .sale-icon {
    grid-column: 1;
    grid-row: 1;
    width: 40px;
    height: 40px;
    margin: 0;
    align-self: center;
    flex-shrink: 0;
  }
  .sale-reasons-grid .sale-info-card h3 {
    grid-column: 2;
    grid-row: 1;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
    margin: 0;
    text-align: left;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .sale-reasons-grid .sale-info-card p {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 13.5px;
    line-height: 1.55;
    text-align: left;
    color: var(--sale-text-muted, #667085);
    word-break: break-word;
    overflow-wrap: break-word;
    margin: 0;
  }
  .sale-perks-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-left: 0;
    padding-right: 16px;
    margin-left: 0;
    margin-right: -16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .sale-perks-grid::-webkit-scrollbar {
    display: none;
  }
  .sale-perks-grid .sale-info-card {
    flex: 0 0 clamp(250px, 72vw, 300px);
    scroll-snap-align: start;
    padding: 24px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-sizing: border-box;
  }
  .sale-perks-grid .sale-info-card .sale-icon {
    width: 40px;
    height: 40px;
    margin: 0 0 16px 0;
    align-self: flex-start;
  }
  .sale-perks-grid .sale-info-card h3 {
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-align: left;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .sale-perks-grid .sale-info-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--sale-text-muted, #667085);
    text-align: left;
    word-break: break-word;
    overflow-wrap: break-word;
    margin: 0 0 16px 0;
  }
  .sale-perks-grid .sale-info-card .sale-text-link {
    margin: auto 0 0 0;
    align-self: flex-start;
    font-size: 14px;
  }
  .sale-perks-grid + .sale-carousel-dots {
    display: none;
  }
  .sale-products-nav-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 20px 0 12px 0;
  }
  .sale-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }
  .sale-carousel-dots button {
    border: 0;
    background: var(--sale-border);
    width: 8px;
    height: 8px;
    border-radius: var(--rounded-pill, 999px);
    cursor: pointer;
    padding: 0;
    position: relative;
  }
  .sale-carousel-dots button::after {
    content: '';
    position: absolute;
    inset: -8px;
  }
  .sale-carousel-dots button[aria-current=true] {
    width: 28px;
    background: var(--sale-text-main);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .sale-button {
    transition: none;
  }
}