/* Shipping terms styling */
.shipping-hero {
  background-color: #f8f9fa;
  padding: 4rem 0;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.shipping-hero-image {
  width: 100%;
  max-width: 450px;
  height: auto;
}

.delivery-card {
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  padding: 2rem;
  border: none;
  border-left: 4px solid #4CAF50;
}

.delivery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.delivery-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.zone-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
  border: none;
  height: 100%;
}

.zone-card:hover {
  transform: translateY(-5px);
}

.zone-card-header {
  padding: 1.5rem;
  background-color: #4CAF50;
  color: white;
}

.faq-section {
  background-color: #f8f9fa;
  padding: 4rem 0;
  margin-top: 3rem;
}

.accordion-button:not(.collapsed) {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.25);
}

.free-shipping-banner {
  background-color: #e8f5e9;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shipping-method-table th {
  background-color: #f1f1f1;
}

.countries-list {
  column-count: 2;
  column-gap: 2rem;
}

@media (max-width: 768px) {
  .countries-list {
    column-count: 1;
  }
  .calc-button {
    display: none !important;
  }
}
/* Animation for results */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#calculator-results > div {
  animation: fadeIn 0.3s ease-out;
}

/* Fix spinner issues */
#loading-spinner {
  display: none; /* Hide by default */
}

/*# sourceMappingURL=main.css.map */
