/* === Hero szekció === */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    text-align: center;
    width: 100%;
    clear: both;
    margin-bottom: 30px;
}

.hero h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    margin: 0;
    padding: 20px;
}

/* === Kategória leírás === */
.kategoria-leiras p {
    padding: 10px 20px;
/*    background: #f7f7f7; */
/*    text-align: center; */
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    width: 100%;
    clear: both;
    margin-bottom: 30px;
}

.kategoria-default-leiras p {
    padding: 10px 20px;
    /*    background: #f7f7f7; */
    /*    text-align: center; */
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    width: 100%;
    clear: both;
    margin-bottom: 30px;
    max-width: 800px;
    margin: 0 auto;
}

/* === Galéria szekció (Inspirációk) === */
.galeria {
    padding: 60px 20px;
    background: #ffffff;
    width: 100%;
    clear: both;
    margin-bottom: 30px;
}

.galeria h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.galeria-item {
    width: 100%;
    aspect-ratio: auto;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.galeria-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
    display: block;
    transition: transform 0.3s;
}

.galeria-item img:hover {
    transform: scale(1.05);
}

/* === Galéria képfelirat === */
.galeria-caption {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-top: 8px;
    font-family: 'Poppins', sans-serif;

}

/* === Terméklista === */
.archivum-lista {
    padding: 60px 20px;
/*    background: #f9f9f9; */
    width: 100%;
    clear: both;
}
.archivum-lista h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}
.product-list,
.post-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-list .product,
.post-list article {
    background: #fff;
    padding: 20px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    transition: box-shadow 0.3s;
}

.product-list .product:hover,
.post-list article:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* === Hosszú ACF leírás === */
.acf-long-leiras {
    padding: 60px 20px;
    background: #ffffff;
    text-align: left;
    width: 100%;
    clear: both;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.acf-long-leiras p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

/* Termékkártya dizájn - Marshalls pontosítva paddinggal */
/* Módosítva 2025.05.20. - Régi a \0_Web\0 Kódok-ban */
/* Alap konténer */
/* === Product card dizájn === */
/* KÖLTÖZÖTT: assets/css/components/product-card.css (közös komponens) */


/* Hover állapot */


/* Kattintható link, ha van */


/* Kép konténer és kép */



/* Termékinformációs rész */




/* Akciós címke */



/* Termék ára */


/* Kedvezmény lejárat */


/* === Mobilbarát mód === */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .galeria h2 {
        font-size: 28px;
    }

    .kategoria-leiras p,
    .kategoria-default-leiras p {
        font-size: 16px;
    }
}

.taxonomy-wrapper {
    display: block;
    width: 100%;
    clear: both;
}