.shop-collections-block {
    width: 100%;
}

.shop-collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5em;
    justify-items: center;
    /*padding: 4rem 0;*/
}

.shop-collections-item {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 490px;
    padding: 2.5em 1em 1.5em;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.shop-collections-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 25%,
        rgba(0, 0, 0, 0.1) 75%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.shop-collections-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.shop-collections-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.shop-collections-header,
.shop-collections-footer,
.shop-collections-is-new {
    position: relative;
    z-index: 3;
}

.shop-collections-is-new {
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 4;
}

.shop-collections-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5em;
    width: 100%;
}

.shop-collections-span {
    font-weight: 400;
    font-size: 16px;
    line-height: 80%;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.shop-collections-title {
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    line-height: 90%;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.shop-collections-descr {
    padding: 10px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0;
    padding-top: 10px;
}

.shop-collections-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5em;
    width: 100%;
}

.shop-collections-footer-span {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.shop-collections-btn {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    padding: 9px 13px;
    border-radius: 20px;
    background-color: #e41d2f;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.shop-collections-btn:hover {
    background-color: #b81f2c;
    color: #d6d6d6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.shop-extra-blocks > .shop-collections-block {
    display: none;
}

.filter-results-header {
    margin-bottom: 2rem;
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.filter-results-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0 0 0.5rem;
}

.filter-results-count {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.shop-collections-product-count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0.5rem 0 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.shop-collections-empty {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    text-align: center;
}

.empty-state {
    max-width: 400px;
    padding: 2rem;
}

.empty-state h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0 0 1rem;
}

.empty-state p {
    font-size: 16px;
    color: #666;
    margin: 0 0 2rem;
    line-height: 1.5;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: #e41d2f;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #b41427;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(228, 29, 47, 0.3);
    color: #fff;
}