.checkout-modal .modal {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  padding: 0;
  top: unset;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: none;
  align-items: normal;
  text-align: center;
}
.checkout-modal .modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px 30px;
  position: relative;
}
.checkout-modal .close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.checkout-modal .close-btn:hover {
  opacity: 1;
}
.checkout-modal .modal-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
  color: #fff;
}
.checkout-modal .modal-subtitle {
  opacity: 0.9;
  font-size: 14px;
  color: #fff;
}
.checkout-modal .modal-content {
  display: flex;
  height: 500px;
}
.checkout-modal .left-column {
  flex: 1;
  padding: 30px;
  border-right: 1px solid #e5e5e5;
  overflow-y: auto;
}
.checkout-modal .offerings-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}
.checkout-modal .offering-item {
  border: 2px solid #f0f0f0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fafafa;
}
.checkout-modal .offering-item:hover {
  border-color: #667eea;
  background: #f8f9ff;
}
.checkout-modal .offering-item.selected {
  border-color: #667eea;
  background: #f0f3ff;
}
.checkout-modal .offering-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.checkout-modal .offering-name {
  font-weight: 600;
  color: #333;
  font-size: 16px;
}
.checkout-modal .offering-price {
  color: #667eea;
  font-weight: 700;
  font-size: 18px;
}
.checkout-modal .offering-description {
  color: #666;
  font-size: 14px;
  line-height: 1.4;
}
.checkout-modal .checkbox {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  accent-color: #667eea;
}
.checkout-modal .right-column {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.checkout-modal .selection-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}
.checkout-modal .selected-items {
  flex: 1;
  margin-bottom: 20px;
}
.checkout-modal .book-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  margin-bottom: 8px;
  background: white;
}
.checkout-modal .book-item.selected {
  background: #f8f9ff;
  border-color: #667eea;
}
.checkout-modal .book-item.bundle-option {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
  border: 2px solid #667eea;
  cursor: pointer;
  transition: all 0.3s ease;
}
.checkout-modal .book-item.bundle-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}
.checkout-modal .book-item.bundle-option.selected {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}
.checkout-modal .book-item.bundle-option.selected .discount-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.checkout-modal .book-item.bundle-option.selected .original-price {
  color: rgba(255, 255, 255, 0.7);
}
.checkout-modal .book-item.bundle-option.selected .discounted-price {
  color: white;
}
.checkout-modal .book-name {
  font-weight: 500;
  color: #333;
  margin-left: 10px;
}
.checkout-modal .book-price {
  color: #667eea;
  font-weight: 600;
}
.checkout-modal .discount-badge {
  background: #ff4757;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 12px;
  margin-left: 8px;
}
.checkout-modal .bundle-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.checkout-modal .original-price {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}
.checkout-modal .discounted-price {
  color: #667eea;
  font-weight: 700;
  font-size: 16px;
}
.checkout-modal .divider {
  text-align: center;
  margin: 16px 0;
  position: relative;
}
.checkout-modal .divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e5e5;
}
.checkout-modal .divider span {
  background: white;
  padding: 0 12px;
  color: #999;
  font-size: 12px;
  font-weight: 500;
}
.checkout-modal .remove-btn {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 16px;
  margin-left: 10px;
}
.checkout-modal .remove-btn:hover {
  color: #ff4757;
}
.checkout-modal .empty-state {
  text-align: center;
  color: #999;
  font-style: italic;
  padding: 40px 20px;
}
.checkout-modal .checkout-section {
  border-top: 2px solid #f0f0f0;
  padding-top: 20px;
}
.checkout-modal .total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}
.checkout-modal .total-label {
  color: #333;
}
.checkout-modal .total-amount {
  color: #667eea;
  font-size: 24px;
}
.checkout-modal .continue-btn {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.checkout-modal .continue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}
.checkout-modal .continue-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
@media (max-width: 768px) {
  .checkout-modal .modal-content {
    flex-direction: column;
    height: auto;
    max-height: 70vh;
  }
  .checkout-modal .left-column {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
    max-height: 300px;
  }
  .checkout-modal .right-column {
    min-height: 200px;
  }
}

/*# sourceMappingURL=temp-modal.css.map */
