.home-products-slider-wrap {
    width: 100%;
}

.home-products-slider .item {
    padding: 8px;
}

.home-products-card {
    display: block;
    position: relative;
    background: #ffffff;
    border: none;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(25, 16, 16, 0.08);
    height: 100%;
    text-decoration: none;
    min-height: 430px;
}

.home-products-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 48%, rgba(29, 29, 29, 0.9) 88%);
    pointer-events: none;
}

.home-products-card::before {
    content: "";
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ca0a0f;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='white'%3E%3Cpath d='M11.6432 3.92039C11.6432 3.60973 11.3913 3.35789 11.0807 3.35788L6.01815 3.35784C5.70749 3.35784 5.45565 3.60968 5.45565 3.92034C5.45564 4.231 5.70748 4.48284 6.01814 4.48284L10.5181 4.48288V8.98287C10.5181 9.29354 10.7699 9.54538 11.0806 9.54538C11.3913 9.54538 11.6431 9.29354 11.6431 8.98287L11.6432 3.92039ZM4.31892 11.4775L11.4784 4.31813L10.683 3.52263L3.52344 10.682L4.31892 11.4775Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
    transform: translateY(-10px) rotate(0deg);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.35s ease, background-color 0.25s ease;
    pointer-events: none;
}

.home-products-card:hover::before {
    opacity: 1;
    transform: translateY(0) rotate(45deg);
}

.home-products-card:focus-visible::before {
    opacity: 1;
    transform: translateY(0) rotate(45deg);
}

.home-products-card-image {
    height: 100%;
    min-height: 430px;
    background: #f4efea;
}

.home-products-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.home-products-card:hover .home-products-card-image img {
    transform: scale(1.05);
}

.home-products-card-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 28px 28px 30px;
}

.home-products-card-title {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.15;
    color: #ffffff;
    font-weight: 600;
}

.home-products-card:hover .home-products-card-title,
.home-products-card:focus-visible .home-products-card-title {
    color: #ffffff;
}

.home-products-card-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.55;
    font-size: 16px;
    font-weight: 500;
    min-height: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-products-slider .owl-stage {
    display: flex;
}

.home-products-slider .owl-item {
    display: flex;
}

.home-products-slider .owl-nav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.home-products-slider .owl-nav button.owl-prev,
.home-products-slider .owl-nav button.owl-next {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(32, 24, 24, 0.12) !important;
    background: #fff !important;
    color: #16110f !important;
    font-size: 24px !important;
    transition: all 0.25s ease;
}

.home-products-slider .owl-nav button.owl-prev span,
.home-products-slider .owl-nav button.owl-next span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: none !important;
}

.home-products-slider .owl-nav button.owl-prev svg,
.home-products-slider .owl-nav button.owl-next svg {
    width: 18px;
    height: 18px;
    display: block;
}

.home-products-slider .owl-nav button.owl-prev:hover,
.home-products-slider .owl-nav button.owl-next:hover {
    background: #ca0a0f !important;
    color: #fff !important;
    border-color: #ca0a0f !important;
}

.home-products-slider .owl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.home-products-slider .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0;
    background: rgba(22, 17, 15, 0.18);
}

.home-products-slider .owl-dots .owl-dot.active span {
    background: #ca0a0f;
}

@media (max-width: 767px) {
    .home-products-card,
    .home-products-card-image {
        min-height: 360px;
    }

    .home-products-card-body {
        padding: 20px 18px 22px;
    }

    .home-products-card-title {
        font-size: 26px;
    }

    .home-products-card::before {
        top: 18px;
        right: 18px;
        width: 44px;
        height: 44px;
    }
}
