/* #region  COOKIE CONSENT */

.cookie-consent {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 99999;
    width: 340px;
    max-width: calc(100vw - 48px);
    background-color: var(--main-color);
    color: #F3F0E4;
    border-radius: 16px;
    box-shadow: 0 20px 40px -12px rgba(30, 68, 50, 0.35);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .35s ease, transform .35s ease;
}

.cookie-consent.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cookie-consent__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background-color: rgba(243, 240, 228, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-consent__content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cookie-consent h2 {
    color: #F3F0E4;
    font-family: inherit;
    font-size: 1rem;
    margin: 0 0 4px;
}

.cookie-consent p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(243, 240, 228, 0.85);
    margin: 0;
}

.cookie-consent__option {
    display: block;
    margin-top: 8px;
    font-size: 0.82rem;
    color: rgba(243, 240, 228, 0.85);
    cursor: pointer;
}

.cookie-consent__option input {
    accent-color: var(--accent-color);
}

.cookie-consent__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}

.cookie-consent__link {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(243, 240, 228, 0.75);
    border-bottom: 1px solid rgba(243, 240, 228, 0.35);
}

.cookie-consent__link:hover {
    color: #F3F0E4;
    border-bottom-color: #F3F0E4;
    transform: none;
}

.cookie-consent__accept,
.cookie-consent__reject,
.cookie-consent__save {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .55rem 1.3rem;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: 2rem;
    border: none;
    cursor: pointer;
    background-color: var(--accent-color);
    color: var(--main-color);
    transition: .3s;
}

.cookie-consent__accept:hover {
    background-color: var(--accent-color-dark);
}

.cookie-consent__reject,
.cookie-consent__save {
    background: transparent;
    border: 1px solid rgba(243, 240, 228, 0.45);
    color: #F3F0E4;
}

.cookie-consent__reject:hover,
.cookie-consent__save:hover {
    border-color: #F3F0E4;
    background: rgba(243, 240, 228, 0.1);
}

@media (max-width: 480px) {
    .cookie-consent {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
        max-width: none;
    }
}

/* #endregion */

/* #region  BREADCRUMBS */

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin: 1.5rem 0 0;
    padding: 0;
    font-size: 0.85rem;
    color: var(--font-color-soft);
}

.breadcrumbs a {
    color: var(--font-color-soft);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--main-color);
    transform: none;
}

.breadcrumbs__sep {
    color: #C9C2AE;
}

.breadcrumbs__current {
    color: var(--main-color);
    font-weight: 600;
}

/* #endregion */

/* #region CATALOG HERO */

.catalog-hero {
    width: min(100% - 3rem, 1160px);
    margin: 2.25rem auto 3.5rem;
    padding: 0;
    text-align: left;
}

.catalog-hero .breadcrumbs {
    margin: 0 0 1rem;
}

.catalog-hero__content {
    position: relative;
    overflow: hidden;
    padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 5vw, 5rem);
    border: 1px solid #dfd5b9;
    border-radius: 22px;
    background-color: #f6f3e9;
    box-shadow: 0 16px 36px -30px rgba(30, 68, 50, 0.55);
}

.catalog-hero__content::after {
    content: none;
}

