:root {
    --green: #0066CC;
    --section-margin: 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    max-height: 100%;

}

body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.25;
    color: #374151;
    background-color: rgb(255, 255, 255);
    padding: 10px 0 80px;
}

.container {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

/* =========================
   DRIMO Home (mobile only)
   ========================= */
.drimo-home-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #eef3f8;
    padding: 12px 15px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

.drimo-home-header.active {
    opacity: 1;
    visibility: visible;
}

.drimo-home-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.drimo-home-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.drimo-header-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid #eef3f8;
    background: #fff;
    text-decoration: none;
    color: #111;
    flex-shrink: 0;
}

.drimo-header-cart__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #111;
}

.drimo-header-cart__icon svg {
    display: block;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.drimo-header-cart__count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #0066CC;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
    box-sizing: border-box;
    pointer-events: none;
}

.drimo-header-cart__count:empty {
    display: none;
}

.drimo-home-header__brand {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 1;
    margin-right: 4px;
}

a.drimo-home-header__brand {
    color: inherit;
    text-decoration: none;
    display: flex;
    max-width: 130px;
}

.drimo-home-header__logo {
    height: 40px;
    width: auto;
    max-width: min(240px, 56vw);
    object-fit: contain;
    object-position: left center;
    display: block;
}

.drimo-home-header__menu {
    width: 44px;
    height: 40px;
    padding: 0;
    border-radius: 12px;
    border: 1px solid #eef3f8;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.drimo-home-header__menu span {
    display: block;
    width: 18px;
    height: 2px;
    background: #111;
    border-radius: 2px;
}

.drimo-menu {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: none;
}

body.drimo-menu-open .drimo-menu {
    display: block;
}

.drimo-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 8, 23, 0.55);
}

.drimo-menu__panel {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: min(360px, 92vw);
    background: #fff;
    padding: 14px 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: -18px 0 40px rgba(2, 8, 23, 0.18);
}

.drimo-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.drimo-menu__logo-link {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 1;
    text-decoration: none;
}

.drimo-menu__logo {
    height: 34px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.drimo-menu__close {
    width: 44px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #eef3f8;
    background: #fff;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drimo-menu__group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drimo-menu__group-title {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 900;
    color: #737373;
    padding-top: 6px;
}

.drimo-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-decoration: none;
    color: #111;
    border: 1px solid #eef3f8;
    border-radius: 12px;
    padding: 12px 12px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
}

.drimo-menu__link--product {
    text-transform: none;
    font-weight: 800;
}

.drimo-hero__brand {
    font-weight: 900;
    text-transform: uppercase;
    color: #111;
    margin: 6px 0 6px;
}

.drimo-hero__title {
    font-weight: 900;
    font-size: 28px;
    line-height: 1.06;
    margin-bottom: 10px;
}

.drimo-hero__desc {
    color: #222;
    line-height: 1.55;
    margin-bottom: 12px;
}

.drimo-cta {
    width: 100%;
    height: 46px;
    border-radius: 12px;
    background: #5668ff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    border: 0;
}

.drimo-cta img {
    width: 22px;
}

.drimo-cta--secondary {
    background: var(--green);
}

.drimo-trustline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 10px;
}

.drimo-trustline__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid #eef3f8;
    border-radius: 12px;
    background: #fff;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 11px;
    color: #111;
}

.drimo-section {
    margin-top: 18px;
}

.drimo-section__kicker {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    color: #5668ff;
    text-align: center;
    margin-bottom: 10px;
}

.drimo-product-block {
    border: 1px solid #eef3f8;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    margin-bottom: 12px;
}

.drimo-product-block__photo img {
    width: 100%;
    display: block;
    height: auto;
}

.drimo-product-block__photo-note {
    padding: 10px 12px 0;
    font-size: 11px;
    color: #737373;
}

.drimo-product-block__caps {
    padding: 10px 12px 0;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 11px;
    color: #111;
}

.drimo-product-block__name {
    padding: 8px 12px 0;
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
}

.drimo-product-block__desc {
    padding: 8px 12px 0;
    color: #222;
    line-height: 1.55;
}

.drimo-product-block__price {
    padding: 10px 12px 0;
}

.drimo-quick {
    margin: 12px;
    height: 44px;
    border-radius: 12px;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
}

.drimo-quick img {
    width: 22px;
    filter: brightness(10);
}

.drimo-products-list {
    margin-top: 14px;
}

