﻿.banner { margin-bottom: 24px; position: relative; height: 300px; }
.banner img { width: 100%; height: 100%; object-fit: cover; }
.banner .title { border-top-left-radius: 10px; border-top-right-radius: 10px; background-color: #12121288; color: white; display: flex; justify-content: center; align-items: center; height: 60px; position: absolute; bottom: 0; right: 0; left: 0; margin: auto; width: 100%; max-width: 1014px; }
.page-container { max-width: 1094px; }

.category-header { background: #FFFFFF; box-shadow: 1px 3px 6px 2px rgba(200, 200, 200, 0.2); border-radius: 5px; padding: 12px 14px 0; margin-bottom: 16px;  display: none; }
.category-header .title { font-weight: 600; color: #121212; font-size: 14px; margin-bottom: 12px; }
.category-header .categories { display: flex; justify-content: center; font-size: 14px; font-weight: 600; color: #676D7C; flex-wrap: wrap; align-items: start; }
.category-header .item { display: flex; flex-direction: column; align-items: center; gap: 8px; cursor: pointer; margin-bottom: 15px; width: 70px; transition: all 200ms ease-in; text-decoration: none; }
.category-header .item:hover { text-decoration: none; }
.category-header .item > div:first-child { margin: 0 10px; }
.category-header .item > div { display: flex; text-align: center; }
.category-header .item img { width: 50px; height: 50px; }
.category-header .item .icon { display: flex; align-items: center; justify-content: center; width: 47px; height: 47px; border: 1.5px solid #676D7C; border-radius: 50%; }
.category-header .item .icon img { width: 25px; height: 25px; }
.category-header .item > div { color: #676D7C; }
.category-header .item.active > div { color: #121212; }
.category-header .item.active .icon { border: 1.5px solid #E30D29; }

.category-grid { display: flex; flex-wrap: wrap; gap: 16px;}
.category-grid > div { width: calc(20% - 13px); }

.category-tiles .tile { display: flex; flex: 1; justify-content: center; flex-direction: column; background-color: white; border-radius: 5px; overflow: hidden; text-decoration: none; }
.category-tiles .tile:hover, .category-tiles .tile:focus, .category-tiles .tile:active { text-decoration: none; }
.category-tiles .tile .image { flex: 1; width: 100%; min-height: 200px; display: flex; justify-content: center; align-items: center; }
.category-tiles .tile .image img { max-width: 100%; }
.category-tiles .tile .title { display: flex; align-items: center; gap: 8px; padding: 12px; font-weight: 800; color: #121212; font-size: 14px; }
.category-tiles .tile .title img { width: 20px; }

.products-grid { display: flex; flex-wrap: wrap; gap: 16px;}
.products-grid > div { width: calc(20% - 13px); }

.products-tiles .tile { display: flex; flex: 1; justify-content: center; flex-direction: column; background-color: white; border-radius: 5px; overflow: hidden; text-decoration: none; }
.products-tiles .tile:hover, .products-tiles .tile:focus, .products-tiles .tile:active { text-decoration: none; }
.products-tiles .tile .image { flex: 1; width: 100%; min-height: 200px; display: flex; justify-content: center; align-items: center; }
.products-tiles .tile .image img { max-width: 100%; }
.products-tiles .tile .title { display: flex; align-items: start; gap: 5px; padding: 12px; font-weight: 800; color: #121212; font-size: 14px; height: 44px; overflow: hidden; }
.products-tiles .tile .title .icon { width: 12px; height: 12px; border-radius: 50%; background-color: #E30D29; margin-top: 4px; }
.products-tiles .tile .title span:not(.icon) { flex: 1; }

.products-announce { border: 2px solid #E30D29; display: flex; justify-content: center; align-items: center; font-size: 16px; font-weight: 600; border-radius: 5px; color: #121212; margin-bottom: 24px; }
.products-announce .text { flex: 1; text-align: center; padding: 0 10px; }
.products-announce .left-side, .products-announce .right-side { padding: 10px 10px; display: flex; flex-direction: column; gap: 10px; }
.products-announce .left-side > div, .products-announce .right-side > div { display: flex; gap: 10px; }
.products-announce .left-side > div > span, .products-announce .right-side > div > span { width: 12px; height: 12px; border-radius: 50%; background-color: #E30D29; }
.products-announce .left-side { border-right: 2px solid #E30D29; }
.products-announce .right-side { border-left: 2px solid #E30D29; }


@media (max-width: 1100px) {
    .products-announce { display: none; }

    .category-header { display: block; }
    .category-grid > div { width: calc(25% - 12px); }

    .products-grid > div { width: calc(25% - 12px); }
}

@media (min-width: 640px) {
    .category-header .item.hide { visibility: hidden; width: 0; height: 0; opacity: 0; transition: all 200ms ease; }
}

@media (max-width: 640px) {
    .category-grid { gap: 0; }
    .category-grid > div { width: 50%; }
    .category-header .item.more { display: none; }

    .categories { flex-wrap: nowrap !important; justify-content: start !important; overflow-x: auto; overflow-y: hidden; }
    .category-tiles .tile { margin: 5px; }
    
    .products-grid { gap: 0; }
    .products-grid > div { width: 50%; }
    .products-tiles .tile { margin: 5px; }
}