body {
          
            font-family: Arial, sans-serif;
            background-color: #f7e6dc;
            margin: 0;
            /* padding: 20px; */
        }
        .Zemato
       {
            margin: 2px;
            padding: 10px;
            background-color: #f72424;
            color: white;
            text-align: center;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.2s;
            width: 100%;
        }
        .category-spaicail
        {
            margin: 5px;
        }

        .s_category {
            border-radius: 10px;
           color: black;
            background-color: #d6b09b;
            text-align: center;
            margin-bottom: 20px;
            margin: 2px;
        }

        .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 2fr));
            gap: 20px;
        }
@media (max-width: 600px) {
    .container {
      
        grid-template-columns: repeat(2, 1fr);
    }
}
        .card {
            background-color: #fff0e6;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
            transition: transform 0.2s;
        }

        .card:hover {
            transform: translateY(-5px);
        }

        .card img {
            border-radius: 10px;
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .card-content {
            padding: 15px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .card-content h3 {
            margin: 0 0 10px 0;
            font-size: 18px;
        }

        .price {
            font-size: 16px;
            margin-bottom: 10px;
        }

        .price span {
            text-decoration: line-through;
            /* color: #888; */
            margin-right: 8px;
        }

        .discount {
            color: green;
            font-weight: bold;
        }

        .add-to-cart {
            margin: 2px;
            padding: 10px;
            background-color: #ff5733;
            color: white;
            text-align: center;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.2s;
            width: 100%;
        }

        .add-to-cart:hover {
            background-color: #e04b2c;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .card img {
                height: 150px;
            }
        }

        @media (max-width: 480px) {
            .card img {
                height: 120px;
            }
        }
        /* half and full */
        .size-box{
    display:flex;
    gap:15px;
    margin:8px 0;
    font-size:14px;
}

.size-box label{
    cursor:pointer;
}

.price{
    font-size:15px;
    margin:5px 0;
}

.old-price{
    text-decoration:line-through;
    color:#888;
    margin-right:6px;
}

.new-price{
    font-weight:600;
    color:#e63946;
}

.discount{
    font-size:13px;
    color:green;
    margin-bottom:8px;
    display:block;
    width: 100%;
}
/* 

/* */
 .food-card{
    height: auto;
    width:100%;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}

.food-card:hover{
    transform:translateY(-6px);
}

.food-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.food-content{
    padding:15px;
    text-align:center;
}

.food-content h3{
    font-size:18px;
    margin-bottom:10px;
}

/* PRICE */
.price-box{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    margin-bottom:15px;
}

.old-price{
    text-decoration:line-through;
    color:#888;
    font-size:14px;
}

.new-price{
    color:#e63946;
    font-size:18px;
    font-weight:600;
}

.discount{
    background:#2ecc71;
    color:#fff;
    font-size:12px;
    padding:3px 6px;
    border-radius:6px;
}

/* BUTTONS */
.btn-group{
    display:flex;
    gap:10px;
}

.btn{
    flex:1;
    padding:8px 0;
    border:none;
    border-radius:8px;
    font-size:14px;
    cursor:pointer;
    color:#fff;
    transition:0.3s;
    width: 100%;
}

.zomato{
    background:#e23744;
}

.swiggy{
    background:#fc8019;
}

.btn:hover{
    opacity:0.85;
}

/* MOBILE RESPONSIVE */
@media(max-width:600px){
    .food-card{
        width:100%;
    }
}

