/* Product-one (catalog/home cards) */

.product-one {
    /* keep default card background/borders from .product-card if needed */
}

.product-one__top {
    position: relative;
}

.product-one__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(0,0,0,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
}
.product-one__button.is-prev { left: 10px; }
.product-one__button.is-next { right: 10px; }

.product-one__button[style*="display:none"] {
    display: none !important;
}

.product-one__image-wrapper {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
}

.product-one__image {
    width: 100%;
    height: 100%;
    display: block;
}

/* swiper strip */
.product-one__swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-one__slides {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform .35s ease;
    will-change: transform;
}

.product-one__slide {
    flex: 0 0 100%;
    height: 100%;
}

.product-one__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-one__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 4;
}

.product-one__controls {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    padding: 12px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.product-one__content {
    padding: 16px 16px 18px;
}

.product-one__name {
    display: block;
    min-height: 56px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    color: #162033;
}

.product-one__bottom {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 14px;
}

.product-one__price strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    color: #111827;
}

.product-one__price span {
    display: block;
    margin-top: 4px;
    color: #98a2b3;
    text-decoration: line-through;
}

