/* Special layout for the lemonade menu section */

/* Main container for the lemonade section */
.lemonade-special-layout {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin: 30px 0;
    align-items: center; /* Vertically center the columns */
}

/* Left column with images */
.lemonade-images-column {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Right column with tabular data */
.lemonade-data-column {
    flex: 1;
}

/* Style for each lemonade image container */
.lemonade-image-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Style for lemonade images */
.lemonade-image-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Badge for special lemonades */
.lemonade-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 20px;
    background-color: var(--primary-color, #508d69);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Table styling for lemonade data */
.lemonade-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.lemonade-table tr {
    transition: background-color 0.2s ease;
}

.lemonade-table tr:hover {
    background-color: rgba(80, 141, 105, 0.05);
}

.lemonade-table th {
    background-color: var(--primary-color, #508d69);
    color: white;
    font-weight: 600;
    text-align: left;
    padding: 15px;
}

.lemonade-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.lemonade-table tr:last-child td {
    border-bottom: none;
}

.lemonade-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color, #333);
}

.lemonade-desc {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.lemonade-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color, #508d69);
    text-align: right;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lemonade-special-layout {
        flex-direction: column;
    }
    
    .lemonade-images-column {
        flex: 0 0 auto;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .lemonade-data-column {
        width: 100%;
    }
    
    /* Fejléc elrejtése mobilnézetben */
    .lemonade-table thead {
        display: none;
    }
    
    /* Egyszerűbb megjelenés a limonádé táblázatnak mobilon */
    .lemonade-table {
        font-size: 0.95rem;
    }
    
    .lemonade-table td, .lemonade-table th {
        padding: 10px 8px;
    }
    
    /* Ár fekete színű, közelebb a terméknévhez */
    .lemonade-price {
        color: #333;
        padding-right: 10px; /* Biztosan látszik az ár vége */
        text-align: right;
        width: 90px; /* Fix szélesség, hogy közelebb legyen a névhez */
    }
}
