/* ==========================================================================
   MINIATURA PRODUKTU — KARTA JAK W PROJEKCIE
   ========================================================================== */

html body .product-miniature {
    position: relative;

    background: #fff;
    border-radius: 28px;
    overflow: hidden;

    box-shadow: 0 10px 28px rgba(25, 42, 70, .14);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

/* Hover całej karty */
html body .product-miniature:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(25, 42, 70, .18);
}

/* Górna część ze zdjęciem */
html body .product-miniature__top {
    position: relative;

    margin: 16px 16px 0;
    overflow: hidden;

    border-radius: 24px;
}

/* Zdjęcie */
html body .product-miniature__image,
html body .product-miniature img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;
    border-radius: 24px;
}

/* Dolna część z tekstem */
html body .product-miniature__infos,
html body .product-miniature__info,
html body .product-miniature__bottom {
    padding: 10px;
}

/* Nazwa produktu */
html body .product-miniature__title,
html body .product-miniature .product-title,
html body .product-miniature .product-title a {

    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.15;

    color: #111;
    text-decoration: none;
}

/* Cena */
html body .product-miniature__price {

    margin: 0;

    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;

    color: #006CFF;
    padding-top: 10px;
}

html body .product-miniature__discount-price {
    margin: 0;

    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;

    color: #333;
}

html body .product-miniature__quickview-button,
html body .product-miniature__quickview-touch {
    display: none !important;
}


.product-miniature__description {
    margin-top: 12px;
    min-height: 42px;

    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #5f6673;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;

    overflow: hidden;
}

.product-miniature__description p {
    margin: 0;
}