body {
  background-color: white;
  color: #000000;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  /* overflow: hidden; */
  height: 100%;
}
 
  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('/Images/pancake.jpeg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    opacity: 0.15; /* Adjust fade level */
    z-index: -1; /* Keep it behind all content */
    background-position:bottom left;        /* Centered (default) */
  }
  .container {
    display: flex;
    align-items: stretch;   /* Ensures both sides stretch to the same height */
    justify-content: center;
    width: 100vw;
    min-height: 100vh;      /* Forces full screen height */
    flex-wrap: wrap;
    
  }
 
  .image-container {
    position: relative;
    flex: 1;
    min-height: 100vh;
  }
  

  
  .image-container img {
    object-fit: cover;
    width: 100%;
    height: 100vh;
  }
  
  .form-container {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;    /* Stack children vertically */
    justify-content: space-between;  /* Push content apart (top & bottom) */
  

  /* form Background Image Styling */
    background-image: url('/Images/pancake.jpeg');
    background-size:cover;
    background-position: right;
    background-repeat: no-repeat;
    background-attachment: fixed;

  /* Faded effect */
  background-color: rgba(239, 229, 225, 0.85); 
  background-blend-mode:lighten; 
    
   
  }

 
  .price-banner {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color:bisque;
    color:#000000;
    border-radius: 50%;
    font-size:30px;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid purple; /* Add black border around the banner */
    border-radius: 50%;  /* Keep it round */
    box-shadow: 0 5px 10px bisque;  /* Optional: Adds shadow for depth */
    font-weight: bold;  /* Make the font a bit bolder */
    
  }



  h2 {
    text-align: center;
    font-size: 30px;
    color: blueviolet;
  }
  
  h3 {
    margin-top: 10px;
    font-size: 14px;
    color:rgb(140, 84, 192);
    
  }
  h4 {
    color:#000000;
    font-size: 20px;
    text-align: center;
    margin-top:50px;
  }
  h6 {
    margin-top: 15px;
    font-size: 24px;
    color: blueviolet;
    text-align: center;
    margin-bottom: 5px;
    
  }
  
  input[type="checkbox"] {
    margin-right: 5px;
  }
  
  select,
  label {
    display: block;
    margin-top: 10px;
  }
  @keyframes bounce {
    0%   { transform: scale(1); }     /* az size asli shoro kon */
    50%  { transform: scale(1.3); }   /* vasat, bozorgesh kon */
    100% { transform: scale(1); }     /* akhar, barmigardim be asli */
  }
  .animate-price {
    animation: bounce 0.5s ease;
  }
  /* Adjust the margin for the order summary */


  .order-scroll-area {
    max-height: 300px;      /* Adjust height to your layout */
    overflow-y: auto;       /* Adds vertical scrollbar when needed */
    border: 1px solid #ccc; /* Optional: visual boundary */
    padding-right: 10px;    /* Avoid overlap with scrollbar */
    margin-top: 20px;
    
  }
  @media (max-width: 600px) {
    .container {
      flex-direction: column;
    }
  
    .image-container,
    .form-container {
      width: 100%;
      min-height: auto;
      background-attachment: scroll;
    }
  
    .image-container img {
      height: auto;
    }
    h1 {
    font-size: 1.2rem;
    margin: 20px 0;
  }
  
    .price-banner {
      width: 60px;
      height: 60px;
      font-size: 18px;
      top: 10px;
      right: 10px;
    }
    input[type="text"],
    select,
    button {
      width: 100%;
      font-size: 1rem;
      margin-bottom: 10px;
}
  }
  @media (max-width: 900px) and (min-width: 601px) {
  .form-container, .image-container {
    flex: 1 1 100%;
    padding: 30px;
  }
}
  
.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color:blueviolet;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  padding-left: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;        /* Prevent button text wrapping */
  min-width: 140px;           /* Set a nice minimum width */
  text-align: center;
  
}
.btn:hover {
  background-color: rgb(89, 156, 103);
}
.button-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  
}
