/* Termékek shortcode stílusok */
.termek-container {
    font-family: "Poppins", Sans-serif;
    margin: 20px 0;
}

.termek-item {
    border-radius: 8px;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.termek-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.termek-kep {
    text-align: center;
    margin-bottom: 0px;
}

h3.termek-nev a {
    color: #222222;
}


.termek-kep img {
    max-width: 100%;
    height: auto;
    width: 100%;
    object-fit: cover;
}


p.product.woocommerce.add_to_cart_inline {
        border: 0px solid #ccc !important;
    padding: 0px !important;
}

.termek-info {
    text-align: left;
    padding: 25px;
}

.termek-nev {
    font-size: 19px;
    font-weight: 500;
    margin: 0 0 10px 0;
    color: #222222;
}

.termek-bovebbinfo {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
}

.termek-ar {
    font-size: 20px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 15px;
}

.termek-ar del {
    color: #a7a7a7 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-right: 8px;
    font-family: "Poppins", Sans-serif;
}

.termek-ar ins {
    color: #ff1900 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-decoration: none;
}

.termek-gomb {
    margin-top: 10px;
}

.termek-gomb .button, .termek-gomb .add_to_cart_button {
    background: #e8395b !important;
    color: white !important;
    padding: 16px 20px !important;
    border: none !important;
    border-radius: 26px !important;
    cursor: pointer !important;
    font-family: "Poppins", Sans-serif !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: background 0.3s ease !important;
}

.termek-gomb .button:hover,
.termek-gomb .add_to_cart_button:hover {
    background: #981c34 !important;
    color: white;
}

/* Reszponzív design */
@media (max-width: 768px) {
    .termek-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

@media (max-width: 480px) {
    .termek-container {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
}