/* ========================================
   LASH AND BEAUTY — Returns Page Styles
   ======================================== */

/* ---- Hero ---- */
.returns-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #000000 0%, #16213e 40%, #0f3443 100%);
  overflow: hidden;
}
.returns-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(212,175,55,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.returns-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.2);
}
.returns-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4.5rem 0 3.5rem;
}
.returns-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  backdrop-filter: blur(8px);
}
.returns-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.returns-hero__title em { color: #FFD700; font-style: italic; }
.returns-hero__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- Content ---- */
.returns-content {
  padding: 3.5rem 0 4rem;
  background: #f8f7f5;
}
.returns-card {
  max-width: 820px;
  margin: 0 auto;
}

/* ---- Sections ---- */
.returns-section {
  text-align: center;
  margin-bottom: 2.5rem;
}
.returns-section__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #000000, #16213e);
  color: #FFD700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 1rem;
}
.returns-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}
.returns-intro {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}
.returns-intro strong { color: #000000; }

/* ---- Steps ---- */
.returns-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.returns-step {
  display: flex;
  gap: 1.25rem;
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid #eee;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.returns-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  border-color: transparent;
}
.returns-step__number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #D4AF37, #B8962E);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.returns-step__content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.returns-step__content p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 0.5rem;
}
.returns-step__content p:last-child { margin-bottom: 0; }
.returns-step__content a {
  color: #D4AF37;
  text-decoration: none;
  transition: color 0.2s;
}
.returns-step__content a:hover { color: #B8962E; }

/* ---- Alert ---- */
.returns-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fff3e0;
  border-left: 4px solid #ff9800;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  margin-top: 0.75rem;
}
.returns-alert i {
  color: #e65100;
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.returns-alert span {
  font-size: 0.82rem;
  color: #5d4037;
  line-height: 1.55;
  font-weight: 500;
}

/* ---- Refund Section ---- */
.returns-refund {
  margin-top: 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid #e0e0e0;
}
.refund-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.refund-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  border: 1px solid #eee;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.refund-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.07);
  border-color: transparent;
}
.refund-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
}
.refund-card:nth-child(2) .refund-card__icon {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: #1565c0;
}
.refund-card:nth-child(3) .refund-card__icon {
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
  color: #7b1fa2;
}
.refund-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.6rem;
}
.refund-card p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.6;
}
.refund-card p strong { color: #000000; }

/* ---- Contact CTA ---- */
.returns-contact {
  background: linear-gradient(135deg, #000000, #16213e);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 2.5rem;
  position: relative;
  overflow: hidden;
}
.returns-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(212,175,55,0.12) 0%, transparent 50%);
}
.returns-contact > * { position: relative; z-index: 1; }
.returns-contact h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.returns-contact h3 i { color: #FFD700; }
.returns-contact__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  border: none;
}
.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .refund-grid { grid-template-columns: 1fr; }
  .returns-step { flex-direction: column; align-items: flex-start; }
  .returns-contact { padding: 2rem 1.5rem; }
  .returns-contact__buttons { flex-direction: column; align-items: center; }
}
