/* DELIVERY & PAYMENT PAGE STYLES */

.delivery-payment-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--glass-bg-light);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.page-header h1 {
  color: var(--dark-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header .lead {
  color: var(--gray);
  font-size: 1.1rem;
}

.info-section {
  margin-bottom: 3rem;
  background: var(--glass-bg-light);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.section-icon {
  position: absolute;
  top: -25px;
  left: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
}

.info-section h2 {
  color: var(--dark-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

.info-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--gray-light);
  transition: all 0.3s ease;
}

.info-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.info-card:last-child {
  margin-bottom: 0;
}

.info-card h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.info-card h4 {
  color: var(--dark-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.info-card ul, .info-card ol {
  padding-left: 1.5rem;
  line-height: 1.8;
}

.info-card li {
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.info-card p {
  line-height: 1.6;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.delivery-terms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.term-item {
  background: var(--light-color);
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.term-item strong {
  color: var(--primary-color);
  font-size: 1rem;
}

.term-item span {
  color: var(--dark-color);
  font-weight: 600;
}

.payment-systems {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.payment-systems img {
  height: 40px;
  width: auto;
  filter: grayscale(0.3);
  transition: all 0.3s ease;
}

.payment-systems img:hover {
  filter: grayscale(0);
  transform: scale(1.1);
}

.security-note {
  background: var(--light-color);
  padding: 1rem;
  border-radius: 10px;
  border-left: 4px solid var(--success);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.security-note i {
  color: var(--success);
  font-size: 1.5rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--light-color);
  border-radius: 10px;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  min-width: 24px;
  margin-top: 0.2rem;
}

.contact-item strong {
  display: block;
  color: var(--dark-color);
  margin-bottom: 0.25rem;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 1.8rem;
  }
  
  .info-section {
    padding: 1rem;
  }
  
  .section-icon {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .info-section h2 {
    font-size: 1.4rem;
    text-align: center;
    padding-top: 2rem;
  }
  
  .info-card {
    padding: 1rem;
  }
  
  .delivery-terms {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
}