*{
    margin: 0;
    font-family: Montserrat,Arial, Helvetica, sans-serif;
}

body::-webkit-scrollbar {
    width: 8px;
    height: 5px;
    background-color: #aaa;
    border-radius: 10px; /* or add it to the track */
}

body::-webkit-scrollbar-thumb {
    background: rgb(78, 78, 78);
    border-radius: 10px;
}


#bootImg{
    width: 300px;
}

.main {
    width: 100%;
    background-color: #e6e6e6;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
}


.inset{
    background-color: white;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: 0 0 6px rgba(0,0,0,0.2);
    padding: 20px 0;
}

.mainImg{
    justify-content: left;
    float: left;
}

.mainImg img{
    width: 100%;
}

.functions{
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 3em;
}

.pricingInfo{
    justify-content: left;
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.btns{
    width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.btns button{
    text-decoration: none;
    color: #ca3232;
    padding: 12px 0px;
    border-radius: 1px;
    display: block;
    border: 1px solid #ca3232;
    width: 100%;
    font-weight: 600;
    transition: 0.25s;
    background-color: transparent;
    cursor: pointer;
}

.btns button:hover{
    color: white;
    background-color: #ca3232;
}

.title {
    font-size: 24px;
    font-weight: 700;
}

.price{
    padding: 10px 0;
}

.gender{
    font-weight: 600;
}

.pricingInfo label{
    margin-top: 20px;
}

#sizes {
    background-color: #e6e6e6;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    font-weight: 600;
    margin-top: 10px;
    font-size: 16px;

}

#sizes option{
    font-weight: 600;  
    font-size: 16px;
}


.featuredBoots{
    margin: 0 auto;
    width: 95%;
    
}

.slider{
    width: 95%;
    margin: 0 auto;
    padding-top: 20px;
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
}

.card {
    box-shadow: 0 0 6px rgba(0,0,0,0.2); 
    border-radius: 1px;
    background-color: white;
    padding: 1em;
    margin: 0.5em;
    display: inline-flex;
    flex-direction: column;
    width: 23%;
    justify-content: center;
    align-items: center;
}

.card img{
    object-fit: contain;
    width: 60%;
    margin: 0 auto;
}

.card i {
    font-size: 150px;
    margin: 20px;
}

.card .bottom {
    width: 100%;
    height: 3em;
    /* background-color: #e6e6e6; */
    border-radius: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    /* padding-top: 30px; */
    /* overflow: hidden; */
    position: relative;
}

.card .brand {
    /* position: absolute; */
    /* top: 0; */
    font-weight:600;
    /* margin: .3em; */
}

.card .color {
    margin-top: 1em;
    width: 95%;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
}

.card .title {
    width: 95%;
    font-weight: 700;
    font-size: 23px;
    text-align: center;
}

.card .btns {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin-bottom: 1em;
    text-align: center;

}

.card .View {
    /* margin-top: 30px; */
    /* margin-left: 10px; */
    text-decoration: none;
    color: #ca3232;
    padding: 12px 0px;
    border-radius: 1px;
    display: block;
    border: 1px solid #ca3232;
    width: 90%;
    font-weight: 600;
    transition: 0.25s;
}

.card .View:hover {
    color: white;
    background-color: #ca3232;
}

.featured{
    margin: 0 auto;
    width: 98%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.featured hr{
    width: 42%;
    display: inline-block;
}

.featured h2{
    display: inline-block;
    padding: 0 10px;
}

.cardd {
    box-shadow: 0 0 6px rgba(0,0,0,0.2); 
    border-radius: 1px;
    background-color: white;
    padding: 1em;
}

.full {
    width: 90%;
}

.half {
    width: calc(45% - 5px - 1em);
}

.fourth {
    width: calc(22.5% - 15.5px - 1em);
}

.three-fourth {
    width: calc(67% - 5px);
}

.info-Section{
    display: flex;
}

.section-title{
    font-weight: 700;
}

.infor-mation{
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid black;
    padding: 0 10px;
    width: 20%;
}

.info-small{
    padding: 10px 0;
}

#no-border{
    border: none;
}

@media (max-width: 600px) {
    #bootImg{
        width: 200px;
    }
    .three-fourth{
        width: 85%;
    }
    .functions{
        width: 80%;
    }
    .inset {
        flex-direction: column;
    }

    .section-title{
        font-size: 10px;
    }
    .info-small{
        font-size: 8px;
    }

    .infor-mation{
        width: 11%;
    }
}