* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


body {

    font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
        Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue,
        sans-serif;

    background:
    linear-gradient(
        180deg,
        #faf7f0,
        #f3eee4
    );

    color: #222;
    overflow-x:hidden;
}



/* هدر */

.hero {

    height: 330px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    position: relative;

    overflow: hidden;

}
button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
button img{
    width: 24px;
    height: 24px;
    object-fit: contain;
}


/* طرح کوه فوجی */

.mountain {

    font-size: 80px;

    opacity: 0.85;

    animation: float 4s infinite ease-in-out;

}



@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }

}



.logo span {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    background: #c1121f;

    color:white;

    width:65px;

    height:65px;

    border-radius:50%;

    font-size:25px;

    margin-bottom:10px;

}



.logo h1 {

    font-family: "Noto Sans JP", sans-serif;

    font-size:38px;

    letter-spacing:2px;

}



.logo p {

    color:#666;

    margin-top:8px;

}



/* .sakura {

    position:absolute;

    top:30px;

    right:20px;

    font-size:28px;

    opacity:.7;

} */



/* دسته بندی */
/* 
.categories {

    display:flex;

    justify-content:center;

    gap:10px;

    flex-wrap:wrap;

    margin:20px auto;

} */



/* .categories button {

    border:none;

    background:#c1121f;

    color:white;

    padding:12px 18px;

    border-radius:25px;

    cursor:pointer;

    font-family:inherit;

    transition:.3s;

}



.categories button:hover {

    transform:translateY(-3px);

    background:#9b0d17;

} */

.container{
    max-width:1000px;
    margin:auto;
    padding:20px;
}

/* دسته‌ها */
.category{
  margin:40px 0;
  background:rgba(18,18,18,.82);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  overflow:hidden;
  backdrop-filter:blur(8px);
  box-shadow:0 10px 35px rgba(0,0,0,.45);
}   

/* منو */

.category-title{
    background:linear-gradient(90deg,#7f1d1d,#b91c1c);
    padding:18px 24px;
    font-size:1.5rem;
    font-weight:700;
    color:#fff8e7;
    display:flex;
    align-items:center;
    gap:10px;
}

.menu-items{
    padding:10px 0;
}

.item{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    padding:18px 24px;
    border-bottom:1px solid rgba(252, 0, 0, 0.06);
    transition:.3s;
    cursor:pointer;
}

.item:hover{
    background:rgba(255,255,255,.04);
    transform:translateX(-4px);
}

.item:last-child{
    border-bottom:none;
}

.item-info{
    flex:1;
    margin-left:15px;
}

.item-name{
    font-size:1.15rem;
    font-weight:600;
    color:#fff;
    margin-bottom:6px;
}

.item-desc{
    color:#bdbdbd;
    font-size:.92rem;
    line-height:1.6;
}

.price{
    color:#ffd166;
    font-weight:700;
    font-size:1.05rem;
    white-space:nowrap;
    background:rgba(255,209,102,.12);
    padding:8px 14px;
    border-radius:999px;
    border:1px solid rgba(255,209,102,.2);
}

/* نوار ناوبری */
.nav{
    position:sticky;
    top:0;
    z-index:10;
    /* background:rgba(10,10,10,.82); */
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,.08);
    padding:10px 15px;
}

.nav-buttons{
    display:flex;
    gap:10px;
    justify-content:center;
    flex-wrap:wrap;
}

.nav button{
    background:#1f1f1f;
    color:#fff;
    border:1px solid rgba(255,255,255,.1);
    padding:10px 18px;
    border-radius:999px;
    cursor:pointer;
    transition:.3s;
    font-family:inherit;
}

.nav button:hover{
    background:#b91c1c;
    border-color:#b91c1c;
}



/* .card:hover {

    transform:translateY(-5px);

}



.card h2 {

    font-size:22px;

    margin-bottom:12px;

}



.card p {

    color:#666;

    line-height:2;

} */


/* 
.card strong {

    display:block;

    margin-top:15px;

    color:#c1121f;

    font-size:18px;

} */



@keyframes show {

    from {

        opacity:0;

        transform:translateY(20px);

    }

    to {

        opacity:1;

        transform:translateY(0);

    }

}



/* فوتر */

footer {

    text-align:center;

    padding:35px;

    color:#555;

}



footer h3 {

    color:#c1121f;

    font-size:25px;

}



/* موبایل */

@media(max-width:700px){


    .hero {

        height:280px;

    }


    .mountain {

        font-size:65px;

    }


    .logo h1 {

        font-size:30px;

    }

    .item{
        flex-direction: column;
        gap: 12px;
    }
    .price{
        align-self: flex-start;
    }
    /* .categories button {

        padding:10px 14px;

        font-size:14px;

    }
    .categories img{

        width: 16px;
        height: 16px;
        object-fit: contain;
    } */


}