.drimo-products-list__title {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    color: #737373;
    margin: 0 0 10px;
    text-align: center;
}

.drimo-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.drimo-mini-card {
    border: 1px solid #eef3f8;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.drimo-mini-card__img img {
    width: 100%;
    display: block;
    height: auto;
}

.drimo-mini-card__body {
    padding: 12px;
}

.drimo-mini-card__title {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #111;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1.2;
}

.drimo-mini-card__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

.drimo-mini-card__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 8px;
    color: #3c69bd;
    font-weight: 900;
    line-height: 1.1;
}

/* WooCommerce price HTML inside mini cards (smaller than single) */
.drimo-mini-card__price del {
    color: #888;
    text-decoration: line-through;
    font-weight: 700;
    font-size: 12px;
    opacity: 1;
}

.drimo-mini-card__price ins {
    text-decoration: none;
    color: #3c69bd;
    font-weight: 900;
    font-size: 14px;
}

.drimo-mini-card__price .woocommerce-Price-amount {
    white-space: nowrap;
}

.drimo-mini-card__price .woocommerce-price-suffix {
    font-size: 11px;
    color: #6b7280;
    font-weight: 600;
}

.drimo-mini-card__btn {
    height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
}

.drimo-coming {
    margin-top: 18px;
    border: 1px solid #eef3f8;
    border-radius: 14px;
    padding: 14px;
    background: #fff;
}

.drimo-coming__caps {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 11px;
    color: #737373;
    text-align: center;
}

.drimo-coming__title {
    margin-top: 10px;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 18px;
}

.drimo-coming__text {
    margin-top: 10px;
    text-align: center;
    color: #222;
    line-height: 1.6;
}

.drimo-help {
    margin-top: 18px;
    border: 1px solid #eef3f8;
    border-radius: 14px;
    padding: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.drimo-help__title {
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    color: #111;
}

.drimo-help__text {
    margin-top: 10px;
    text-align: center;
    color: #222;
    line-height: 1.6;
    margin-bottom: 12px;
}

.drimo-footer {
    margin-top: 18px;
    border: 1px solid #eef3f8;
    border-radius: 14px;
    padding: 14px;
    background: #fff;
}

.drimo-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.drimo-footer__item {
    border: 1px solid #eef3f8;
    border-radius: 12px;
    padding: 12px;
    background: #fbfdff;
}

.drimo-footer__label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 11px;
    color: #111;
}

.drimo-footer__value {
    margin-top: 8px;
    color: #222;
    font-weight: 700;
}

.drimo-footer__copy {
    margin-top: 14px;
    text-align: center;
    color: #737373;
    font-size: 11px;
    text-transform: uppercase;
}

.drimo-bottom {
    margin-top: 12px;
    width: 100%;
    height: 46px;
    border-radius: 12px;
    background: #5668ff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 11px;
}

.drimo-bottom img {
    width: 22px;
    filter: brightness(10);
}

.drimo-ico {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    display: inline-block;
    flex: 0 0 18px;
    background: rgba(86, 104, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.drimo-ico::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #5668ff;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 14px 14px;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 14px 14px;
    opacity: 0.95;
}

.drimo-ico--dot {
    border-radius: 999px;
    background: rgba(86, 104, 255, 0.15);
}

/* Inline SVG icons via CSS masks (works without extra files) */
.drimo-ico--truck::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 7a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v9h-1.1a3.5 3.5 0 0 0-6.8 0H9.9a3.5 3.5 0 0 0-6.8 0H3V7zm16 3h2.6l1.4 2.2V16h-1.1a3.5 3.5 0 0 0-6.8 0H15V10h4z'/%3E%3Cpath fill='black' d='M6.5 20a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm10 0a2 2 0 1 1 0-4 2 2 0 0 1 0 4z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 7a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v9h-1.1a3.5 3.5 0 0 0-6.8 0H9.9a3.5 3.5 0 0 0-6.8 0H3V7zm16 3h2.6l1.4 2.2V16h-1.1a3.5 3.5 0 0 0-6.8 0H15V10h4z'/%3E%3Cpath fill='black' d='M6.5 20a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm10 0a2 2 0 1 1 0-4 2 2 0 0 1 0 4z'/%3E%3C/svg%3E");
}

.drimo-ico--cash::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 7a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V7zm2 0v10h12V7H6zm6 8a3 3 0 1 1 0-6 3 3 0 0 1 0 6z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 7a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V7zm2 0v10h12V7H6zm6 8a3 3 0 1 1 0-6 3 3 0 0 1 0 6z'/%3E%3C/svg%3E");
}