.catalog-hero__eyebrow {
    position: relative;
    z-index: 1;
    margin: 0 0 0.65rem;
    color: var(--accent-color-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.catalog-hero h1 {
    position: relative;
    z-index: 1;
    max-width: 21ch;
    margin: 0;
    color: var(--main-color);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.12;
    text-align: left;
}

.catalog-hero h1::after {
    content: "";
    display: block;
    width: 3.5rem;
    height: 3px;
    margin: 1rem 0 1.1rem;
    border-radius: 99px;
    background: var(--accent-color);
}

.catalog-hero__lead {
    position: relative;
    z-index: 1;
    max-width: 64ch;
    margin: 0;
    color: var(--font-color);
    font-size: clamp(1rem, 1.7vw, 1.16rem);
    line-height: 1.65;
}

.catalog-hero__contact {
    color: var(--main-color);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--accent-color);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.catalog-hero__contact:hover {
    color: var(--main-color-mid);
    transform: none;
}

.contact-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin: 0.55rem 0;
}

.contact-detail svg {
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--accent-color-dark);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.contact-detail a {
    color: var(--main-color);
    font-weight: 600;
    text-decoration: none;
}

.contact-detail a:hover {
    color: var(--main-color-mid);
    text-decoration: underline;
    text-decoration-color: var(--accent-color);
    text-underline-offset: 3px;
    transform: none;
}

.catalog-hero .subpage-description {
    width: auto;
    max-width: 64ch;
    margin: 1.35rem 0 0;
}

.catalog-hero .subpage-description__lead {
    font-size: clamp(1rem, 1.7vw, 1.16rem);
}

.catalog-hero .subpage-description__more summary {
    margin-bottom: 0;
}

.catalog-hero .subpage-description__body {
    margin-top: 1rem;
}

.catalog-hero__support {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 1.4rem 0 0;
    color: var(--main-color);
    font-size: 0.93rem;
    font-weight: 600;
}

.catalog-hero__support::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(217, 164, 65, 0.18);
}

@media (max-width: 767px) {
    .catalog-hero {
        width: calc(100% - 2rem);
        margin: 1.5rem auto 2.5rem;
    }

    .catalog-hero__content {
        padding: 1.75rem 1.35rem;
        border-radius: 18px;
    }

    .catalog-hero h1 {
        font-size: 2rem;
    }
}

/* #endregion */

@media (max-width: 767px) {
    .breadcrumbs {
        font-size: 0.78rem;
        margin-top: 1rem;
    }
}

/* #endregion */

/* #endregion */
.subpage-description__body {
    overflow: hidden;
}

main {
    padding-bottom: 4rem;
}

.item-actions .btn-outline,
.item-back .btn-outline {
    border-color: var(--main-color);
    color: var(--main-color) !important;
}

.item-actions .btn-outline:hover,
.item-back .btn-outline:hover {
    background-color: var(--main-color);
    color: #F3F0E4 !important;
    transform: none;
}

.item-mark {
    margin: 0 0 1.5rem;
}

.item-mark img {
    display: block;
    width: 100%;
    max-width: none;
}

.item-header {
    margin: 2.5rem 0 4rem;
}

.item-description-wrap {
    margin: 4rem 0 5rem;
}

.item-description-images {
    margin: 5rem 0;
}

.item-back {
    margin: 6rem 0 3rem;
}

.item-header {
    margin: 3.5rem 0 6rem;
}

.item-description-wrap {
    margin: 6rem 0 7rem;
}

.item-description-images {
    margin: 7rem 0;
}

.item-back {
    margin: 9rem 0 6rem;
}

@media (max-width: 767px) {
    .item-header {
        margin: 2.5rem 0 4rem;
    }

    .item-description-wrap {
        margin: 4rem 0 5rem;
    }

    .item-description-images {
        margin: 5rem 0;
    }

    .item-back {
        margin: 6rem 0 4rem;
    }
}

.item-gallery__main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    background-color: #fff;
    border: 1px solid #CFC7AE;
    border-radius: 16px;
    box-shadow: 0 8px 24px -12px rgba(30, 68, 50, 0.18);
    overflow: hidden;
}

.item-gallery__main img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.item-gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background-color: rgba(30, 68, 50, 0.65);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color .2s;
}

.item-gallery__arrow:hover {
    background-color: var(--main-color);
}

.item-gallery__arrow--prev {
    left: 12px;
}

.item-gallery__arrow--next {
    right: 12px;
}

.item-gallery__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.item-gallery__thumb {
    width: 76px;
    height: 76px;
    padding: 4px;
    background-color: #fff;
    border: 2px solid #CFC7AE;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color .2s;
}

