/**
 * Simple Product Display CSS - Egyszerűsített verzió JavaScript nélkül
 */

/* Fő konténer */
.simple-products-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}



/* Termék elem */
.simple-product-item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    background-color: #000000;
    border-radius: 5px;
    padding: 15px;
}

.simple-product-item img.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail.wp-post-image {
    border-radius: 5px;
}

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

.simple-kiemelt-szoveg {
    font-weight: bold;
    color: #333;
    font-size: 0.85em;
}



p.simple-variation-note {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    text-align: left;
}



/* Termék kép */
.simple-product-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.simple-product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.simple-product-bg-image {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
        padding: 15px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}



/* Badge-ek absolute pozícióval a képen */
.simple-kiemelt-szoveg {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.simple-discount-badge {
    background-color: #ff0013;
    color: #fff;
    padding: 10px 15px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 700;
    z-index: 2;
}


.simple-product-info {
    padding: 16px 0px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.simple-product-title {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1px;
    letter-spacing: -0.3px;
}

.simple-product-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

.simple-product-title a:hover {
    color: #e63946;
}

/* Kártyaszöveg új */
.simple-kartyaszoveg-new {
    font-size: 15px;
    color: #ffffff;
    line-height: 21px;
    margin: 8px 0;
}

.simple-kartyaszoveg-new strong {
    font-weight: 700;
    color: #ffffff;
}

.simple-kartyaszoveg-new br {
    line-height: 1.6;
}

/* Árak */
.simple-product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0px;
}

.simple-regular-price {
    font-weight: bold;
    color: #333;
}

.simple-sale-price {
    font-weight: 900;
    color: #ff0013;
    font-size: 25px;
}

.simple-product-price .simple-regular-price {
    color: #070707;
    font-weight: 700;
    font-size: 19px;
}

.simple-product-price:has(.simple-sale-price) .simple-regular-price {
    font-size: 17px;
    color: #ffffff;
    font-weight: 500; 
}

.simple-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 15px;
}

.simple-product-tag {
    margin-bottom: 0;
    background-color: #ffffff;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    padding: 3px 9px;
    border-radius: 4px;
    font-weight: 400;
}

/* Kosárba helyezés gomb */
.simple-product-action {
    padding: 0px;
    text-align: center;
}

.simple-product-action .simple-button {
    border: none;
    text-transform: math-auto;
    transition: background-color 0.3s;
    text-decoration: none;
    margin-bottom: 0;
    background-color: #ffffff;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    padding: 8px 6px;
    border-radius: 4px;
    font-weight: 600;
    width: 100%;
    align-items: center;
    display: inline-block;
}

.simple-product-action .simple-button:hover {
    background-color: #e93a5a;
}

.simple-out-of-stock-details.simple-button {
    background-color: #ffffff;
    color: #8c6751;
}

/* Nincs termék üzenet */
.simple-no-products {
    text-align: center;
    padding: 20px;
    font-style: italic;
    color: #666;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin: 20px 0;
}

/* Szöveges mezők */
.simple-szovegezes-text {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.simple-kis-uzenet {
    font-size: 12px;
    color: #999;
    font-weight: 500;
}


@media (max-width: 768px) {
    .simple-products-container {
        grid-template-columns: repeat(1, 1fr);
    }
}
