/* ============================================================
   TESTARE PRODUSE - BSGMAG
   Fisier: assets/css/testare-produse.css

   Structura:
   0. Variabile si reset local
   1. Elemente comune
   2. Hero
   3. Introducere
   4. Beneficii
   5. Teste de calitate
   6. Conditii estetice
   7. Recenzii
   8. FAQ
   9. Responsive
============================================================ */


/* ============================================================
   0. VARIABILE SI RESET LOCAL
============================================================ */

.testing-products-page {
    --tp-blue: #0371fe;
    --tp-blue-dark: #0035be;
    --tp-yellow: #fecf12;
    --tp-text: #3a4258;
    --tp-muted: #565d6c;
    --tp-border: #e4e8f0;
    --tp-soft: #ffffff;
    --tp-white: #ffffff;
    --tp-green: #26a662;

    width: 100%;
    overflow: hidden;
    color: var(--tp-text);
    background: var(--tp-white);
    font-family: inherit;
}



.testing-products-page *,
.testing-products-page *::before,
.testing-products-page *::after {
    box-sizing: border-box;
}
.testing-products-page h1{
	color: #fff;
}

.testing-products-page img {
    display: block;
    max-width: 100%;
}

.testing-products-page h1,
.testing-products-page h2,
.testing-products-page h3,
.testing-products-page p {
    margin-top: 0;
}


.testing-products-page h1,
.testing-products-page h2,
.testing-products-page h3 {
    color: var(--tp-text);
    line-height: 1.2;
}

