/*
Theme Name: Divi Child
Theme URI: https://diviextended.com/
Version: 1.0
Description: Child Theme of Divi
Author: Divi Extended
Template: Divi
*/
@import url("../Divi/style.css");


.rk-product-title h1 {
    font-weight: bold;
    text-transform: uppercase;
}

.rk-full-description {
    font-size: 20px;
}

.client-logos-wrap {
    display: flex;
    gap: 25px;
    align-items: center;
}

.client-logos-wrap .client-logo {
    flex: 0 0 calc(33.33% - 25px);
    max-width: calc(33.33% - 25px);
}

.client-logos-wrap .client-logo img {
    display: block;
}

.rk-client-logos h2 {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: bold;
}

.rk-faq-accordion-wrapper {
    margin-bottom: 75px;
}

.rk-faq-accordion-wrapper h2 {
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: bold;
}

.rk-faq-accordion {
    border-top: 1px solid #ccc;
}

.faq-item {
    border-bottom: 1px solid #ccc;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1em 0;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.1em;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.faq-toggle-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-toggle-icon::before {
    content: '+';
    font-size: 1.5em;
    display: block;
    line-height: 1;
    transform-origin: center;
    transition: transform 0.3s ease, content 0.3s ease;
    display: block;
}

/* Rotate + into × (visually like an X) when active */
.faq-item.active .faq-toggle-icon::before {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 2em;
}


.custom-product-attributes {
    color: #333;
    margin-top: 8px !important;
    padding-top: 8px !important;

    margin-bottom: 8px !important;
    padding-bottom: 8px !important;

    border-top: 1px solid #bababa;
    border-bottom: 1px solid #bababa;
    display: table;
    font-size: 14px;
}

.custom-product-attributes li {
    display: table-row;
    line-height: 1.3em;
}

.custom-product-attributes li span {
    display: table-cell;
    padding: 4px;
}

.custom-product-attributes li span:first-child {
    text-transform: capitalize;
    font-weight: bold;
}

.custom-product-price del {
    opacity: 0.3;
    font-size: 14px;
}

.custom-product-price ins bdi {
    color: green;
}