#boltok-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#boltok-table table th, #boltok-table table td {
    border: 1px solid #d2b48c; /* barnás-arany keret */
    padding: 12px 20px;
    text-align: left;
    font-size: 16px;
    color: #4a3c28; /* sötétbarna szöveg */
}

#boltok-table table h3 {
    font-size: 20px;
    font-weight: 700;
    color: #a67c00; /* aranyos cím */
    margin: 10px 0;
}

#boltok-table table tr:nth-child(even) {
    background-color: #f9f5f0; /* világos sor háttér */
}

#boltok-table table tr:hover {
    background-color: #f1e4c9; /* halvány aranyos hover */
    transition: background-color 0.3s ease;
}

#boltok-table table td strong {
    color: #654321; /* kicsit sötétebb barna kiemelés */
    font-weight: 600;
}


/* Főkártya blokk */
.catItemView {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e5d4b1;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin: 30px 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catItemView:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Bal oldali kép */
.catItemImageBlock {
	display: flex;
	flex-direction: column;
	align-items: center;
	align-content: center;
	justify-content: center;
    flex: 0 0 300px;
    max-width: 300px;
    overflow: hidden;
}

.catItemBody{
	display: flex;
	max-width: 1000px;
	flex-direction: row;
	padding:25px;
}

.catItemImage img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Jobb oldali szöveg + táblázat */
.catItemIntroText {
    flex: 1;
    padding: 25px;
}

.catItemIntroText h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: #654321;
    margin-bottom: 15px;
    border-bottom: 2px solid #d2b48c;
    display: inline-block;
    padding-bottom: 5px;
}

.catItemIntroText p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

/* Táblázat stílus */
.catItemIntroText table.producttable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.catItemIntroText table.producttable td {
    padding: 10px 15px;
    border: 1px solid #d2b48c;
    font-size: 15px;
    color: #4a3c28;
    vertical-align: top;
}

.catItemIntroText table.producttable tr:nth-child(even) {
    background-color: #fdf8f2;
}

.catItemIntroText table.producttable td strong {
    color: #a67c00;
}

/* Responsiveness */
@media (max-width: 768px) {
    .catItemView,
    .catItemBody {
        flex-direction: column;
    }

    .catItemImageBlock {
        max-width: 100%;
    }

    .catItemImage img{
    	width:100% !important;
    	height:auto !important;
    }

    .catItemIntroText {
        padding: 15px;
    }
}

.navigation .active a{
	color:#f7bd00 !important;
}

.stroke-gap-icon.icon-Search{
	display:none !important;
}