* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0f0f0f;
    --bg-2: #1a1a1a;
    --surface: rgba(18, 18, 22, 0.92);
    --surface-2: rgba(24, 24, 30, 0.92);
    --text: rgba(255, 255, 255, 0.92);
    --muted: rgba(255, 255, 255, 0.68);
    --muted-2: rgba(255, 255, 255, 0.56);
    --accent: #7c8e21;
    --accent-2: #9aad35;
    --border: rgba(124, 142, 33, 0.22);
    --border-strong: rgba(124, 142, 33, 0.45);
    --glow: rgba(124, 142, 33, 0.35);
    --shadow: rgba(0, 0, 0, 0.65);
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--bg);
    min-height: 100vh;
    padding: 20px;
    direction: rtl;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* خلفية متلألئة (أخضر ليموني/أسود) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 20%, rgba(124, 142, 33, 0.28) 0%, transparent 42%),
        radial-gradient(circle at 20% 70%, rgba(154, 173, 53, 0.16) 0%, transparent 52%),
        radial-gradient(circle at 80% 80%, rgba(88, 102, 28, 0.14) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
    animation: sparkle 20s ease-in-out infinite;
}

/* تأثير الجزيئات المتلألئة */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(124, 142, 33, 0.75), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(154, 173, 53, 0.55), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(88, 102, 28, 0.65), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(124, 142, 33, 0.42), transparent),
        radial-gradient(2px 2px at 90% 40%, rgba(154, 173, 53, 0.5), transparent),
        radial-gradient(1px 1px at 33% 60%, rgba(124, 142, 33, 0.4), transparent),
        radial-gradient(1px 1px at 66% 20%, rgba(154, 173, 53, 0.35), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%, 50% 50%, 0% 50%, 50% 0%;
    pointer-events: none;
    z-index: 0;
    animation: particles 30s linear infinite;
    opacity: 0.6;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes particles {
    0% { background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%, 50% 50%, 0% 50%, 50% 0%; }
    100% { background-position: 100% 100%, 0% 100%, 0% 0%, 100% 0%, 50% 50%, 100% 50%, 50% 100%; }
}

@media (max-width: 480px) {
    body {
        padding: 12px;
    }
}

@media (max-width: 360px) {
    body {
        padding: 8px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    color: var(--text);
    margin-bottom: 50px;
    padding: 40px 0;
    position: relative;
}

.site-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(124, 142, 33, 0.35),
        rgba(154, 173, 53, 0.8),
        rgba(124, 142, 33, 0.35),
        transparent
    );
    box-shadow: 0 0 12px var(--glow);
}

header .brand-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow:
        0 0 16px rgba(124, 142, 33, 0.25),
        0 0 30px rgba(154, 173, 53, 0.14),
        2px 2px 4px rgba(0,0,0,0.8);
    color: #fff;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #dde8c8 35%, #9aad35 70%, #5a6a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    position: relative;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 6px rgba(124, 142, 33, 0.35));
    }
    to {
        filter: drop-shadow(0 0 18px rgba(154, 173, 53, 0.55));
    }
}

/* أيقونات السوشيال ميديا */
.social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 142, 33, 0.08);
    border: 2px solid var(--border-strong);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 18px rgba(0,0,0,0.5), 0 0 0 1px rgba(124, 142, 33, 0.14), inset 0 0 12px rgba(124, 142, 33, 0.08);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.social-icon:hover {
    background: rgba(124, 142, 33, 0.18);
    border-color: rgba(154, 173, 53, 0.85);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 28px rgba(0,0,0,0.6), 0 0 18px rgba(124, 142, 33, 0.35);
    color: #fff;
}

.social-icon:active {
    transform: translateY(-1px) scale(1.05);
}

/* تأثير خاص للإنستجرام */
.social-icon:nth-child(1):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: rgba(188, 24, 136, 0.8);
    color: white;
}

/* تأثير خاص للواتساب */
.social-icon:nth-child(2):hover {
    background: #25D366;
    border-color: rgba(37, 211, 102, 0.8);
    color: white;
}

