
.hh-showcase {
    width: calc(100% - 32px);
    margin: 14px auto 28px;
    box-sizing: border-box;
}

.hh-showcase__message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    margin-bottom: 16px;
    padding: 12px 24px;
    border-radius: 8px;
    background: #f6f1e8;
    color: #6f7f55;
    text-align: center;
    font-size: 18px;
    line-height: 1.35;
}

.hh-showcase__message-icon {
    display: inline-flex;
    font-size: 22px;
    line-height: 1;
}

.hh-showcase__message-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.hh-showcase__grid {
    display: grid;
    gap: 20px;
}

.hh-showcase__card {
    position: relative;
    overflow: hidden;
    border: 1px solid #eee8de;
    border-radius: 8px;
    background: #fffcf7;
    transition: transform .2s ease, box-shadow .2s ease;
}

.hh-showcase__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(59, 48, 34, .08);
}

.hh-showcase__image-link {
    position: relative;
    display: block;
    text-decoration: none;
}

.hh-showcase__image {
    overflow: hidden;
    background: #f3eee5;
}

.hh-showcase__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.hh-showcase__card:hover .hh-showcase__image img {
    transform: scale(1.025);
}

.hh-showcase__sale {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #6f7f55;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.hh-showcase__content {
    padding: 14px 16px 16px;
}

.hh-showcase__title {
    margin: 0 0 7px;
    color: #2a2a2a;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.25;
}

.hh-showcase__title a {
    color: inherit;
    text-decoration: none;
}

.hh-showcase__price {
    color: #6f7f55;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.hh-showcase__price del {
    margin-right: 6px;
    opacity: .55;
    font-weight: 400;
}

.hh-showcase__price ins {
    text-decoration: none;
}

.hh-showcase__empty,
.hh-showcase__notice {
    padding: 26px;
    border: 1px solid #eee8de;
    border-radius: 8px;
    background: #fffcf7;
    text-align: center;
    color: #595959;
}

@media (max-width: 767px) {
    .hh-showcase {
        width: calc(100% - 20px);
        margin-top: 10px;
    }

    .hh-showcase__message {
        align-items: flex-start;
        padding: 14px 18px;
        font-size: 16px;
    }

    .hh-showcase__image {
        height: 300px !important;
    }
}
