.em-menu-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
}

.em-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.em-tab {
    background: #141516;
    border: 1px solid #DAA32A;
    color: #F0D7A4;
    padding: 8px 30px;
    border-radius: 35px;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
    font-weight: bold;
    transition: 0.3s;
}

.em-tab:hover,
.em-tab.active {
    background: #DAA32A;
    color: #000;
}

.em-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

@media (max-width: 900px) {
    .em-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .em-grid {
        grid-template-columns: 1fr;
    }
}

.em-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.em-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.em-price {
    font-family: 'Austen Regular', serif;
    color: #F0D7A4;
    font-size: 2.5rem;
    margin-bottom: 0px;
    line-height: 1.2;
}

.em-title {
    font-family: 'Austen Regular', serif;
    color: #F0D7A4;
    font-size: 2.5rem;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.em-desc {
    font-family: 'Ubuntu', sans-serif;
    color: #ffffff;
    font-size: 1.6rem;
    line-height: 1.6;
}

.em-desc p {
    margin: 0;
}


@media (max-width: 600px) {
    .em-tab {
        padding: 10px 25px !important;
        font-size: 1.2rem;
    }
}

.em-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.em-page-btn {
    background: transparent;
    border: 1px solid #F0D7A4;
    color: #F0D7A4;
    padding: 10px 16px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-width: 40px;
}

.em-page-btn.active {
    background: #F0D7A4;
    color: #000000;
}

.em-page-btn:hover {
    background: #F0D7A4;
    color: #000000;
}