/* Delivery Method Section */
.delivery-method-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.section-label {
  display: block;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #374151;
  font-size: 0.95rem;
}

.radio-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.radio-option {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  padding: 1.2rem 1.25rem 0.75rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.2s ease;
  background: #fafafa;
  position: relative;
  flex: 1; /* Added from update */
  min-width: 280px; /* Added from update */
  flex-wrap:wrap;
}

.radio-option:hover {
  border-color: #d1d5db;
  background: #f5f5f5;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 0;
  height: 0;
}

.radio-option input[type="radio"]:checked + .radio-custom {
  background: #d97706;
  border-color: #d97706;
}

.radio-option input[type="radio"]:checked ~ .radio-custom::after {
  opacity: 1;
  transform: scale(1);
}

.radio-option:has(input[type="radio"]:checked) {
  border-color: #d97706;
  background: #fef3c7;
}

/* Increased radio button size and improved alignment */
.radio-custom {
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
  border: 2.5px solid #9ca3af;
  border-radius: 50%;
  margin-right: 0.875rem;
  margin-top: 0.3rem;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
  background: white;
  display: block;
}

.radio-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.radio-label {
    font-size: 16px;
    color: #555;
    font-weight: bold;
}

.delivery-method-description {
	display: block;
	font: 400 13px 'Open Sans', sans-serif;
	color: #999;
}

.delivery-method-title-container{
	display: flex;
	align-items: center;
	gap: 1rem;
}
.delivery-method-content{
	margin-left: 2rem;
}

.pickup-section {
  border: 2px solid #d8b364;
  border-radius: 12px;
  padding: 0.5rem;
  margin-bottom: 2rem;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pickup-card {
  background: white;
  border-radius: 8px;
  padding: 1.75rem;
}

.pickup-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pickup-icon {
  color: #d97706;
  flex-shrink: 0;
}

.pickup-header-text {
  flex: 1;
}

.pickup-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: #92400e;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}

.pickup-subtitle {
  font-size: 0.875rem;
  color: #b45309;
  margin: 0;
  font-weight: 500;
}

.pickup-description {
  font-size: 0.9rem;
  color: #78716c;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  padding-left: 0;
}

.pickup-select-button {
  width: 100%;
  background: #d8b364;
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.pickup-select-button:hover {
  background: #b45309;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
}

.pickup-select-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(217, 119, 6, 0.25);
}

.pickup-select-button svg {
  flex-shrink: 0;
}