
header nav {
    background-color: #f1f5f8;
    color: #37474e;
}
header nav h3{
      font-family: 'Times New Roman', Times, serif;
      margin-left: 10px;
      margin-top: 6px;
}
header nav .logo{
    display: flex;
}
nav .btns{
    margin-right: 20px;
    font-size: 19px !important;
}
main {
    background-image: url(../products/background.jpg);
    background-size: cover;
    background-repeat: no-repeat; 
    background-position: center;
    width: 100%;
    height: 100vh;
     display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#login h3,#register h3{
font-family: 'Times New Roman', Times, serif;
}
#login{
    width: 500px;
    height: 310px;
    padding: 30px;
    text-align: center;
    background-color: #f1f5f8;
    border-radius: 10px;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
#register{
    width: 500px;
    height: 425px;
    padding: 30px;
    text-align: center;
    background-color: #f1f5f8;
    border-radius: 10px;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.user-info{
    display: none;
    margin-right: 10px;
}
.user-info #user{
    margin-right: 10px;
    text-decoration: none;
    font-size: 18px;
}
main h3 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    font-style: normal; 
    letter-spacing: 2px;
    color: #4d3c2f;
    margin-bottom: 20px;
    margin-bottom: 2px;
}
main p {
    width: 54%; 
    line-height: 1.6;
    font-size: 23px;
    color: #382c22;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    margin: 0 auto; 
}
#explore{
font-family: 'Times New Roman', Times, serif;
 text-decoration: none;
 margin-top: 6px;
 font-size: 21px;
 padding: 0 5px;
 border-radius: 4px;
 background-color: #6b5443;
 color: white;
 margin-right: 7px;
}
#products_section{
  padding-top: 90PX;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
}
#products_section .btn{
    width: 150px;
}
#products_section .form-control{
    width: 700px;
    margin: 0 10px;
}
#products_section .dropdown{
    width: 257px;
}
.products{
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
}
.card-body{
margin: auto;
}
.card-body button{
    width: auto !important;
    margin-left: 5px;
}
.card-body i{
    cursor: pointer;
    font-size: 19px;
}
.user-info a{
    color: black;
}
.user-info span,.user-info i{
    color: rgb(12, 12, 255);
    cursor: pointer;
}
.cart-class{
    background-color: rgb(227, 250, 242);
    border-radius: 5px;
    padding-bottom: 10px !important;
}
.cart{
    position: fixed;
    top:70px;
    right:10px;
    border: 1px solid rgb(170, 169, 169);
    border-radius: 5px;
    width: 250px;
    height: auto;
    background-color: white;
    max-height: 400px;  
    overflow-y: auto; 
}
.card{
    transition: all 0.3s ease-in-out; 
    border: 1px solid transparent;
}
.card:hover {
    border: 1px solid rgb(96, 148, 216);
    box-shadow: 2px 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}
.qty-controls .btn {
    border: 1px solid #212529 !important;
    color: #212529 !important;
    background-color: transparent !important;
    padding: 2px 8px !important;
    line-height: 1 !important;
    transition: all ease-in-out 0.2s;
}
.qty-controls .btn:hover {
    background-color: #212529 !important;
    color: white !important;
}
.conclison {
    width: 53%;
    margin: 100px auto 60px;
    font-size: 22px;
    font-family: 'Cormorant Garamond', serif;
    color: #4d3c2f;
    line-height: 1.9;
    text-align: center;  
    position: relative;
    padding: 30px 0;
}
.conclison::before,
.conclison::after {
    content: "";
    display: block;
    width: 120px;
    height: 1px;
    background-color: #4d3c2f;
    margin: 20px auto;
}
.brown-heart{
    color: #8a705d;
}