@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Alexandria"
}
h2 {
    font-size: 30px;
}
p {
    font-size: 16px;
}
body {
    font-family: "Alexandria", system-ui;
    display: flex;
    justify-content: center;
    align-items: center;
    /*overflow: hidden;*/
    flex-direction: column;
    /*background-color: rgb(253 65 1);*/
}
.top {
    background-image: url(./images/bag1/1.jpg);
    background-size: cover;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: 70vh;
    overflow: hidden;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}
.top > .first {
    position: fixed;
    background-color: white;
    margin-top: 20px;
    padding: 2px 20px;
    border-radius: 20px;
    height: 10vh;
    width: 80vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}
#burger {
    width: 40px;
}
#logo{
    width: 60px;
}
/*--------------------------------------------------------*/
.seconde {
    width: 80vw;
    height: 10vh;
    margin-top: 30%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.541);
    border-radius: 20px;
    padding: 5px 10px;
    /*color: rgb(253 65 1);*/
}
.seconde > .right > p{
    padding-top: 5px;
}
.seconde > .left > p {
    padding-bottom: 5px;
}
/*--------------------------------------------------------*/
.bottom {
    width: 100vw;
    height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*background-color: rgb(253 65 1);*/
}
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80vw;
    height: 6vh;
    background-color: rgb(253 65 1);
    padding: 5px;
    margin-top: 10px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    text-align: center;
}
#mybtn {
    border: 1px solid rgb(253 65 1);
    background-color: white;
    color: rgb(253 65 1);
}
#mymybtn{
    margin-bottom: 100px;
}
/*--------------------------------------------------------*/
.info {
    width: 80vw;
}
.info > h3 {
    margin-top: 100px;
    font-size: 24px;
    line-height: 1.6;
    text-align: center;
    color: rgb(0, 0, 0);
}
/*--------------------------------------------------------*/
.pics {
    margin-top: 50px;
    display: flex;
    width: 80vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.pics > img {
    width: 80vw;
    border-radius: 25px;
}
/*-------------------------------------------------------------------*/
.order {
    margin-top: 100px;
    width: 80vw;
}
.order > h1 {
    text-align: center;
    color: rgb(253 65 1);
}
/*------------------------------------------------------------------*/
form {
    margin-top: 50px;
    width: 80vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
form > input ,select{
    height: 6.5vh;
    width: 79vw;
    border: 1px solid rgb(253 65 1);
    border-radius: 7px;
    padding: 10px;
}
form > select {
    font-family: Alexandria;
    width: 80vw;
    height: 7vh;
    padding: 10px;
    
}
form > select > option {
    background-color: white;
}
#mymybtn {
    margin-top: 40px;
    outline: none;
    font-family: Alexandria;
    border: none;
}
/*----------------------*/
.price-details {
    margin-top: 15px;
    width: 80vw;
    padding: 15px 20px;
    border: 1px solid rgb(253 65 1);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
/*-------------------------------------------*/
.conf {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.conf > img {
    margin-bottom: 30px;
}
.conf > h2 {
    margin-bottom: 20px;
}
.conf > p {
    margin-bottom: 40vh;
}
.bb {
    overflow: hidden;
}
/*-------------------------------------------*/
/* Loader container */
#loader {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo inside loader */
/* Loader container */
#loader {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo inside loader */
#loader-logo {
    width: 100px; /* Adjust as needed */
    height: 100px; /* Adjust as needed */
    animation: zoom 1s ease-in-out infinite;
}

/* Zoom animation */
@keyframes zoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}
/*----------------------------------------------------*/
/* Confetti Container */
.confetti-container {
    perspective: 1000px; /* 3D effect */
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
  }
  
  /* Confetti Elements */
  .confetti {
    position: absolute;
    background-color: #EF2964; /* Default color, will be overridden in JS */
    pointer-events: none;
    transform-style: preserve-3d; /* Preserve 3D transformation */
  }
  
  .confetti--animation-slow {
    animation: confetti-slow 4s linear 1 forwards; /* Increased duration */
  }
  
  .confetti--animation-medium {
    animation: confetti-medium 3s linear 1 forwards; /* Increased duration */
  }
  
  .confetti--animation-fast {
    animation: confetti-fast 2s linear 1 forwards; /* Increased duration */
  }
  
  /* Keyframes for Confetti Animations */
  @keyframes confetti-slow {
    0% { 
      transform: translate3d(0, -100px, 0) rotateX(0) rotateY(0) rotateZ(0); 
    }
    100% { 
      transform: translate3d(0, 120vh, 0) rotateX(720deg) rotateY(720deg) rotateZ(720deg);
    }
  }
  
  @keyframes confetti-medium {
    0% { 
      transform: translate3d(-100px, -100px, 0) rotateX(0) rotateY(0) rotateZ(0); 
    }
    100% { 
      transform: translate3d(100vw, 120vh, 0) rotateX(720deg) rotateY(720deg) rotateZ(720deg);
    }
  }
  
  @keyframes confetti-fast {
    0% { 
      transform: translate3d(50vw, -100px, 0) rotateX(0) rotateY(0) rotateZ(0); 
    }
    100% { 
      transform: translate3d(-50vw, 120vh, 0) rotateX(720deg) rotateY(720deg) rotateZ(720deg);
    }
  }
  
  /* Checkmark Circle */
  .checkmark-circle {
    width: 150px; /* Adjust size if necessary */
    height: 150px; /* Adjust size if necessary */
    position: relative;
    display: inline-block;
    vertical-align: middle; /* Ensure it's vertically centered */
    margin: 0 auto; /* Center horizontally */
    background: #ffffff; /* Optional: to make it stand out against the background */
    left: 3px;    
}
  
  .checkmark-circle .background {
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: rgb(253, 65, 1); /* Orange background */
    position: absolute;
    top: 20px;
    left: 20px;
  }
  .checkmark-circle .checkmark {
    position: relative;
    width: 75px;
    height: 75px;
    margin: auto;
  }
  
  .checkmark-circle .checkmark.draw:after {
    -webkit-animation-delay: 100ms;
    animation-delay: 100ms;
    -webkit-animation-duration: 2s; /* Adjusted duration */
    animation-duration: 2s; /* Adjusted duration */
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-name: checkmark;
    animation-name: checkmark;
    transform: scaleX(-1) rotate(135deg);
    animation-fill-mode: forwards;
  }
  
  .checkmark-circle .checkmark:after {
    opacity: 1;
    height: 20px;
    width: 20px;
    transform-origin: left top;
    border-right: 15px solid white;
    border-top: 15px solid white;
    border-radius: 2.5px;
    content: '';
    position: absolute;
    left: -16px;
    top: 79px; /* Center vertically */
    transform: scale(.5);
  }
  
  @-webkit-keyframes checkmark {
    0% {
      height: 0;
      width: 0;
      opacity: 1;
    }
    20% {
      height: 0;
      width: 37.5px;
      opacity: 1;
    }
    40% {
      height: 75px;
      width: 37.5px;
      opacity: 1;
    }
    100% {
      height: 75px;
      width: 37.5px;
      opacity: 1;
    }
  }
  @-moz-keyframes checkmark {
    0% {
      height: 0;
      width: 0;
      opacity: 1;
    }
    20% {
      height: 0;
      width: 37.5px;
      opacity: 1;
    }
    40% {
      height: 75px;
      width: 37.5px;
      opacity: 1;
    }
    100% {
      height: 75px;
      width: 37.5px;
      opacity: 1;
    }
  }
  @keyframes checkmark {
    0% {
      height: 0;
      width: 0;
      opacity: 1;
    }
    20% {
      height: 0;
      width: 37.5px;
      opacity: 1;
    }
    40% {
      height: 75px;
      width: 37.5px;
      opacity: 1;
    }
    100% {
      height: 75px;
      width: 37.5px;
      opacity: 1;
    }
  }
  
  /* General Styles for Confirmation Page */
  .bb {
    margin: 0;
    font-family: "Alexandria"
  }
  
  .conf {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffffff;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgb(253, 65, 1);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
  }
  
  .btn:hover {
    background-color: #ff4f30;
  }
  