.product-concern-section {
    padding: 10px 0 25px;
    font-family: inherit;
    box-sizing: border-box;
    position: relative;
}

.product-concern-slider {
    position: relative;
}

/* Ngăn giật giao diện khi slider chưa load (Slick) */
.product-concern-slider:not(.slick-initialized) {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
}

.product-concern-slider:not(.slick-initialized) .product-concern-slide {
    flex: 0 0 auto;
    width: 16.6666%;
    /* Default > 1200: 6 slides */
}

@media (max-width: 1199px) {
    .product-concern-slider:not(.slick-initialized) .product-concern-slide {
        width: 20%;
        /* 5 slides */
    }
}

@media (max-width: 991px) {
    .product-concern-slider:not(.slick-initialized) .product-concern-slide {
        width: 25%;
        /* 4 slides */
    }
}

@media (max-width: 767px) {
    .product-concern-slider:not(.slick-initialized) .product-concern-slide {
        width: 33.3333%;
        /* 3 slides */
    }
}

@media (max-width: 479px) {
    .product-concern-slider:not(.slick-initialized) .product-concern-slide {
        width: 50%;
        /* 2 slides */
    }
}

.product-concern-slider .slick-list {
    margin: 0 -8px;
    padding: 6px 0 10px;
}

.product-concern-slide {
    padding: 0 8px;
    box-sizing: border-box;
    outline: none;
}

.product-concern-card {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #f9ebdf;
    border-radius: 8px;
    padding: 5px;
    text-decoration: none;
    transition: all 0.25s ease;
    gap: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.product-concern-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.product-concern-card.is-active {
    border-color: #3f462d;
    background-color: #fcf8f5;
    box-shadow: 0 0 0 1px #3f462d;
}

.product-concern-card.is-active .pcc-title {
    color: #3f462d;
}

.product-concern-card--all {
    background-color: #3f462d;
    border-color: #3f462d;
    color: #fff;
}

.product-concern-card--all .pcc-icon {
    width: 60px;
    height: 60px;
    background-color: #fcf8f5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3f462d;
    flex-shrink: 0;
}

.product-concern-card--all .pcc-icon svg {
    width: 40px;
    height: 40px;
}

.pcc-image-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.pcc-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pcc-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pcc-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-concern-card--all .pcc-title {
    color: #fff;
}

.pcc-count {
    font-size: 12px;
    color: #888;
}

.product-concern-card--all .pcc-count {
    color: #e5d8d2;
}

.pcc-arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #f7ede8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3f462d;
    flex-shrink: 0;
}

.product-concern-card--all .pcc-arrow {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.product-concern-item:hover .product-concern-title,
.product-concern-item.is-active .product-concern-title {
    color: #4a5248;
}

.product-concern-arrow {
    position: absolute;
    top: 45px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #edf0f5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 5;
    color: #333333;
    transition: all 0.25s ease;
    padding: 0;
    outline: none;
}

.product-concern-arrow:hover {
    background: #cb2556;
    color: #ffffff;
    border-color: #cb2556;
    box-shadow: 0 4px 12px rgba(203, 37, 86, 0.25);
}

.product-concern-arrow--prev {
    left: -12px;
}

.product-concern-arrow--next {
    right: -12px;
}

.product-concern-arrow.slick-disabled {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 992px) {
    .product-concern-img-wrapper {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .product-concern-img-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 6px;
    }

    .product-concern-title {
        font-size: 12px;
    }

    .product-concern-arrow--prev {
        left: -4px;
    }

    .product-concern-arrow--next {
        right: -4px;
    }

    .product-concern-card--all .pcc-icon {
        width: 40px;
        height: 40px;
    }

    .product-concern-card--all .pcc-icon svg {
        width: 30px;
        height: 30px;
    }

    .pcc-image-wrapper {
        width: 40px;
        height: 40px;
    }

    .pcc-title {
        font-size: 13px;
        margin-bottom: 0;
    }
}

.description-seo {
    margin-bottom: 30px;
}

.pd-content-seo-wrapper {
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
}

.pd-content-seo {
    max-height: 300px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
}

.pd-content-seo:not(.is-expanded)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    pointer-events: none;
}

.pd-content-seo.is-expanded::after {
    display: none;
}

.pd-content-seo-btn-wrap {
    text-align: center;
    margin-top: 15px;
}

.pd-content-seo-btn-wrap button {
    background: transparent;
    border: 1px solid #d1d5db;
    padding: 8px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.pd-content-seo-btn-wrap button:hover {
    background: #f3f4f6;
}