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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
:root {
  --light-blue: #b2c5ff;
  --fushia: #ff59f0;
  --light-purple: #b382ff;
  --light-fushia: #dc82ff;
  --mid-purple: #8b82ff;
}
.text-l {
  font-size: 1.2rem;
  font-weight: 600;
}

body {
  background-color: #efefef;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  background: #fff;
  box-shadow: 1px 1px 20px black;
  width: 85%;
  height: 90%;
  display: flex;
  padding: 1rem;
}

.img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  flex: 1;
}

.img-container img {
  width: 70%;
  object-fit: cover;
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  justify-items: center;
  flex: 1;
  gap: 2.5rem;
}

.content-container * {
  /* border: 1px solid red; */
}

.title h1 {
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1px;
}
.title h1 .color {
  background-color: #3c5f4d;
  color: #fff;
  border-radius: 5px;
  font-size: 0.9rem;
  padding: 0.4rem;
}
.bran {
  color: #444444;
}

.description p {
  color: #555555;
  max-width: 60%;
}
.storage h5 {
  margin-bottom: 15px;
}
.storage-cards span {
    display: inline-block;
  background-color: #eeeeee;
  color: black;
  border-radius: 5px;
  padding: 10px;
  margin-right: 20px;
  margin-left: 10px;
  margin-bottom: 10px;

  transition: 0.5s all ease;
  cursor: pointer;
}

.storage-cards span.active {
  background-color: #3c5f4d;
  color: white;
}

.cart-container {
  /* margin-top: 10px; */

  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-container button {
  background-color: #3c5f4d;
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 2px;
  border: none;
  margin-right: 20px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.5s all ease;
}

.cart-container button:hover,
.storage-cards span:hover {
  background-color: #439167;
}

.cart-container span {
  font-size: 2rem;
  font-weight: 600;
  display: flex;
  align-items: start;
  gap: 2px;
}

.cart-container span span {
  font-size: 1.3rem;
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */

/* !Media Queries */

@media (max-width: 1440px) {
  .container {
    height: unset;
    max-height: 105vh;
    padding: 2rem;
  }
  .img-container img {
    width: 55%;
  }
  .description p {
    max-width: unset;
  }
  .cart-container {
    width: 95%;
  }
}

@media (max-width: 1000px) {
  .container {
    width: 93%;
  }
  .img-container img {
    width: 65%;
  }
}

@media (max-width: 900px) {
  .container {
    flex-direction: column;
    height: unset;

    gap: 1rem; 
  }
  .img-container img { 
    width: 50%;
  }
}
@media(max-height:800px){
    .container {
        height: 95%;
        gap: .5rem;
        margin-top: 1px;
        margin-bottom: 1px;
      }
    .img-container img { 

      }
      .storage{
        display: none;
      }
}

@media (max-width: 500px) {
  .img-container img { 
    width: 80%;
  }
  .container {
    gap: 1rem;
  }
  .content-container {
    
    gap: 1.8rem;
  }
  .cart-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column-reverse;
    /* border: 1px solid red; */
    gap: 1rem;
    margin: auto;
  }

  .cart-container button{
    /* width: 100%; */
  margin-right: unset;

  }
  .title h1{
    font-size: 1.5rem;
  }
}



@media (max-width: 390px) {
   body{
     margin-top: 150px;
     margin-bottom: 150px;
    }
    .img-container img { 
    }
    
  }
  