.catalog-page-fire {
    padding: 60px 0;
    background-color: #FCC200;
}

.catalog-title-fire {
    font-family: 'Dela Gothic One', cursive;
    font-size: 48px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
}


.fire-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.fire-table {
    width: 100%;
    min-width: 700px;  
    border-collapse: collapse;
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.fire-table th,
.fire-table td {
    padding: 15px 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: middle;
}

.fire-table th {
    background-color: #292929;
    color: white;
    font-weight: 600;
}

.fire-table tr:last-child td {
    border-bottom: none;
}

.fire-table .product-image-small {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #f0f0f0;
    border-radius: 8px;
    padding: 5px;
}

/* Кнопка заказа */
.fire-order-btn {
    background-color: #E63946;
    color: white;
    border: none;
    border-radius: 40px;
    padding: 8px 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.fire-order-btn:hover {
    background-color: #b32d3a;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .catalog-page-fire {
        padding: 40px 20px;
    }
    
    .catalog-title-fire {
        font-size: 32px;
        margin-bottom: 30px;
    }
    

    .fire-table th,
    .fire-table td {
        padding: 10px 8px;
        font-size: 13px;
    }

    .fire-table .product-image-small {
        width: 40px;
        height: 40px;
        padding: 3px;
    }
    
    .fire-order-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .fire-table th,
    .fire-table td {
        padding: 8px 6px;
        font-size: 11px;
    }
    
    .fire-table .product-image-small {
        width: 35px;
        height: 35px;
    }
}