*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --textColor: #808080;
    --bluePrimary: #0077ff;
}
body{
    font-family: 'Roboto', sans-serif;
    height: 100%;
    background-color: rgb(255, 255, 255);
}
.card-div{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    overflow: hidden;
    width: 18.5%;
    min-width: 20rem;
    margin-bottom: 5rem;
    align-items: center;
}
.card-div .zbytek{
    display: flex;
    width: 20rem;
    margin-top: 1rem;
    justify-content: space-between;
}
.card-div-name{
    font-size: 1.5rem;
    text-align: left;
    font-weight: 600;
}
.card-div-price{
    font-size: 1.5rem;
    text-align: left;
    font-weight: 300;
}
.clothes-product-image
{
    width: auto;
    height: 120%;
}
.cards{
    width: 100%;
    flex-wrap: wrap;
    display: flex;
    height: auto;
    margin:  0 auto;
    gap: 2%;
    justify-content: center;
}
.cards-header{
    font-size: 3rem;
    text-align: center;
}
.header-flex{
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}
.card-div p{
    font-size: 1.5rem;
    text-align: left;
    justify-self: flex-start;
    align-self: flex-start;
}
.arrow-down{
    width: 2vw;
    height: auto;
    margin: 0.3vw 49% 3vw 49%;
}
.feature-header{
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}
.arrow-down-card{
    width: 1.5rem;
    height: auto;
}
.cena{
    width: 20rem;
}
.card-div .zbytek{
    display: flex;
    width: 20rem;
    margin-top: 1rem;
    justify-content: space-between;
}
.card-div .card-img{
    width: 20rem;
    justify-content: center;
    display: flex;
    border-radius:4%;
    height: 25rem;
}

.cards a{
    justify-content: center;
    align-items: center;
    display: flex;
    max-height: 25rem;
    overflow: hidden;
    width: 20rem;
    border-radius: 4%;
}
.zbytek a{
    justify-content: flex-end;
    align-items: flex-start;
    height: 1.5rem;
    width: auto;
}
.icon{
    width: 7rem;
    height: auto;
    z-index: -1;
    opacity: 0.1;
    align-self: center;
    position: absolute;
}
@media only screen and (max-aspect-ratio:3/4){ .card-div p{
    text-align: left;
    width: 20rem;
    align-self: center;
}
    .feature-header{font-size: 1.25rem;}
    .icon{
        width: 4rem;
    }
}
/* navbar end */


.fab-container {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 999;
    cursor: pointer;
}

.fab-icon-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #ecc624;
}

.fab-icon-holder:hover {
    opacity: 0.9;
}

.plus{
    margin: 0px;
    padding: 0px;
    width: 30px;
    height: 30px;
}

.items{
    margin: 0px;
    padding: 0px;
    width: 30px;
    height: 30px;
    -webkit-filter: invert(100%);
}

.fab {
    width: 50px;
    height: 50px;
    background-color: #ecc624;
}

.fab-options {
    list-style-type: none;
    margin: 0;
    position: absolute;
    bottom: 70px;
    right: 0;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0);
    transform-origin: 85% bottom;
}

.fab:hover+.fab-options,
.fab-options:hover {
    opacity: 1;
    transform: scale(1);
}

.fab-options li {
    display: flex;
    justify-content: flex-end;
    padding: 5px;
}

.fab-label {
    padding: 15px 20px;
    width: 200px;
    text-align: center;
    user-select: none;
    white-space: nowrap;
    border-radius: 20px;
    font-size: 18px;
    background-color: #ecc624;
    color: white;
    font-weight: 600;
    margin-right: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.fab-label:hover{
    opacity: 0.9;
}