.menu-item-card-premium {
    background: transparent;
    transition: transform 0.3s ease;
    padding-bottom: 15px;
}

.menu-item-card-premium:hover {
    transform: translateY(-8px);
}

.item-image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #c5b358;
    padding: 5px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 180px;
}

.item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.item-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdfaf5;
    color: #c5b358;
    font-size: 2.5rem;
    border-radius: 50%;
}

.item-name {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1d2750;
    margin-bottom: 10px;
}

.item-divider {
    width: 40px;
    height: 2px;
    background: #c5b358;
    margin: 0 auto;
    opacity: 0.6;
}

.text-gold {
    color: #c5b358;
}

.category-separator {
    position: relative;
}

.category-separator::before,
.category-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: rgba(197, 179, 88, 0.3);
}

.category-separator::before {
    left: 10%;
}

.category-separator::after {
    right: 10%;
}

@media (max-width: 768px) {
    .page-banner-title {
        font-size: 2.2rem;
    }

    .royal-card-integrated {
        padding: 40px 15px !important;
    }

    .royal-title-clean {
        font-size: 32px;
    }

    .item-image-wrapper {
        max-width: 140px;
    }

    .item-name {
        font-size: 0.95rem;
    }
}