.drimo-ico--shield::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2l7 4v6c0 5-3 9-7 10-4-1-7-5-7-10V6l7-4zm3.3 8.3l-4 4a1 1 0 0 1-1.4 0l-2-2 1.4-1.4 1.3 1.3 3.3-3.3 1.4 1.4z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2l7 4v6c0 5-3 9-7 10-4-1-7-5-7-10V6l7-4zm3.3 8.3l-4 4a1 1 0 0 1-1.4 0l-2-2 1.4-1.4 1.3 1.3 3.3-3.3 1.4 1.4z'/%3E%3C/svg%3E");
}

.drimo-ico--return::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 7V4L2 9l5 5v-3h7a4 4 0 1 1 0 8H8v2h6a6 6 0 0 0 0-12H7z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 7V4L2 9l5 5v-3h7a4 4 0 1 1 0 8H8v2h6a6 6 0 0 0 0-12H7z'/%3E%3C/svg%3E");
}

.drimo-ico--badge::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 1 3 13.3V22l-3-1.6L9 22v-6.7A7 7 0 0 1 12 2zm0 2a5 5 0 1 0 0 10 5 5 0 0 0 0-10z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 1 3 13.3V22l-3-1.6L9 22v-6.7A7 7 0 0 1 12 2zm0 2a5 5 0 1 0 0 10 5 5 0 0 0 0-10z'/%3E%3C/svg%3E");
}

.drimo-ico--cash {
    background: rgba(255, 140, 0, 0.12);
}

.drimo-ico--shield {
    background: rgba(103, 195, 77, 0.14);
}

.drimo-ico--return {
    background: rgba(60, 105, 189, 0.12);
}

.drimo-ico--badge {
    background: rgba(86, 104, 255, 0.12);
}

.hero-slider-main .swiper-slide img {
    border-radius: 10px;
}

.hero-slider-thumbs .swiper-slide {
    border-radius: 6px;
    overflow: hidden;
}

.hero-slider .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.hero-slider .swiper-slide video {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.hero-slider-thumbs .swiper-slide video,
.hero-slider-thumbs .swiper-slide .hero-thumb-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-thumb-video {
    /* Prevent controls from showing and keep tiny previews muted */
    background: #000;
}

.hero-slider-thumbs {
    margin-top: 12px;
}

.hero-slider-thumbs .swiper-slide {
    width: 80px;
    height: 80px;
    box-sizing: border-box;
    opacity: 0.6;
    border: 2px solid transparent;
}

.hero-slider-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--green);
}

.hero-slider-thumbs .swiper-slide img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    display: block;
}

.swiper-button-next,
.swiper-button-prev {
    background: #F6F9FE54;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 15px;
}

.content {
    /* readable line-height and comfortable spacing */
    color: #374151;
    line-height: 1.65;
    font-size: 1rem;
    word-wrap: break-word;
}

.content p {
    margin: 0 0 1.25rem;
}

.content p:last-child {
    margin-bottom: 0;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    text-align: center;
    color: #1C2230;
    margin: 1.2rem 0 1rem;
    line-height: 1.15;
    font-weight: 700;
}

/* Slight size scale for headings, editable if you want different sizes */
.content h1 {
    font-size: 1.6rem;
}

.content h2 {
    font-size: 1.15rem;
}

.content h3 {
    font-size: 1.15rem;
}

.content h4 {
    font-size: 1.15rem;
}

.content h5 {
    font-size: 1rem;
}

.content h6 {
    font-size: 0.95rem;
}

.content img,
.content figure img {
    width: 100% !important;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 0 1rem;
}

.content figure {
    margin: 0 0 1.25rem;
}

.content figcaption {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 0.35rem;
}

.content ul,
.content ol {
    margin: 0 0 1.25rem 1.25rem;
    padding: 0;
}

.content blockquote {
    margin: 0 0 1.25rem;
    padding: 0.75rem 1rem;
    border-left: 4px solid #e6eef9;
    background: #fbfdff;
    color: #444;
}

.content a {
    color: #3c69bd;
    text-decoration: underline;
}

.content table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 1.25rem;
}

.content th,
.content td {
    border: 1px solid #e6e6e6;
    padding: 0.5rem 0.75rem;
    text-align: left;
}

.content .alignleft {
    margin-right: 1rem;
}

.content .alignright {
    margin-left: 1rem;
}


