/* ─────────────────────────────────────────────────────────────────────
   DELIVERY INFORMATION PAGE
   Production times, shipping zones, packaging, FAQ
   ───────────────────────────────────────────────────────────────────── */

/* ── Fade-in ── */
.fade-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-section.is-visible .fade-child {
  opacity: 1;
  transform: translateY(0);
}
.fade-section.is-visible .fade-child:nth-child(1) { transition-delay: 0s; }
.fade-section.is-visible .fade-child:nth-child(2) { transition-delay: 0.1s; }
.fade-section.is-visible .fade-child:nth-child(3) { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .fade-section, .fade-child { opacity: 1; transform: none; transition: none; }
}


/* ── Page container ── */
.dv-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px) 80px;
}


/* ── Breadcrumb (layout only — styles from .vh-breadcrumb) ── */
.dv-page > .vh-breadcrumb {
  padding-top: 100px;
  margin-bottom: 0;
}


/* ══════════════════════════════════════════════════════════
   SECTION 1: HEADER
   ══════════════════════════════════════════════════════════ */
.dv-header {
  padding-top: 20px;
  margin-bottom: 48px;
}
.dv-header__title {
  font-family: 'Geologica', 'Georgia', serif;
  font-size: 36px;
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.2;
  margin: 0 0 12px;
}
.dv-header__sub {
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #4A4A4A;
  margin: 0;
  max-width: 600px;
}


/* ══════════════════════════════════════════════════════════
   SECTION 2: PRODUCTION TIME — highlighted card
   ══════════════════════════════════════════════════════════ */
.dv-production {
  display: flex;
  gap: 16px;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 56px;
}
.dv-production__icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.dv-production__heading {
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 8px;
}
.dv-production__body p {
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #4A4A4A;
  margin: 0 0 8px;
}
.dv-production__body p:last-child {
  margin-bottom: 0;
}
.dv-production__note {
  font-style: italic;
  color: #92400E !important;
  font-size: 13px !important;
}


/* ══════════════════════════════════════════════════════════
   SECTION 3: SHIPPING
   ══════════════════════════════════════════════════════════ */
.dv-shipping {
  margin-bottom: 56px;
}
.dv-section-title {
  font-family: 'Geologica', 'Georgia', serif;
  font-size: 24px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 32px;
}

/* Map */
.dv-map {
  margin-bottom: 24px;
}
.dv-map__svg {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Zone legend */
.dv-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-bottom: 40px;
  justify-content: center;
}
.dv-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 13px;
  color: #4A4A4A;
}
.dv-legend__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Delivery table */
.dv-table-wrap {
  overflow-x: auto;
  margin-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}
.dv-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 14px;
  min-width: 560px;
}
.dv-table thead th {
  background: #F5F0EB;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1A1A1A;
  text-align: left;
  padding: 12px 16px;
  white-space: nowrap;
}
.dv-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid #E5E2DD;
  color: #4A4A4A;
  vertical-align: top;
}
.dv-table tbody tr:nth-child(even) {
  background: #FAFAF8;
}
.dv-table__zone {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
.dv-table__countries {
  color: #1A1A1A;
  font-weight: 500;
}
.dv-table__time {
  font-weight: 600;
  white-space: nowrap;
}

.dv-table-note {
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 13px;
  color: #8A8A8A;
  font-style: italic;
  margin: 0 0 40px;
  line-height: 1.6;
}

/* Free delivery highlight */
.dv-free {
  display: flex;
  gap: 16px;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 8px;
  padding: 24px 28px;
}
.dv-free__icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.dv-free__heading {
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 8px;
}
.dv-free__body p {
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #4A4A4A;
  margin: 0 0 8px;
}
.dv-free__body p:last-child {
  margin-bottom: 0;
}
.dv-free__note {
  font-size: 13px !important;
  color: #6B7280 !important;
  font-style: italic;
}


/* ══════════════════════════════════════════════════════════
   SECTION 4: HOW WE SHIP — 3 steps
   ══════════════════════════════════════════════════════════ */
.dv-packaging {
  margin-bottom: 56px;
}
.dv-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.dv-steps__item {
  text-align: center;
  max-width: 260px;
  flex: 0 1 260px;
  padding: 0 16px;
}
.dv-steps__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
}
.dv-steps__icon svg {
  width: 40px;
  height: 40px;
}
.dv-steps__item h3 {
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 8px;
}
.dv-steps__item p {
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: #4A4A4A;
  margin: 0;
}

/* Connector line between steps */
.dv-steps__connector {
  width: 48px;
  flex-shrink: 0;
  border-top: 2px dashed #E5E2DD;
  margin-top: 20px;
}


/* ══════════════════════════════════════════════════════════
   SECTION 5: FAQ ACCORDION
   ══════════════════════════════════════════════════════════ */
.dv-faq {
  margin-bottom: 56px;
}
.dv-faq__item {
  border-bottom: 1px solid #E5E2DD;
}
.dv-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1A1A1A;
  gap: 16px;
}
.dv-faq__q:hover {
  color: #4A4A4A;
}
.dv-faq__chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #8A8A8A;
}
.dv-faq__item.is-open .dv-faq__chevron {
  transform: rotate(180deg);
}
.dv-faq__a {
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.dv-faq__a p {
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #4A4A4A;
  margin: 0 0 16px;
  padding-right: 32px;
}
.dv-faq__a p:last-child {
  margin-bottom: 16px;
}
.dv-faq__a a {
  color: #3B82F6;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(59, 130, 246, 0.3);
}
.dv-faq__a a:hover {
  text-decoration-color: #3B82F6;
}


/* ══════════════════════════════════════════════════════════
   SECTION 6: CTA
   ══════════════════════════════════════════════════════════ */
.dv-cta {
  text-align: center;
  padding: 56px 0;
  border-top: 1px solid #E5E2DD;
}
.dv-cta__heading {
  font-family: 'Geologica', 'Georgia', serif;
  font-size: 28px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 8px;
}
.dv-cta__sub {
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 16px;
  color: #4A4A4A;
  margin: 0 0 24px;
}
.dv-cta__btn {
  display: inline-block;
  padding: 14px 32px;
  background: #1A1A1A;
  color: #fff;
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.dv-cta__btn:hover {
  background: #333;
}
.dv-cta__phone {
  display: block;
  margin-top: 12px;
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 13px;
  color: #8A8A8A;
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .dv-page > .vh-breadcrumb {
    padding-top: 80px;
  }
  .dv-header__title {
    font-size: 28px;
  }
  .dv-header__sub {
    font-size: 15px;
  }
  .dv-production {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }
  .dv-section-title {
    font-size: 22px;
  }
  .dv-legend {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  /* Steps: vertical stack */
  .dv-steps {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .dv-steps__connector {
    width: 2px;
    height: 32px;
    border-top: none;
    border-left: 2px dashed #E5E2DD;
    margin-top: 0;
  }
  .dv-steps__item {
    max-width: 100%;
  }

  .dv-free {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }
  .dv-faq__q {
    font-size: 15px;
  }
  .dv-faq__a p {
    font-size: 14px;
    padding-right: 0;
  }
  .dv-cta__heading {
    font-size: 24px;
  }
}

/* ── Print ── */
@media print {
  .dv-page > .vh-breadcrumb,
  .dv-cta,
  .dv-map {
    display: none;
  }
  .fade-section, .fade-child {
    opacity: 1;
    transform: none;
  }
  .dv-faq__a {
    max-height: none !important;
    overflow: visible;
  }
}
