.rec-section {
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.rec-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.rec-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 24px;
    text-align: left;
}

.rec-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.rec-grid::-webkit-scrollbar {
    height: 6px;
}

.rec-grid::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.rec-grid::-webkit-scrollbar-thumb {
    background: #ccc;
}

.rec-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 0 0 200px;
    transition: transform 0.2s;
}

.rec-card:hover {
    transform: translateY(-4px);
}

.rec-card-img {
    width: 200px;
    height: 200px;
    background: #f5f5f5;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rec-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rec-card-info {
    margin-top: 10px;
    text-align: center;
}

.rec-card-type {
    font-size: 11px;
    font-weight: 600;
    color: #0B2447;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.rec-card-name {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
    text-align: center;
}

.rec-card-price {
    font-size: 14px;
    font-weight: 600;
    color: #081a30;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .rec-card {
        flex: 0 0 160px;
    }

    .rec-card-img {
        width: 160px;
        height: 160px;
    }

    .rec-title {
        font-size: 18px;
    }

    .rec-card-name {
        font-size: 12px;
    }
}