.hero-slider {
    margin-bottom: 10px;
    position: relative;
}

.product-title {
    font-weight: 700;
    font-size: 30px;
    margin: 0 0 10px;
    color: #1C2230;
}

.product-subtitle {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #2A3344;
}

.product-rating {
    margin-bottom: 15px;
    color: #000;
    text-decoration: none;
    display: block;
}


.price {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 25px;
}

.price .old-price {
    color: #86868B;
    text-decoration: line-through;
    font-size: .9rem;
}

.price .new-price {
    color: #1C2230;
    /* site accent */
    font-weight: 800;
    font-size: 1.1rem;
}

.price .discount {
    background: rgba(28, 34, 48, 0.95);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
    margin-left: auto;
}

/* stacked on small screens */
@media (max-width: 480px) {
    .price .new-price {
        font-size: 1.4rem;
    }
}


.hero-list {
    list-style: none;
    padding-left: 10px;
    margin-bottom: 25px;
}

.hero-list li:not(:last-child) {
    margin-bottom: 2px;
}

.btn {
    width: 100%;
    height: 45px;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #0066CC;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    border: 0;
    cursor: pointer;

    span {
        font-weight: 700;
        font-size: 16px;
    }
}

.btn img {
    width: 19px;
}

.benefits-image {
    display: flex;
    width: 100%;
    margin: 15px auto 0;
}

.quote {
    background: #ACBED8;
    padding: 15px;
    text-align: left;
    font-size: .9rem;
    color: #fff;
    margin-top: var(--section-margin);
}

.quote h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: #1C2230;
}

.quote p {
    font-size: 18px;
    color: #2C3E5A;
}

.hero-video video {
    display: flex;
    width: 100%;
    height: auto;
}


.split-slider {
    position: relative;
    height: 350px;
    overflow: hidden;
    margin-bottom: 25px;
}

.split-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}

.split-slider .slider {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
}