.testing-products-page h1,
.testing-products-page h2 {
    margin-bottom: 18px;
    font-size: clamp(24px, 2.2vw, 34px);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.testing-products-page h3 {
    margin-bottom: 6px;
    font-size: 17px;
    font-weight: 800;
}

.testing-products-page p {
    margin-bottom: 16px;
    color: var(--tp-muted);
    font-size: 14px;
    line-height: 1.6;
}


/* ============================================================
   1. ELEMENTE COMUNE
============================================================ */

.testing-products-container,
.testing-products-container--narrow {
    width: min(1200px, calc(100% - 48px));
    max-width: 1200px;
    margin-inline: auto;
}

.testing-products-section {
    padding: 48px 0;
}

.testing-products-kicker {
    display: inline-flex;
    margin-bottom: 7px;
    color: var(--tp-blue);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* ============================================================
   3. HERO INTRODUCERE
============================================================ */

.testing-products-intro {
    padding: 24px 0 18px;
}

.testing-products-intro .testing-products-container--narrow {
    position: relative;
    overflow: hidden;
    padding: 42px 46px;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        #0371FE 0%,
        #005FE0 100%
    );
    box-shadow: 0 20px 45px rgba(3,113,254,.22);
}

/* Glow discret */

.testing-products-intro .testing-products-container--narrow::before{
    content:"";
    position:absolute;
    top:-70px;
    right:-70px;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}

.testing-products-intro .testing-products-container--narrow::after{
    content:"";
    position:absolute;
    bottom:-90px;
    left:-90px;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
}



/* Titlu */

.testing-products-intro h2{
    position:relative;
    z-index:2;

    max-width:780px;

    margin:0 0 18px;

    color:#fff;

    font-size:clamp(36px,4vw,54px);

    font-weight:800;

    line-height:1.08;

    letter-spacing:-.04em;
}

/* Subtitlu */

.testing-products-intro p{
    position:relative;
    z-index:2;

    max-width:760px;

    margin:0;

    color:rgba(255,255,255,.92);

    font-size:15px;

    line-height:1.7;
}

.testing-products-intro p+p{
    margin-top:8px;
}


/* ============================================================
   TABLETA
============================================================ */

@media(max-width:900px){

.testing-products-intro{
    padding:20px 0 14px;
}

.testing-products-intro .testing-products-container--narrow{
    padding:34px;
}

.testing-products-intro h2{
    font-size:42px;
}

}


/* ============================================================
   MOBILE
============================================================ */

@media(max-width:767px){

.testing-products-intro{
    padding:16px 0 10px;
}

.testing-products-intro .testing-products-container--narrow{

    padding:26px 20px;

    border-radius:16px;
}

.testing-products-intro h2::before{

    margin-bottom:14px;

    padding:7px 12px;

    font-size:11px;
}

.testing-products-intro h2{

    margin-bottom:14px;

    font-size:30px;

    line-height:1.12;
}

.testing-products-intro p{

    font-size:14px;

    line-height:1.6;
}

}


/* ============================================================
   4. BENEFICII
============================================================ */

.testing-products-benefits {
    padding: 6px 0 40px;
}

.testing-products-benefits .testing-products-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.testing-benefit,
.testing-benefit--image-left {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    min-height: 0;
    margin: 0;
    padding: 18px 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.testing-benefit__content {
    width: 100%;
    max-width: 500px;
}

.testing-benefit--image-left .testing-benefit__content {
    justify-self: end;
}

.testing-benefit__content .testing-products-kicker {
    margin-bottom: 6px;
}

.testing-benefit__content h2 {
    margin: 0 0 10px;
    color: var(--tp-blue);
    font-size: clamp(23px, 2vw, 32px);
    line-height: 1.2;
}

.testing-benefit__content p {
    margin: 0;
    color: var(--tp-text);
    font-size: 14px;
    line-height: 1.55;
}

.testing-benefit__visual {
    display: flex;
    width: 100%;
    min-height: 0;
    align-items: center;
    justify-content: center;
}

.testing-benefit__image {
    display: block;
    width: auto;
    height: auto;
    max-width: min(100%, 340px);
    max-height: 260px;
    margin: 0 auto;
    object-fit: contain;
}


/* ============================================================
   TABLETĂ
============================================================ */

@media (max-width: 900px) {
    .testing-products-intro {
        padding: 24px 0 8px;
    }

    .testing-benefit,
    .testing-benefit--image-left {
        gap: 24px;
        padding: 16px 0;
    }

    .testing-benefit__image {
        max-width: min(100%, 290px);
        max-height: 230px;
    }
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {
    .testing-products-intro {
        padding: 22px 0 8px;
    }

    .testing-products-intro h2 {
        margin-bottom: 8px;
        font-size: 22px;
    }

    .testing-products-intro p {
        font-size: 14px;
        line-height: 1.5;
    }

    .testing-products-intro p + p {
        margin-top: 7px;
    }

    .testing-products-benefits {
        padding: 0 0 28px;
    }

    .testing-products-benefits .testing-products-container {
        gap: 4px;
    }

    .testing-benefit,
    .testing-benefit--image-left {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 16px 0;
    }

    .testing-benefit__content,
    .testing-benefit--image-left .testing-benefit__content {
        width: 100%;
        max-width: none;
        justify-self: auto;
    }

    .testing-benefit__content h2 {
        margin-bottom: 8px;
        font-size: 24px;
    }

    .testing-benefit__content p {
        font-size: 14px;
        line-height: 1.5;
    }

    .testing-benefit__visual {
        width: 100%;
        min-height: 300px;
    }

    .testing-benefit__image {
        max-width: min(100%, 240px);
        max-height: 210px;
    }

    /* Primul bloc: text, apoi imagine */
    .testing-benefit--image-right .testing-benefit__content {
        order: 1;
    }

    .testing-benefit--image-right .testing-benefit__visual {
        order: 2;
    }

    /* Al doilea bloc: text, apoi imagine */
    .testing-benefit--image-left .testing-benefit__content {
        order: 1;
    }

    .testing-benefit--image-left .testing-benefit__visual {
        order: 2;
    }
}


/* ============================================================
   MOBILE MIC
============================================================ */

@media (max-width: 420px) {
    .testing-products-intro {
        padding-top: 18px;
    }

    .testing-products-intro h2 {
        font-size: 21px;
    }

    .testing-benefit,
    .testing-benefit--image-left {
        gap: 12px;
        padding: 14px 0;
    }

    .testing-benefit__content h2 {
        font-size: 22px;
    }

    .testing-benefit__image {
        max-width: 210px;
        max-height: 190px;
    }
}


/* ============================================================
   5. TESTE DE CALITATE
============================================================ */

.testing-products-tests {
    position: relative;
    display: flow-root;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 62px 0 86px;
    overflow: visible;
    color: var(--tp-white);
    background: var(--tp-blue);
    isolation: isolate;
}

.testing-products-tests *,
.testing-products-tests *::before,
.testing-products-tests *::after {
    box-sizing: border-box;
}

.testing-products-tests > .testing-products-container {
    position: relative;
    display: flex;
    width: min(1200px, calc(100% - 48px));
    max-width: 1200px;
    min-height: 0;
    margin: 0 auto;
    padding: 0;
    flex-direction: column;
    overflow: visible;
}


/* ============================================================
   TITLU
============================================================ */

.testing-products-tests__title {
    max-width: 900px;
    color: var(--tp-text);
    font-size: clamp(26px, 2.4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    letter-spacing: -0.025em;
}

.testing-products-tests__title strong {
    color: var(--tp-yellow);
    font-weight: 800;
}


/* ============================================================
   INTRO TEXT + ICONURI
============================================================ */

.testing-products-tests__intro {
    display: grid;
    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(410px, 0.88fr);
    gap: 64px;
    align-items: start;
    width: 100%;
    margin: 0 0 34px;
}

.testing-products-tests__description {
    max-width: 640px;
}

.testing-products-tests__description p {
    color: rgba(255, 255, 255, 0.96);
    font-size: 14px;
    line-height: 1.6;
}

.testing-products-tests__description p + p {
    margin-top: 10px;
}

.testing-products-tests__coverage {
    width: 100%;
}

.testing-products-tests__coverage > p {
    margin: 0 0 16px;
    color: var(--tp-white);
    font-size: 14px;
    font-weight: 600;
}

.testing-products-tests__icons {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}

.testing-products-tests__icons > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.testing-products-tests__icons img {
    display: block;
    width: 38px;
    height: 38px;
    max-width: 38px;
    object-fit: contain;

}

.testing-products-tests__icons span {
    color: var(--tp-white);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.25;
}


/* ============================================================
   WRAPPER TABEL
============================================================ */

.testing-products-tests__table {
    position: relative;
    display: block;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
    clear: both;
}

.testing-products-tests__table .test-container {
    position: relative;
    display: block;
    width: 100%;
    max-width: none;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
}


/* Titlul intern duplicat din snippet */

.testing-products-tests__table .test-container > .banner {
    display: none;
}


/* ============================================================
   DEZACTIVARE COLAPSARE
============================================================ */

.testing-products-tests__table [data-read-more],
.testing-products-tests__table .grid-container--description-collapse,
.testing-products-tests__table .grid-container__description-collapse {
    position: static;
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 0;
    padding: 0;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    transform: none;
    mask-image: none;
    -webkit-mask-image: none;
}

.testing-products-tests__table [data-read-more]::before,
.testing-products-tests__table [data-read-more]::after {
    display: none;
    content: none;
}

.testing-products-tests__table [data-read-more] > a,
.testing-products-tests__table .product-details__link--more,
.testing-products-tests__table .product-details__link--less {
    display: none;
}


/* ============================================================
   CHENARUL ALB
============================================================ */

.testing-products-tests__table .grid-container--inner {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 18px;
    width: 100%;
    min-height: 0;
    max-height: none;
    margin: 0;
    padding: 26px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 12px;
    background: var(--tp-white);
    box-shadow: 0 18px 42px rgba(0, 37, 115, 0.18);
}


/* ============================================================
   CARD TEST
============================================================ */

.testing-products-tests__table .test-card {
    display: flex;
    min-width: 0;
    min-height: 56px;
    align-items: center;
    gap: 13px;
    margin: 0;
    padding: 13px 16px;
    border: 1px solid #eef1f5;
    border-radius: 8px;
    background: #f4f7fa;
    box-shadow: none;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.testing-products-tests__table .test-card:hover {
    border-color: rgba(3, 113, 254, 0.25);
    background: #eef4fb;
    transform: translateY(-1px);
}

.testing-products-tests__table .icon-wrapper {
    display: flex;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.testing-products-tests__table .icon-wrapper img,
.testing-products-tests__table .icon-wrapper svg {
    display: block;
    width: 20px;
    height: 20px;
    max-width: 20px;
    object-fit: contain;
    filter: none;
}

.testing-products-tests__table .card-text,
.testing-products-tests__table .test-card-text {
    min-width: 0;
    margin: 0;
    color: var(--tp-text);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.testing-products-tests__table .test-container > br {
    display: none;
}


/* ============================================================
   TABLETĂ
============================================================ */

@media (max-width: 1024px) {
    .testing-products-tests {
        padding: 54px 0 72px;
    }

    .testing-products-tests__intro {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .testing-products-tests__description {
        max-width: none;
    }

    .testing-products-tests__coverage {
        max-width: 680px;
    }

    .testing-products-tests__table .grid-container--inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 22px;
    }
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 700px) {
    .testing-products-tests {
        padding: 42px 0 54px;
        overflow: hidden;
    }

    .testing-products-tests > .testing-products-container {
        width: calc(100% - 28px);
    }

    .testing-products-tests__title {
        margin-bottom: 24px;
        font-size: 25px;
    }

    .testing-products-tests__intro {
        gap: 24px;
        margin-bottom: 26px;
    }

    .testing-products-tests__description p {
        font-size: 13px;
        line-height: 1.55;
    }

    .testing-products-tests__coverage > p {
        font-size: 13px;
    }

    .testing-products-tests__icons {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 5px;
    }

    .testing-products-tests__icons img {
        width: 28px;
        height: 28px;
        max-width: 28px;
    }

    .testing-products-tests__icons span {
        font-size: 9px;
        line-height: 1.15;
    }

    .testing-products-tests__table .grid-container--inner {
        grid-template-columns: 1fr;
        gap: 9px;
        padding: 14px;
        border-radius: 10px;
    }

    .testing-products-tests__table .test-card {
        min-height: 50px;
        padding: 11px 13px;
    }

    .testing-products-tests__table .card-text,
    .testing-products-tests__table .test-card-text {
        font-size: 13px;
    }
}


/* ============================================================
   6. CONDITII ESTETICE
============================================================ */

.testing-products-condition {
    width: 100%;
    padding: 64px 0;
    background: var(--tp-white);
}

.testing-products-condition .testing-products-container {
    width: min(1200px, calc(100% - 48px));
    max-width: 1200px;
    margin: 0 auto;
}

.testing-products-condition__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 56px;
}

.testing-products-condition__copy {
    max-width: 520px;
}

.testing-products-condition__copy h2 {
    margin: 0 0 24px;
    color: var(--tp-blue);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.testing-products-condition__copy p {
    margin: 0 0 16px;
    color: var(--tp-text);
    font-size: 15px;
    line-height: 1.55;
}

.testing-products-condition__copy p:last-child {
    margin-bottom: 0;
}

.testing-products-condition__preview {
    position: relative;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #f7f8fa;
    box-shadow: 0 8px 30px rgba(39, 55, 84, 0.08);
}


/* ============================================================
   8. FAQ
============================================================ */

.testing-products-section-heading {
    max-width: 720px;
    margin: 0 auto 32px;
    text-align: center;
}

.testing-products-section-heading h2 {
    margin-bottom: 0;
    color: var(--tp-text);
}

.testing-products-accordion {
    display: grid;
    gap: 14px;
    width: 100%;
}

.testing-products-accordion details {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--tp-border);
    border-radius: 14px;
    background: var(--tp-white);
    box-shadow: 0 6px 18px rgba(39, 55, 84, 0.05);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.testing-products-accordion details:hover {
    border-color: rgba(3, 113, 254, 0.3);
    box-shadow: 0 10px 24px rgba(39, 55, 84, 0.08);
}

.testing-products-accordion details[open] {
    border-color: rgba(3, 113, 254, 0.45);
    background:
        linear-gradient(
            180deg,
            rgba(3, 113, 254, 0.05) 0,
            rgba(3, 113, 254, 0.015) 70px,
            #ffffff 100%
        );
    box-shadow: 0 12px 28px rgba(3, 113, 254, 0.09);
}

.testing-products-accordion summary {
    position: relative;
    display: flex;
    min-height: 64px;
    align-items: center;
    padding: 18px 64px 18px 22px;
    color: var(--tp-text);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    list-style: none;
    cursor: pointer;
    user-select: none;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.testing-products-accordion summary::-webkit-details-marker {
    display: none;
}

.testing-products-accordion summary::before {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    content: "";
    background: rgba(3, 113, 254, 0.08);
    transform: translateY(-50%);
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.testing-products-accordion summary::after {
    position: absolute;
    top: 50%;
    right: 31px;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--tp-blue);
    border-bottom: 2px solid var(--tp-blue);
    content: "";
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.25s ease;
}

.testing-products-accordion details[open] summary {
    color: var(--tp-blue);
}

.testing-products-accordion details[open] summary::before {
    background: var(--tp-blue);
}

.testing-products-accordion details[open] summary::after {
    border-color: #ffffff;
    transform: translateY(-30%) rotate(225deg);
}

.testing-products-accordion details > div {
    padding: 0 64px 22px 22px;
    color: var(--tp-muted);
    font-size: 15px;
    line-height: 1.65;
}

.testing-products-accordion details > div::before {
    display: block;
    width: 36px;
    height: 2px;
    margin-bottom: 14px;
    border-radius: 999px;
    content: "";
    background: var(--tp-blue);
}

.testing-products-accordion summary:focus-visible {
    outline: 3px solid rgba(3, 113, 254, 0.16);
    outline-offset: -3px;
}


/* ============================================================
   FAQ - MOBILE
============================================================ */

@media (max-width: 767px) {
    .testing-products-section-heading {
        margin-bottom: 24px;
    }

    .testing-products-accordion {
        gap: 10px;
    }

    .testing-products-accordion details {
        border-radius: 12px;
    }

    .testing-products-accordion summary {
        min-height: 58px;
        padding: 16px 54px 16px 16px;
        font-size: 14px;
        line-height: 1.4;
    }

    .testing-products-accordion summary::before {
        right: 14px;
        width: 30px;
        height: 30px;
    }

    .testing-products-accordion summary::after {
        right: 24px;
        width: 8px;
        height: 8px;
    }

    .testing-products-accordion details > div {
        padding: 0 16px 18px;
        font-size: 14px;
        line-height: 1.6;
    }

    .testing-products-accordion details > div::before {
        width: 30px;
        margin-bottom: 12px;
    }
}


/* ============================================================
   9. RESPONSIVE
============================================================ */

@media (max-width: 1024px) {
    .testing-products-tests__intro {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testing-products-tests__coverage {
        max-width: 650px;
    }

    .testing-products-tests__table .grid-container--inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .testing-products-reviews {
        padding: 52px 0;
    }

    .testing-products-reviews .testimonial__custom--header {
        align-items: flex-start;
    }

    .testing-products-reviews .splide__arrow--prev {
        left: -8px;
    }

    .testing-products-reviews .splide__arrow--next {
        right: -8px;
    }
}

@media (max-width: 900px) {
    .testing-products-container,
    .testing-products-container--narrow,
    .testing-products-hero,
    .testing-products-tests > .testing-products-container,
    .testing-products-condition .testing-products-container,
    .testing-products-reviews > .testing-products-container {
        width: min(100% - 32px, 1200px);
    }

    .testing-benefit,
    .testing-benefit--image-left {
        gap: 28px;
    }

    .testing-benefit__image {
        max-width: min(100%, 320px);
        max-height: 250px;
    }

    .testing-products-condition__grid {
        gap: 36px;
    }
}

@media (max-width: 767px) {
    .testing-products-section {
        padding: 36px 0;
    }

    .testing-products-container,
    .testing-products-container--narrow,
    .testing-products-hero,
    .testing-products-tests > .testing-products-container,
    .testing-products-condition .testing-products-container,
    .testing-products-reviews > .testing-products-container {
        width: calc(100% - 28px);
    }

    /* Hero */

    .testing-products-hero {
        margin-top: 12px;
        border-radius: 10px;
    }

    /* Introducere */

    .testing-products-intro {
        padding: 26px 0 12px;
    }

    /* Beneficii */

    .testing-products-benefits {
        padding: 4px 0 36px;
    }

    .testing-products-benefits .testing-products-container {
        gap: 14px;
    }

    .testing-benefit,
    .testing-benefit--image-left {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 16px 0;
    }

    .testing-benefit--image-right .testing-benefit__content {
        order: 1;
    }

    .testing-benefit--image-right .testing-benefit__visual {
        order: 2;
    }

    .testing-benefit--image-left .testing-benefit__visual {
        order: 1;
    }

    .testing-benefit--image-left .testing-benefit__content {
        order: 2;
        max-width: none;
        justify-self: auto;
    }

    .testing-benefit__content {
        max-width: none;
    }

    .testing-benefit__image {
        max-width: 250px;
        max-height: 210px;
    }

    /* Teste */

    .testing-products-tests {
        padding: 40px 0 46px;
    }

    .testing-products-tests__title {
        margin-bottom: 24px;
        font-size: 24px;
    }

    .testing-products-tests__icons {
        gap: 6px;
    }

    .testing-products-tests__icons img {
        width: 28px;
        height: 28px;
        max-width: 28px;
    }

    .testing-products-tests__icons span {
        font-size: 9px;
    }

    .testing-products-tests__table .grid-container--inner {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px;
    }

    /* Conditii */

    .testing-products-condition {
        padding: 42px 0;
    }

    .testing-products-condition__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .testing-products-condition__copy {
        max-width: none;
    }

    .testing-products-condition__copy h2 {
        font-size: 28px;
    }

    /* Recenzii */

    .testing-products-reviews {
        padding: 42px 0;
    }

    .testing-products-reviews .testimonial__custom--header {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .testing-products-reviews .testimonial__custom--header-right {
        text-align: left;
    }

    .testing-products-reviews .testimonial__custom--cta {
        text-align: left;
    }

    .testing-products-reviews .splide__slide {
        padding-right: 3px;
        padding-left: 3px;
    }

    .testing-products-reviews .testimonial__custom--outer {
        min-height: 260px;
        padding: 18px;
    }

    .testing-products-reviews .splide__arrow {
        display: none;
    }
		
}

.testing-products-reviews__card-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.testing-products-reviews__card-stars img,
.testing-products-reviews__card-stars svg {
    width: 18px !important;
    height: 18px !important;
    display: block;
    flex: 0 0 18px;
}

.testing-products-reviews .testimonial__custom--outer{
    position:relative;
}

.testing-products-reviews .testimonial__custom--outer::after{
    content:"";
    position:absolute;

    left:16px;
    right:16px;

    bottom:48px; /* deasupra footerului */

    height:32px;

    background:linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,1)
    );

    pointer-events:none;
}

@media (max-width: 767.98px) {
    .testing-benefit {
        display: flex !important;
        flex-direction: column !important;
    }

    .testing-benefit__visual {
        order: 1 !important;
    }

    .testing-benefit__content {
        order: 2 !important;
    }
}

.testing-benefit {
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: center;
}

.testing-benefit--image-left {
    grid-template-columns: 1.2fr 1fr;
}

.testing-benefit__content {
    max-width: 460px;
}

.testing-benefit__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testing-benefit__image {
    width: 100%;
    max-width: 620px;
    height: auto;
    max-height: none;
    object-fit: contain;
}

.testing-products-page h1{
	color: #fff;
	.testing-products-page h2{
    color: #0371FE;
}
}
@media (min-width: 767px) {
.testing-products-page img{
			max-height: 500px;
		}}