/* Shipping Policy Page Styles */

.shipping-policy-container {
  padding: 40px 0;
}

/* Intro Section */
.intro-section {
  margin-bottom: 50px;
  text-align: center;
}

.intro-text {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Section Titles */
.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #222;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #9252ba, #7a3d9e);
  margin: 15px auto 0;
}

.section-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  text-align: center;
}

/* Info Cards */
.shipping-cards,
.payment-cards {
  margin-bottom: 40px;
  margin-left: 10px;
  margin-right: 10px;
}

.shipping-cards .col-md-6,
.shipping-cards .col-lg-4,
.payment-cards .col-md-6,
.payment-cards .col-lg-4 {
  display: flex;
  flex-direction: column;
}

.info-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
  border: 1px solid #f0f0f0;
}

.info-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.card-icon {
  font-size: 48px;
  color: #9252ba;
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 0;
  color: #222;
}

.info-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 0;
}

.payment-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.payment-list li {
  padding: 8px 0 8px 25px;
  color: #666;
  font-size: 15px;
  position: relative;
}

.payment-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #9252ba;
  font-weight: bold;
}

/* Courier Section */
.courier-section {
  background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
  padding: 50px 30px;
  border-radius: 12px;
  margin-bottom: 50px;
  margin-left: 10px;
  margin-right: 10px;
}

.courier-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin: 30px 0;
}

.courier-item {
  display: inline-block;
}

.courier-badge {
  display: inline-block;
  background: #ffffff;
  border: 2px solid #9252ba;
  color: #9252ba;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.courier-badge:hover {
  background: #9252ba;
  color: #ffffff;
}

.note-text {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-top: 20px;
  font-style: italic;
}

/* Payment Section */
.payment-section {
  margin-bottom: 50px;
  margin-left: 10px;
  margin-right: 10px;
}

.security-details {
  background: #ffffff;
  border-left: 4px solid #9252ba;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
  margin-left: 10px;
  margin-right: 10px;
}

.security-details h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 0;
  color: #222;
}

.security-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.security-list li {
  padding: 12px 0 12px 30px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
}

.security-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #9252ba;
  font-weight: bold;
  font-size: 18px;
}

/* FAQ Section */
.faq-section {
  margin-bottom: 50px;
}

.faq-item {
  background: #ffffff;
  padding: 25px;
  margin-bottom: 20px;
  margin-left: 10px;
  border-radius: 8px;
  border-left: 4px solid #9252ba;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
  margin-top: 0;
}

.faq-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Contact CTA */
.contact-cta {
  background: linear-gradient(135deg, #9252ba 0%, #7a3d9e 100%);
  padding: 50px 30px;
  text-align: center;
  border-radius: 12px;
  margin-top: 50px;
  margin-left: 10px;
  margin-right: 10px;
  color: #ffffff;
}

.contact-cta h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 0;
  color: #ffffff;
}

.contact-cta p {
  font-size: 16px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.95);
}

.contact-cta .btn,
.contact-cta a.btn {
  background: #ffffff;
  color: #9252ba;
  padding: 12px 35px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.contact-cta .btn:hover,
.contact-cta a.btn:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .info-card {
    padding: 20px;
  }

  .courier-list {
    gap: 10px;
  }

  .courier-badge {
    padding: 8px 15px;
    font-size: 12px;
  }

  .contact-cta {
    padding: 30px 20px;
  }

  .contact-cta h3 {
    font-size: 22px;
  }

  .faq-item {
    padding: 20px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .shipping-cards,
  .payment-cards {
    margin-left: 10px;
    margin-right: 10px;
  }

  .courier-section {
    margin-left: 10px;
    margin-right: 10px;
  }

  .security-details {
    margin-left: 10px;
    margin-right: 10px;
  }

  .contact-cta {
    margin-left: 10px;
    margin-right: 10px;
  }
}