.split-slider .right {
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

.split-text {
    position: absolute;
    top: 10px;
    color: #020817;
    font-size: 11px;
    font-weight: bold;
    font-style: normal;
    text-transform: uppercase;
    z-index: 13;
    padding: 4px 10px;
    border-radius: 6px;
    background: hsla(0, 0%, 100%, .8);
}

.split-text-left {
    left: 10px;
}

.split-text-right {
    right: 10px;
}

/* Fixed bottom order button (minimal JS toggles body .order-now-fixed-visible) */
.order-now-fixed {
    position: fixed;
    bottom: 26px;
    z-index: 9999;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    transform: translateY(6px);
    /* default fallback layout: center and limit to container max-width */
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    width: calc(100% - 30px);
    max-width: 420px;
    /* matches .container max-width in this theme */
    box-sizing: border-box;
}

.order-now-fixed.btn {
    height: 45px;
    align-items: center;
    justify-content: center;
}

body.order-now-fixed-visible .order-now-fixed {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

@media (max-width: 420px) {
    .order-now-fixed {
        width: calc(100% - 10px);
        left: 50%;
        transform: translateX(-50%) translateY(6px);
    }

    body.order-now-fixed-visible .order-now-fixed {
        transform: translateX(-50%) translateY(0);
    }
}

/* If the cloned fixed button is placed inside .container, make it fill container width */
.container .order-now-fixed {
    width: calc(100% - 30px) !important;
    max-width: calc(390px - 15px) !important;
    transform: translateX(0) translateY(6px);
    left: 50% !important;
    transform: translateX(-50%) !important;
}

@media (max-width: 420px) {
    .container .order-now-fixed {
        width: 100% !important;
        max-width: 100% !important;
    }
}

body.order-now-fixed-visible .container .order-now-fixed {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Checkout form styles */
.checkout-form-wrap {
    margin: 18px 0 40px;
}

.checkout-form {
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(24, 39, 88, 0.06);
}

.checkout-form-title {
    font-size: 1.05rem;
    margin: 0 0 12px;
    text-align: center;
    text-transform: uppercase;
    color: #253a8a;
}

.checkout-form .field {
    margin-bottom: 12px;
}

.checkout-form label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: #333;
}

.checkout-form input[type="text"],
.checkout-form input[type="tel"] {
    width: 100%;
    height: 44px;
    padding: 8px 12px;
    border: 1px solid #e6e9f2;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
}

.checkout-form input[type="text"]:focus,
.checkout-form input[type="tel"]:focus {
    border-color: var(--green);
    box-shadow: 0 4px 14px rgba(103, 195, 77, 0.08);
}

.checkout-form .checkout-submit {
    width: 100%;
    height: 44px;
}

.checkout-form-message {
    margin-top: 10px;
    font-size: 0.95rem;
    display: none;
}

.checkout-form-message.success {
    color: #1a7f2a;
    display: block;
}

.checkout-form-message.error {
    color: #d32f2f;
    display: block;
}

/* Delivery option styles */
.delivery-field {
    margin-top: 12px;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.delivery-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.delivery-custom {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #ff8c00;
    background: transparent;
    display: inline-block;
    flex: 0 0 22px;
    transition: background .12s ease, transform .12s ease;
}

.delivery-option input:checked+.delivery-custom {
    background: #ff8c00;
    transform: scale(1.03);
}

.delivery-text {
    font-weight: 700;
    text-transform: uppercase;
    color: #737373;
    font-size: 0.95rem;
}

.delivery-icon {
    margin: 0 auto 10px;
    display: flex;
    /* place your image inside this div or replace it with an <img> */
}

.delivery-note {
    color: #737373;
    font-size: 14px;
    text-align: center;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50px;
    height: 100%;
    z-index: 10;
    transform: translateX(-50%);
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-handle svg {
    position: absolute;
    top: calc(50% - 20px);
    left: 4px;
    width: 40px;
    height: 40px;
    padding: 5px;
    border: 5px solid #fff;
    color: #fff;
    border-radius: 100%;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.slider-handle:before {
    content: " ";
    display: block;
    width: 6px;
    height: calc(50% - 20px + 2px);
    position: absolute;
    left: 50%;
    margin-left: -3px;
    z-index: 3;
    transition: .1s;
    top: 0;
    background: #fff;
}

.slider-handle:after {
    content: " ";
    display: block;
    width: 6px;
    height: calc(50% - 20px + 2px);
    position: absolute;
    left: 50%;
    margin-left: -3px;
    z-index: 3;
    transition: .1s;
    top: calc(50% + 20px - 2px);
    background: #fff;
}


.reviews-form .review-message {
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
}

.reviews-subtitle {
    margin-top: 0 !important;
    margin-bottom: 1.2rem !important;
    text-transform: none !important;
    color: #5A6273 !important;
    font-size: 16px !important;
}

.reviews-form .review-success {
    background: #e9f7ef;
    color: #2b8a3e;
}

.reviews-form .review-error {
    background: #ffe9e9;
    color: #c23a3a;
}

.review-form .field {
    margin-bottom: 10px;
}

.review-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.review-form input[type="text"],
.review-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
}

.review-stars {
    display: inline-block;
    font-size: 22px;
    color: #ddd;
    cursor: pointer;
    user-select: none;
}

.review-stars .star {
    color: #ddd;
    transition: color .12s;
}

.review-stars .star.active {
    color: #f5b301;
}

.review-stars--display {
    pointer-events: none;
}

.review-stars--display .star {
    cursor: default;
}

.review-stars .star.hover {
    color: #ffd466;
}

.reviews-list {
    margin-top: 12px;
}

.single-review {
    border-top: 1px solid #f0f0f0;
    padding: 10px 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.review-author {
    font-weight: 700;
}

.review-rating {
    color: #f5b301;
}

.review-body {
    color: #333;
}

/* Reviews slider styles */
.reviews {
    margin-top: 18px;
    margin-bottom: 20px;
}

.reviews .reviews-swiper {
    position: relative;
    padding-bottom: 32px;
    /* reserve space for pagination so it doesn't overlap attached image */
    overflow: visible;
}

.reviews-swiper {
    margin: 0 -30px;
    padding: 0 30px 40px;
}

.reviews .review-slide {
    /* increased left padding as requested */
    /* padding: 15px; */
    /* background: linear-gradient(145deg, #ffffff, #f3f5f8); */
    /* border: 1px solid rgba(0, 0, 0, 0.06); */
    /* box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.08), -6px -6px 16px rgba(255, 255, 255, 0.9); */
    /* transition: all .3s ease; */
    /* margin-bottom: 12px; */
    /* border-radius: 16px; */
    transition: opacity .5s ease;
    /* remove heavy transitions so there are no hover effects */
    position: relative;
    overflow: hidden;
    width: 295px;
    opacity: .3;
}

.reviews .review-slide img {
    border-radius: 16px;
    margin: 0 !important;
}

.reviews .swiper-slide-active {
    /* box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.08), -6px -6px 16px rgba(255, 255, 255, 0.9); */
    opacity: 1 !important;
}

/* Inner highlight and accent that will be visible even if an outer container uses overflow:hidden */
/* .reviews .review-slide::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, rgba(103, 195, 77, 0.95), rgba(103, 195, 77, 0.6));
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    pointer-events: none;
} */

/* .reviews .review-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    pointer-events: none;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.03);
} */


.swiper-pagination-bullet {
    opacity: .3;
    background: #000;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Hover effects intentionally removed per request */
.review-head {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 8px;
}

.review-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 54px;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-meta {
    display: flex;
    flex-direction: column;
}

.review-name {
    font-weight: 700;
    margin-bottom: 4px;
}

.review-rating img {
    width: 86px;
    height: auto;
    display: block;
    margin-bottom: 4px;
}

.review-date {
    font-size: 12px;
    color: #888;
}

.review-text {
    margin: 0;
    color: #222;
}

.review-attached {
    margin-top: 10px;
}

.review-attached img {
    width: 60%;
    border-radius: 8px;
    display: block;
    margin: 10px auto 0;
}

.review-attached.placeholder {
    height: 0;
}

/* Pagination positioned inside the slider but below slides (won't overlap attached image) */
.reviews-swiper .swiper-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    text-align: center;
}

.review-confirmed {
    color: var(--green);
    font-weight: 700;
    font-size: 12px;
    margin-top: 6px;
}


.checkout-title {
    font-size: 20px;
    text-transform: uppercase;
    width: max-content;
    margin: 0 auto 25px;
    border: 4px solid #5668FFFF;
    padding: 5px 20px;
    border-radius: 100px;
}

.checkout-count-text {
    text-align: center;
    font-size: 16px;
    margin-bottom: 5px;
}

.checkout-count-text span {
    color: rgb(226, 99, 31);
    font-weight: bold;
}

.checkount-count-slider {
    display: flex;
    width: 100%;
    margin-bottom: 25px;
}


/* Checkout product frame styles */
.checkout-product-frame {
    border: 1px solid #e6e6e6;
    padding: 16px;
    border-radius: 8px;
    background: #fff;
    max-width: 900px;
    margin-top: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.checkout-prod-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.checkout-prod-image img {
    width: 130px;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
}

.checkout-prod-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.checkout-prod-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222;
}

.checkout-prod-prices {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 6px;
}

.checkout-old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 12px;
}

.checkout-new-price {
    background: #f7f9fb;
    padding: 6px 9px;
    border-radius: 6px;
    color: #c0392b;
    font-weight: 700;
    font-size: 16px;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.02);
}

.checkout-cart-heading {
    font-size: 1.15rem;
    margin: 0 0 14px;
    font-weight: 800;
    color: #222;
}

.checkout-cart-lines {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.checkout-cart-empty {
    text-align: center;
    padding: 18px 12px;
    color: #666;
    margin: 0;
}

.checkout-prod-row--cart {
    align-items: flex-start;
}

.checkout-prod-row--cart .checkout-prod-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
    width: 100%;
}

.checkout-prod-prices--line .checkout-new-price {
    margin: 0;
}

.checkout-qty {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid #e0e4ec;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.checkout-qty__btn {
    width: 38px;
    min-height: 38px;
    border: 0;
    background: #f3f5f9;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
    color: #222;
}

.checkout-qty__btn:active {
    background: #e6eaf3;
}

.checkout-qty__input {
    width: 52px;
    text-align: center;
    border: 0;
    border-left: 1px solid #e0e4ec;
    border-right: 1px solid #e0e4ec;
    font-weight: 700;
    font-size: 15px;
    -moz-appearance: textfield;
}

.checkout-qty__input::-webkit-outer-spin-button,
.checkout-qty__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.checkout-cart-subtotal-wrap {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #eee;
}

.checkout-cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 700;
}

.checkout-cart-subtotal strong {
    color: #c0392b;
    font-weight: 800;
}

.borodar-add-to-cart--loading {
    opacity: 0.72;
    pointer-events: none;
}

@keyframes drimo-header-cart-pop {
    0% {
        transform: scale(1);
    }

    35% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.drimo-header-cart.drimo-header-cart--pulse {
    animation: drimo-header-cart-pop 0.65s ease;
    border-color: #5668ff;
    box-shadow: 0 0 0 3px rgba(86, 104, 255, 0.22);
}

.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}


/* Fixed bottom "order now" button styles */
.order-now-fixed {
    /* starts hidden; visibility toggled with .visible */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
    /* disabled until visible */
}

.order-now-fixed.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Ensure the cloned .btn fills the container width and looks like the original */
.order-now-fixed.btn {
    display: flex;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 600px) {

    /* small tweaks for narrow viewports if needed */
    .order-now-fixed {
        left: 0 !important;
        width: 100% !important;
    }
}



.delivery-option {
    border-color: #d9d9d9;
    border: 1px solid #d9d9d9;
    border-radius: 6px 6px 0 0;
    display: flex;
    padding: 8px 17px;
    margin: 0 !important;

}

.delivery-option {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.delivery-info {
    border-radius: 0 0 6px 6px;
    padding: 5px 20px;
    background-color: #fafafa;
    border: 1px solid #d9d9d9;
    border-top: 0;
}

@media (max-width: 420px) {
    .page-template-checkout .container {
        padding: 0 15px;
    }

    .hero-slider {
        margin: 0 -15px 10px;
    }

    .quote {
        margin: 20px -15px 0;
    }

    .hero-video,
    .split-slider,
    .content figure {
        margin: 0 -15px;
    }

    .order-now-fixed.btn {
        width: calc(100% - 30px) !important;
    }



}

.content p {
    text-align: justify;
}

.page-template-checkout {
    padding-bottom: 0 !important;
}

.page-template-checkout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    gap: 35px;
}

.checkout-container {
    flex: 1;
}

.footer {
    background: #5668FFFF;
    padding: 48px 15px;
    text-align: center;
}

.footer__title {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-size: 20px;
    color: #fff;
}

.footer-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: center;
    margin-bottom: 15px;
}

.footer-menu a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}