/* تأثير خاص للموقع */
.social-icon:nth-child(3):hover {
    background: #EA4335;
    border-color: rgba(234, 67, 53, 0.8);
    color: white;
}

.admin-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: rgba(124, 142, 33, 0.10);
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid var(--border);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    -webkit-tap-highlight-color: transparent;
}

.admin-link:hover {
    background: rgba(124, 142, 33, 0.16);
    transform: translateY(-2px);
}

.admin-link:active {
    transform: scale(0.98);
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    color: var(--muted);
}

@media (max-width: 768px) {
    header {
        margin-bottom: 25px;
        padding: 20px 0;
    }
    
    header .brand-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .social-media {
        gap: 15px;
        margin-top: 15px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .admin-link {
        margin-top: 12px;
        padding: 9px 18px;
        font-size: 0.9rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    header {
        margin-bottom: 20px;
        padding: 18px 0;
    }
    
    header .brand-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .social-media {
        gap: 12px;
        margin-top: 12px;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .admin-link {
        margin-top: 10px;
        padding: 8px 16px;
        font-size: 0.85rem;
        border-width: 1.5px;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    header {
        margin-bottom: 18px;
        padding: 15px 0;
    }
    
    header .brand-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .social-media {
        gap: 10px;
        margin-top: 10px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .admin-link {
        margin-top: 8px;
        padding: 7px 14px;
        font-size: 0.8rem;
    }
}

.search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-bar input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border);
    border-radius: 25px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    background: rgba(10, 10, 12, 0.72);
    color: var(--text);
    box-shadow: 0 8px 26px rgba(0,0,0,0.55), inset 0 0 12px rgba(124, 142, 33, 0.06);
    outline: none;
    backdrop-filter: blur(10px);
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.55);
    opacity: 0.8;
}

.search-bar input:focus {
    border-color: rgba(154, 173, 53, 0.9);
    box-shadow: 0 10px 30px rgba(0,0,0,0.65), 0 0 0 3px rgba(124, 142, 33, 0.18);
}

.search-bar button {
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    border: 2px solid rgba(154, 173, 53, 0.55);
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #0b0b0d;
    box-shadow: 0 10px 28px rgba(0,0,0,0.55), 0 0 18px rgba(124, 142, 33, 0.22);
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    min-width: 50px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .search-bar {
        margin-bottom: 20px;
        gap: 8px;
    }
    
    .search-bar input {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .search-bar button {
        padding: 12px 20px;
        font-size: 1.1rem;
        min-width: 45px;
    }
}

@media (max-width: 480px) {
    .search-bar {
        margin-bottom: 15px;
        gap: 6px;
    }
    
    .search-bar input {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .search-bar button {
        padding: 10px 16px;
        font-size: 1rem;
        min-width: 40px;
    }
}

.search-bar button:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #88992e 0%, #b0c85a 100%);
    box-shadow: 0 14px 36px rgba(0,0,0,0.6), 0 0 24px rgba(124, 142, 33, 0.30);
}

.categories {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 15px;
    margin-bottom: 40px;
    padding: 0 5px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(124, 142, 33, 0.35) transparent;
}

.categories::-webkit-scrollbar {
    height: 6px;
}

.categories::-webkit-scrollbar-track {
    background: transparent;
}

.categories::-webkit-scrollbar-thumb {
    background: rgba(124, 142, 33, 0.35);
    border-radius: 3px;
}

.categories::-webkit-scrollbar-thumb:hover {
    background: rgba(124, 142, 33, 0.55);
}

.category-btn {
    padding: 12px 25px;
    background: rgba(124, 142, 33, 0.08);
    color: rgba(255, 255, 255, 0.86);
    border: 2px solid var(--border);
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px rgba(0,0,0,0.55), inset 0 0 12px rgba(124, 142, 33, 0.06);
}

@media (max-width: 768px) {
    .categories {
        gap: 10px;
        margin-bottom: 25px;
        padding: 0 0 5px 0;
        justify-content: flex-start;
    }
    
    .category-btn {
        padding: 11px 18px;
        font-size: 0.9rem;
        min-height: 42px;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .categories {
        gap: 8px;
        margin-bottom: 22px;
        justify-content: flex-start;
        padding: 0 0 8px 0;
    }
    
    .category-btn {
        padding: 10px 16px;
        font-size: 0.875rem;
        border-width: 1.5px;
        min-height: 40px;
        flex-shrink: 0;
    }
}

@media (max-width: 360px) {
    .categories {
        gap: 6px;
        margin-bottom: 20px;
        padding: 0 0 6px 0;
    }
    
    .category-btn {
        padding: 9px 14px;
        font-size: 0.8rem;
        min-height: 38px;
        flex-shrink: 0;
    }
}

.category-btn:hover {
    background: rgba(124, 142, 33, 0.16);
    border-color: rgba(154, 173, 53, 0.75);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.65), 0 0 20px rgba(124, 142, 33, 0.22);
    color: #fff;
}

.category-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .category-btn {
        -webkit-tap-highlight-color: transparent;
    }
    
    .category-btn:active {
        transform: scale(0.95);
    }
}

.category-btn.active {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: #0b0b0d;
    border-color: rgba(154, 173, 53, 0.9);
    box-shadow: 0 18px 40px rgba(0,0,0,0.65), 0 0 0 1px rgba(124, 142, 33, 0.25), inset 0 2px 4px rgba(255,255,255,0.18);
    font-weight: 700;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
    padding-bottom: 20px;
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
        padding-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .menu-grid {
        gap: 18px;
        margin-top: 18px;
        padding-bottom: 10px;
    }
}

@media (max-width: 360px) {
    .menu-grid {
        gap: 15px;
        margin-top: 15px;
    }
}

.menu-item {
    background: var(--surface);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 18px 44px rgba(0,0,0,0.65),
        0 0 0 1px rgba(124, 142, 33, 0.12);
    border: 2px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    will-change: transform;
    position: relative;
    backdrop-filter: blur(10px);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(124, 142, 33, 0.9), rgba(154, 173, 53, 0.65));
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0 0 14px rgba(124, 142, 33, 0.4);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 22px 60px rgba(0,0,0,0.75),
        0 0 28px rgba(124, 142, 33, 0.22);
    border-color: rgba(154, 173, 53, 0.55);
}

.menu-item:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .menu-item {
        border-radius: 16px;
        box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    }
    
    .menu-item:active {
        transform: translateY(-1px) scale(0.98);
        box-shadow: 0 4px 8px rgba(0,0,0,0.25);
    }
}

