body {
    margin: 0px;
    font-family: 'Instrument Sans', sans-serif;
    
}


nav a {
    text-decoration: none;
    color: #525252;
    margin: 5px;
    padding: 5px 10px;
    font-size: 25px;
    transition: ease-in-out .2s;
}


nav {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    height: 120px;
    align-items: center;
    gap: 0px;
    width: 100%;
    border-bottom:solid 1px rgb(204, 204, 204); ;
    z-index: 1000;
}

nav a:hover{
    color:orange ;
    transform: scale(1.05);
}

.wrapper{
    margin: auto;
    width: auto;
    background-color: #fff;
}

.menu {
    display: flex;
    padding-left: 40px;
    align-items: center;
}

.menu a{
    margin-left: 20px;
}

.logo {
    width: 100px;
}

/* DROPDOWN */
/* TICKET */

.ticket {
    display: inline-block;
    position: relative;
}

.ticket a {
    display: flex;
    align-items: center;
}

.dropTicket {
    position: absolute;
    border-radius: 5px 5px 0px;
    width: 110px;
    transform: scaleY(0);
    transition: transform 200ms;
    transform-origin: top;
    margin-left: 20px;
    background-color: #fdfdfd;
    z-index: 1000;
}

.ticket:hover .dropTicket {
    transform: scaleY(1);
    display: flex;
    flex-direction: column;
}

.dropTicket a {
    line-height: 25px;
    display: block;
    margin: 5px;
    color: #313131;
    padding: 0px 10px;
    position: relative;
    font-size: 15px;
    
}

.dropTicket a:hover{
    color: #000;
    background-color: rgb(221, 253, 248);
}

/* PROMOTION */

.promotion {
    display: inline-block;
    position: relative;
}

.promotion a {
    display: flex;
    align-items: center;
}

.dropPromotion {
    position: absolute;
    
    background-color: #fdfdfd;
    border-radius: 5px 5px 0px;
    width: 110px;
    transform: scaleY(0);
    transition: transform 200ms;
    transform-origin: top;
    margin-left: 30px;
    z-index: 1000;
}

.dropPromotion a{
    font-size: 15px;

}

.promotion:hover .dropPromotion {
    transform: scaleY(1);
    display: flex;
    flex-direction: column;
}

.dropPromotion a {
    line-height: 20px;
    display: block;
    margin: 3px;
    color: #313131;
    padding: 0 5px;
    position: relative;
}

.dropPromotion a:hover{
    color: #000;
    background-color: rgb(221, 253, 248);
}

/*-----------*/

.extra {
    margin-right: 30px;
}

.extra a {
    border: 2px solid rgb(139, 139, 139);
    border-radius: 20px;
}

/* content */

.main{
    margin: 0px 0px;
    background-color: #f5f5f53b;
    width: 60%;
}
.product{
    outline: solid 2px rgba(204, 204, 204, 0.281);
    box-shadow: 0 2px 4px #0003;
    border-radius: 12px;
    padding: 10px 10px 15px;
    display: flex;
    flex-direction: column;
    height: 403.32;
    width: 185px;
background-color: white;
    margin: 20px 20px;
}
.productimg1{
    border-radius: 12px;
    outline: solid 2px rgba(114, 114, 114, 0.281); 
}

.productimg1 img{
    height: 200px;
    width: 180px;
    
}

.producttitle1 h4{
    margin: 0px;
    margin-top: 10px;
    width: 190px;
}

.producttitle1 p{
    margin-top: 0px;
    color: rgb(189, 189, 189);
}

.hargaproduct1 h5{
    outline:solid 2px rgb(63, 177, 253);
    border-radius: 12px;
    width: fit-content;
    padding: 5px 10px;
    color: #183c65;
    font-size: 16px;
    margin-top: 0px;
}

.cek1 a{
    float: right;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 12px;
    background-color: white;
    color:orange;
    border: 1px solid orange;
    cursor: pointer;
}

.cek1 a:hover{
background-color: orange;
color: white;
}

.produk-baris{
    display: flex;
}

.catalog{
    background-color: rgb(247, 250, 255);
    width: fit-content;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-right: 50px;
    margin-left: 50px;
}

main h2{
    text-align: center;
    margin-bottom: 30px;
    
}

main{
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    
}
.cart-container{
    background-color: rgb(247, 250, 255);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    padding-top: 30px;
    
    
}

.cart{
    display: flex;
    width: 400px;
    /* margin-right: 20px; */
    justify-content: center;
}


/* tabel */

table {
    border-collapse: collapse;
    margin: 20px;
    width: 100%;
    border-radius: 12px;

  }
  td {
    padding: 10px;
    background-color: white;
    /* width: 100%; */
  }

  tr{
    outline: solid 1px rgba(204, 204, 204, 0.281);
    
  }
  

 td img{
    width: 80px;
    height: 100px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    
 }

 .cartsubmit{
    display: flex;
    justify-content: center;
    margin-top: 20px
 }

.cartsubmit button{
    border-radius: 10px;
    background-color: white;
    color: black;
    width: 200px;
    height: 50px;
    outline: solid 2px rgb(63, 177, 253);
    border: none;
    font-size: 20px;
    font-weight: bold;
}

.cartsubmit button:hover{

    outline: solid 2px rgb(255, 255, 255);
    background-color: rgb(63, 177, 253);
    color: white;
}

#totalPrice{
    text-align: center;
}
/* futer */


footer{
    background-color:#183c65;
    width: inherit;
    height: 60px;
    text-align: center;
    display: flex;
    align-items: center;
    padding-left: 50px;
    color: white;
    text-transform: uppercase;

}

@media screen and (max-width: 650px){
    .menu {
        padding-left: 0;
        justify-content: center;
        flex-direction: column;
      }
      
      .menu a {
        margin-left: 10px;
        margin-right: 10px;
      }
      
      .extra {
        margin-right: 0;
        margin-top: 20px;
        
      }

      nav{
        flex-direction: column;
        height: fit-content;
        padding-top: 20px;
        padding-bottom: 20px;
        align-items: center;
      }
      .dropTicket{
        margin-left: 0px;
      }

      .dropTicket a{
        text-align: center;
      }

      header{
        height: fit-content;
      }

      main{
        flex-direction: column;
      }

      .catalog{
        margin-left: 30px;
        margin-right: 30px;
        margin-bottom: 30px;
      }

      .producttitle1 h4{
        font-size: 15px;
      }

      .produk-baris{
        flex-wrap: wrap;
        justify-content: center;
      }

      .cart{
        width: 100%;
      }

      .cart-container{
        margin-left: 30px;
        margin-right: 30px;
      }

      .cartsubmit button{
        margin-bottom: 30px;
      }

      /* .productimg1 img {
        height: 100px;
        width: 90px;
      } */
    }