body{
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden; 
    background:#111815;
    margin:0;
    font-family: IRANSans, sans-serif;
    color:white;
    background-size: cover;        
        background-repeat: no-repeat;   
         background-position: center;     
                
          padding: 0;

}

/* انیمیشن پرچمی */
#meh{
    margin-top: 5px;
    font-size:42px;
    text-align:center;
    color:#36d67a;
    margin:30px 0;
    animation: mehWave 1.8s infinite ease-in-out;
    font-weight:bold;
}
@keyframes mehWave{
    0%{ transform:rotate(0deg);}
    30%{ transform:rotate(2deg);}
    60%{ transform:rotate(-2deg);}
    100%{ transform:rotate(0deg);}
}
/* آویز قهوه */
#meh::before{
    content: "💚🦢";
    position: absolute;
    top: calc(1% + 50px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 26px;
    color: #36d67a;
    animation: swing 2.3s ease-in-out infinite;
}
@keyframes swing{
    0%   { transform: translateX(-50%) rotate(8deg); }
    50%  { transform: translateX(-50%) rotate(-8deg); }
    100% { transform: translateX(-50%) rotate(8deg); }
}


/* عنوان دسته‌ها */
.menu-section h2{
    text-align: center;
    font-size:30px;
    color:#18e872;
    margin:20px 20px 20px 20px;
    padding-right:10px;
}


/* جدول آیتم‌ها */
.table{
   
    margin: 0 auto;
     width: 90%;
     max-width: 500px;
    border:4px solid #122e0a;
    border-radius:20px;
    overflow:hidden;
    background:#1a2421;
}

.row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:2px solid #021708; /* ضخیم شدن خط */
    padding:15px 0;
}


/* خط سبز بین آیتم‌ها */
.row:not(:last-child){
    border-bottom:0.1px solid #1e4430;
}

/* اسم */
.name{
    font-family: IRANSans, sans-serif;
    font-weight: bold;
    flex:1;
    text-align:right;
    font-size:18px;
    color:#e5e5e5;
    margin-right:35px;
    min-width: 60px;
}

/* قیمت */
.price{
    font-size:18px;
    margin-left:35px;
    color:#36d67a;
    font-weight:bold;
    min-width:60px;
    text-align:left;
}
/* بخش زیر عنوان */
.sub-header{
    text-align:center;
    margin-top:-5px;
}

.sub-header .coffee{
    color:#ffffff;   /* سفید مثل خواسته‌ت */
    font-size:17px;
    display:inline-block;
}
.footer{
    width: 100%;
    background: #111;
    color: #eee;
    text-align: center;
    padding: 30px 10px;
    margin-top: 40px;
    border-top: 2px solid #444;
}

.footer-title{
    font-size: 22px;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.footer-text{
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
}

.footer-social{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.social-item{
    color: #eee;
    text-decoration: none;  
    border-bottom: 1px solid transparent;
    transition: 0.3s;
    font-weight: bold;
    font-size: 16px;
    margin: 0 10px;
}

.social-item:hover{
    color: #00ffaa;
    border-bottom: 1px solid #00ffaa;
}

.footer-copy{
    font-size: 12px;
    color: #777;
    margin-top: 10px;
}

@media(max-width: 600px){
    .footer{
        padding: 25px 5px;
    }
    
    .social-item{
        font-size: 13px;
    }
}

/* رنگ هرکدام */
.instagram {
    color: #ff2fab; /* صورتی */
}

.telegram {
    color: #0088cc; /* آبی تلگرام */
}

.whatsapp {
    color: #25d366; /* سبز واتساپ */
}

.rubika {
   color:  #f35c5c;
}


@media (max-width: 480px) {
    .table {
        padding: 15px;
        font-size: 0.9rem;



        }}
        header{
            background:#1a2421
;
 width: 100%;
    
    padding: 20px;
    box-sizing: border-box;
        }