body{
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
    font-family:'open sans', sans-serif;
    font-size: 0.9vw;
}
*{
    box-sizing: border-box;
}
h1,h2,h3,h4,h5,h6{
    font-family: "Syne", serif;
    font-optical-sizing: auto;
}
p{
    line-height: 1.5;
}
h1{
    font-size: 2vw;
}
h2{
    font-size: 1.5vw;
}
h3{
    font-size: 1vw;
    text-align: center;
}
a{
    text-decoration: none;
    color: black;
}
ul{
    padding: 0;
    margin: 0;
}
:root{
    --mint:#99e6d8;
    --yellow:#fff9b2;
    --pink:#feaebb;
    --grey:#b9bbbd;
}
@view-transition{
    navigation:auto;
}


img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
button{
    background-color: transparent;
    color: black;
    border: 2px solid black;
    padding: 10px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    
}
button:hover {
    filter: contrast(115%);
    background-color: black;
    color:#ffffff;
}
button:hover a{
    color:#ffffff;
}
.added{
    background-color: var(--pink);
}
.added a{
    color: white;
}
.select{
    border: 2px solid black;
    background-color: transparent;
    font-size: 16px;
    
}
/* header*/

.moblie{
    display: none;
}
header{
    position: sticky;
    top:0;
    z-index: 1000;
    background-color: white;
    width:100%;
    filter: drop-shadow(0px 9px 10px #bbbbbb);
}
.menu{
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    height:20vh;
}
footer{
    min-height:300px;
    background-color: var(--yellow);
    filter: drop-shadow(0px -9px 10px #bbbbbb);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.footercol1,.footercol2,.footercol3{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footercol1 ul li,.footercol2 ul li,.footercol3 ul li{
    padding:5px;
}
.navcol1,.navcol2,.navcol3{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.navcol1 a{
    width:35%;
    height:auto;
    display: flex;
    align-items: center;
}
.navcol2{
    display: flex;
    flex-direction: column;
}
.navcol2 ul{
    display: flex;
    list-style: none;
    justify-content: space-evenly;
    width:100%;
}
.navcol3{
  justify-content: center;
}
.navcol3 a{
    width:17%;
    height:auto;
    position: relative;
}
.navcol3 span{
    position: absolute;
    background-color:#f360a6;
    color: white;
    border-radius: 50%;
    width: 1vw;
    height: 2vh;
    display: flex;
    justify-content: center;
    align-items: center;
    top:45%;
    left:37%;
}
/* header*/
.container {
    width:70%;
    min-height: 70vh;
    margin: 50px auto;
}

/*home*/

.banner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  
}
.left{
    background-color: var(--yellow);
}
.left .box{
    background-color: var(--pink);
}
.right{
    background-color: var(--mint);
  
}
.wave{
    margin: 30px 0 30px 0;
    background: rgb(153,230,216);
    background: linear-gradient(90deg, rgba(153,230,216,1) 0%, rgba(255,249,178,1) 100%);
    --mask:
    radial-gradient(34.99px at 50% 48px,#000 99%,#0000 101%) calc(50% - 60px) 0/120px 51% repeat-x,
    radial-gradient(34.99px at 50% -18px,#0000 99%,#000 101%) 50% 30px/120px calc(51% - 30px) repeat-x,
    radial-gradient(34.99px at 50% calc(100% - 48px),#000 99%,#0000 101%) calc(50% - 60px) 100%/120px 51% repeat-x,
    radial-gradient(34.99px at 50% calc(100% + 18px),#0000 99%,#000 101%) 50% calc(100% - 30px)/120px calc(51% - 30px) repeat-x;
    -webkit-mask: var(--mask);
            mask: var(--mask);
}
.box{
 height:600px;
}
.center{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 30px 0 30px 0;
}
.textbox{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin:0 auto;
    width:70%;
    padding:8%;
}
.textbox2{
    padding:15%;
    text-align: center;
}
.promotional{
    margin:60px;
}
.promotional h1{
    text-align: center;
}
.promotional img{
    border: 1px solid black;
   width:95%;
}

/*product*/
.grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
    column-gap: 30px;
}
.container h2 {
  text-align: center;
}
.item{
    display: flex;
    flex-direction: column;
    border: 1px solid black;
    align-items: center;
    overflow: hidden;
}
.item a{
    width:100%;
    height:70%;
}
.product{
  display: grid;
  grid-template-columns: 1fr 1fr;
  width:80%;
  margin: 0 auto;
  
}

.imgbox{
    overflow: hidden;
    border:1px solid black;
    max-height: 460px;
    position:sticky !important;
    top:20%;
}
.detail{
  text-align: center;
}
.buy{
  position:sticky;
  top:20%;
  background-color: white;
  padding-bottom: 20px;
}
.detail h3{
  margin-top:0px;
}
.description{
  margin-top:40px;
}
.description p{
  text-align: left;
  padding:0 40px;
}
.slick-dots{
  position: relative !important;
}
.cart{
  display: grid;
  grid-template-columns: 2fr 1fr;
  row-gap: 20px;
  
}
.list{
  border: 1px solid black;
  padding: 20px;
}
.cart_items{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.cart_items img{
  width: 100px;
  height: 100px;
}
.cart_items a{
  color:red;
}
.checkout{
  display: flex;
  align-items: center;
  flex-direction: column;
}

/*allauth*/
.allauth{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30%;
}
.allauth p a{
    color:#f360a6;
}
.allauth form{
    display: flex;
    flex-direction: column;
    width:100%;
}
.allauth form input{
    margin: 0 0 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    width: 100%;;
}
#id_remember{
    width: auto;
}
#email_radio_0{
    width:auto;
}

/*checkout*/
h1{
    text-align: center;
  }

 .payment form {
    width: 100%;
    align-self: center;
    box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
      0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
        padding: 40px;
     margin: 0 auto;
     border : 1px solid;
     border-color: black;
  }
  .payment{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .items h2{
    color:#ffffff;
  }

  .items ul{
    border: 2px solid;
    background-color: #f360a6;
    padding:50px 0 50px 0;
    color:#ffffff;
  }
  .items ul li{
    list-style: none;
    margin: 10px 0;
    text-align: center;
  }
  .email{
   width:100%;
    color:#30313d;
    border: 1px solid ;
    padding: 12px;
    margin-bottom: 16px;;
  }
  label{
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    color:#30313d;
    font-weight: 500;
  }

  .hidden {
    display: none;
  }
  #payment-message {
    color: rgb(105, 115, 134);
    font-size: 16px;
    line-height: 20px;
    padding-top: 12px;
    text-align: center;
  }
  
  #payment-element {
    margin-bottom: 24px;
  }
  
  /* Buttons and links */
  .payment button {
    background: #f360a6;
    font-family: Arial, sans-serif;
    color: #ffffff;
    border: 0;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: block;
    transition: all 0.2s ease;
    box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
    width: 100%;
  }
  button:hover {
    filter: contrast(115%);
  }
  button:disabled {
    opacity: 0.5;
    cursor: default;
  }
  
  /* spinner/processing state, errors */
  .spinner,
  .spinner:before,
  .spinner:after {
    border-radius: 50%;
  }
  .spinner {
    color: #ffffff;
    font-size: 22px;
    text-indent: -99999px;
    margin: 0px auto;
    position: relative;
    width: 20px;
    height: 20px;
    box-shadow: inset 0 0 0 2px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
  }
  .spinner:before,
  .spinner:after {
    position: absolute;
    content: "";
  }
  .spinner:before {
    width: 10.4px;
    height: 20.4px;
    background: #0055DE;
    border-radius: 20.4px 0 0 20.4px;
    top: -0.2px;
    left: -0.2px;
    -webkit-transform-origin: 10.4px 10.2px;
    transform-origin: 10.4px 10.2px;
    -webkit-animation: loading 2s infinite ease 1.5s;
    animation: loading 2s infinite ease 1.5s;
  }
  .spinner:after {
    width: 10.4px;
    height: 10.2px;
    background: #0055DE;
    border-radius: 0 10.2px 10.2px 0;
    top: -0.1px;
    left: 10.2px;
    -webkit-transform-origin: 0px 10.2px;
    transform-origin: 0px 10.2px;
    -webkit-animation: loading 2s infinite ease;
    animation: loading 2s infinite ease;
  }
  
  /* Payment status page */
  #payment-status {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 30px;
    width: 30vw;
    min-width: 500px;
    min-height: 380px;
    align-self: center;
    box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
      0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
    border-radius: 7px;
    padding: 40px;
    opacity: 0;
    animation: fadeInAnimation 1s ease forwards;
  }
  
  #status-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
  }
  
  h2 {
    text-align: center;
  }
  

  a:hover {
    filter: contrast(120%);
  }
  
  #details-table {
    overflow-x: auto;
    width: 100%;
  }
  
  table {
    width: 100%;
    font-size: 14px;
    border-collapse: collapse;
  }
  table tbody tr:first-child td {
    border-top: 1px solid #E6E6E6; /* Top border */
    padding-top: 10px;
  }
  table tbody tr:last-child td {
    border-bottom: 1px solid #E6E6E6; /* Bottom border */
  }
  td {
    padding-bottom: 10px;
  }
  
  .TableContent {
    text-align: right;
    color: #6D6E78;
  }
  
  .TableLabel {
    font-weight: 600;
    color: #30313D;
  }
  
  #view-details {
    color: #0055DE;
  }
  
  #retry-button {
    text-align: center;
    background: #0055DE;
    color: #ffffff;
    border-radius: 4px;
    border: 0;
    padding: 12px 16px;
    transition: all 0.2s ease;
    box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
    width: 100%;
  }
  
  @-webkit-keyframes loading {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes loading {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes fadeInAnimation {
    to {
        opacity: 1;
    }
  }
  
  @media only screen and (max-width: 600px) {
    form, #payment-status{
      width: 80vw;
      min-width: initial;
    }
  }

  .lottie{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    margin: 0 auto;
    flex-direction: column;
  }



/*pages*/
section{
    width: 60%;
    margin: 0 auto;
}
section h2{
    text-align: center;
}

/*profile*/
.profile{
    text-align: center;
    width:60%;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
}
.profile button{
    margin-top: 10px;
    width:50%;
}
/*contact*/
h2{
    text-align: center;
}
.contact-form{
    margin: 0 auto;
    width: 50%;
    padding: 20px;
    border: 1px solid var(--pink);
}
input[type="text"], input[type="email"], textarea{
    margin :0 0 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    width: 100%;;
}
.contact-form button{
    width: 100%;
}
.sent{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

/*media*/

@media only screen and (max-width:1536px) {
    .cart{
      grid-template-columns: 5fr 1fr;
    }
    h3{
        font-size: 1.5vw;
    }
}

@media only screen and (max-width:1366px) {

    h1{
        font-size:2.5vw;
    }
    h2{
        font-size: 2vw;
    }
    h3{
        font-size: 1.5vw;
    }
    p{
        font-size: 1vw;
    }
    a{
        font-size: 1vw;
    }
    .banner .box{
        height: 460px;
    }
   
    .imgbox{
        height: 500px;
    }
}

@media only screen and (max-width: 820px) {
    .container{
      width:90%;
  }
  .allauth li{
    font-size: 12px;
  }
    .menu{
        display: none;
    }
    .moblie{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        height:15vh;
    }
    h1{
        font-size: 5vw;
    }
    h2{
        font-size: 3vw;
    }
    h3{
        font-size: 2.2vw;
    }
    p,a{
        font-size: 2vw;
    }
    /* The sidepanel menu */
 .sidepanel {
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    top: 0;
    left: 0;
    bottom: 0;
    height:100vh;
    z-index: 1;
    background-color: #111; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidepanel */
  }
  
  /* The sidepanel links */
  .sidepanel a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    color: #818181;
    display: block;
    transition: 0.3s;
    font-size: 4vw;
  }
  .sidepanel h2{
    color: white;
    text-align: center;
    font-size: 5vw;
  }
  
  /* When you mouse over the navigation links, change their color */
  .sidepanel a:hover {
    color: #f1f1f1;
  }
  
  /* Position and style the close button (top right corner) */
  .sidepanel .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  
  /* Style the button that is used to open the sidepanel */
  .openbtn {
    cursor: pointer;
    color: black;
    padding: 10px 15px;
    border: none;
    width:30%;
    height:100%;
  }
  
  .openbtn:hover {
    background-color: #444;
  }
  .col2 a{
    width:100%;
    height:100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .col2 img{
    height:auto;
    width:35%;
  } 
  .col3 {
    display: flex;
    justify-content: right;
    align-items: center;
    margin-right:15px;
  }
  #cart-icon{
    height:auto;
    width:25%;
    position: relative;
  }
  .col3 span{
    position: absolute;
    background-color:#f360a6;
    color: white;
    border-radius: 50%;
    width: 3vw;
    height: 3vh;
    display: flex;
    justify-content: center;
    align-items: center;
    top:45%;
    left:32%;  
  }
  .login{
    width:20%;
  }
  .banner.left ,.banner.wave{
    display: grid;
    grid-template-columns: 1fr;
  }
  .box{
    height:auto;
  }
 
  .grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .product{
    display: grid;
    grid-template-columns: 1fr;
  }
  .detail{
    background-color: #fff;
    z-index: 5;
  }
  .buy{
    top:10% !important;
    padding-top:30px;
  }
  .description{
    background-color: #fff;
  }

  .cart{
    display: grid;
    grid-template-columns: 1fr;
  }

  .payment{
    display: grid;
    grid-template-columns: 1fr;
  }

  .items li{
    font-size: 2vw;
  }

  .profile{
    width:80%;
  }
  .profile button{
    width:100%;
  }

  .contact-form{
    width:100%;
  }

  footer{
    display: grid;
    grid-template-columns: 1fr;
    padding:15px;
  }
  .footercol1,.footercol2,.footercol3{
    align-items: start;
  }
}

@media only screen and (max-width: 600px){
    p{
        font-size: 3vw;
    }
    a{
        font-size: 3vw;
    }
    h2{
        font-size: 4vw;
    }
    h3{
        font-size: 4vw;
    }
    .textbox{
        width:100%;
    }
    .col3 span{
        width: 2.8vw;
        height: 2.8vh;
        top:38%;
        left:32%;
        font-size: 2vw;   
      }
    .product{
        width:auto;
    }
    form{
        width: 100%;
    }
    .cart_items{
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    }
    label{
    font-size: 2.8vw;
    }
    .items li{
    font-size: 3vw;
    }
    .lottie{
    width: 80%;
    }
}

@media only screen and (max-width: 425px){
    .openbtn {
       
        width:50%;
      }
  
      .col2 img{
        height:auto;
        width:50%;
      } 
      #cart-icon{
        height:auto;
        width:25%;
        position: relative;
      }
      .col3 span{
        width: 4vw;
        height: 2.5vh;
        top:40%;
        left:32%;
        font-size: 3vw; 
      }
      #cart-icon{
        width:40%;
      }
    p{
        font-size: 4vw;
    }
    a{
        font-size: 4vw;
    }
    h3{
        font-size: 4vw;
    }
    .imgbox{
        height: 350px;
    }
}

.hp-field {
  position:absolute;
  left:-10000px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}