
.combo-page-content {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 0 15px;
}

.combo-banner-section {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
}

.combo-main-banner {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: block;
}

.combo-sub-banner-box {
    width: 100%;
    margin: 35px 0 15px 0;
}

.combo-sub-banner {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.combo-section-block {
    margin-top: 30px;
}

.section-title-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
}

.section-title-box h2 {
    font-size: 22px;
    font-weight: 700;
    color: #F39200; 
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.special-title h2 {
    color: #C92127; 
}

.title-line {
    width: 80px;
    height: 3px;
    background-color: currentColor; 
    border-radius: 2px;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

@media (max-width: 1100px) {
    .product-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 850px) {
    .product-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .product-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .section-title-box h2 {
        font-size: 18px;
    }
}