/* =========================
   GOMB STÍLUS
   ========================= */
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.btn {
    background-color: #C94A4A;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* Hover */
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
.btn:hover {
    background-color: #f0ec5f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Active */
button:active,
input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active,
.btn:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Hover override */
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
.btn:hover,
.wp-block-button__link:hover,
.elementor-button:hover {
    background-color: #C94A4A !important;
    color: #000000 !important;
}

/* =========================
   TÖRTÉNETMESÉLŐ BLOKK
   ========================= */
#section-home_landing {
    max-width: 1300px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

/* =========================
   LOGÓ POZÍCIÓ
   ========================= */

/* Desktop */
#section-header .header-left img,
#section-header .header-left a {
    position: relative;
    left: 40px; /* NE 120px, az túl sok */
}


/* =========================
   RESZPONZÍV
   ========================= */

/* Tablet */
@media (max-width: 1024px) {

    #section-home_landing {
        max-width: 95% !important;
    }

    #section-header .header-left img,
    #section-header .header-left a {
        left: 20px;
    }
}

/* Mobil */
@media (max-width: 768px) {

    #section-home_landing {
        max-width: 100% !important;
        padding: 0 15px;
    }

    /* Mobilon NE legyen eltolás */
    #section-header .header-left img,
    #section-header .header-left a {
        left: 0;
    }
}

/* Nagy monitor */
@media (min-width: 1600px) {

    #section-home_landing {
        max-width: 1400px !important;
    }

    #section-header .header-left img,
    #section-header .header-left a {
        left: 50px;
    }
}
/* =========================
   KEDVEZMÉNY % ELTÜNTETÉSE
   ========================= */
.discount-measure__badge {
    display: none !important;
}
/* Termékkártyák kedvezmény %-ának elrejtése */
.product-price__decrease-badge {
    display: none !important;
}
/* Scroll to top gomb ikon */
.scroll-top-button::before {
    content: "↑";
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
}

/* Középre igazítás */
.scroll-top-button {
    display: flex !important;
    align-items: center;
    justify-content: center;
}