
.content-text h2 {
    text-align: left;
}

.image-text {
    margin: 60px 0;
}

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 80px;
}

.products h3 {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.products p {
    font-size: 16px;
    line-height: 28px;
    color: #000000;
}

.products_dec {
    text-align: center;
    max-width: max-content;
    margin: 0 auto 40px;
}

.product-card {
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 360px;
    max-width: 360px;
    border: 1px solid #e0e0e0;
}

.product-card img{
    height: 60px;
}

.product-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.common-img{
    margin-bottom: 30px;
}

.review-container .review-icon {
    margin-top: 30px;
}

.header-banner .dp-list li a{
    color: var(--main-color);
    font-weight: 600;
}
.review-container .review-text a{
    color: var(--main-color);
    font-weight: 600;
}

.review-container .review-card {
    background-color: white;
    border: 1px solid #FFE1E5;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(255, 105, 135, 0.18);
    padding: 20px 30px;
}

.review-container .tab-panel.active {
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.review-container .review-card .p-title {
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
}


.tip-box {
    background: #f8f8f8;
    border-radius: 20px;
    margin: 20px auto 50px;
    padding: 30px;
}

.tip-header {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 20px;
}

.tip-icon {
    font-size: 24px;
    margin-right: 5px;
}

.tip-title {
    font-weight: bold;
}

.tip-list {
    padding-left: 20px;
    margin-bottom: 30px;
}

.tip-list li {
    margin-bottom: 12px;
    list-style-type: disc;
}

.tip-link {
    color: #ff3b47;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    display: block;
    text-align: center;
}



@media (max-width: 767px) {
    .products {
        gap: 20px;
        margin-bottom: 50px;
    }

    .product-card {
        padding: 20px 20px;
        min-width: 280px;
    }

    .products_dec {
        text-align: left;
        margin-bottom: 20px;
    }

    .image-text {
        margin: 10px 0;
    }

    .review-container .tab-panel.active {
        display: flex;
        gap: 20px;
        margin-bottom: 0px;
    }

    .review-container .intro {
        margin-bottom: 10px;
    }

    .review-container .review-icon {
        margin-top: 10px;
    }

}

@media (min-width: 768px) and (max-width: 1023px) {
    h2{
        margin-bottom: 10px;
    }
    .product-card {
        min-width: 280px;
        padding: 20px;
    }

    .products {
        gap: 20px;
        margin-bottom: 50px;
    }

    .review-container .review-card {
        min-width: 260px;
        max-width: 360px;
    }
    .review-container .tab-panel.active{
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}