* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 0.95rem;
}

body {
  background-color: #1e1e24;
  color: white;
  font-size: 0.9rem;
}

.cart-icon-container {
  position: relative;
  display: inline-block;
  margin-top: -5.5px;
}

 h1.title{
  color:black ;
  margin-left: 15px;
  text-transform:capitalize;
  text-shadow: 12px 5px 50px rgba(25, 24, 24, 0.8);
}

#path p{
  font-size: 17px;
  margin-top: 20px;
  padding: 20px;
  color:black;
}
#path p a{
  text-decoration: none;
  color:rgb(164, 164, 164);
  transition: all 0.3s ease-in-out;
}
 #path p a:hover{
  text-decoration: underline;
   color: black;
}

.product-container{
  display: flex;
  justify-content: space-between;
  flex-wrap:wrap;
  gap: 10px 0;
  padding: 20px;
  height: 50%;
  width: 100%;
}
.product-container .card {
  width: 420px; 
  height: 580px;
  margin: 10px;
  font-size: 10px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 2px 2px 20px 3px rgba(0, 0, 0, 0.2);
  transition: height 0.3s ease-in-out;
}
.card:not(:hover){
  height:530px ; 
 }
.card img{
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}
.card .reduction-percent-container{
  position: relative;
}

.card .reduction-percent-container span{
 position: absolute;
 bottom: 0;  
  padding:0px 5px;
  border: 1px solid white;
  color: white;
  background-color: red;
  font-weight: bold;
  text-align: center;
  transition: bottom 1ms ease-in-out;
}

.card:not(:hover) a.show-details-btn{
  visibility: hidden;
}

.card:hover a.show-details-btn{
  font-size: 15px;
  font-weight:bold ;
  border:1px solid rgb(182, 182, 229);
  background-color: white;
  text-align:center;
  padding: 10px 5px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left:130px ;
  border-radius: 20px;
  width: 140px;
  color: #0c0c3a;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-out;
}

.card a.show-details-btn:hover{
  color: white;
  background-color: #0c0c3a;
}
.card a.show-details-btn:active{
  color: white;
  background-color: #02021b;
}
.card a{
  text-decoration: none;
  color: black;
}
.card .card-title{
  text-transform: capitalize;
  margin-left: 5px;
  font-size: medium;
}
.card p.price{
  font-size: large;
  font-weight: 700;
  margin-left: 10px;
}
.price-reduction-container{
  display: flex;
  column-gap:10px;
}
.card .price-reduction-container p{
  color: rgb(96, 96, 96);
  font-size: 15px;
  text-decoration:line-through;
}
.card .price-reduction-container span{
  color: red;
  font-size: 15px;
  font-weight: 900;
}

