/* ==================== DISH OF THE DAY SECTION ==================== */
.dish-of-day-section {
    background: linear-gradient(135deg, #1A1A1A 0%, #2d2d2d 100%);
    padding: 60px 0;
}

.section-title {
    font-family: "Fjalla One", serif;
    font-size: 42px;
    font-weight: 700;
    color: #1A1A1A;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.dish-of-day-section .section-title {
    color: #fff;
}

.section-subtitle {
    font-family: "Caveat Brush", serif;
    font-size: 20px;
    color: #666;
    margin-bottom: 20px;
}

.dish-of-day-section .section-subtitle {
    color: #D9D9D9;
}

.dish-of-day-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.dish-of-day-card:hover {
    transform: translateY(-5px);
}

.dish-of-day-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.dish-of-day-body {
    padding: 30px;
}

.badge-category {
    display: inline-block;
    background-color: #7D3131;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.dish-of-day-title {
    font-family: "Fjalla One", serif;
    font-size: 32px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.dish-of-day-unit {
    font-family: "Caveat Brush", serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.dish-of-day-description {
    font-family: "Caveat Brush", serif;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.dish-of-day-accompaniment {
    font-family: "Caveat Brush", serif;
    font-size: 16px;
    color: #555;
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.dish-of-day-price {
    margin-bottom: 25px;
    padding: 15px;
    background: linear-gradient(135deg, #7D3131 0%, #a04141 100%);
    border-radius: 10px;
    text-align: center;
}

.price-label {
    font-family: "Caveat Brush", serif;
    font-size: 18px;
    color: white;
    display: block;
    margin-bottom: 5px;
}

.price-value {
    font-family: "Fjalla One", serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
}

.btn-order-now {
    display: inline-block;
    width: 100%;
    background: linear-gradient(135deg, #1A1A1A 0%, #2d2d2d 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-family: "Fjalla One", serif;
    font-size: 18px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

.btn-order-now:hover {
    background: linear-gradient(135deg, #2d2d2d 0%, #1A1A1A 100%);
    color: white;
    transform: scale(1.02);
}

/* ==================== PRODUCTS SECTION ==================== */
.products-section {
    background-color: #f8f9fa;
    min-height: 100vh;
}

/* ==================== FILTER SECTION ==================== */
.filter-section {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.filter-container {
    position: relative;
}

.filter-header {
    font-family: "Fjalla One", serif;
    font-size: 22px;
    color: #1A1A1A;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.filter-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.filter-checkbox {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.filter-checkbox:hover {
    background: #e9ecef;
}

.filter-checkbox .form-check-input {
    margin-right: 10px;
    cursor: pointer;
}

.filter-checkbox .form-check-input:checked {
    background-color: #7D3131;
    border-color: #7D3131;
}

.filter-checkbox .form-check-label {
    font-family: "Caveat Brush", serif;
    font-size: 16px;
    color: #333;
    cursor: pointer;
}

.product-count {
    color: #999;
    font-size: 14px;
}

.btn-clear-filters {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: linear-gradient(145deg, #dc3545 0%, #c82333 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-family: "Fjalla One", serif;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3);
}

.btn-clear-filters:hover {
    background: linear-gradient(145deg, #c82333 0%, #bd2130 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

/* ==================== PRODUCT CARDS ==================== */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.product-card:hover .product-image {
    transform: scale(1.1);
}

.badge-chef {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1A1A1A;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.badge-discount {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.product-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-family: "Caveat Brush", serif;
    font-size: 14px;
    color: #7D3131;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-title {
    font-family: "Fjalla One", serif;
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
    line-height: 1.2;
}

.product-unit {
    font-family: "Caveat Brush", serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.product-description {
    font-family: "Caveat Brush", serif;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
}

.product-accompaniment {
    font-family: "Caveat Brush", serif;
    font-size: 14px;
    color: #555;
    background-color: #f8f9fa;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.product-footer {
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
    margin-top: auto;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.price-original {
    font-family: "Caveat Brush", serif;
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.price-final {
    font-family: "Fjalla One", serif;
    font-size: 28px;
    font-weight: 700;
    color: #7D3131;
}

/* ==================== NO PRODUCTS MESSAGE ==================== */
.no-products-message {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.no-products-message i {
    color: #ccc;
}

.no-products-message h3 {
    font-family: "Fjalla One", serif;
    font-size: 28px;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.no-products-message p {
    font-family: "Caveat Brush", serif;
    font-size: 18px;
    color: #666;
}

/* ==================== PAGINATION ==================== */
.pagination-container {
    margin-top: 40px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.pagination .page-item .page-link {
    background: linear-gradient(145deg, #7D3131 0%, #a04141 100%);
    border: none;
    color: white;
    padding: 12px 20px;
    font-family: "Fjalla One", serif;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 12px;
    min-width: 50px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(125, 49, 49, 0.3);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(145deg, #1A1A1A 0%, #2d2d2d 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.pagination .page-item.disabled .page-link {
    background: linear-gradient(145deg, #e9ecef 0%, #dee2e6 100%);
    color: #6c757d;
    cursor: not-allowed;
    box-shadow: none;
}

.pagination .page-item .page-link:hover:not(.disabled):not(.active) {
    background: linear-gradient(145deg, #a04141 0%, #7D3131 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(125, 49, 49, 0.4);
}

.pagination-info {
    font-family: "Caveat Brush", serif;
    font-size: 18px;
    color: #555;
    font-weight: 600;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 40px 0;
}

.cta-card {
    background: linear-gradient(135deg, #7D3131 0%, #a04141 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-title {
    font-family: "Fjalla One", serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.cta-description {
    font-family: "Caveat Brush", serif;
    font-size: 20px;
    color: #D9D9D9;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    background: white;
    color: #7D3131;
    padding: 15px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-family: "Fjalla One", serif;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-cta:hover {
    background: transparent;
    color: white;
    transform: scale(1.05);
}

/* ==================== CONTACT INFO WIDGET ==================== */
.contact-info-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.contact-info-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7D3131 0%, #a04141 100%);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-info-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.contact-info-toggle.active {
    background: linear-gradient(135deg, #1A1A1A 0%, #2d2d2d 100%);
}

.contact-info-content {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 350px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.contact-info-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-info-header {
    background: linear-gradient(135deg, #7D3131 0%, #a04141 100%);
    color: white;
    padding: 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info-header h5 {
    font-family: "Fjalla One", serif;
    font-size: 18px;
    margin: 0;
}

.contact-info-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contact-info-close:hover {
    transform: rotate(90deg);
}

.contact-info-body {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-item i {
    font-size: 20px;
    color: #7D3131;
    margin-right: 15px;
    margin-top: 3px;
    min-width: 20px;
}

.contact-info-item div {
    flex: 1;
}

.contact-info-item strong {
    font-family: "Fjalla One", serif;
    font-size: 14px;
    color: #1A1A1A;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.contact-info-item p {
    font-family: "Caveat Brush", serif;
    font-size: 16px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .dish-of-day-img {
        min-height: 250px;
    }

    .dish-of-day-body {
        padding: 20px;
    }

    .dish-of-day-title {
        font-size: 24px;
    }

    .price-value {
        font-size: 28px;
    }

    .filter-options {
        grid-template-columns: 1fr;
    }

    .product-image-container {
        height: 200px;
    }

    .product-title {
        font-size: 20px;
    }

    .cta-card {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-description {
        font-size: 16px;
    }

    .contact-info-widget {
        bottom: 20px;
        left: 20px;
    }

    .contact-info-toggle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .contact-info-content {
        width: 300px;
        bottom: 70px;
    }

    .pagination .page-item .page-link {
        padding: 10px 15px;
        font-size: 14px;
        min-width: 40px;
    }
}

@media (max-width: 576px) {
    .dish-of-day-section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 24px;
    }

    .contact-info-content {
        width: calc(100vw - 40px);
        left: -10px;
    }
}