.item-gallery__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.item-gallery__thumb:hover,
.item-gallery__thumb.is-active {
    border-color: var(--main-color);
}

.item-gallery button:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.item-gallery__main img.is-zoomable {
    cursor: zoom-in;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: rgba(10, 22, 16, 0.75);
    opacity: 0;
    transition: opacity .25s ease;
}

.lightbox[hidden] {
    display: none;
}

.lightbox.is-open {
    opacity: 1;
}

.lightbox__window {
    position: relative;
    padding: 1rem;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.94);
    transition: transform .25s ease;
}

.lightbox.is-open .lightbox__window {
    transform: scale(1);
}

.lightbox__window img {
    display: block;
    max-width: min(88vw, 1100px);
    max-height: 82vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background-color: rgba(30, 68, 50, 0.85);
    color: #fff;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color .2s;
}

.lightbox__close:hover {
    background-color: var(--main-color);
}

.lightbox__stage {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    height: 100%;
}

.lightbox__window {
    flex: 0 1 auto;
    width: min(calc(100vw - 200px), 1000px);
    height: min(82vh, 700px);
}

.lightbox__window img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
}

.lightbox__nav {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color .2s;
}

.lightbox__nav:hover {
    background-color: rgba(255, 255, 255, 0.32);
}

@media (max-width: 767px) {
    .lightbox {
        padding: 1rem;
    }

    .lightbox__stage {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        align-content: center;
        gap: 0.8rem;
    }

    .lightbox__window {
        grid-column: 1 / -1;
        grid-row: 1;
        width: 100%;
        height: min(62vh, 520px);
        padding: 0.6rem;
    }

    .lightbox__nav--prev {
        grid-row: 2;
        justify-self: end;
    }

    .lightbox__nav--next {
        grid-row: 2;
        justify-self: start;
    }
}

.lightbox__window {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__window img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.lightbox__window img {
    max-width: min(100%, var(--max-w, 100%));
    max-height: min(100%, var(--max-h, 100%));
}


.item-description h3 {
    margin: 1.5rem 0 0.8rem;
    font-size: 1.2rem;
    color: var(--main-color);
}

.item-specs {
    width: 100%;
    border-collapse: collapse;
    margin: 0.5rem 0 0.6rem;
    font-size: 0.95rem;
}

.item-specs th,
.item-specs td {
    padding: 0.6rem 0.9rem;
    border: 1px solid #E7E1D2;
    text-align: left;
    vertical-align: top;
}

.item-specs th {
    width: 38%;
    font-weight: 600;
    background-color: var(--main-color-light);
    color: var(--main-color);
}

.item-specs-note {
    font-size: 0.8rem;
    color: var(--font-color-soft);
}

@media (max-width: 767px) {
    .item-specs th {
        width: 45%;
    }
}

.item-gallery__dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 0.9rem;
}

.item-gallery__dot {
    width: 24px;
    height: 6px;
    padding: 0;
    border: none;
    border-radius: 3px;
    background-color: rgba(30, 68, 50, 0.25);
    cursor: pointer;
    transition: background-color .2s, width .2s;
}

.item-gallery__dot.is-active {
    width: 36px;
    background-color: var(--main-color);
}

@media (max-width: 767px) {
    .item-gallery__thumbs {
        display: none;
    }

    .item-gallery__dots {
        display: flex;
    }
}

