/* ----- PDF File Style ----- */
.product-pdf-files {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.product-pdf-files .pdf-file {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 10px 30px;
    background-color: var(--e-global-color-primary);
    color: var(--e-global-color-6114bc7);
    border-radius: 30px;
    font-family: var(--e-global-typography-accent-font-family);
    font-size: var(--e-global-typography-accent-font-size);
    font-weight: var(--e-global-typography-accent-font-weight);
    line-height: var(--e-global-typography-accent-line-height);
}

.product-pdf-files .pdf-file:hover {
    background-color: var(--e-global-color-accent);
    color: var(--e-global-color-6114bc7);
}

.product-pdf-files .pdf-file svg {
    width: 18px;
}

/* ----- Benefits Style ----- */
.product-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0;
    padding: 0;
}

.product-benefits .benefit {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 40px;
    position: relative;
}

.product-benefits .benefit::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 38px;
    background-image: url("../img/bullet_point.webp");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.product-benefits .benefit h3 {
    padding: 0;
    margin: 0;
    color: var(--e-global-color-text);
    font-family: var(--e-global-typography-text-font-family);
    font-size: var(--e-global-typography-text-font-size);
    font-weight: 700;
    line-height: var(--e-global-typography-text-line-height);
}

.product-benefits .benefit p {
    margin: 0;
    color: var(--e-global-color-text);
    font-family: var(--e-global-typography-text-font-family);
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
}

@media screen and (max-width: 1024px) {

    .product-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {

    .product-benefits {
        grid-template-columns: 1fr;
    }
}

/* ----- Characteristics Style ----- */
.product-characteristics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0;
    padding: 0;
}

.product-characteristics .characteristic {
    display: flex;
    flex-direction: column;
    padding-left: 40px;
    position: relative;
}

.product-characteristics .characteristic::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 22px;
    background-image: url("../img/bullet_leaf.webp");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.product-characteristics .characteristic p {
    margin: 0;
    color: var(--e-global-color-primary);
    font-family: var(--e-global-typography-text-font-family);
    font-size: var(--e-global-typography-text-font-size);
    font-weight: 700;
    line-height: var(--e-global-typography-text-line-height);
}

@media screen and (max-width: 1024px) {

    .product-characteristics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {

    .product-characteristics {
        grid-template-columns: 1fr;
    }
}

/* ----- Applications Style ----- */
.product-applications {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0;
    padding: 0;
}

.product-applications .application {
    display: flex;
    flex-direction: column;
    padding: 8px;
    background: linear-gradient(303deg, #007D80 0%, #292F7F 99.63%);
}

.product-applications .application p {
    margin: 0;
    color: var(--e-global-color-023fa27);
    font-family: var(--e-global-typography-text-font-family);
    font-size: var(--e-global-typography-text-font-size);
    font-weight: 700;
    line-height: var(--e-global-typography-text-line-height);
}

@media screen and (max-width: 1024px) {

    .product-applications {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {

    .product-applications {
        grid-template-columns: 1fr;
    }
}

/* ----- Families Style ----- */
.product-families {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-families .family {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 16px 18px;
    background: linear-gradient(168deg, var(--e-global-color-6114bc7) 6.02%, #CBEFF6 93.98%);
}

.product-families .family h2 {
    margin: 0;
    color: var(--e-global-color-primary);
    font-family: var(--e-global-typography-32aa94c-font-family);
    font-size: var(--e-global-typography-32aa94c-font-size);
    font-weight: var(--e-global-typography-32aa94c-font-weight);
    line-height: var(--e-global-typography-32aa94c-line-height);
}

.product-families .family .child-family {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-families .family .child-family h3 {
    margin: 0;
    color: var(--e-global-color-secondary);
    font-family: var(--e-global-typography-5313933-font-family);
    font-size: var(--e-global-typography-5313933-font-size);
    font-weight: var(--e-global-typography-5313933-font-weight);
    line-height: var(--e-global-typography-5313933-line-height);
}

.product-families .family ul.products {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-families .family ul.products li a {
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-text);
    font-family: var(--e-global-typography-dc3c3b6-font-family);
    font-size: var(--e-global-typography-dc3c3b6-font-size);
    font-weight: var(--e-global-typography-dc3c3b6-font-weight);
    line-height: var(--e-global-typography-dc3c3b6-line-height);
}

.product-families .family ul.products li a:hover {
    color: var(--e-global-color-accent);
}

@media screen and (max-width: 1024px) {
    .product-families {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .product-families {
        grid-template-columns: 1fr;
    }
}

/* ----- Country Selector Style ----- */
.country-selector-wrapper {
    position: relative;
}

.country-selector-wrapper .country-selector {
    background-color: var(--e-global-color-98c2cc3);
    font-family: var(--e-global-typography-5313933-font-family), Sans-serif;
    font-size: var(--e-global-typography-5313933-font-size);
    font-weight: var(--e-global-typography-5313933-font-weight);
    line-height: var(--e-global-typography-5313933-line-height);
    color: var(--e-global-color-text);
    border-radius: 50px 50px 50px 50px;
    padding: 13px calc(26px + 26px + 13px) 13px 26px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease-in-out;
}

.country-selector-wrapper .country-selector option {
    background-color: var(--e-global-color-6114bc7);
    color: var(--e-global-color-text);
}

.country-selector-wrapper svg {
    position: absolute;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    fill: var(--e-global-color-text);
    width: 1em;
    height: 1em;
    transition: all 0.3s ease-in-out;
}

/* - Hover Style - */
.country-selector-wrapper:hover .country-selector {
    background-color: var(--e-global-color-primary);
    color: var(--e-global-color-6114bc7);
}

.country-selector-wrapper:hover svg {
    fill: var(--e-global-color-6114bc7);
}

/* - Bordered Style - */
.country-selector-wrapper.bordered .country-selector {
    border: 2px solid var(--e-global-color-6114bc7);
    background-color: transparent;
    color: var(--e-global-color-6114bc7);
    border-radius: 5px;
    padding: 14px calc(20px + 20px + 18px) 14px 20px;
}

.country-selector-wrapper.bordered svg {
    fill: var(--e-global-color-6114bc7);
}