@font-face {
    font-family: 'vazir';
    font-style: normal;
    font-weight: 100;
    src: url("../fonts/vazir/Vazir.eot");
    src: url("../fonts/vazir/Vazir.woff") format("woff"),
        url("../fonts/vazir/Vazir.woff2") format("woff2");
}

@font-face {
    font-family: 'vazir';
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/vazir/Vazir-Bold.eot");
    src: url("../fonts/vazir/Vazir-Bold.woff") format("woff"),
        url("../fonts/vazir/Vazir-Bold.woff2") format("woff2");
}

body {
    margin: 0;
    font-family: 'vazir';
    background: #000;
    color: white;
    padding-top: 200px;
}

.container {
    max-width: 420px;
    margin: 0 auto;
    /* background-color: #000; */
    background-image: url('../images/pattern-drink-cafe-image_1429002.jpg');
    background-repeat: repeat;
    background-attachment: fixed;
    background-size:contain;

    background-color: rgba(0, 0, 0, 0.8); 
    background-blend-mode: multiply;
    min-height: 100vh;
}


header {
    background-image: url('https://source.unsplash.com/800x600/?coffee-shop');
    /* height: 80px; */
    position: fixed;
    top: 0;
    background-color: #111111;
    max-width: 420px;
    z-index: 9995;
}

header .logo {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 15px;
}

.menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 10px 20px 10px;
    background: #111;
    border-top: 1px solid #424242;
}

.menu-fixed {
    padding: 12px;
    justify-content: start;
    flex-wrap: nowrap;
    transition: all 0.3s ease;
    white-space: nowrap;
    scrollbar-width: none;
    /* برای فایرفاکس */
    -ms-overflow-style: none;
    /* IE */
    
    background-color: #111111;
    overflow-x: auto;
}

.menu::-webkit-scrollbar {
    display: none;
}

.menu button {
    padding: 10px 15px;
    background: #333;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
    white-space: nowrap;
    font-family: 'vazir';
    font-size: 14px;
}

.menu button.active {
    background-color: #ffd700;
    color: black;
}

/* .menu.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid #444;
} */


.products {
    padding: 10px;
}

.product-card {
    background: #181818;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    color: white;
    text-align: right;
    gap: 20px;
    box-shadow: 2px 3px 6px rgba(255,255,255,0.4);
}

.product-card .product-content {
    display: flex;
    flex-direction: row-reverse;

}

.product-card .image-container {
    flex: 0 0 130px;
}

.product-card .img-clmn img {
    width: 130px;
    height: 130px;
    border-radius: 15px;
    object-fit: cover;
}

.product-card .info-clmn {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    padding: 4px 16px;
}

.product-card .title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.product-card .description {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 8px;
}

.product-card .price {
    font-size: 13px;
    color: #ddd;
    margin: 2px 0;
}

/* واکنش‌گرا برای موبایل */
/* @media (max-width: 768px) {
    .product-card {
        flex-direction: row-reverse; 
        padding: 10px;
        gap: 12px;
    }

    .product-card .image-container {
        flex: 0 0 100px;
    }

    .product-card .image-container img {
        width: 100px;
        height: 100px;
    }

    .product-card .title {
        font-size: 16px;
    }

    .product-card .description,
    .product-card .price {
        font-size: 13px;
    }
}   */