.footer__socials {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer__socials a {
    display: flex;
}

.footer__copyright {
    color: #fff;
    font-size: 16px;
}

.benefits-list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    gap: 5px;
}

.benefits-item {
    text-align: center;
    color: #374151;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
}

.benefits-item img {
    width: 50px;
    height: 50px !important;
    display: flex;
    object-fit: contain;
    margin: 0 auto 6px;
}

.benefits-btn-text {
    text-align: center;
    margin: 5px 0 15px;
    font-size: 12px;
}

.benefits-btn-text img {
    display: inline;
    width: 15px;
    position: relative;
    top: 4px;
}

.hero-badge {
    position: absolute;
    left: 6px;
    bottom: 100px;
    padding: 7px 13px;
    border-radius: 999px;
    color: #fff;
    font-size: 11px;
    white-space: nowrap;
    background: rgba(44, 62, 90, 0.95);
    backdrop-filter: blur(10px);
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, .05);
    font-weight: bold;
}

.product-benefits__slider {
    overflow: hidden;
    padding: var(--section-margin) 0 20px;
}

.product-benefits__slider .swiper-slide {
    width: 230px;
    border-radius: 16px;
    padding: 20px 15px;
    transition: all .5s ease;
    border: 1px solid rgba(0, 0, 0, .05);
}

