.sb-hand-picked-section {
    background-color: var(--bg-color, #2e2e2e);
    padding: 90px 0;
}
.sb-hp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}
.sb-hp-section-title {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    color: var(--title-color, #ffffff);
    letter-spacing: -0.5px;
    line-height: 1.1;
}
.sb-hp-view-all {
    font-size: 14px;
    font-weight: 500;
    color: var(--title-color, #ffffff);
    text-decoration: underline !important;
    text-underline-offset: 4px;
    transition: opacity 0.3s ease;
}
.sb-hp-view-all:hover {
    opacity: 0.8;
}
.sb-hand-picked-section .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
}
.sb-hand-picked-section .woocommerce ul.products::before,
.sb-hand-picked-section .woocommerce ul.products::after {
    display: none !important;
}
.sb-hand-picked-section .woocommerce ul.products li.product {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    position: relative;
    display: flex;
    flex-direction: column;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.sb-hand-picked-section .woocommerce ul.products li.product .woocommerce-loop-product__title,
.sb-hand-picked-section .woocommerce ul.products li.product h3,
.sb-hand-picked-section .woocommerce ul.products li.product h2,
.sb-hand-picked-section .woocommerce ul.products li.product a {
    color: var(--title-color, #ffffff) !important;
    transition: opacity 0.3s ease;
}
.sb-hand-picked-section .woocommerce ul.products li.product a:hover {
    opacity: 0.8;
}
.sb-hand-picked-section .woocommerce ul.products li.product .price,
.sb-hand-picked-section .woocommerce ul.products li.product .price * {
    color: var(--title-color, #ffffff) !important;
}
.sb-hand-picked-section .woocommerce ul.products li.product .price del,
.sb-hand-picked-section .woocommerce ul.products li.product .price del * {
    opacity: 0.5;
    color: var(--title-color, #ffffff) !important;
}
@media (max-width: 1199px) {
    .sb-hand-picked-section .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }
}
@media (max-width: 991px) {
    .sb-hand-picked-section {
        padding: 60px 0;
    }
    .sb-hp-section-title {
        font-size: 32px;
    }
    .sb-hand-picked-section .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}
@media (max-width: 480px) {
    .sb-hp-section-title {
        font-size: 26px;
    }
    .sb-hp-header {
        margin-bottom: 25px;
    }
    .sb-hand-picked-section .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}