@media (max-width: 480px) {
    .menu-item {
        border-radius: 14px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }
    
    .menu-item:active {
        transform: scale(0.98);
    }
}

@media (max-width: 360px) {
    .menu-item {
        border-radius: 12px;
    }
}

.menu-item-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #0b0b0d 0%, #171720 50%, #0b0b0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 34px rgba(124, 142, 33, 0.12);
}

.menu-item-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(124, 142, 33, 0.14) 0%, transparent 72%);
    pointer-events: none;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.menu-item-image-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .menu-item-image {
        height: 180px;
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .menu-item-image {
        height: 160px;
        font-size: 3.2rem;
    }
}

@media (max-width: 360px) {
    .menu-item-image {
        height: 140px;
        font-size: 2.8rem;
    }
}

.menu-item-content {
    padding: 20px;
    background: rgba(11, 11, 13, 0.20);
}

@media (max-width: 480px) {
    .menu-item-content {
        padding: 16px;
    }
}

@media (max-width: 360px) {
    .menu-item-content {
        padding: 14px;
    }
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
    gap: 10px;
}

.menu-item-name {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #dde8c8 40%, #9aad35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex: 1;
    line-height: 1.4;
    word-break: break-word;
    text-shadow: 0 0 14px rgba(124, 142, 33, 0.14);
}

.menu-item-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #b0c85a 0%, #7c8e21 60%, #5a6a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 10px;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
}

