/* Use the same CSS as refund.css with additional styles */
@import url('refund.css');

/* Additional styles for Shipping page */

.shipping-tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 25px 0;
}

.tier-card {
  position: relative;
  padding: 30px;
  background: var(--light-gray);
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.tier-card.free {
  background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
  border-color: var(--accent-gold);
}

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

.tier-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent-gold);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.tier-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--white);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tier-icon i {
  font-size: 32px;
  color: var(--accent-gold);
}

.tier-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 10px;
}

.tier-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.tier-info p {
  font-size: 14px;
  color: var(--text-gray);
}

.progress-wrapper {
  margin-top: 25px;
  padding: 20px;
  background: #f0f7ff;
  border-radius: 12px;
  border-left: 4px solid #4a90e2;
}

.progress-text {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 12px;
  text-align: center;
}

.progress-text strong {
  color: var(--accent-gold);
  font-weight: 700;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(201, 169, 110, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--accent-gold);
  border-radius: 10px;
  transition: width 0.5s ease;
}

.state-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.state-available,
.state-unavailable {
  display: flex;
  gap: 12px;
  padding: 18px;
  border-radius: 12px;
  align-items: flex-start;
}

.state-available {
  background: #f0fdf4;
  border: 2px solid #86efac;
}

.state-unavailable {
  background: var(--light-gray);
  border: 2px solid #e0e0e0;
}

.state-available i {
  font-size: 24px;
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

.state-unavailable i {
  font-size: 24px;
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.state-available strong,
.state-unavailable strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 3px;
}

.state-available span,
.state-unavailable span {
  display: block;
  font-size: 13px;
  color: var(--text-gray);
}

.delivery-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 25px 0;
}

.timeline-card {
  padding: 25px;
  border-radius: 15px;
  background: var(--white);
  border: 2px solid #e0e0e0;
}

.timeline-card.metro {
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
  border-color: #4a90e2;
}

.timeline-card.other {
  background: var(--light-gray);
}

.timeline-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.timeline-header i {
  font-size: 28px;
  color: var(--accent-gold);
}

.timeline-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-black);
}

.timeline-days {
  text-align: center;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
}

.timeline-days .days {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-gold);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.timeline-days .label {
  display: block;
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 5px;
}

.timeline-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.timeline-cities span {
  padding: 6px 12px;
  background: var(--white);
  border-radius: 20px;
  font-size: 12px;
  color: var(--text-gray);
  font-weight: 500;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 25px 0;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 12px;
  transition: var(--transition);
}

.step:hover {
  background: #fff9f0;
  transform: translateX(5px);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.step-content strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 5px;
}

.step-content span {
  display: block;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .shipping-tiers,
  .state-info,
  .delivery-timeline {
    grid-template-columns: 1fr;
  }

  .timeline-days .days {
    font-size: 40px;
  }
}

.designer-link {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.designer-link:hover {
  text-decoration: underline;
  color: var(--accent-gold); /* or any accent color you use */
}