@media (max-width: 767px) {
    .item-gallery__thumbs {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.5rem;
        margin-top: 0.7rem;
        padding-bottom: 4px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .item-gallery__thumbs::-webkit-scrollbar {
        display: none;
    }

    .item-gallery__thumb {
        flex: 0 0 auto;
        width: 56px;
        height: 56px;
        padding: 3px;
        border-radius: 8px;
        scroll-snap-align: center;
    }

    .item-gallery__dots {
        display: none;
    }
}

.contact-map {
    width: 100%;
    max-width: 650px;
    margin: 2rem auto 0.8rem;
    border: 1px solid #CFC7AE;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px -12px rgba(30, 68, 50, 0.18);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

.contact-map__link {
    margin-bottom: 1rem;
}

@media (max-width: 767px) {
    .contact-map iframe {
        height: 320px;
    }
}

.contact-map--small {
    max-width: 500px;
}

.contact-map--small iframe {
    height: 260px;
}

/* #region  TRUST AND PRODUCT CARDS */

.trust-section {
    width: min(1120px, 90%);
    margin: 5rem auto;
    padding: 3.25rem;
    border: 1px solid #D9D1B9;
    border-radius: 24px;
    background: #fffdf8;
    text-align: center;
}

.trust-section__intro {
    max-width: 660px;
    margin: 0 auto 2rem;
}

.eyebrow {
    margin: 0 0 .5rem;
    color: var(--accent-color-dark);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.trust-section h2 {
    color: var(--main-color);
    margin-bottom: .75rem;
}

.trust-section__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.trust-card {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    padding: 1.25rem;
    border-radius: 14px;
    background: var(--main-color-light);
    color: var(--font-color-soft);
}

.trust-card strong {
    color: var(--main-color);
    font-size: 1.05rem;
}

.trust-card span {
    font-size: .9rem;
    line-height: 1.45;
}

.trust-card a {
    color: var(--main-color);
    font-weight: 700;
}

.trust-card a:hover {
    color: var(--accent-color-dark);
    transform: none;
}

.trust-section__cta:hover {
    transform: none;
    background: var(--main-color);
    color: #F3F0E4;
    border-color: var(--main-color);
}

.trust-section__cta {
    border-color: var(--main-color);
    color: var(--main-color) !important;
    font-weight: 700;
}

.trust-section__cta:hover {
    color: #F3F0E4 !important;
}

.section-cards .card-img-top {
    display: block;
    width: 100%;
    height: 240px;
    padding: 1rem;
    object-fit: contain;
    background: #F5F1E4;
}

/* #region SHOP CATALOG */

.shop-category-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .55rem;
    width: 100%;
    margin: 1.15rem 0 0;
}

.shop-category-nav a {
    display: flex;
    align-items: center;
    min-height: 2.65rem;
    padding: .55rem .75rem;
    border: 1px solid #dfd5b9;
    border-radius: 12px;
    background: #fffdf7;
    color: var(--main-color);
    font-size: .8rem;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
    transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.shop-category-nav a::before {
    content: "";
    width: .35rem;
    height: .35rem;
    flex: 0 0 auto;
    margin-right: .45rem;
    border-radius: 50%;
    background: var(--accent-color);
}

.shop-category-nav a:hover {
    border-color: var(--accent-color);
    background: #fff;
    color: var(--main-color);
    transform: translateY(-2px);
}

.shop-catalog .section-cards {
    margin: 4rem auto;
    scroll-margin-top: 10.5rem;
}

.shop-catalog .section-cards .card-img-top {
    height: auto;
    aspect-ratio: 4 / 3;
    padding: clamp(.85rem, 2vw, 1.25rem);
    border-bottom: 1px solid #ebe4d3;
    background: linear-gradient(145deg, #faf8f0, #f4f0e3);
    object-fit: contain;
}

.shop-catalog .card .card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.shop-catalog .card .card-title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.shop-catalog .card .card-text {
    display: -webkit-box;
    overflow: hidden;
    min-height: 2.8em;
    margin-bottom: 0;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.shop-catalog .card-footer {
    min-height: 5.65rem;
    padding: .85rem 1.2rem 1rem;
    justify-content: center;
}

.shop-catalog .shop-price,
.shop-catalog .shop-sub-price {
    line-height: 1.35;
}

.shop-catalog .shop-price br,
.shop-catalog .shop-sub-price br {
    display: none;
}

.shop-catalog .shop-price span,
.shop-catalog .shop-sub-price span {
    display: block;
    margin-top: .15rem;
}

.shop-catalog .shop-price--funded {
    color: var(--main-color);
}

.shop-catalog .shop-price--quote {
    color: var(--main-color);
    font-size: .95rem;
}

@media (max-width: 767px) {
    .shop-category-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .5rem;
    }

    .shop-category-nav a {
        min-height: 3.1rem;
        padding: .55rem .65rem;
        font-size: .75rem;
    }

    .shop-catalog .section-cards {
        margin: 3rem auto;
        scroll-margin-top: 6.5rem;
    }
}

/* #endregion */

.product-card__hint {
    display: flex;
    align-items: center;
    gap: .45rem;
    margin: 1rem 0 0;
    color: var(--main-color);
    font-size: .8rem;
    font-weight: 600;
}

.product-card__hint::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-color);
}

.skip-link {
    position: fixed;
    top: .75rem;
    left: .75rem;
    z-index: 10000;
    padding: .7rem 1rem;
    border-radius: .5rem;
    background: var(--main-color);
    color: #fff !important;
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.footer-register {
    color: rgba(243, 240, 228, .62);
    font-size: .82rem;
    line-height: 1.65;
}

.item-quick-facts {
    max-width: 920px;
    margin: 0 auto 5rem;
    padding: 1.6rem 1.75rem;
    border: 1px solid #d7dfd8;
    border-radius: 16px;
    background: var(--main-color-light);
    text-align: left;
}

.item-quick-facts h2 {
    margin-bottom: 1rem;
    color: var(--main-color);
    font-size: 1.55rem;
}

.item-quick-facts dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem 1.5rem;
    margin: 0 0 1rem;
}

.item-quick-facts dl > div {
    padding-bottom: .65rem;
    border-bottom: 1px solid rgba(30, 68, 50, .16);
}

.item-quick-facts dt {
    margin-bottom: .15rem;
    color: var(--main-color);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.item-quick-facts dd,
.item-quick-facts p {
    margin: 0;
    color: var(--font-color-soft);
}

.item-quick-facts p {
    font-size: .92rem;
}

.contact-form {
    max-width: 650px;
    margin: 3rem auto;
    padding: 2rem;
    border: 1px solid #d7dfd8;
    border-radius: 18px;
    background: #fff;
    text-align: left;
    box-shadow: 0 12px 28px -20px rgba(30, 68, 50, .35);
}

.contact-form h2 {
    color: var(--main-color);
}

.contact-form > label,
.contact-form__grid > label {
    display: block;
    margin-top: 1rem;
    color: var(--main-color);
    font-size: .9rem;
    font-weight: 700;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: .4rem;
    padding: .7rem .8rem;
    border: 1px solid #b9c9bc;
    border-radius: 8px;
    color: var(--font-color);
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 1px;
    border-color: var(--accent-color);
}

.contact-form button {
    margin-top: 1.3rem;
}

.contact-form button:disabled {
    cursor: wait;
    opacity: .7;
}

.contact-form__consent {
    display: flex !important;
    align-items: flex-start;
    gap: .6rem;
    margin-top: 1rem !important;
    color: var(--font-color-soft) !important;
    font-size: .82rem !important;
    font-weight: 400 !important;
    line-height: 1.45;
}

.contact-form__consent input {
    width: auto;
    margin: .2rem 0 0;
}

.contact-form__honeypot {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.contact-form__status {
    min-height: 1.4em;
    margin: .8rem 0 0;
    color: var(--font-color-soft);
    font-size: .88rem;
}

@media (max-width: 767px) {
    .trust-section {
        width: 90%;
        margin: 3.5rem auto;
        padding: 2rem 1.25rem;
    }

    .trust-section__items {
        grid-template-columns: 1fr;
    }

    .section-cards .card-img-top {
        height: 220px;
    }

    .item-quick-facts {
        margin: 0 auto 3.5rem;
        padding: 1.35rem;
    }

    .item-quick-facts dl {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.35rem;
    }

    .contact-form__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* #endregion */
