@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

a {
  color: white;
  text-decoration: none;
}

ul {
  list-style: none;
}

input[type="range"] {
  width: 100%;
  height: 2px;
  margin: 1rem auto;
}

datalist {
  display: flex;
  justify-content: space-between;
  color: white;
  width: 100%;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  width: 100%;
  z-index: 100;
  top: 0;
  position: fixed;

  background-color: black;
  border-bottom: 1px solid white;
  padding: 1rem;
  font-size: 1rem;
}

nav .brand {
  font-size: 1.5rem;
  font-weight: bold;
}

nav .nav-items a {
  margin: 0 1rem;
}

main {
  margin-top: 4rem;
    width: 100%;
    height: 90vh;
    

    /* background-color: blanchedalmond; */
    padding-top: 2rem;
}

h2{
    display: flex;
    width: fit-content;
    justify-content: center;
    color: black;
    margin:0px auto;

}

.detail{
    margin: 0px auto;
    font-size:larger;
    width: 90%;
    /* background-color: aqua; */
    /* border: 1px solid black; */
    margin-top: 2rem;
}

section{
    margin: 0px auto;
    display: flex;
    justify-content: center;
    width: 88%;
    margin-top: 3rem;
    margin-left: 10%;
}

.items{
  display: flex;
  flex-wrap: wrap;
  justify-content:space-around;
  width: 70%;
  /* max-width: 70%; */


  padding: 0.5rem;
}

.bill-section{
    width: 30%;
    height: fit-content;
    color: white;
    background-color: black;

    margin: 0.5rem;
    border-radius: 10px;
    padding-bottom: 2rem;

    min-height: 20vh;
}

.bill-section .heading{

  width: 80%;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.bill-section .list{
  margin-top: 2rem;
}

.bill-section .checkout-items{
  display: flex;
  width: 80%;
  margin: 0px auto;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  justify-content: space-between;
  /* border: 1px solid white; */
  
}

.items .item {
  border: 1px solid black;
  max-width: 100%;
  min-width: 22%;

  max-height: 450px;

  min-height: 200px;
  
  aspect-ratio:calc(2/4.5);
  margin-left: 1%;
  margin-right: 1%;
  margin-bottom: 2rem;
}

.items .item .img-Container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60%;
  

  margin: 5px;

}

.items .item img {
  min-height: 8rem;
  max-height: 15rem;
  max-width: 100%;
  
}

.items .item .info {
  text-align: left;
  /* background-color: blue; */
  padding: 1rem;
  height: 120px;
  min-height: 80px;
  max-height: 120px;
}

.items .item button {
  width: 100%;
  border-radius: none;
  border: none;
  padding: 1rem;
  font-size: 1rem;
  color: white;
  background-color: black;
  cursor: pointer;

  margin-bottom: 0px;
}

.items .item .colors {
  display: flex;
  margin: 1rem 0;
}

.items .item .circle {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  margin: 0 5px;
  border: 1px solid black;
}

.line{
  margin-top: 2rem;
  width: 100%;
  /* height: 2px; */
  border: 1px solid white;
}

.total{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  margin: 0px auto;
  margin-top: 1rem;

  font-weight: bold;
}

#checkout{
  display: flex;
  justify-content: center;
  justify-self: center;
  margin: 0px auto;
  margin-top: 1rem;
  width: 50%;
  padding: 1rem;
  font-size: 1rem;
  color: black;
  background-color: white;
  cursor: pointer;

  /* margin-bottom: 2rem; */
}



.message{
  display: flex;
  width: 50%;
  margin: 0px auto;
  justify-content: center;
  /* border: 1px solid black; */
  font-size: larger;
  margin-top: 1rem;
}
