.han-uk-wrap {
    position: relative;
    width: 100%;
}

.han-uk-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.han-uk-heading {
    margin: 0;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #232323;
}

.han-uk-nav {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.han-uk-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #dddddd;
    border-radius: 999px;
    background: #ffffff;
    color: #222222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
}

.han-uk-arrow:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.han-uk-arrow span {
    font-size: 28px;
    line-height: 1;
    margin-top: -2px;
}

.han-uk-viewport {
    overflow: hidden;
}

.han-uk-track {
    display: flex;
    gap: 18px;
    transition: transform .35s ease;
    will-change: transform;
}

.han-uk-slide {
    min-width: calc((100% - (18px * 3)) / 4);
    flex: 0 0 calc((100% - (18px * 3)) / 4);
    box-sizing: border-box;
}

.han-uk-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 12px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.han-uk-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.han-uk-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 210px;
    border-radius: 12px;
    overflow: hidden;
    background: #fafafa;
}

.han-uk-image {
    width: 100%;
    height: 210px;
    object-fit: contain;
}

.han-uk-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 12px;
    flex: 1 1 auto;
}

.han-uk-product-title {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 500;
    min-height: 44px;
    color: #212121;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.han-uk-product-title a {
    color: inherit;
    text-decoration: none;
}

.han-uk-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: auto;
}

.han-uk-actions.is-single {
    grid-template-columns: 1fr;
}

.han-uk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 38px;
    padding: 8px 10px;
    border-radius: 10px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    transition: opacity .2s ease, transform .2s ease;
}

.han-uk-btn:hover {
    opacity: .92;
    transform: translateY(-1px);
}

.han-uk-btn-cart {
    background: #111111;
}

.han-uk-btn-wa {
    background: #25d366;
}

.han-uk-empty {
    font-size: 14px;
    color: #666666;
}

@media (max-width: 1024px) {
    .han-uk-slide {
        min-width: calc((100% - (18px * 2)) / 3);
        flex-basis: calc((100% - (18px * 2)) / 3);
    }
}

@media (max-width: 767px) {
    .han-uk-topbar {
        margin-bottom: 14px;
    }

    .han-uk-heading {
        font-size: 20px;
    }

    .han-uk-nav {
        gap: 8px;
    }

    .han-uk-arrow {
        width: 34px;
        height: 34px;
    }

    .han-uk-slide {
        min-width: calc((100% - 18px) / 2);
        flex-basis: calc((100% - 18px) / 2);
    }

    .han-uk-card {
        padding: 10px;
    }

    .han-uk-image-wrap,
    .han-uk-image {
        min-height: 150px;
        height: 150px;
    }

    .han-uk-product-title {
        min-height: 40px;
        font-size: 14px;
    }

    .han-uk-actions {
        gap: 6px;
    }

    .han-uk-btn {
        min-height: 34px;
        padding: 7px 8px;
        font-size: 11px;
    }
}