.menu-item-price::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(124, 142, 33, 0.85), transparent);
    box-shadow: 0 0 8px rgba(124, 142, 33, 0.35);
}

.menu-item-description {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    word-break: break-word;
}

@media (max-width: 768px) {
    .menu-item-header {
        margin-bottom: 9px;
        gap: 8px;
    }
    
    .menu-item-name {
        font-size: 1.2rem;
        line-height: 1.35;
    }
    
    .menu-item-price {
        font-size: 1.3rem;
        margin-right: 8px;
    }
    
    .menu-item-description {
        font-size: 0.9rem;
        line-height: 1.55;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .menu-item-header {
        margin-bottom: 8px;
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .menu-item-name {
        font-size: 1.15rem;
        line-height: 1.3;
        width: 100%;
    }
    
    .menu-item-price {
        font-size: 1.25rem;
        margin-right: 0;
        margin-top: 2px;
    }
    
    .menu-item-description {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }
}

@media (max-width: 360px) {
    .menu-item-header {
        margin-bottom: 7px;
    }
    
    .menu-item-name {
        font-size: 1.05rem;
    }
    
    .menu-item-price {
        font-size: 1.15rem;
    }
    
    .menu-item-description {
        font-size: 0.8rem;
        margin-bottom: 9px;
    }
}

.menu-item-category {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(124, 142, 33, 0.10);
    border-radius: 15px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--border);
    font-weight: 500;
    box-shadow: 0 10px 24px rgba(0,0,0,0.45), inset 0 0 10px rgba(124, 142, 33, 0.05);
}

@media (max-width: 480px) {
    .menu-item-category {
        padding: 4px 10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .menu-item-category {
        padding: 3px 9px;
        font-size: 0.75rem;
    }
}

.menu-item.hidden {
    display: none;
}

/* تحسينات إضافية للهواتف */
@media (max-width: 480px) {
    /* تحسين التمرير السلس */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* تحسين الأداء */
    * {
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    }
    
    /* منع التكبير عند النقر المزدوج */
    * {
        touch-action: manipulation;
    }
}

/* تحسين عرض الرسائل الفارغة */
.menu-grid > div[style*="grid-column"] {
    padding: 50px 20px !important;
    font-size: 1.2rem !important;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .menu-grid > div[style*="grid-column"] {
        padding: 40px 15px !important;
        font-size: 1.1rem !important;
    }
}

/* ==== Da Vinci Cafe theme override ==== */
:root {
    --bg: #070707;
    --bg-2: #14100f;
    --surface: rgba(28, 20, 16, 0.92);
    --surface-2: rgba(38, 27, 22, 0.92);
    --text: rgba(255, 241, 232, 0.96);
    --muted: rgba(255, 223, 205, 0.78);
    --muted-2: rgba(255, 211, 189, 0.64);
    --accent: #f25a2a;
    --accent-2: #ff7b42;
    --border: rgba(242, 90, 42, 0.28);
    --border-strong: rgba(255, 123, 66, 0.52);
    --glow: rgba(242, 90, 42, 0.38);
    --shadow: rgba(0, 0, 0, 0.68);
}

body {
    background: radial-gradient(circle at 50% -20%, rgba(242, 90, 42, 0.08), transparent 45%), var(--bg);
}

body::before {
    background:
        radial-gradient(circle at 50% 20%, rgba(242, 90, 42, 0.26) 0%, transparent 42%),
        radial-gradient(circle at 20% 70%, rgba(255, 123, 66, 0.18) 0%, transparent 52%),
        radial-gradient(circle at 80% 80%, rgba(179, 76, 37, 0.15) 0%, transparent 55%);
}

body::after {
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(242, 90, 42, 0.75), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 123, 66, 0.55), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(179, 76, 37, 0.65), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(242, 90, 42, 0.42), transparent),
        radial-gradient(2px 2px at 90% 40%, rgba(255, 123, 66, 0.5), transparent),
        radial-gradient(1px 1px at 33% 60%, rgba(242, 90, 42, 0.4), transparent),
        radial-gradient(1px 1px at 66% 20%, rgba(255, 123, 66, 0.35), transparent);
}

