.sb-product-carousel-wrap {
    position: relative;
    width: 100%;
    padding: 0 55px;
}

.sb-product-carousel {
    overflow: hidden;
    padding: 10px 0 25px;
}

.sb-product-card {
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    padding: 18px;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.sb-product-card__image {
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sb-product-card__image img {
    max-width: 100%;
    max-height: 210px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.sb-product-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sb-product-card__title {
    min-height: 38px;
    margin: 0 0 12px;
}

.sb-product-card__title a {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
    color: #081B33;
    text-transform: uppercase;
    text-decoration: none !important;
}

.sb-product-card__price {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 18px;
}

.sb-product-card__button {
    margin-top: auto;
    display: block;
    background: #081B33;
    color: #ffffff !important;
    border-radius: 4px;
    padding: 11px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none !important;
}

.sb-product-card:hover {
    border-color: #C9A44C;
}

.sb-product-card__button:hover {
    background: #C9A44C;
    color: #081B33 !important;
}

.sb-carousel-nav {
    overflow: hidden;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 44px;
    height: 44px;
    background: #081B33;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(8,27,51,.18);
    transition: .25s ease;
}

.sb-carousel-nav::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 11px;
    border-top: 3px solid currentColor;
    border-left: 3px solid currentColor;
}

.sb-carousel-prev::before {
    transform: translate(-40%, -50%) rotate(-45deg);
}

.sb-carousel-next::before {
    transform: translate(-60%, -50%) rotate(135deg);
}

.sb-carousel-nav:hover {
    background: #C9A44C;
    color: #081B33;
    transform: translateY(-50%) scale(1.08);
}

.sb-carousel-prev {
    left: -22px;
}

.sb-carousel-next {
    right: -22px;
}

/* Remove focus styles from carousel navigation */
.sb-carousel-nav,
.sb-carousel-nav:focus,
.sb-carousel-nav:focus-visible,
.sb-carousel-nav:active {
    outline: none !important;
    border: none !important;
    box-shadow: 0 8px 20px rgba(8,27,51,.18);
    -webkit-tap-highlight-color: transparent;
}

/* Prevent Firefox inner focus border */
.sb-carousel-nav::-moz-focus-inner {
    border: 0;
}

.sb-availability {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.sb-availability--in-stock {
    background: #eaf7ee;
    color: #1f7a3f;
}

.sb-availability--out-stock {
    background: #fdecec;
    color: #b42318;
}