/* Checkout page starts */

* {
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	margin: 0;
	padding: 0;
  }
  
  
  /* Section */
  .checkout-section {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px 10px;
  }
  
  /* Container */
  .checkout-container-1 {
	background: #fff;
	width: 80%;
	max-width: 700px;
	padding: 30px 40px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	animation: checkout-fadeIn 0.6s ease;
  }
  
  @keyframes checkout-fadeIn {
	from {opacity: 0; transform: translateY(10px);}
	to {opacity: 1; transform: translateY(0);}
  }
  
  /* Title */
  .checkout-title {
	text-align: center;
	color: #333;
	margin-bottom: 20px;
  }
  
  /* Messages */
  .checkout-messages {
	text-align: center;
  }
  
  .checkout-message {
	color: red;
	margin-bottom: 5px;
  }
  
  /* Payment Options */
  .checkout-payment-options {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 30px;
  }
  
  .checkout-payment-option {
	flex: 1;
	text-align: center;
	border: 2px solid #ccc;
	border-radius: 10px;
	padding: 15px;
	cursor: pointer;
	transition: 0.3s;
  }
  
  .checkout-payment-option.active {
	border-color: #007bff;
	background: #e9f2ff;
  }
  
  .checkout-payment-img {
	width: 50px;
	height: auto;
  }
  
  /* Credit Card Form */
  .checkout-credit-card-form {
	display: none;
	margin-bottom: 20px;
  }
  
  .checkout-credit-card-form.checkout-show {
	display: block;
	animation: checkout-fadeIn 0.4s ease;
  }
  
  .checkout-card-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
  }
  
  .checkout-card-col {
	display: flex;
	flex-direction: column;
	gap: 15px;
  }
  
  .checkout-credit-card-form label,
  .checkout-paypal-form label {
	font-weight: 500;
	color: #444;
	margin-bottom: 5px;
  }
  
  .checkout-pay-btn{
	
	background: #007bff;
	color: #fff;
	padding: 12px;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	cursor: pointer;
	width: 100%;
	transition: background 0.3s;
	align-items: center;
	justify-content: center;
  }

  .checkout-paypal {
    background: #007bff;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    width: 100%;
    transition: background 0.3s;

    display: flex;           
    align-items: center;   
    justify-content: center;  
}
  
  .checkout-pay-btn:hover,
  .checkout-paypal-btn:hover {
	background: #0056b3;
  }
  
  /* PayPal Form */
  .checkout-paypal-form {
	display: none;
	flex-direction: column;
	gap: 20px;
  }

  .checkout-paypal-form.checkout-show{
	display: flex;
	flex-direction: column;
	gap: 20px;
  }
  
  /* Summary */
  .checkout-summary {
	background: #f1f3f9;
	padding: 15px;
	border-radius: 10px;
	margin-top: 20px;
  }
  
  .checkout-summary-title {
	margin-bottom: 10px;
  }
  
  .checkout-summary-item {
	display: flex;
	justify-content: space-between;
	padding: 5px 0;
	font-size: 15px;
	color: #555;
  }
  
  .checkout-summary-total {
	display: flex;
	justify-content: space-between;
	font-weight: bold;
	font-size: 16px;
	border-top: 1px solid #ccc;
	margin-top: 10px;
	padding-top: 10px;
  }
  
  /* Responsive - tablets */
  @media (max-width: 768px) {
	.checkout-card-grid {
	  grid-template-columns: 1fr;
	}
  
	.checkout-payment-options {
	  flex-direction: column;
	  gap: 15px;
	}
  }
  
  /* Responsive - mobile */
  @media (max-width: 480px) {
	.checkout-container-1 {
	  width: 95%;
	  padding: 20px;
	}
  
	.checkout-payment-img {
	  width: 40px;
	}
  
	.checkout-pay-btn,
	.checkout-paypal-btn {
	  font-size: 14px;
	  padding: 10px;
	}
  
	.checkout-summary-item,
	.checkout-summary-total {
	  font-size: 14px;
	}
  }

  /* checkout page ends */