*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header{
    height: 120px;
    background-color: #ffcc00;
}
header .container{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* header{
    height: 200px;
    width: 100%;
}
header img{
    height: 100%;
    width: 100%;
    object-fit: cover;
} */
/* .img-fluid {
    max-width: 100%;
    height: auto;
} */
.brand-logo{
    height: 80px;
}
.brand-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.brand-name{
   font-size: 2em !important;
   color: #fff;
}
.btn-cart{
    background: none;
}
.btn-add-cart{
    background-color: #29c27f;
}
.btn:focus, input[type="text"]:focus{
    box-shadow: none;
}
textarea:focus{
    box-shadow: none !important;
}

.search-section{
    width: 100%;
    z-index: 999;
    padding: 20px 0;
    background: transparent;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 80%, rgba(255,255,255,0) 100%);
}
.search-input{
    border-radius: 40px;
    box-shadow: 1px 5px 8px rgba(0,0,0,0.2);
}
.search-input:focus{
    border-radius: 40px;
    box-shadow: 1px 5px 8px rgba(0,0,0,0.2) !important;
}
.product-img-wrapper{
    height: 300px;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
}
.product-img-wrapper img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.product-name{
    padding: 10px 0;
}
main{
    margin-top: 80px;
    margin-bottom: 60px;
}
.card-poduct{
    overflow: hidden;
    margin-bottom: 30px;
    /* height: 350px; */
}
.cart-add-btn-wrapper{
    margin-bottom: 10px;
}

.float-btn{
	position:fixed;
	width:70px;
	height:70px;
	bottom:50px;
	right:40px;
	background-color:#706f73;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    box-shadow: 2px 2px 3px rgb(116, 114, 114);
    transition: 0.4s ease-in-out;
}
.float-btn:hover{
    background-color:#5d5c5e;
}
.my-float{
    font-size: 25px;
    color: #fff;
}
footer{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: center;
    z-index: 1;

}
footer p{
    margin: 0;
    padding: 10px 0;
}



/* switched fields */
.switch-field {
    display: flex;
    overflow: hidden;
}

.switch-field input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.switch-field label {
    background-color: #e4e4e4;
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    line-height: 1;
    text-align: center;
    padding: 8px 16px;
    margin-right: -1px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.1s ease-in-out;
}

.switch-field label:hover {
    cursor: pointer;
}

.switch-field input:checked + label {
    background-color: #29c27f;
    color: #fff;
    box-shadow: none;
}

.switch-field label:first-of-type {
    border-radius: 4px 0 0 4px;
}

.switch-field label:last-of-type {
    border-radius: 0 4px 4px 0;
}
#smartcart{
    margin-bottom: 20px;
    width: 100%;
}

@media (max-width: 600px){
    .brand-name{
        font-size: 1.3em;
        font-weight: 700;
     }
}