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

.hh-best__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.hh-best__heading {
    margin: 0;
    color: #262626;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 3vw, 48px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.025em;
}

.hh-best__subheading {
    margin-top: 8px;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

.hh-best__view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    color: #6f7f55;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.hh-best__view-all span {
    transition: transform .2s ease;
}

.hh-best__view-all:hover span {
    transform: translateX(4px);
}

.hh-best__grid {
    display: grid;
    gap: 16px;
}

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

.hh-best__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(59, 48, 34, .08);
}

.hh-best__image-link {
    position: relative;
    display: block;
}

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

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

.hh-best__card:hover .hh-best__image img {
    transform: scale(1.03);
}

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

.hh-best__content {
    padding: 12px 12px 14px;
}

.hh-best__title {
    margin: 0 0 6px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}

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

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

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

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

.hh-best__notice {
    padding: 24px;
    border: 1px solid #eee8de;
    border-radius: 8px;
    background: #fffcf7;
    color: #666;
    text-align: center;
}

@media (max-width: 767px) {
    .hh-best {
        width: calc(100% - 20px);
    }

    .hh-best__header {
        align-items: start;
        margin-bottom: 16px;
    }

    .hh-best__heading {
        font-size: clamp(32px, 10vw, 42px);
    }

    .hh-best__view-all {
        font-size: 14px;
    }

    .hh-best__image {
        height: 190px !important;
    }
}
