@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Content Section
2. Content Text
3. Cart Layout (from cart.html)
4. Advantage Section
5. Responsive

******************************/

/*********************************
1. Content Section
*********************************/

.content-section {
    padding: 60px 0;
    background: #FFFFFF;
}

.content-section:nth-child(even) {
    background: #f8f9fa;
}

/*********************************
2. Content Text
*********************************/

.content-text {
    max-width: 100%;
}

.content-text h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-text h3 {
    font-size: 20px;
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
    padding-left: 12px;
    border-left: 3px solid #e74c3c;
}

.content-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.content-text p strong {
    color: #2c3e50;
}

.keyword-highlight {
    font-weight: 600;
    color: #e74c3c;
}

/*********************************
3. Cart Layout (from cart.html)
*********************************/

.cart_bar {
    width: 100%;
    height: 57px;
    border: solid 1px #b5b5b5;
    margin-top: 30px;
    margin-bottom: 0;
}

.cart_bar_title_name,
.cart_bar_title_price,
.cart_bar_title_quantity,
.cart_bar_title_total {
    font-size: 14px;
    font-weight: 600;
    color: #232323;
}

.cart_bar_title_name {
    margin-left: 35px;
}

.cart_bar_title_content {
    width: 600px;
}

.cart_bar_title_content_inner {
    width: 100%;
}

.cart_bar_title_price {
    width: 30%;
    text-align: center;
}

.cart_bar_title_quantity {
    width: 30%;
    text-align: center;
}

.cart_bar_title_total {
    width: 25%;
    text-align: center;
}

.cart_products {
    width: 100%;
}

.cart_products ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cart_product {
    border-bottom: solid 1px #b5b5b5;
    padding-bottom: 25px;
    padding-top: 25px;
}

.cart_product:last-child {
    border-bottom: none;
}

.cart_product_image {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
    flex-shrink: 0;
}

.cart_product_image i {
    color: #e74c3c;
}

.cart_product_name {
    margin-left: 35px;
    min-width: 120px;
}

.cart_product_name a {
    font-size: 18px;
    font-weight: 600;
    color: #232323;
    transition: color 0.2s ease;
}

.cart_product_name a:hover {
    color: #e74c3c;
}

.cart_product_info {
    width: 600px;
}

.cart_product_info_inner {
    width: 100%;
}

.cart_product_price,
.cart_product_quantity,
.cart_product_total {
    font-size: 14px;
    font-weight: 500;
    color: #232323;
}

.cart_product_price {
    width: 30%;
    text-align: center;
}

.cart_product_quantity {
    width: 30%;
    text-align: center;
}

.cart_product_total {
    width: 25%;
    text-align: center;
    color: #e74c3c;
    font-weight: 600;
}

/*********************************
4. Advantage Section
*********************************/

.advantage-section {
    background: #f8f9fa;
}

.advantage-section .service-item i {
    color: #e74c3c;
    margin-right: 8px;
}

/*********************************
5. Responsive
*********************************/

@media (max-width: 992px) {
    .cart_bar_title_content {
        width: 400px;
    }

    .cart_product_info {
        width: 400px;
    }

    .cart_product_name {
        margin-left: 20px;
        min-width: 100px;
    }

    .cart_bar_title_name {
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 40px 0;
    }

    .content-text h2 {
        font-size: 24px;
    }

    .content-text h3 {
        font-size: 18px;
    }

    .cart_bar {
        display: none !important;
    }

    .cart_product {
        flex-direction: column;
        align-items: flex-start !important;
        padding: 20px 0;
    }

    .cart_product_image {
        margin-bottom: 15px;
    }

    .cart_product_name {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .cart_product_info {
        width: 100%;
    }

    .cart_product_info_inner {
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 8px;
    }

    .cart_product_price,
    .cart_product_quantity,
    .cart_product_total {
        width: 100%;
        text-align: left;
    }

    .service-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .content-text h2 {
        font-size: 20px;
    }

    .content-text h3 {
        font-size: 16px;
    }

    .content-text p {
        font-size: 14px;
    }

    .cart_product_image {
        width: 60px;
        height: 60px;
    }

    .cart_product_name a {
        font-size: 16px;
    }
}