.hk-carousel-container {
    position: relative;
    padding: 0;
    /* No padding by default - only add when arrows are outside */
    transition: all 0.3s ease;
    --slides-to-show: 4;
    --gap: 30px;
}

/* Add padding ONLY when arrows are enabled AND positioned outside */
.hk-carousel-container.hk-nav-outside {
    padding: 0 60px;
}

.hk-carousel-container.hk-nav-inside {
    padding: 0;
}

.hk-carousel-container-inner {
    position: relative;
    overflow: hidden;
}

.hk-carousel-track {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--gap);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.hk-product-card {
    flex: 0 0 calc((100% / var(--slides-to-show)) - (var(--gap) * (var(--slides-to-show) - 1) / var(--slides-to-show)));
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    --hk-hover-lift-distance: -5px;
}

/* Default Hover Shadow - Will be overridden by Elementor Group Control if set */
.hk-product-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

/* Dynamic Hover Lift */
.hk-hover-lift-yes .hk-product-card:hover {
    transform: translateY(var(--hk-hover-lift-distance, -5px));
}

.hk-hover-lift-no .hk-product-card:hover {
    transform: none;
}

/* Image Wrapper */
.hk-product-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
}

.hk-product-main-image {
    position: relative;
    overflow: hidden;
}

.hk-product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f0f0f0;
}

.hk-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hk-product-image.switching img {
    opacity: 0.3;
}

.hk-product-image-link {
    display: block;
    position: relative;
}

