/* ============================================
   KARTY PRODUKTŮ — Psychonautika custom CSS
   Nahraj na FTP do: /userfiles/custom-produkty.css
   ============================================ */

/* --- KARTA PRODUKTU --- */
.product {
    padding: 15px !important;
    background: #fff;
    border: 1px solid #e0e0e0 !important;
    border-radius: 4px;
    transition: all .3s cubic-bezier(.25, .8, .25, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
}

.product:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, .18) !important;
    border-color: #333 !important;
    transform: translateY(-5px);
    z-index: 5 !important;
}

.product .name {
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    margin: 15px 0 10px !important;
    color: #333 !important;
    min-height: 40px;
    display: block;
}

.product .price {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #000 !important;
    margin-bottom: 15px !important;
}

.product .p-bottom {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.product .btn-cart {
    width: 100% !important;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 10px 5px;
}


/* --- 4 SLOUPCE NA DESKTOPU --- */
@media (min-width: 1024px) {
    .js-product-col-4 {
        flex: 0 0 25% !important;
        max-width: 25% !important;
        box-sizing: border-box;
    }
}