header::before {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(242, 90, 42, 0.35),
        rgba(255, 123, 66, 0.9),
        rgba(242, 90, 42, 0.35),
        transparent
    );
}

header .brand-title {
    text-shadow:
        0 0 16px rgba(242, 90, 42, 0.25),
        0 0 30px rgba(255, 123, 66, 0.16),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #fff7f2 0%, #ffd9c3 45%, #ff8b57 72%, #d75628 100%);
}

.social-icon {
    background: rgba(242, 90, 42, 0.1);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(242, 90, 42, 0.2), inset 0 0 12px rgba(242, 90, 42, 0.1);
}

.social-icon:hover {
    background: rgba(242, 90, 42, 0.2);
    border-color: rgba(255, 123, 66, 0.9);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.6), 0 0 18px rgba(242, 90, 42, 0.34);
}

.admin-link {
    background: rgba(242, 90, 42, 0.1);
}

.admin-link:hover {
    background: rgba(242, 90, 42, 0.18);
}

.search-bar input {
    background: rgba(13, 10, 9, 0.76);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.55), inset 0 0 12px rgba(242, 90, 42, 0.08);
}

.search-bar input::placeholder {
    color: rgba(255, 222, 203, 0.65);
}

.search-bar input:focus {
    border-color: rgba(255, 123, 66, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65), 0 0 0 3px rgba(242, 90, 42, 0.18);
}

.search-bar button {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    border-color: rgba(255, 123, 66, 0.65);
    color: #1f110a;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55), 0 0 18px rgba(242, 90, 42, 0.24);
}

.search-bar button:hover {
    background: linear-gradient(135deg, #ff6f3a 0%, #ff935f 100%);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.62), 0 0 24px rgba(242, 90, 42, 0.32);
}

.categories {
    scrollbar-color: rgba(242, 90, 42, 0.4) transparent;
}

.categories::-webkit-scrollbar-thumb {
    background: rgba(242, 90, 42, 0.4);
}

.categories::-webkit-scrollbar-thumb:hover {
    background: rgba(242, 90, 42, 0.58);
}

.category-btn {
    background: rgba(242, 90, 42, 0.09);
    color: rgba(255, 239, 229, 0.9);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.55), inset 0 0 12px rgba(242, 90, 42, 0.08);
}

.category-btn:hover {
    background: rgba(242, 90, 42, 0.18);
    border-color: rgba(255, 123, 66, 0.8);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.65), 0 0 20px rgba(242, 90, 42, 0.24);
}

.category-btn.active {
    color: #2a140a;
    border-color: rgba(255, 123, 66, 0.9);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(242, 90, 42, 0.32), inset 0 2px 4px rgba(255, 245, 239, 0.2);
}

.menu-item {
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(242, 90, 42, 0.14);
}

.menu-item::before {
    background: linear-gradient(90deg, rgba(242, 90, 42, 0.9), rgba(255, 123, 66, 0.65));
    box-shadow: 0 0 14px rgba(242, 90, 42, 0.4);
}

.menu-item:hover {
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.75),
        0 0 28px rgba(242, 90, 42, 0.24);
    border-color: rgba(255, 123, 66, 0.62);
}