/* Gallery Styles */
.hk-product-gallery {
    display: flex;
    gap: 8px;
    padding: 0 15px;
    margin-top: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.hk-gallery-thumb {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.hk-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hk-gallery-thumb:hover,
.hk-gallery-thumb.active {
    border-color: #000000;
    transform: scale(1.05);
}

.hk-gallery-thumb:hover img {
    transform: scale(1.1);
}

/* Overlay Gallery (Alternative Position) */
.hk-product-image-wrapper[data-gallery-position="overlay"] .hk-product-gallery {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: 0;
    z-index: 5;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 0 0 12px 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.hk-product-image-wrapper[data-gallery-position="overlay"]:hover .hk-product-gallery {
    opacity: 1;
    transform: translateY(0);
}

/* Badges */
.hk-product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hk-product-badge {
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    display: inline-block;
    line-height: 1;
}

.hk-badge-sale {
    background-color: #e92020;
    color: #ffffff;
}

.hk-badge-new {
    background-color: #2ecc71;
    color: #ffffff;
}

.hk-badge-out-of-stock {
    background-color: #95a5a6;
    color: #ffffff;
}

/* Product Actions */
.hk-product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.hk-product-card:hover .hk-product-actions {
    opacity: 1;
    transform: translateX(0);
}

.hk-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #333;
    font-size: 16px;
}

.hk-action-btn:hover {
    background: #000;
    color: #fff;
    transform: scale(1.1);
}

.hk-wishlist-btn .add_to_wishlist {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hk-wishlist-btn .add_to_wishlist:hover {
    background: #000;
    color: #fff;
}

/* Content */
.hk-product-content {
    padding: 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hk-product-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 8px;
    display: block;
}

.hk-product-category a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.hk-product-category a:hover {
    color: #000;
}

.hk-product-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.hk-product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hk-product-title a:hover {
    color: #666;
}


.hk-product-price {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    margin-top: auto;
}

.hk-product-price del {
    color: #999;
    margin-right: 8px;
    font-weight: 400;
    font-size: 14px;
}

.hk-product-price ins {
    text-decoration: none;
    color: #e92020;
}

/* Product Buttons Container */
.hk-product-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: 15px;
    justify-content: var(--hk-content-items-align-justify, center);
}

.hk-add-to-cart-wrapper,
.hk-custom-button-wrapper {
    flex: 1;
    display: flex;
}

/* Add to Cart Button */
.hk-add-to-cart-wrapper .button.hk-add-to-cart {
    width: 100%;
    padding: 12px 15px;
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

.hk-add-to-cart-wrapper .button.hk-add-to-cart:hover {
    background-color: transparent;
    color: #000;
}

/* Sold Out Button */
.hk-sold-out-button {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    cursor: not-allowed;
}

/* Custom Button */
.hk-custom-button {
    width: 100%;
    padding: 12px 15px;
    background-color: #f0f0f0;
    color: #333;
    border: 2px solid #f0f0f0;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

.hk-custom-button:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.hk-add-to-cart-wrapper .button.hk-add-to-cart.added {
    background-color: #2ecc71;
    border-color: #2ecc71;
    color: #fff;
}

.hk-add-to-cart-wrapper .button.hk-add-to-cart.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Navigation Arrows */
.hk-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #333;
    font-size: 20px;
}

.hk-carousel-arrow:hover {
    background: #000;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.hk-carousel-prev {
    left: 5px;
    /* Positioned within the 60px padding */
}

.hk-carousel-next {
    right: 5px;
}

/* Inside Navigation Adjustment */
.hk-nav-inside .hk-carousel-prev {
    left: 20px;
}

.hk-nav-inside .hk-carousel-next {
    right: 20px;
}

/* ========================================
   CONTENT ALIGNMENT
   ======================================== */

/* Base content structure */
.hk-product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}


/* Left Alignment */
.hk-carousel-container.hk-align-left .hk-product-content {
    align-items: flex-start !important;
    text-align: left !important;
}

.hk-carousel-container.hk-align-left .hk-product-category,
.hk-carousel-container.hk-align-left .hk-product-title,
.hk-carousel-container.hk-align-left .hk-product-price {
    text-align: left !important;
}

.hk-carousel-container.hk-align-left .hk-product-rating,
.hk-carousel-container.hk-align-left .hk-product-buttons,
.hk-carousel-container.hk-align-left .hk-product-gallery {
    justify-content: flex-start !important;
}

/* Center Alignment (Default) */
.hk-carousel-container.hk-align-center .hk-product-content {
    align-items: center !important;
    text-align: center !important;
}

.hk-carousel-container.hk-align-center .hk-product-category,
.hk-carousel-container.hk-align-center .hk-product-title,
.hk-carousel-container.hk-align-center .hk-product-price {
    text-align: center !important;
}

.hk-carousel-container.hk-align-center .hk-product-rating,
.hk-carousel-container.hk-align-center .hk-product-buttons,
.hk-carousel-container.hk-align-center .hk-product-gallery {
    justify-content: center !important;
}

/* Right Alignment */
.hk-carousel-container.hk-align-right .hk-product-content {
    align-items: flex-end !important;
    text-align: right !important;
}

.hk-carousel-container.hk-align-right .hk-product-category,
.hk-carousel-container.hk-align-right .hk-product-title,
.hk-carousel-container.hk-align-right .hk-product-price {
    text-align: right !important;
}

.hk-carousel-container.hk-align-right .hk-product-rating,
.hk-carousel-container.hk-align-right .hk-product-buttons,
.hk-carousel-container.hk-align-right .hk-product-gallery {
    justify-content: flex-end !important;
}

.hk-product-card {
    text-align: inherit;
}

/* Pagination Dots */
.hk-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.hk-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.hk-carousel-dot.active {
    background: #000;
    transform: scale(1.3);
}

/* Quick View Modal */
.hk-quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hk-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.hk-modal-container {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    z-index: 1;
    padding: 40px;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hk-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #f0f0f0;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.hk-modal-close:hover {
    background: #000;
    color: #fff;
    transform: rotate(90deg);
}

.hk-quick-view-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.hk-qv-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.hk-qv-details h2 {
    margin: 0 0 20px 0;
    font-size: 28px;
}

.hk-qv-price {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.hk-qv-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 1200px) {
    .hk-product-card {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .hk-product-card {
        flex: 0 0 calc(50% - 15px);
    }

    .hk-carousel-prev {
        left: 10px;
        width: 40px;
        height: 40px;
    }

    .hk-carousel-next {
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .hk-quick-view-content {
        grid-template-columns: 1fr;
    }

    .hk-modal-container {
        padding: 20px;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .hk-product-card {
        flex: 0 0 100%;
    }

    .hk-gallery-thumb {
        width: 40px;
        height: 40px;
    }
}

/* Gallery Arrows */
.hk-gallery-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 8;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.hk-product-image-wrapper:hover .hk-gallery-arrows {
    opacity: 1;
}

.hk-gallery-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #111;
    font-size: 16px;
    pointer-events: auto;
}

.hk-gallery-arrow:hover {
    background: #ffffff;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Gallery Dots (Pagination) */
.hk-gallery-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 9;
    padding: 6px 10px;
}

.hk-gallery-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hk-gallery-dot.active {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.2);
}

.hk-product-image-wrapper:hover .hk-gallery-dot {
    background: rgba(0, 0, 0, 0.3);
}

.hk-product-image-wrapper:hover .hk-gallery-dot.active {
    background: rgba(0, 0, 0, 0.9);
}

/* Loading State */
.hk-carousel-container.loading .hk-carousel-track {
    opacity: 0.5;
    pointer-events: none;
}

/* Smooth Image Transition */
.hk-product-image.switching img {
    opacity: 0.7;
    transform: scale(1.02);
}

/* ===================================
   IMAGE SLIDER SPECIFIC STYLES
   =================================== */

.hk-image-slider .hk-image-slide {
    flex: 0 0 calc((100% / var(--slides-to-show)) - (var(--gap) * (var(--slides-to-show) - 1) / var(--slides-to-show)));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hk-image-slider .hk-image-slide img {
    max-width: 100%;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hk-image-slider .hk-image-slide a {
    display: block;
    position: relative;
    line-height: 0;
    width: 100%;
    height: 100%;
}

.hk-image-slider .hk-image-slide:hover img {
    transform: scale(1.05);
}

/* Equal Height Support */
.hk-equal-height-yes .hk-carousel-track {
    align-items: stretch;
}

.hk-equal-height-yes .hk-product-card {
    height: 100%;
}

.hk-equal-height-no .hk-carousel-track {
    align-items: flex-start;
}

.hk-equal-height-no .hk-product-card {
    height: auto;
}

/* Ensure images are centered in the slide if they don't fill it */
.hk-image-slider .hk-image-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Base Gallery Nav Transition */
.hk-gallery-arrows,
.hk-gallery-dots {
    transition: all 0.3s ease;
}

/* Gallery Navigation Visibility Logic */
.hk-gallery-nav-hover .hk-gallery-arrows,
.hk-gallery-nav-hover .hk-gallery-dots {
    opacity: 0;
}

.hk-gallery-nav-hover .hk-product-image-wrapper:hover .hk-gallery-arrows,
.hk-gallery-nav-hover .hk-product-image-wrapper:hover .hk-gallery-dots {
    opacity: 1;
    pointer-events: auto;
}

.hk-gallery-nav-always .hk-gallery-arrows,
.hk-gallery-nav-always .hk-gallery-dots {
    opacity: 1;
    pointer-events: auto;
}

.hk-gallery-nav-hidden .hk-gallery-arrows,
.hk-gallery-nav-hidden .hk-gallery-dots {
    display: none !important;
}

@media (max-width: 1024px) {

    /* Tablet Equal Height */
    .hk-equal-height-tablet-yes .hk-carousel-track {
        align-items: stretch;
    }

    .hk-equal-height-tablet-yes .hk-product-card {
        height: 100%;
    }

    .hk-equal-height-tablet-no .hk-carousel-track {
        align-items: flex-start;
    }

    .hk-equal-height-tablet-no .hk-product-card {
        height: auto;
    }

    .hk-gallery-nav-tablet-hover .hk-gallery-arrows,
    .hk-gallery-nav-tablet-hover .hk-gallery-dots {
        opacity: 0;
    }

    .hk-gallery-nav-tablet-hover .hk-product-image-wrapper:hover .hk-gallery-arrows,
    .hk-gallery-nav-tablet-hover .hk-product-image-wrapper:hover .hk-gallery-dots {
        opacity: 1;
        pointer-events: auto;
    }

    .hk-gallery-nav-tablet-always .hk-gallery-arrows,
    .hk-gallery-nav-tablet-always .hk-gallery-dots {
        opacity: 1;
        pointer-events: auto;
    }

    .hk-gallery-nav-tablet-hidden .hk-gallery-arrows,
    .hk-gallery-nav-tablet-hidden .hk-gallery-dots {
        display: none !important;
    }
}

@media (max-width: 767px) {

    /* Mobile Equal Height */
    .hk-equal-height-mobile-yes .hk-carousel-track {
        align-items: stretch;
    }

    .hk-equal-height-mobile-yes .hk-product-card {
        height: 100%;
    }

    .hk-equal-height-mobile-no .hk-carousel-track {
        align-items: flex-start;
    }

    .hk-equal-height-mobile-no .hk-product-card {
        height: auto;
    }

    .hk-gallery-nav-mobile-always .hk-gallery-arrows,
    .hk-gallery-nav-mobile-always .hk-gallery-dots {
        opacity: 1;
        pointer-events: auto;
    }

    .hk-gallery-nav-mobile-hidden .hk-gallery-arrows,
    .hk-gallery-nav-mobile-hidden .hk-gallery-dots {
        display: none !important;
    }
}

/* Main Carousel Navigation Visibility */
.hk-nav-vis-hover .hk-carousel-arrow,
.hk-nav-vis-hover .hk-carousel-dots {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.hk-nav-vis-hover:hover .hk-carousel-arrow,
.hk-nav-vis-hover:hover .hk-carousel-dots {
    opacity: 1;
    visibility: visible;
}

.hk-nav-vis-always .hk-carousel-arrow,
.hk-nav-vis-always .hk-carousel-dots {
    opacity: 1;
    visibility: visible;
}

.hk-nav-vis-hidden .hk-carousel-arrow,
.hk-nav-vis-hidden .hk-carousel-dots {
    display: none !important;
}

@media (max-width: 1024px) {

    .hk-nav-vis-tablet-hover .hk-carousel-arrow,
    .hk-nav-vis-tablet-hover .hk-carousel-dots {
        opacity: 0;
        visibility: hidden;
    }

    .hk-nav-vis-tablet-hover:hover .hk-carousel-arrow,
    .hk-nav-vis-tablet-hover:hover .hk-carousel-dots {
        opacity: 1;
        visibility: visible;
    }

    .hk-nav-vis-tablet-always .hk-carousel-arrow,
    .hk-nav-vis-tablet-always .hk-carousel-dots {
        opacity: 1;
        visibility: visible;
    }

    .hk-nav-vis-tablet-hidden .hk-carousel-arrow,
    .hk-nav-vis-tablet-hidden .hk-carousel-dots {
        display: none !important;
    }
}

@media (max-width: 767px) {

    .hk-nav-vis-mobile-always .hk-carousel-arrow,
    .hk-nav-vis-mobile-always .hk-carousel-dots {
        opacity: 1;
        visibility: visible;
    }

    .hk-nav-vis-mobile-hidden .hk-carousel-arrow,
    .hk-nav-vis-mobile-hidden .hk-carousel-dots {
        display: none !important;
    }
}


/* Star Rating Support - Passive and Tight */
.hk-product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    /* Reduced default gap */
    margin-bottom: 15px;
    line-height: 1;
}

/* Content Alignment Awareness */
.hk-carousel-container.hk-align-left .hk-product-rating {
    justify-content: flex-start !important;
}

.hk-carousel-container.hk-align-center .hk-product-rating {
    justify-content: center !important;
}

.hk-carousel-container.hk-align-right .hk-product-rating {
    justify-content: flex-end !important;
}

.hk-product-rating .star-rating {
    display: inline-flex !important;
    align-items: center;
    vertical-align: middle;
    line-height: 1;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
   /* color: transparent !important; */
    height: 1.25em;
    width: auto !important;
    min-width: 0 !important;
}

.hk-product-rating .star-rating .rey-starsGroup {
    width: auto !important;
    overflow: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
}

/* Standard WC Stars Overflow fix */
.hk-product-rating .star-rating span {
    overflow: hidden;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
    /* push text labels out */
    height: 100%;
}

/* Hide unwanted screen-reader labels and any direct text */
.hk-product-rating .star-rating .rating,
.hk-product-rating .star-rating .screen-reader-text,
.hk-product-rating .screen-reader-text {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    font-size: 0 !important;
    position: absolute !important;
}

.hk-rating-count {
    font-size: 0.85em;
    opacity: 0.7;
    color: inherit;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block;
}