.checkout-container {
    display: grid;
    flex-direction: row;
    justify-content: center;
    place-items: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .product-image {
    margin: 40px;

  }
  
  .product-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .product-details {
    flex-grow: 1;
  }
  
  .product-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .product-details li {
    margin-bottom: 10px;
  }
  
  .checkout-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
  }
  
  .checkout-button:hover {
    background-color: #0056b3;
  }

/******/

.master{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    justify-content: center;
    place-items: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 30px;


}

a{

    text-decoration: none;
}








/****/
.container {
    max-width: 400px;
    margin: 40px auto;
    padding: 20px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  label {
    margin-bottom: 10px;
  }
  
  input[type="text"], input[type="email"], input[type="password"] {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .radio-container {
    margin-bottom: 20px;
  }
  
  button[type="submit"] {
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button[type="submit"]:hover {
    background-color: #0056b3;
  }
  
  /* Mobile responsiveness */
  @media only screen and (max-width: 600px) {
    .container {
      margin: 20px auto;
      padding: 10px;
    }
    input[type="text"], input[type="email"], input[type="password"] {
      margin-bottom: 10px;
    }
    button[type="submit"] {
      padding: 5px;
    }
  }
  
  @media only screen and (max-width: 400px) {
    .container {
      padding: 5px;
    }
    label {
      margin-bottom: 5px;
    }
  }