.menu-item-image {
    background: linear-gradient(135deg, #140c0a 0%, #2b1812 50%, #140c0a 100%);
    box-shadow: inset 0 0 34px rgba(242, 90, 42, 0.14);
}

.menu-item-image::after {
    background: radial-gradient(circle at center, rgba(242, 90, 42, 0.16) 0%, transparent 72%);
}

.menu-item-content {
    background: rgba(17, 11, 9, 0.25);
}

.menu-item-name {
    background: linear-gradient(135deg, #fff7f2 0%, #ffd9c3 42%, #ff8b57 100%);
    text-shadow: 0 0 14px rgba(242, 90, 42, 0.14);
}

.menu-item-price {
    background: linear-gradient(135deg, #ffd1b4 0%, #ff7b42 62%, #c44922 100%);
}

.menu-item-price::after {
    background: linear-gradient(90deg, rgba(242, 90, 42, 0.9), transparent);
    box-shadow: 0 0 8px rgba(242, 90, 42, 0.36);
}

.menu-item-category {
    background: rgba(242, 90, 42, 0.11);
    color: rgba(255, 236, 223, 0.86);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45), inset 0 0 10px rgba(242, 90, 42, 0.08);
}

.site-footer {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}

.cache-btn {
    color: rgba(255, 243, 234, 0.92);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 15px;
    background: rgba(242, 90, 42, 0.12);
    border: 1px solid rgba(242, 90, 42, 0.4);
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45), inset 0 0 10px rgba(242, 90, 42, 0.08);
}

.cache-btn:hover {
    background: rgba(242, 90, 42, 0.2);
    border-color: rgba(255, 123, 66, 0.62);
    transform: translateY(-2px);
}

/* ==== Clean refinement override ==== */
body::before {
    animation: none;
    opacity: 0.55;
}

body::after {
    display: none;
}

header {
    margin-bottom: 36px;
    padding: 28px 0 10px;
}

header::before {
    width: 48%;
    height: 1px;
    box-shadow: none;
    opacity: 0.75;
}

header .brand-title {
    font-size: 2.6rem;
    margin-bottom: 18px;
    letter-spacing: 0;
    animation: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: none;
    color: #ffd8bf;
    -webkit-text-fill-color: #ffd8bf;
}

.social-media {
    gap: 14px;
}

.social-icon {
    width: 46px;
    height: 46px;
    border-width: 1px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.42);
}

.social-icon:hover {
    transform: translateY(-2px);
}

.categories {
    gap: 10px;
    margin-bottom: 28px;
}

.category-btn {
    padding: 10px 18px;
    border-width: 1px;
    font-size: 0.93rem;
    box-shadow: none;
}

.category-btn:hover {
    transform: translateY(-1px);
    box-shadow: none;
}

.category-btn.active {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.32);
}

.menu-grid {
    gap: 20px;
    margin-top: 20px;
}

.menu-item {
    background: #1b120f;
    border-width: 1px;
    border-color: rgba(255, 130, 78, 0.28);
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.34);
}

.menu-item::before {
    display: none;
}

.menu-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 130, 78, 0.5);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.42);
}

.menu-item-image,
.menu-item-image-img {
    height: 200px;
    border-bottom: 1px solid rgba(255, 130, 78, 0.2);
}

.menu-item-image {
    background: linear-gradient(160deg, #261712 0%, #1a110e 100%);
    box-shadow: none;
}

.menu-item-image::after {
    display: none;
}

.menu-item-content {
    background: #1b120f;
    padding: 14px 14px 16px;
}

.menu-item-header {
    align-items: center;
    margin-bottom: 8px;
}

.menu-item-name {
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.45;
    color: #ffe4d2;
    background: none;
    -webkit-text-fill-color: #ffe4d2;
    text-shadow: none;
}

.menu-item-price {
    font-size: 1rem;
    font-weight: 700;
    color: #231109;
    background: #ff8b57;
    -webkit-text-fill-color: #231109;
    border-radius: 999px;
    padding: 5px 10px;
    line-height: 1;
    margin-right: 0;
}

.menu-item-price::after {
    display: none;
}

.menu-item-description {
    color: rgba(255, 228, 210, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.menu-item-category {
    background: rgba(255, 139, 87, 0.12);
    color: rgba(255, 226, 205, 0.9);
    border-width: 1px;
    border-color: rgba(255, 139, 87, 0.25);
    font-size: 0.78rem;
    padding: 4px 10px;
    box-shadow: none;
}

.cache-btn {
    border-width: 1px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
    header .brand-title {
        font-size: 2rem;
    }

    .menu-item-image,
    .menu-item-image-img {
        height: 175px;
    }

    .menu-item-content {
        padding: 12px 12px 14px;
    }

    .menu-item-name {
        font-size: 1rem;
    }

    .menu-item-price {
        font-size: 0.92rem;
    }
}
