.payment-method {
    margin-top: 30px;
    text-align: left;
    color: #fff;
    margin-bottom: 20px;
  }
  .payment-buttons {
    display: flex;
    gap: 20px;
  }
  .payment-button {
    flex: 1;
    padding: 10px;
    font-size: 14px;
    font-weight: 100;
    background-color: black;
    color: white;
    border: 1px solid white;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-align: center;
    border-radius: 20px;
  }
  .payment-button:hover {
      background-color: rgba(255, 255, 255, 0.2);
  }
  .payment-button.active {
      background-color: white;
      color: black;
      border: 1px solid black;
      transform: scale(1.05);
      box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.3);
      transition: all 0.3s ease-in-out;
  }
  
  
  /* Checkout Section */
  .checkout-section {
    width: 100%;
    max-width: 460px;
    background-color: #000;
    color: #fff;
    padding: 20px;
    margin: 20px auto;
    box-sizing: border-box;
    border-radius: 0px;
    position: relative;
  }
  
  /* Back Button Styling */
  .back-button {
    position: absolute;
    top: 3px;
    right: 10px;
    font-size: 24px;
    color: white;
    text-decoration: none;
    background: transparent;
    padding: 8px 12px;
    border-radius: 50%;
    transition: 0.3s;
  }
  
  /* Product Info */
  .product-info {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    text-align: left;
  }
  .product-info img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    border-radius: 4px;
  }
  .product-details h2 {
    margin: 0;
    font-size: 20px;
    color: rgb(248, 248, 248);
  }
  .product-details p {
    margin: 5px 0;
    font-size: 16px;
  }
  
  /* Form Styles */
  form .form-group {
    margin-bottom: 15px;
    text-align: left;
  }
  form .form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
  }
  
  /* Input Fields Fix */
  form .form-group input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent !important;
    color: white !important;
    outline: none;
    box-shadow: none;
  }
  
  /* Placeholder Color Fix */
  form .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* Autofill Background Fix for Chrome */
  form .form-group input:-webkit-autofill,
  form .form-group input:-webkit-autofill:hover,
  form .form-group input:-webkit-autofill:focus,
  form .form-group input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px black inset !important;
    -webkit-text-fill-color: white !important;
  }
  
  /* Buy Now Button */
  .buy-now-btn {
    margin-top: 70px;
    display: block;
    width: 100%;
    padding: 12px;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
  }
  .buy-now-btn:hover {
    background-color: rgba(68, 68, 68, 0.74);
  }
  
  /* Payment Method Section */
  /* Ensures the whole payment section is left aligned */
  /* Buy Now Button */
  .buy-now-btn {
    margin-top: 20px;
    display: block;
    width: 100%;
    padding: 12px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 20px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
  }
  .buy-now-btn:hover {
    background-color: rgba(68, 68, 68, 0.74);
  }
  