/* ==================== RETURN PAGE ==================== */

/* ========== HERO (аналог privacy-hero) ========== */

.return-hero {
  padding: 20px 0 0;
}

.return-hero .container {
  max-width: 1720px;
  padding: 0 20px;
}

.return-hero__inner {
  background: var(--color-bg-2, #f5f6f7);
  border-radius: 22px;
  padding: calc(var(--header-top) + var(--header-height-desktop)) 60px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.return-hero__title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  text-align: center;
  background: var(--gradient-heading);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.return-hero__date {
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text-light);
  letter-spacing: -0.07px;
  text-align: center;
  margin: 0;
}

.return-hero__date strong {
  font-weight: 500;
}

/* ========== CONTENT ========== */

.return-content {
  padding: 60px 20px 80px;
}

.return-content__inner {
  max-width: 1600px;
  margin: 0 auto;
}

.return-prose {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 16px;
  line-height: 1.6;
  color: #111;
}

/* ---- Intro paragraph ---- */
.return-prose__intro {
  margin: 0;
}

/* ---- Notice box (light red alert) ---- */
.return-notice {
  display: flex;
  gap: 24px;
  align-items: center;
  background: #fce8e8;
  border-radius: 16px;
  padding: 24px;
}

.return-notice__icon {
  display: block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.return-notice__text {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  margin: 0;
}

/* ---- Section block ---- */
.return-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Gradient h2 — Semibold 28px */
.return-section__title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  background: var(--gradient-heading);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.return-section__text {
  margin: 0;
}

/* ---- Checklist (✓ SVG іконка) ---- */
.return-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0 0 0 20px;
  margin: 0;
}

.return-checklist__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.return-checklist__icon {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.return-checklist__text {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  margin: 0;
}

/* ---- Gray card (Якщо товар має дефект) ---- */
.return-card {
  background: #f3f3f5;
  border: 1px solid #e7ebf0;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.return-card__steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* White step row */
.return-card__step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 10px;
  padding: 16px;
}

.return-card__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

/* Іконка без фону (camera) */
.return-card__step-icon img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Іконка з сірим колом */
.return-card__step-icon--circle {
  background: #f3f3f5;
  border-radius: 60px;
}

.return-card__step-icon--circle img {
  width: 24px;
  height: 24px;
}

.return-card__step-text {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #111;
  margin: 0;
}

/* ---- Numbered steps (Як оформити повернення) ---- */
.return-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0 0 0 20px;
  margin: 0;
}

.return-steps__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.return-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 40px;
  background: var(--color-primary);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}

.return-steps__text {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  margin: 0;
}


/* ============ ≤1023px ============ */
@media (max-width: 1023px) {
  .return-hero {
    padding: 0;
  }

  .return-hero .container {
    padding: 0;
  }

  .return-hero__inner {
    border-radius: 0;
    padding: calc(var(--header-height-mobile) + 30px) 30px 40px;
  }

  .return-hero__title {
    font-size: 36px;
    letter-spacing: -0.18px;
  }

  .return-content {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .return-notice {
    gap: 16px;
    padding: 16px;
  }
}

/* ============ ≤767px ============ */
@media (max-width: 767px) {
  .return-hero__inner {
    padding: calc(var(--header-height-mobile) + 20px) 16px 32px;
    gap: 12px;
  }

  .return-hero__title {
    font-size: 28px;
    letter-spacing: -0.14px;
  }

  .return-content {
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .return-section__title {
    font-size: 22px;
  }

  .return-notice {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .return-card {
    padding: 16px;
  }

  .return-checklist {
    padding-left: 0;
  }

  .return-steps {
    padding-left: 0;
  }
}
