﻿/* PRODUCT PAGE: RELATED PRODUCT CARDS !! */

/* Slider container spacing */
.product-card-products {
    margin-top: 24px;
    margin-bottom: 24px;
    font-family: "PT Sans", sans-serif
}

/* Card */
.product-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 14px;
    height: 100%;
    display: flex;
    flex-direction: column;

    /* Added so overlay button can be positioned relative to the card */
    position: relative;
}

/* Overlay button in top-right corner of the card */
.product-card__overlay-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 20;
    background: rgb(173, 215, 156);
    border: 1px solid #e6e6e6;
    padding: 8px 8px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    font-size: 13px;
    line-height: 1;
    color: #2b2b2b;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Small touch target on mobile */
@media (max-width: 480px) {
    .product-card__overlay-btn {
        top: 6px;
        right: 6px;
        padding: 6px;
        font-size: 12px;
    }
}

/* Image area */
.product-card__imgwrap {
    display: block;
    align-items: center;
    justify-content: center;
    padding: 8px 8px 10px 8px;
}

    .product-card__imgwrap img {
        max-width: 100%;
        max-height: 160px;
        min-height: 160px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

/* Title + desc */
.product-card__title {
    font-size: 14px;
    font-weight: 700;
    color: #2b2b2b;
    margin: 6px 0 6px 0;
    min-height: 38px; /* tasaa korttien korkeuksia */
}

.product-card__desc {
    font-size: 12px;
    line-height: 1.35;
    color: #666;
    margin: 0 0 12px 0;
    flex: 1 1 auto;
}

/* Bottom row */
.product-card__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

.product-card__price {
    font-size: 22px;
    font-weight: 800;
    color: #2b2b2b;
    line-height: 1;
}

.product-card__vat {
    font-size: 11px;
    color: #777;
    margin-top: 2px;
}

.product-card__cta .btn {
    border-radius: 10px;
    padding-left: 16px;
    padding-right: 16px;
}

/* Splide tweaks */
.splide__arrow {
    background: #fff;
    border: 1px solid #e6e6e6;
    opacity: 1;
}
