/* ═══════════════════════════════════════════════════════════════════════
   VividHome — Shipping / EU Delivery Section
   SVG EU map with Bulgaria highlighted, delivery feature cards
   ═══════════════════════════════════════════════════════════════════════ */

.vh-ship {
  position: relative;
  padding: var(--vh-section-py) 0;
  background-color: var(--vh-cream);
  overflow: hidden;
}

/* Subtle grain texture overlay */
.vh-ship::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
}


/* ── Grid layout ── */

.vh-ship__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vh-space-16);
  align-items: center;
  position: relative;
}


/* ── Map column ── */

.vh-ship__map-col {
  position: relative;
}

.vh-ship__map-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.vh-ship__map {
  width: 100%;
  height: auto;
}

.vh-ship__country {
  fill: var(--vh-sand);
  stroke: var(--vh-white);
  stroke-width: 1.5;
  transition: fill var(--vh-duration-base) var(--vh-ease-out);
}

.vh-ship__country--home {
  fill: var(--vh-purple);
  filter: drop-shadow(0 2px 8px rgba(124, 58, 237, 0.35));
}

/* Delivery route dashed lines */
.vh-ship__route {
  stroke: var(--vh-purple);
  stroke-width: 1;
  stroke-dasharray: 6 4;
  opacity: 0.4;
  stroke-linecap: round;
}

/* Bulgaria pin */
.vh-ship__pin {
  fill: var(--vh-white);
  stroke: var(--vh-purple);
  stroke-width: 2;
}

.vh-ship__pin-pulse {
  fill: none;
  stroke: var(--vh-purple);
  stroke-width: 1.5;
  animation: vh-pin-pulse 2s ease-out infinite;
}

@keyframes vh-pin-pulse {
  0% {
    r: 6;
    opacity: 0.6;
  }
  100% {
    r: 20;
    opacity: 0;
  }
}

/* Map badge */
.vh-ship__map-badge {
  position: absolute;
  bottom: var(--vh-space-4);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--vh-space-2);
  background: var(--vh-white);
  border: 1px solid var(--vh-sand);
  border-radius: var(--vh-radius-full);
  padding: var(--vh-space-2) var(--vh-space-5);
  font-family: var(--vh-font-body);
  font-size: var(--vh-text-xs);
  font-weight: var(--vh-weight-semibold);
  color: var(--vh-ink);
  box-shadow: var(--vh-shadow-md);
  white-space: nowrap;
}

.vh-ship__map-badge svg {
  width: 18px;
  height: 18px;
  stroke: var(--vh-purple);
  flex-shrink: 0;
}


/* ── Content column ── */

.vh-ship__eyebrow {
  display: inline-block;
  font-family: var(--vh-font-body);
  font-size: var(--vh-text-xs);
  font-weight: var(--vh-weight-semibold);
  letter-spacing: var(--vh-tracking-widest);
  text-transform: uppercase;
  color: var(--vh-purple);
  margin-bottom: var(--vh-space-4);
}

.vh-ship__title {
  font-family: var(--vh-font-heading);
  font-size: clamp(2rem, 4vw, var(--vh-text-5xl));
  font-weight: var(--vh-weight-light);
  line-height: var(--vh-leading-tight);
  letter-spacing: var(--vh-tracking-tighter);
  color: var(--vh-ink);
  margin-bottom: var(--vh-space-5);
}

.vh-ship__title em {
  font-style: normal;
  background: var(--vh-gradient-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vh-ship__text {
  font-family: var(--vh-font-body);
  font-size: var(--vh-text-md);
  color: var(--vh-charcoal);
  line-height: var(--vh-leading-relaxed);
  margin-bottom: var(--vh-space-10);
  max-width: 480px;
}


/* ── Feature cards ── */

.vh-ship__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vh-space-5);
}

.vh-ship__feat {
  display: flex;
  gap: var(--vh-space-4);
  padding: var(--vh-space-5);
  background: var(--vh-white);
  border-radius: var(--vh-radius-xl);
  border: 1px solid var(--vh-sand);
  transition: all var(--vh-duration-base) var(--vh-ease-out);
}

.vh-ship__feat:hover {
  transform: translateY(-2px);
  box-shadow: var(--vh-shadow-md);
  border-color: transparent;
}

.vh-ship__feat-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.08);
  border-radius: var(--vh-radius-lg);
}

.vh-ship__feat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--vh-purple);
}

.vh-ship__feat-title {
  font-family: var(--vh-font-body);
  font-size: var(--vh-text-sm);
  font-weight: var(--vh-weight-semibold);
  color: var(--vh-ink);
  display: block;
  margin-bottom: var(--vh-space-1);
}

.vh-ship__feat-desc {
  font-family: var(--vh-font-body);
  font-size: var(--vh-text-xs);
  color: var(--vh-charcoal);
  line-height: var(--vh-leading-relaxed);
  margin: 0;
}


/* ── CTA link to full policy ── */

.vh-ship__cta-link {
  display: inline-flex;
  align-items: center;
  gap: var(--vh-space-2);
  margin-top: var(--vh-space-6);
  font-family: var(--vh-font-body);
  font-size: var(--vh-text-sm);
  font-weight: var(--vh-weight-semibold);
  color: var(--vh-purple);
  text-decoration: none;
  transition: gap var(--vh-duration-base) var(--vh-ease-out),
              color var(--vh-duration-base) var(--vh-ease-out);
}

.vh-ship__cta-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--vh-duration-base) var(--vh-ease-out);
}

.vh-ship__cta-link:hover {
  gap: var(--vh-space-3);
  color: var(--vh-ink);
}

.vh-ship__cta-link:hover svg {
  transform: translateX(2px);
}


/* ── Responsive ── */

@media (max-width: 1023px) {
  .vh-ship__grid {
    grid-template-columns: 1fr;
    gap: var(--vh-space-10);
  }

  .vh-ship__map-col {
    order: -1;
  }

  .vh-ship__map-wrap {
    max-width: 400px;
  }
}

@media (max-width: 767px) {
  .vh-ship__features {
    grid-template-columns: 1fr;
  }

  .vh-ship__map-wrap {
    max-width: 320px;
  }
}
