.similar-products-section {
    margin: 40px 0;
    position: relative;
}

.similar-products-section .section-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.similar-products-swiper {
    padding: 10px 4px 20px 4px !important;
}

.product-card-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.product-card-item:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.product-card-item__image-wrapper {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: var(--bg-light);
}

.product-card-item__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-card-item__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card-item:hover .product-card-item__image {
    transform: scale(1.05);
}

.product-card-item__actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 2;
}

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

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-gray);
    transition: all 0.2s;
}

.action-btn:hover, .action-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.action-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.product-card-item__content {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card-item__category {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 6px;
}

.product-card-item__title {
    font-size: 15px;
    color: var(--text-dark);
    text-decoration: none;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
    transition: color 0.2s;
}

.product-card-item__title:hover {
    color: var(--primary);
}

.product-card-item__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    gap: 10px;
}

.product-card-item__price {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.product-card-item__price.on-request {
    font-size: 14px;
    color: var(--text-gray);
}

.btn-cart {
    width: 90px;
    height: 40px;
    border-radius: 8px;
    background: var(--primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: background 0.2s;
}

.btn-cart:hover {
    background: var(--primary-dark);
}

.btn-more {
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.similar-products-swiper .swiper-button-next,
.similar-products-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    color: var(--text-dark);
}

.similar-products-swiper .swiper-button-next:after,
.similar-products-swiper .swiper-button-prev:after {
    font-size: 18px;
}
button.btn-cart.add_to_cart > svg {
    height: 20px;
}
@media (max-width: 1024px) {
    .product-card-item__actions {
        opacity: 1;
        transform: translateX(0);
        position: static;
        flex-direction: row;
        margin-bottom: 10px;
    }

    .product-card-item__image-wrapper {
        padding-top: 0;
        height: 200px;
        display: flex;
        flex-direction: column;
    }

    .product-card-item__link {
        position: relative;
        flex-grow: 1;
        padding: 10px;
    }

    .product-card-item__actions {
        position: absolute;
        top: 8px;
        right: 8px;
    }
}