.product-benefits__slider .swiper-slide.swiper-slide-active {
    box-shadow: 0px 0px 14px -2px rgba(0, 0, 0, 0.47);
}

.product-benefits__slider .swiper {
    overflow: visible;
}

.product-benefits__title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #1D1D1F;
}

.product-benefits__description {
    color: #374151;
    text-align: center;
}

.color-section {
    background-color: #ACBED8;
    padding: 20px 0;
    color: #fff;
    margin-bottom: var(--section-margin);
}

.color-section .content h3 {
    color: #1C2230;
    margin-top: 0;
    text-transform: none;
}

.color-section .content img {
    margin-left: -15px;
    margin-right: -15px;
    max-width: inherit !important;
    width: calc(100% + 30px) !important;
}

.color-section .content h4 {
    text-transform: none;
    color: #2C3E5A;
}

.color-section .content p {
    color: #1C2230;
}

.product-benefits__image {
    width: 100px;
    height: 100px !important;
    object-fit: contain;
    margin: 0 auto;
    display: flex;
}

.security__wrap {
    display: grid;
    gap: 10px;
    margin-bottom: var(--section-margin);
}

.security__item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 10px;
    align-items: center;
    border-radius: 16px;
    padding: 20px 15px;
    background: #EEF2F8;
    border: 1px solid rgba(0, 0, 0, 0.06);
  
}

.security__icon {
    display: flex;
    object-fit: contain;
}

