body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
}

.checkout-header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.checkout-logo {
  font-weight: bold;
  font-size: 24px;
}

.checkout-secure {
  color: green;
  font-weight: bold;
}

.checkout-steps {
  text-align: center;
  margin: 20px;
  font-size: 16px;
}

.checkout-steps .active-step {
  color: green;
  font-weight: bold;
}

.checkout-container {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.checkout-left, .checkout-right {
  background-color: white;
  padding: 25px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.checkout-left {
  flex: 2;
}

.checkout-right {
  flex: 1;
}

.checkout-login-btn, .checkout-apply-btn, .checkout-continue-btn {
  background-color: black;
  color: white;
  border: none;
  padding: 10px 16px;
  margin: 10px 0;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.checkout-login-btn:hover, .checkout-apply-btn:hover, .checkout-continue-btn:hover {
  background-color: #333;
}

.checkout-address-form {
  margin-top: 20px;
}

.checkout-input-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.checkout-address-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.checkout-savings-box {
  background-color: #fff8e1;
  padding: 15px;
  border: 1px dashed #f0c000;
  margin-bottom: 20px;
  border-radius: 6px;
}

.checkout-savings-box p {
  margin: 0 0 10px;
}

.checkout-savings-box a {
  font-size: 14px;
  display: block;
  margin-top: 10px;
  text-decoration: none;
  color: #333;
}

.checkout-order-summary {
  font-size: 15px;
}

.checkout-order-summary .green-text {
  color: green;
}

.checkout-order-summary .total-amount {
  font-size: 18px;
  margin-top: 10px;
}

.checkout-footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: #fff;
  border-top: 1px solid #ccc;
}

.checkout-features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 20px;
}

.checkout-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-feature-item img {
  width: 60px;
  height: 60px;
}

/* 📱 Responsive Styling */
@media (max-width: 768px) {
  .checkout-container {
    flex-direction: column;
    padding: 15px;
  }

  .checkout-left, .checkout-right {
    width: 100%;
  }

  .checkout-input-row {
    flex-direction: column;
  }

  .checkout-features {
    flex-direction: column;
    gap: 15px;
  }

  .checkout-feature-item img {
    width: 45px;
    height: 45px;
  }
}
