/* ============================================
   LUEN – Shipping & Payment (SCOPED)
   ============================================ */

.shipping-page {
  padding: 6rem 0;
}

/* HEADER */
.shipping-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

.shipping-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.125rem;
  color: var(--color-merlot);
  display: block;
  margin-bottom: 0.5rem
}

.shipping-title {
  font-weight: 700;
  font-size: 3rem;
}

.payment-name {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-plum);
  margin-bottom: 0.25rem;
}

.payment-description {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #555;
  line-height: 1.6;
}

.payment-icon {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--color-lavender);
}

.section-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-merlot);
}


.feature-title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-plum);
  margin-bottom: 0.5rem;
}


.feature-description {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #555;
}

.delivery-info p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #555;
  }
.shipping-page .section-title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-plum);
}
/* LAYOUT */
.shipping-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 80rem;
  margin: 0 auto;
}

/* SECTION HEADER */
.section-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

/* DELIVERY */
.delivery-options {
  border: 1px solid var(--color-rose-quartz);
  padding: 2rem;
  background: #fff;
}

.delivery-option {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.delivery-option-last {
  border-bottom: 0;
  margin-bottom: 0;
}

.option-name {
  font-weight: 700;
}

.option-description {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* PAYMENT */
.payment-method {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--color-rose-quartz);
  background: #fff;
}

/* FEATURES */
.features-section {
  margin-top: 5rem;
  border-top: 1px solid var(--color-rose-quartz);
  padding-top: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.delivery-section,
.payment-section,
.feature-card {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s ease;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}


.feature-card {  
  
  text-align: center;
}


/* RESPONSIVE */
@media (max-width: 1024px) {
  .shipping-layout {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .shipping-page {
  padding-left: 15px; 
  padding-right: 15px;
  }
}


