/* Kontejner produktů - mřížka */
.custom-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

/* Samotná karta produktu */
.custom-product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.custom-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Odkaz přes celou kartu */
.custom-card-link {
    text-decoration: none !important;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.custom-card-img {
    width: 100%;
    aspect-ratio: 1/1; /* Čtvercový poměr, dá se změnit */
    overflow: hidden;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.custom-card-body {
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.custom-card-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.custom-card-price {
    font-size: 18px;
    font-weight: bold;
    color: #e60000; /* Přepiš si podle své primární barvy (např. červená nebo černá) */
    margin-top: auto;
    margin-bottom: 15px;
}

.custom-card-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #333; /* Tmavá barva tlačítka */
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
}

.custom-card-link:hover .custom-card-btn {
    background-color: #555;
}