/* Konténer beállítások */
.kaspersky-comparison-container {
    width: 100%;
    margin: 0 auto; /* Középre igazítás */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Oszlop beállítások */
.kaspersky-column {
    width: 32%;
    display: flex;
    flex-direction: column;
}

/* Kártya stílusok */
.kaspersky-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Termék cím stílusok */
.kaspersky-card .product-title {
    font-size: 1.2em;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

/* Termék kép stílusok */
.kaspersky-card .product-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

/* Termék ár stílusok */
.kaspersky-card .product-price {
    font-size: 1.4em; /* Kisebb méret */
    margin: 10px 0;
    color: #00a88e; /* Kedvezményes ár színe */
    text-align: center;
    position: relative;
}

.kaspersky-card .product-price .regular-price {
    font-size: 1em;
    color: #888888;
    text-decoration: line-through; /* Áthúzás */
}

.kaspersky-card .product-price .current-price {
    font-size: 1.4em; /* Kisebb betűméret */
    color: #00a88e; /* Kedvezményes ár színe */
    display: block;
    text-align: center;
}

.kaspersky-card .product-price .alternative-price {
    font-size: 1em;
    color: #888888;
    /* Nincs áthúzás */
}

/* Termék leírás stílusok */
.kaspersky-card .product-description ul {
    list-style: none;
    padding: 0;
    padding-bottom: 10px;
}

.kaspersky-card .product-description li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    line-height: 1.3;
}

.kaspersky-card .product-description .fa-check {
    color: #26397c; /* Kék szín a checkmarkokhoz */
    margin-right: 7px;
}

/* Gomb stílusok */
.kaspersky-card .product-button {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Távolság a gombok között */
}

.kaspersky-card .product-button .button {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
}

.kaspersky-card .product-button .button:hover {
    opacity: 0.9;
}

.kaspersky-card .product-button .order-button {
    color: #ffffff;
    text-transform: uppercase;
    background-color: #00a88e; /* Alapértelmezett szín */
    font-size: 1em; /* Kisebb betűméret */
}

/* Variációs menü stílus */
.kaspersky-card .product-variations {
    margin-top: 10px;
    text-align: center;
}

.kaspersky-card .product-variations .variation-select {
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #ddd;
    width: 94%;
    max-width: 100%;
    background-color: #f9f9f9;
    cursor: pointer;
}

/* Értesítés stílusok */
.kaspersky-notification {
    font-family: Arial, sans-serif;
    font-size: 14px;
    /* Az inline stílusok már beállítják a pozíciót és színeket */
}

/* Mobil Nézet */
@media (max-width: 768px) {
    .kaspersky-comparison-container {
        width: 100%;
        overflow-x: auto;
        display: flex;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        position: relative;
    }

    .kaspersky-column {
        display: flex;
        flex-direction: row;
        flex: 0 0 auto;
        width: auto;
    }

    .kaspersky-card {
        min-width: 70%; /* Keskenyebb kártyák */
        margin-right: 15px;
        flex: 0 0 auto;
    }

    /* Görgetősáv indikátor */
    .kaspersky-comparison-container::after {
        content: '↔';
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 1.5em;
        color: #888;
    }

    /* Mobil finomhangolás */
    .kaspersky-card .product-price {
        text-align: left;
    }

    .kaspersky-card .product-variations {
        text-align: left;
    }

    .kaspersky-card .product-button {
        flex-direction: column;
    }
}

/* Görgetősáv stílusok */
.kaspersky-comparison-container::-webkit-scrollbar {
    height: 8px;
}

.kaspersky-comparison-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.kaspersky-comparison-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.kaspersky-comparison-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}
