@font-face {    /* подключаются шрифты */
    font-family: "AKONY";
    src: url("AKONY.ttf");
}
@font-face {
    font-family: "Tektur";
    src: url("Tektur-VariableFont_wdth\,wght.ttf")
}
* {             /* здесь выбирается шрифт и убираются  */
    font-family: "Tektur";
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-weight: 600;
}
a{    /* это чтобы ссылки адекватно выглядели */
    margin: 0;
    padding: 0;
    color:unset;
    text-decoration: none;
}
main {  /* задается размер основного окна */
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.block-style{    /* это главная фишка дизайна в виде блока с черной обводкой, скруглением и небольшой тенью */
    border-radius: 26px;
    border-color: black;
    border-style: solid;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}
/* все что ниже относится к шапке */
.header-block{    /* сам черный блок */
    background: black;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    margin-bottom: 55px;
}
.header-text {   /* текст */
    color:white;
    font-family: "AKONY";
    font-size: clamp(16px 4vw 48px)
}
/* все что ниже относится к приветствию (хз как еще назвать блок с цитатой и названием) */

.greetings-container{ /* это главный блок в котором размещаются остальные  */
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 55px;
}
.block{
    display: flex;
    justify-content: space-between;
}
.quote-block{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 200px;
}
.quote-text{
    font-family: "AKONY";
    text-align:center;
    font-size:24px
}
.femoz-block{
    width: 200px;
    height: 200px;
}
.femoz-img{
    width: 200px;
    margin: auto;
}
.name-block{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 827px;
}
.name-text1{
    font-size: 24px;
    text-align: center;
    font-family: "AKONY";
}
.name-text2{
    font-size: 48px;
    text-align: center;
    font-family: "AKONY";
}
/* все что ниже относится к блоку МЕРЧ */

.merch-block {
    width: 100%;
    height: 10vh;
    margin-top: 55px;
    margin-bottom: 55px;
    display: flex;

}
.merch-text {
    margin: auto;
    font-family: "AKONY";
}
/* все что ниже это блок с фильтрацией и самим мерчом */
.store {  /* это блок фильтрации + все товары */
    width: 100%;
    display: flex;
    justify-content: space-between;
}
/* это блок фильтрации */
.filter-container{
    width: 280px;
    max-width: 300px;
    height:356px;
    margin-right: 50px;
    display: flex;
    flex-direction: column;
    padding: 5px 40px;
    gap: 10px;
    box-sizing: border-box;
}
.filter-text1{
    text-align: center;
    font-size: 20px;
    margin: 20px 0;
}
.custom-checkbox{
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;       /* стандарт */
}
.custom-checkbox input{
    display: none;
}
.checkbox-container{
    display: flex;
    width: 15px;
    height: 15px;
    border-radius: 3px;
    align-items: center;
    justify-content: center;
}
.checkbox-check{
    border-radius: 2px;
    width: 11px;
    height: 11px;
    background: white;
    transition: background 0.2s;
}
.custom-checkbox input:checked ~ .checkbox-container .checkbox-check{
    background: black;
}
.input-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.input-filter {
    width: 30%;;
}

/* а тут начинается блок где все товары */

.store-block{    /* для кайфа сделал его таблицей */
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.product-cart{ /* карточка товара */
    height: 350px;
    width: 270px;
    border-radius: 26px;
    border:solid black;
    transition: background 0.2s,color 0.2s;  /* это чтоб анимашка красивая была при наведении */

}
.product-cart:hover{  /* цвета меняются при наведении */
    background: black;
    color:white;
    cursor: pointer;
}
.product-cart:hover .product-image{  /* здесь картинка увеличивается при наведении */
    transform: scale(1.2);
}
.product-image{
    margin: 0 auto;
    margin-top: 40px;
    width: 200px;
    display: flex;
    transition: transform 0.2s;
    height: 200px;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 24px;
}
.product-name{
    margin-top: 40px;
    font-size: 24px;
    margin-bottom: 5px;
    text-align: left;
    margin-left: 10px;
}
.product-name-custom{
    margin-top: 40px;
    font-size: 24px;
    margin-bottom: 5px;
    text-align: center;
    margin-left: 10px;
    margin-bottom: 140px;
}
/* все что ниже это блок с акцией */
.product-price{
    text-align: left;
    font-size: 20px;
    margin-left: 10px;
}
.promotion-container{
    padding: 20px;
    margin-top: 50px;
}
.promotion-text{
    text-align: center;
    font-size:24px
}
.promotion-text-big{
    font-size: 36px;
}
/* навайбкоденая фильтрация */
.input-filter{
    border-radius: 5px;
    width: 80px;
}
.input-filter::placeholder{
    font-size: 12px;
}
.price-filter-btn{
    width: 90px;
    height: 30px;
    transition: color 0.2s,background 0.2s;
}
.price-filter-btn:hover{
    color: white;
    background: black;
    cursor: pointer;
}
.price-filter-buttons{
    justify-content: space-between;
    display: flex;
}
.pashalko{
    transition: font-size 0.2s;
}
.pashalko:hover{
    font-size: 52px;
}
/* все что ниже это футер (подвал) */
footer {
    padding: 0 50px;
    margin-top: 100px;
    height: 200px;
    background: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-text {
    width: 600px;
    color: white;
    text-align: center;
    font-size: 20px;
    font-family: "AKONY";
}
