/* Hookain Quick Nav: same card composition in OPC preview and storefront. */
.hk-quicknav-wrapper {
    max-width: 100%;
    padding: 1.25rem 0;
    border: 0;
    background: transparent;
    overflow-x: clip;
}

.hk-quicknav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 100%;
}

.hk-quicknav__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
    padding: 1.25rem;
    border: 1px solid #efefef;
    border-radius: 4px;
    background: #fefefd;
    color: #16171c;
    text-decoration: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.hk-quicknav__circle {
    display: flex;
    flex: 0 0 54px;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid #e7e7e6;
    border-radius: 50%;
    background: #f5f5f3;
    overflow: hidden;
}

.hk-quicknav__circle--icon {
    border-color: #16171c;
    background: #16171c;
    color: #e2233b;
}

.hk-quicknav__img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.hk-quicknav__icon {
    color: inherit;
    font-size: 1.35rem;
    line-height: 1;
}

.hk-quicknav__label {
    min-width: 0;
    color: inherit;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.hk-quicknav__item:hover {
    border-color: #16171c;
    box-shadow: 0 4px 16px rgba(22, 23, 28, 0.06);
    color: #16171c;
    text-decoration: none;
    transform: translateY(-2px);
}

.hk-quicknav__item:focus-visible {
    outline: 2px solid #e2233b;
    outline-offset: 3px;
}

@media (max-width: 767.98px) {
    .hk-quicknav {
        grid-template-columns: minmax(0, 1fr);
    }

    .hk-quicknav__item {
        padding: 1rem;
    }
}
