/* Food Menu Styles */
.food-menu-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Category Filter Dropdown */
.food-category-filter-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e5e5e5;
}

.food-category-filter-wrapper label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.food-category-select {
    padding: 10px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease;
    min-width: 200px;
}

.food-category-select:hover,
.food-category-select:focus {
    border-color: #8bc34a;
    outline: none;
}

/* Results Count */
.food-results-count {
    margin-bottom: 25px;
    font-size: 16px;
    color: #666;
    text-align: right;
}

/* Products List */
.food-menu-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

/* Individual Food Item */
.food-item {
    display: grid;
    grid-template-columns: 200px 1fr 260px;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    transition: all 0.3s ease;
    align-items: start;
}

.food-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-color: #d0d0d0;
}

/* Product Image */
.food-image-wrapper {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
    background: #f8f8f8;
}

.food-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.food-image-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
}

.food-image-wrapper a:focus {
    outline: 2px solid #8bc34a;
    outline-offset: 2px;
}

.food-item:hover .food-image {
    transform: scale(1.05);
}

/* Product Details */
.food-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.food-title {
    font-size: 22px;
font-family: var(--gp-font--zalando-sans-expanded);
font-weight:500;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.3;
    text-transform: uppercase;
}

.veg-badge {
    width: 18px;
    height: 18px;
    border: 2px solid #4caf50;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.veg-badge::after {
    content: '';
    width: 7px;
    height: 7px;
    background: #4caf50;
    border-radius: 50%;
}

.food-description {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Tags */
.food-tags {
    display: none;
}

.food-tag {
    display: none;
}

/* Product Options & Price Section */
.food-options-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Variations */
.food-variations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.food-variation-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.food-variation-group label {
    font-size: 11px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.food-variation-select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.food-variation-select:hover,
.food-variation-select:focus {
    border-color: #8bc34a;
    outline: none;
}

/* Quantity */
.food-quantity-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.food-quantity-wrapper label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quantity & Add Button Row */
.quantity-add-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 6px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-weight: 600;
    color: #666;
    flex-shrink: 0;
}

.qty-btn:hover {
    border-color: #8bc34a;
    color: #8bc34a;
    background: #f8fff0;
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-input {
    width: 62px;
    height: 32px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.qty-input:focus {
    outline: none;
    border-color: #8bc34a;
}

/* Price */
.food-price-wrapper {
    padding: 0 0 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.food-price {
    font-size: 26px;
    font-weight: 700;
    color: #8bc34a;
}

.food-price .woocommerce-Price-amount {
    font-size: 26px;
}

/* Add to Cart Button */
.food-add-to-cart {
    padding: 8px 20px;
    background: #8bc34a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    height: 32px;
}

.food-add-to-cart:hover {
    background: #7cb342;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 195, 74, 0.3);
}

.food-add-to-cart:active {
    transform: translateY(0);
}

.food-add-to-cart:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.food-add-to-cart.adding {
    background: #ff9800;
}

.food-add-to-cart.added {
    background: #4caf50;
}

/* No Products Message */
.food-no-products {
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: #999;
}

/* Pagination */
.food-pagination {
    margin-top: 40px;
    text-align: center;
}

.food-pagination .page-numbers {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.food-pagination .page-numbers li {
    display: inline-block;
}

.food-pagination a,
.food-pagination span {
    display: inline-block;
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.food-pagination a:hover {
    border-color: #8bc34a;
    color: #8bc34a;
    background: #f8fff0;
}

.food-pagination .current {
    background: #8bc34a;
    color: #fff;
    border-color: #8bc34a;
}

.food-pagination .prev,
.food-pagination .next {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .food-item {
        grid-template-columns: 180px 1fr 280px;
        gap: 20px;
        padding: 20px;
    }
    
    .food-image-wrapper {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .food-menu-wrapper {
        padding: 30px 15px;
    }
    
    .food-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .food-image-wrapper {
        height: 200px;
    }
    
    .food-options-wrapper {
        max-width: 100%;
    }
    
    .food-category-filters {
        gap: 8px;
    }
    
    .food-cat-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .food-results-count {
        text-align: center;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .food-title {
font-family: var(--gp-font--zalando-sans-expanded);
font-weight:500;
        font-size: 18px;
    text-transform: uppercase;
    }
    
    .food-description {
        font-size: 14px;
    }
    
    .food-price {
        font-size: 22px;
    }
}

.food-description-short {
    display: none;
}

@media (max-width: 1024px) {
    .food-description-long {
        display: none;
    }
    
    .food-description-short {
        display: block;
    }
}

/* Informational Panel Styling for Food Menu */
.food-item.food-info-panel {
    background: #efd394 !important;
border: 2px solid #edb025 !important;
    padding: 30px !important;
    display: block !important;
}

.food-item.food-info-panel-two{
	    background: #b9e8c0 !important;
border: 2px solid #79bb83 !important;
    padding: 30px !important;
    display: block !important;
}







.food-item.food-info-panel .food-image-wrapper {
    display: none !important;
}

.food-item.food-info-panel .food-options-wrapper {
    display: none !important;
}

.food-item.food-info-panel .food-details {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
}

.food-item.food-info-panel .food-title {
font-family: var(--gp-font--zalando-sans-expanded);
    font-size: 22px;
    font-weight: 500;
    text-align: center !important;
    text-transform: uppercase;
    margin-bottom: 15px;
    width: 100% !important;
}

.food-item.food-info-panel .food-description {
    text-align: justify !important;
    line-height: 1.6;
    font-size: 15px;
    width: 100% !important;
color:#000000!important;
font-weight: 500;
}

/* Out of stock button styling */
.food-add-to-cart:disabled,
.food-add-to-cart.out-of-stock {
    background-color: #cccccc !important;
    color: #666666 !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

.food-add-to-cart:disabled:hover,
.food-add-to-cart.out-of-stock:hover {
    background-color: #cccccc !important;
}
