.pizza-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.pizza-card {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    background: #fff;
    height: 100%;
    transition: 0.3s;
}

.pizza-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.pizza-img-wrapper img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.pizza-card h4 {
    font-size: 18px;
    margin: 15px 0 5px;
    font-weight: 700;
}

.pizza-price {
    color: #FF7900;
    font-weight: bold;
    font-size: 1.2em;
    margin: 10px 0;
    display: block;
}

.pizza-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.pizza-btn {
    background: #FF7900;
    color: #fff !important;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-top: auto;
}

.pizza-more-wrap {
    text-align: center;
    width: 100%;
    margin: 20px 0 40px;
}

.pizza-more-btn {
    background: #000;
    color: #fff;
    padding: 12px 40px;
    border-radius: 30px;
    cursor: pointer;
    border: none;
    font-weight: bold;
    transition: 0.3s;
}

.pizza-more-btn:hover {
    background: #FF7900;
    transform: scale(1.05);
}

.mrs-store-item {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 5px solid #FF7900;
}

.mrs-store-item h3 { margin: 0 0 5px 0; }
.mrs-store-item p { margin: 0 0 10px 0; }

.view-menu {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .pizza-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    .pizza-img-wrapper img {
        height: 120px;
    }
}