.security__title {
    text-align: left;
    margin-bottom: 5px;
    font-size: 1rem;
    color: #1D1D1F;
}

.reviews-wrap {
    overflow: hidden;
}

.reviews-bottom-text {
    text-align: center;
    color: #374151;
}

.color-section-2 {
    padding: var(--section-margin) 0 75px;
    background: #1D1D1F;
}

.color-section-2 h3,
.color-section-2 p {
    color: #fff;
}

.color-section-2 img {
    margin: 0;
}


.color-section-2 .price {
    margin: 15px 0 0;
}

.color-section-2 .new-price {
    color: #fff;
}

.color-section-2 .discount {
    color: #fff;
}

.about {
    margin-bottom: 25px;
    background: #EEF2F8;
    color: #fff;
    border-radius: 16px;
    padding: 15px;
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 10px;
    align-items: center;
}

.about__image {
    background: #374151;
    height: 60px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.about__title {
    color: #1C2230;
    margin-bottom: 5px;
}

.about__desc {
    color: #374151;
    font-size: 13px;
}

.about__quote {
    color: #fff;
    background: #2C3E5A;
    margin-top: 7px;
    display: inline-block;
    border-radius: 5px;
    padding: 5px 10px;
}

.about-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2C3E5A;
    font-size: 12px;
    gap: 7px;
    margin-top: 10px;
}

.about-item {
    display: flex;
    align-items: center;
    gap: 5px;

}


.product-benefits__slider .security__item {
    background: #EEF2F8;
    border: 1px solid rgba(0, 0, 0, .05);
}

.product-benefits__slider .security__wrap {
    margin-bottom: 0;
}

.benefits-slider__bottom-text {
    color: #8A92A0;
    text-align: justify;
    margin-top: 10px;
    font-size: 11px;
}

.hero-short-desc img {
    margin: 0 -15px;
    width: calc(100% + 30px) !important;
    max-width: inherit !important;
}

.protocol {
    margin-top: 20px;
    border-radius: 16px;
    background: #1A1A1A;
    padding: 15px;
    margin-bottom: 20px;
}

.protocol-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.protocol-icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    color: #ACBED8;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(172, 190, 216, 0.15);
    font-size: 20px;
}

.protocol-title {
    font-size: 14px;
    color: #EAF0F8;
}


.protocol-text {
    color: #B8C2D4;
}

.protocol-bottom-title {
    margin-bottom: 10px;
    color: #2C3E5A;
}

.protocol-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.protocol-item {
    background: #fff;
    border-radius: 16px;
    padding: 15px;
}

.protocol-image {
    color: #2C3E5A;
    font-size: 20px;
    margin-bottom: 5px;
}

.protocol-heading {
    color: #1C2230;
    margin-bottom: 5px;
    font-weight: 600;
}

.protocol-txt {
    color: #5A6273;
}

.protocol-quote {
    color: #2C3E5A;
    font-size: 12px;
}

.protocol-quote i {
    color: #2C3E5A;
}

.reviews-info {
    text-align: center;
    margin-bottom: 10px;
    opacity: .5;
}

.faq {
    background: #ACBED8;
    padding: var(--section-margin) 0;
}


.assistant-title {
    margin-top: 0 !important;
    text-align: left !important;
    font-size: 21px !important;
    margin-bottom: .6rem !important;
}

.assistant-subtitle {
    margin-top: 0 !important;
    margin-bottom: 1.25rem !important;
    font-weight: 400 !important;
    text-align: left !important;
    font-size: 16px !important;
}


.faq-title {
    text-align: center;
    color: #1C2230;
    text-transform: none !important;
    margin-top: 0 !important;
    margin-bottom: 5px !important;
}

.faq-subtitle {
    text-align: center;
    margin-bottom: 10px !important; 
    font-weight: 500;
    color: #2C3E5A;
}

.faq-wrap {
    display: grid;
    gap: 10px;
}

.faq-item {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    cursor: pointer;

}

.faq-question {
    color: #2C3E5A;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
}

.faq-question i {
    color:  #5A6273;
    transition: transform .3s ease;
}

.faq-answer {
    padding-top: 10px;
    display: none;
    color: #374151;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.color-section-2 img {
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px) !important;
    max-width: inherit !important;
}

.about-footer {
    position: absolute;
    left: 0;
    bottom: -72px;
    margin: 0;
    width: 100%;
    color: #86868B;
}

.heading {
    font-size: 22px !important;
}