/* Heading weight: medium instead of light for visual hierarchy */
.serif.fw-300 {
    font-weight: 400 !important;
}

/* Main nav: remove all caps, increase weight */
.ds-menu-maincategories-desktop-box .ds-menu-maincategories-item-title {
    text-transform: none;
    font-weight: 400 !important;
}

li.ds-menu-maincategories-item.fsz-14.dark-text > * {
    font-weight: 400 !important;
}

/* Remove all caps from buttons */
.button, .button.button-primary {
    text-transform: none;
}

/* ===== Button hover system ===== */

/* Kill ripple and glow from main.min.css */
.button::before {
    display: none;
}

.button:hover:not([disabled]),
.button:active:not([disabled]),
.button.button-primary:hover:not([disabled]),
.button.button-primary:active:not([disabled]),
.button.button-secondary:hover:not([disabled]),
.button.button-secondary:active:not([disabled]),
.button.button-success:hover:not([disabled]),
.button.button-success:active:not([disabled]),
.button.button-warning:hover:not([disabled]),
.button.button-warning:active:not([disabled]),
.button.button-danger:hover:not([disabled]),
.button.button-danger:active:not([disabled]),
.button.button-info:hover:not([disabled]),
.button.button-info:active:not([disabled]),
.button.button-light:hover:not([disabled]),
.button.button-light:active:not([disabled]),
.button.button-dark:hover:not([disabled]),
.button.button-dark:active:not([disabled]) {
    text-shadow: none !important;
}

/*
 * Three hover tiers, all using brand palette:
 *
 * 1. Solid dark buttons (primary, dark)  → lighten to mid-green
 * 2. Solid colored buttons (success, danger, warning) → lighten slightly
 * 3. White / light buttons              → gold fill
 * 4. Outline buttons                    → fill with primary green
 */

/* 1. Solid primary & dark: lighten to a warmer mid-green */
.button.button-primary:hover:not([disabled]),
.button.button-dark:hover:not([disabled]) {
    background-color: #1c5040 !important;
    border-color: #1c5040 !important;
}

/* 2. Solid colored: subtle lighten */
.button.button-success:hover:not([disabled]) {
    background-color: #49a84f !important;
    border-color: #49a84f !important;
}
.button.button-danger:hover:not([disabled]) {
    background-color: #cc3333 !important;
    border-color: #cc3333 !important;
}
.button.button-warning:hover:not([disabled]) {
    background-color: #e09100 !important;
    border-color: #e09100 !important;
}

/* 3. White / light buttons: gold fill */
.button-hero-cta--solid:hover,
.button.button-light:hover:not([disabled]) {
    background-color: #d4a837 !important;
    border-color: #d4a837 !important;
    color: #fff !important;
}
.button.button-light:hover:not([disabled]) svg path {
    fill: #fff;
}

/* 4. Outline buttons: fill with primary green, white text */
.button.button-outline-primary:hover:not([disabled]),
.button.button-outline-primary:focus:not([disabled]) {
    background-color: var(--ds-primary-color) !important;
    border-color: var(--ds-primary-color) !important;
    color: #fff !important;
}

@media (min-width: 768px) {
    html {
        scroll-padding-top: 120px;
    }
}

.alert-block {
    right: 1rem;
    top: 1rem;
    left: 1rem;
}

@media(min-width:576px) {
    .alert-block {
        right: 1.5rem;
        top: 1.5rem;
        left: auto;
    }
}

.ds-alert {
    background: var(--ds-white-color);
    box-shadow: 0px 4px 24px 0px rgba(37, 38, 39, 0.10);
    padding: 1.5rem;
    overflow: hidden;
    border: var(--ds-main-border);
    border-radius: 0 !important;
}

.ds-alert-success {
    background: var(--ds-primary-light-color-light);
    border-left: 3px solid var(--ds-interactive-color);
}

.ds-alert-danger {
    background: var(--ds-primary-light-color-light);
    border-left: 3px solid var(--ds-red-color);
}

.ds-alert-warning {
    background: var(--ds-primary-light-color-light);
    border-left: 3px solid var(--ds-yellow-color);
}

.ds-alert .purchase-success {
    display: none !important;
}

.ds-alert-text {
    font-size: 13px;
}

@media(min-width:1200px) {
    .ds-alert-text {
        font-size: 14px;
    }
}

@media(min-width:420px) {
    .ds-alert {
        width: 370px;
    }
}

.ds-alert-text a {
    color: var(--ds-links-color);
    text-decoration: underline
}

.ds-alert-text a:hover {
    text-decoration: none
}

.alert-text-item+.alert-text-item {
    margin-top: .5rem
}

.ds-alert [data-notify="dismiss"]:hover {
    opacity: 0.6;
}

.ds-alert [data-bs-dismiss=modal] {
    display: none !important
}

.animated {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@keyframes fadeOutUp {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp
}

@-webkit-keyframes pulsation {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }

    50% {
        opacity: .5
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

@keyframes pulsation {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }

    50% {
        opacity: .5
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

@-webkit-keyframes iconOpacity {

    0%,
    100% {
        opacity: 0
    }

    40%,
    80% {
        opacity: .96
    }

    60% {
        opacity: 1
    }
}

@keyframes iconOpacity {

    0%,
    100% {
        opacity: 0
    }

    40%,
    80% {
        opacity: .96
    }

    60% {
        opacity: 1
    }
}

#ds_fixed_contact_button {
    background: var(--ds-primary-color);
    position: fixed;
    right: 15px;
    bottom: 26px;
    width: 50px;
    height: 50px;
    border-radius: 0;
    cursor: pointer;
    z-index: 1020
}

#ds_fixed_contact_button.clicked {
    z-index: 1041
}

#ds_fixed_contact_substrate {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 0;
    display: none
}

#ds_fixed_contact_substrate.active {
    z-index: 1020;
    display: block
}

.ds-fixed-contact-pulsation {
    background: var(--ds-primary-color);
    width: 80px;
    height: 80px;
    border-radius: 0;
    position: absolute;
    left: -15px;
    top: -15px;
    z-index: -1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-animation: 2s infinite pulsation;
    animation: 2s infinite pulsation;
    display: none;
}

@media(min-width:420px) {
    #ds_fixed_contact_button {
        right: 30px;
        width: 70px;
        height: 70px
    }

    .ds-fixed-contact-pulsation {
        width: 100px;
        height: 100px
    }
}

.ds-fixed-contact-icon {
    color: var(--ds-white-color);
    width: 100%;
    font-size: 20px;
    overflow: hidden;
    display: none;
}

.ds-fixed-contact-icon .fa-envelope {
    -webkit-animation: 3s infinite iconOpacity;
    animation: 3s infinite iconOpacity;
    width: 20px;
    height: 20px
}

@media(min-width:420px) {
    .ds-fixed-contact-icon {
        font-size: 28px
    }

    .ds-fixed-contact-icon .fa-envelope {
        width: 28px;
        height: 28px
    }
}

.ds-fixed-contact-text {
    font-size: 7px;
    text-transform: uppercase;
    line-height: 9px;
    color: var(--ds-white-color)
}

.ds-fixed-contact-dropdown {
    position: absolute;
    bottom: 60px;
    right: 36px;
    padding: 20px;
    border-radius: 0;
    background: var(--ds-white-color);
    display: block;
    opacity: 0;
    z-index: -1;
    transform: translateY(20px);
    -webkit-transition: transform .3s, opacity .3s;
    -o-transition: transform.3s, opacity .3s;
    transition: transform .3s, opacity .3s;
    -webkit-box-shadow: 5px 12px 30px rgba(0, 0, 0, .35);
    box-shadow: 5px 12px 30px rgba(0, 0, 0, .35);
    visibility: hidden;
    min-width: 250px;
    will-change: transform, opacity;
}

@media(min-width:420px) {
    .ds-fixed-contact-text {
        font-size: 8px;
        line-height: 10px
    }

    .ds-fixed-contact-dropdown {
        right: 60px
    }
}

.ds-fixed-contact-dropdown.expanded {
    transform: translateY(0);
    opacity: .98;
    z-index: 1;
    visibility: visible
}

.ds-fixed-contact-item {
    color: var(--ds-dark-text-color);
    font-size: 14px
}

.ds-fixed-contact-item:not(:last-child) {
    margin-bottom: 18px
}

.ds-fixed-contact-item>* {
    pointer-events: none;
}

.ds-fixed-contact-item-icon {
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 36px;
    flex: 0 0 36px;
    max-width: 36px;
    width: 36px;
    height: 36px;
    border-radius: 0;
    margin-right: 10px;
    color: var(--ds-white-color)
}

.ds-fixed-contact-item-icon svg {
    width: 20px !important;
    height: 20px
}

.ds-fixed-contact-messenger {
    background: #0084ff
}

.ds-fixed-contact-viber {
    background: #7c529d
}

.ds-fixed-contact-telegram {
    background: #2ca5e0
}

.ds-fixed-contact-skype {
    background: #31c4ed
}

.ds-fixed-contact-whatsapp {
    background: #25d366
}

.ds-fixed-contact-email {
    background: #50a8ff
}

.ds-fixed-contact-call {
    background: #3cba8b
}

.ds-fixed-contact-contacts {
    background: #e6a83a
}

@media(max-width:991px) {
    .ds-fixed-contact-viber-desktop {
        display: none !important
    }
}

@media(min-width:768px) {
    #ds_fixed_contact_button {
        bottom: 30px
    }
}

.popover {
    font-family: Ubuntu, sans-serif;
    border-color: transparent;
    border-radius: 0;
    box-shadow: var(--ds-medium-shadow);
    background-color: var(--ds-white-color);
    color: var(--ds-dark-text-color)
}

.popover-arrow::after {
    border-top-color: var(--ds-white-color) !important;
}

@media(min-width:360px) {
    .popover {
        min-width: 260px
    }
}

@media(max-width:991px) {
    #ds_fixed_contact_button {
        max-width: 0;
    }
}

@media(min-width:992px) {
    .popover {
        z-index: 19999
    }

    .ds-fixed-contact-pulsation {
        display: block;
    }

    .ds-fixed-contact-icon {
        display: flex;
    }
}

.popover-arrow:before {
    border-color: transparent !important
}

.popover-header {
    border-bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    font-weight: 600;
    font-size: 1.075rem;
    padding: 1rem 1rem .5rem;
    color: var(--ds-dark-text-color);
}

.popover-header:before {
    border-color: transparent !important
}

.popover-body {
    padding: 0 1rem 1rem;
    font-size: .875rem;
    color: var(--ds-secondary-text-color);
}

.popover-body p+p {
    margin-top: 1rem
}

.popover-body ul {
    padding: 1rem 0 1rem .75rem
}

.ds-loader {
    width: 80px;
    height: 40px;
    border-radius: 0;
    display: block;
    margin: 20px auto;
    position: relative;
    color: var(--ds-primary-color);
    opacity: 0.7;
    box-sizing: border-box;
}


@keyframes animloader {
    0% {
        height: 48px
    }

    100% {
        height: 4px
    }
}

.ds-loader-overlay {
    position: fixed;
    z-index: 19999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

@keyframes loaderMove {
    0% {
        transform: translateX(-40%);
    }

    50% {
        transform: translateX(20%);
        width: 80%;
    }

    100% {
        transform: translateX(100%);
        width: 100%;
    }
}

.ds-livesearch {
    top: 46px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 12300;
    background: transparent;
    gap: .5rem;
    position: fixed;
    max-height: 0;
}

@media (min-width: 768px) {
    .ds-livesearch {
        z-index: 13300;
    }

    #cartModal .modal-dialog {
        --bs-modal-width: 760px
    }

}

.ds-livesearch.expanded {
    max-height: unset;
}

.ds-livesearch .ds-livesearch-categories-item {
    flex: 1 0 50%;
    max-width: 50%
}

.ds-livesearch .ds-livesearch-categories-item img {
    max-width: 100%;
    height: auto
}

.ds-livesearch-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .ds-last-reviews-item {
        width: 50%
    }

    .found-contact-block {
        max-width: 350px;
    }

    .found-categories-block {
        max-width: 200px;
    }

    .seach-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .ds-livesearch {
        max-height: 0;
        right: 0;
        border-radius: 0;
        position: relative;
        bottom: auto;
    }


    .ds-livesearch .ds-livesearch-categories-item {
        flex: 1 0 25%;
        max-width: 25%
    }
}

.ds-livesearch-item {
    background: var(--ds-white-color);
    gap: 1rem
}

.ds-livesearch-item-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    border-right: var(--ds-main-border)
}

.ds-livesearch-item-img img {
    margin-bottom: 1rem
}

.ds-livesearch-item-sticker {
    background: var(--ds-green-color);
    color: var(--ds-white-color);
    text-align: center;
    border-radius: 0;
    height: 1rem
}

.ds-livesearch-item-sticker.red-bg {
    background: var(--ds-red-color)
}

.ds-livesearch-item-title {
    line-height: 1
}

.ds-livesearch-item-title:hover {
    color: var(--ds-links-color)
}

.ds-livesearch-item .ds-price-new {
    line-height: 1
}

.modal {
    z-index: 99999
}


.ocf-overflow-hidden div#product-category {
    z-index: 12300;
}

.modal-open {
    overflow: hidden
}

.modal-backdrop {
    background: var(--ds-popup-backdrop-bg);
    opacity: 1;
    z-index: 12500;
    --bs-backdrop-opacity: 1
}

.modal-dialog.wide {
    --bs-modal-width: 860px
}

.modal-content {
    padding: 1.5rem;
    border: 0;
    background-color: var(--ds-white-color);
    -webkit-box-shadow: var(--ds-dark-shadow);
    box-shadow: var(--ds-dark-shadow)
}

.modal-header {
    border: 0;
    border-bottom: var(--ds-main-border)
}

.modal-header .btn-close {
    border-radius: 0;
    --bs-btn-close-bg: none;
    width: 2.5rem;
    height: 2.5rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 2.5rem;
    flex: 0 0 2.5rem;
    display: grid;
    place-items: center;
    padding: 0;
    opacity: 1
}

.modal-header .btn-close svg path {
    fill: var(--ds-secondary-dark-color)
}

.modal-title {
    line-height: 1.2
}

.modal-body {
    padding: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.modal-body .ds-buy-one-click {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important
}

.modal-body .ds-buy-one-click>:first-child {
    margin-bottom: .5rem
}

.modal-body .ds-buy-one-click .form-control {
    font-size: .75rem;
    min-width: 200px;
}

.modal-body .ds-buy-one-click .form-control::-webkit-input-placeholder {
    font-size: .75rem
}

.modal-body .ds-buy-one-click .form-control::-moz-placeholder {
    font-size: .75rem
}

.modal-body .ds-buy-one-click .form-control:-ms-input-placeholder {
    font-size: .75rem
}

.modal-body .ds-buy-one-click .form-control::-ms-input-placeholder {
    font-size: .75rem
}

.modal-body .ds-buy-one-click .form-control::placeholder {
    font-size: .75rem
}

@media (max-width: 767.98px) {
    #error_minimum {
        font-size: .875rem
    }
}

.modal-body-cart .ds-buy-one-click {
    border-top: 0
}

.modal-body-cart .ds-buy-one-click>:first-child {
    display: none
}

.modal-body .ds-cart-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem
}

.modal-body-cart .ds-cart-recommended-products {
    overflow-x: auto;
}

.modal-body-cart .ds-cart-recommended-products-item {
    flex: 0 0 80%;
    max-width: 80%;
}

@media(min-width: 768px) {
    .modal-body-cart .ds-cart-recommended-products-item {
        flex: 0 0 60%;
        max-width: 60%;
    }
}

.modal-body-cart .ds-cart-recommended-products .content-block {
    transition: border var(--ds-main-transition);
}

.modal-body-cart .ds-cart-recommended-products .content-block:hover {
    box-shadow: none;
    border-color: var(--ds-form-control-focus-color);
}

.modal-body-buttons {
    border-top: var(--ds-main-border)
}

@media (max-width: 575.98px) {
    .modal-body-buttons .button-primary {
        width: 100%
    }
}

.modal-body-form>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 3rem);
    flex: 0 0 calc(50% - 3rem)
}

.modal-body-product-img {
    border: var(--ds-main-border);
    width: 108px;
    height: 108px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 108px;
    flex: 0 0 108px
}

.modal-body-product-img img {
    width: 100px;
    -o-object-fit: fill;
    object-fit: fill;
    border-radius: 0;
    max-width: 100%;
    aspect-ratio: 1/1;
    height: auto
}

@media (min-width: 360px) {
    .modal-body-product-img {
        width: 158px;
        height: 158px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 158px;
        flex: 0 0 158px
    }

    .modal-body-product-img img {
        width: 150px
    }
}

.modal-body-product-title {
    line-height: 1.2
}

.modal-body-product-info .ds-module-rating-star {
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer
}

.modal-body-product-info .ds-module-rating-star+.ds-module-rating-star {
    margin-left: .75rem
}

.modal-body-product .ds-product-options {
    border-bottom: 0
}

.modal-body-quick-view {
    background-color: var(--ds-light-bg-color)
}

.modal-body-quick-view .ds-product-main-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.modal-body-quick-view .ds-product-main-buttons .button-outline {
    margin-top: 1rem;
    margin-left: 0
}

@media (min-width: 768px) {
    .modal-body-product {
        border-right: var(--ds-main-border)
    }

    .modal-body .ds-product-images {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(52% - 1rem);
        flex: 0 0 calc(52% - 1rem);
        max-width: calc(52% - 1rem)
    }
}

.modal-body-popup-text>:not(:first-child) {
    margin-top: 1rem
}

.modal-body-popup-text ol,
.modal-body-popup-text ul {
    padding-left: 1rem
}

.modal-small-text {
    line-height: 1.2
}

#popup_review_form .modal-body-product-img {
    width: 88px;
    height: 88px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 88px;
    flex: 0 0 88px
}

#popup_review_form .modal-body-product-img img {
    -o-object-fit: fill;
    object-fit: fill;
    border-radius: 0;
    width: 80px;
    max-width: 100%;
    aspect-ratio: 1/1;
    height: auto
}

@media (min-width: 360px) {
    #popup_review_form .modal-body-product-img {
        width: 120px;
        height: 120px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
        flex: 0 0 120px
    }

    #popup_review_form .modal-body-product-img img {
        width: 112px
    }
}

@media (max-width: 359.98px) {
    .modal-header .modal-title {
        font-size: 1.25rem !important
    }

    #quickViewModal .ds-product-main-cart {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    #quickViewModal .ds-product-main-cart .ds-module-quantity {
        margin-right: 0 !important;
        margin-bottom: 1rem
    }
}

@media (min-width: 992px) {
    #quickViewModal .ds-product-main {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
        flex: 0 0 48%;
        max-width: 48%
    }
}

#quickViewModal .ds-product-images-main {
    height: auto
}

#quickViewModal .ds-product-images-main img {
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    height: auto
}

[data-bs-dismiss=modal] {
    text-decoration: none
}

@media (min-width: 360px) {
    #productOptionModal .modal-body-product-img {
        width: 128px;
        height: 128px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 128px;
        flex: 0 0 128px
    }

    #productOptionModal .modal-body-product-img img {
        width: 120px
    }
}

@media (max-width: 767.98px) {
    .empty-popup-cart .button-primary {
        width: 100%
    }
}

.ds-account-column-nav li {
    padding: 0;
    font-size: inherit
}

.ds-account-column-nav li:not(:last-child) {
    border-bottom: var(--ds-main-border)
}

.ds-account-column-nav .ds-column-categories-children.ds-categories-2 li {
    padding: 1rem !important;
    border-bottom: 0;
    border-top: var(--ds-main-border)
}

.ds-account-column-nav-item {
    line-height: 1;
    white-space: nowrap;
    padding: .75rem 1rem;
    -webkit-transition: background-color var(--ds-main-transition);
    transition: background-color var(--ds-main-transition)
}

.ds-account-column-nav-item:hover {
    background-color: #fbfbfb
}

.ds-account-column-nav-item:hover .ds-account-column-nav-item-text {
    text-decoration: underline
}

.ds-account-column-nav-item-icon {
    place-items: center;
    width: 1.75rem;
    height: 1.75rem;
    margin-right: .75rem;
    background-color: var(--ds-light-bg-color)
}

.ds-account-column-nav-item-icon svg path {
    fill: var(--ds-dark-text-color)
}

.ds-account .content-block:hover {
    -webkit-box-shadow: none;
    box-shadow: none
}

.ds-account-login-button {
    min-width: 160px
}

@media (max-width: 575.98px) {
    .ds-account-login-button {
        width: 100%
    }
}

.ds-account-wishlist-info {
    border-left: var(--ds-main-border)
}

.ds-account-wishlist-title {
    line-height: 1.2
}

.ds-account-wishlist-title:hover {
    color: var(--ds-links-color);
    text-decoration: underline
}

.ds-account-wishlist .no-btn {
    top: 1rem;
    right: 1rem;
    width: 14px;
    height: 14px;
    display: grid;
    place-items: center
}

.ds-account-wishlist .no-btn svg {
    width: 12px;
    height: 12px;
    -o-object-fit: contain;
    object-fit: contain
}

@media (max-width: 767.98px) {

    .ds-account table td {
        white-space: nowrap
    }
}

@-webkit-keyframes autofill {
    to {
        color: inherit;
        background: transparent;
    }
}

@keyframes fadeInColumn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes rotateIcon {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}

.fadeInColumn {
    animation-name: fadeInColumn;
    animation-duration: 0.8s;
}

.oct-animated svg {
    animation: rotateIcon 0.5s ease-in-out infinite;
}

.error_style {
    background-color: var(--ds-error-bg-color) !important;
    border: 1px solid #fe4d97 !important;
    -webkit-transition: background-color var(--ds-main-transition), border var(--ds-main-transition);
    transition: background-color var(--ds-main-transition), border var(--ds-main-transition)
}

.error_style+label {
    color: var(--ds-red-color) !important
}

.error_style::-webkit-input-placeholder {
    color: var(--ds-red-color) !important
}

.error_style::-moz-placeholder {
    color: var(--ds-red-color) !important
}

.error_style:-ms-input-placeholder {
    color: var(--ds-red-color) !important
}

.error_style::-ms-input-placeholder {
    color: var(--ds-red-color) !important
}

.error_style::placeholder {
    color: var(--ds-red-color) !important
}

.tooltip {
    z-index: 19999;
}

.ds-switcher button {
    background: 0 0;
    border: none;
    text-decoration: underline;
    color: var(--ds-links-color);
    font-size: .875rem;
    font-weight: 400;
    padding-left: 0;
    padding-right: 0
}

.ds-switcher button.active {
    color: var(--ds-primary-dark-color);
    text-decoration: none;
    background: var(--ds-primary-light-color);
    font-size: 1rem;
    font-weight: 700;
    padding: .25rem .5rem;
    cursor: default;
    pointer-events: none;
    border: var(--ds-main-border)
}

.ds-switcher button+button {
    margin-left: .5rem
}

.ds-switcher button.language-select {
    text-transform: uppercase
}

.ds-switcher button:hover {
    text-decoration: none
}

.pagination {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    gap: 1rem;
    padding: 1rem 0
}

.pagination li a,
.pagination li span {
    display: block;
    line-height: 1rem;
    padding: .5rem .75rem;
    border-radius: 0;
    color: var(--ds-light-text-color);
    -webkit-transition: background var(--ds-main-transition), color var(--ds-main-transition);
    transition: background var(--ds-main-transition), color var(--ds-main-transition);
    text-decoration: none;
    will-change: background, color;
}

.pagination li.active span,
.pagination li:hover a {
    color: var(--ds-white-color);
    background: var(--ds-primary-color)
}

.table {
    margin-bottom: 0;
    border-left: var(--ds-main-border);
    border-right: var(--ds-main-border);
    border-color: var(--ds-border-color);
    font-weight: 400
}

.table>:not(:first-child) {
    border-top: var(--ds-main-border)
}

.table .thead-dark th {
    background-color: var(--ds-light-bg-color);
    border-top: var(--ds-main-border);
    color: var(--ds-dark-text-color)
}

.table tbody {
    font-size: 14px;
    color: var(--ds-secondary-text-color)
}

.table td {
    border-color: var(--ds-border-color)
}

.table td,
.table th {
    vertical-align: top
}

.table tbody tr:first-child td {
    border-top: 0
}

.table td a {
    color: var(--ds-links-color);
    text-decoration: underline
}

.table td a:hover {
    text-decoration: none
}

.table thead {
    border-left: var(--ds-main-border);
    border-right: var(--ds-main-border);
    border-top: var(--ds-main-border)
}

.table thead th {
    font-size: 1rem;
    line-height: 20px;
    padding: .75rem 1rem;
    vertical-align: middle;
    font-weight: 700;
    color: var(--ds-dark-text-color);
    background-color: var(--ds-primary-light-color);
    border: 0;
    border-bottom: var(--ds-main-border)
}

.table tbody tr:hover>* {
    --bs-table-bg-state: #FDFDFD
}

.ds-theme-switcher {
    background-color: var(--ds-light-bg-color)
}

.ds-theme-switcher-btn {
    display: grid;
    place-items: center;
    padding-left: .75rem;
    padding-right: .75rem;
    cursor: pointer
}

.ds-theme-switcher-btn.active {
    background-color: var(--ds-white-color);
    -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, .08);
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .08)
}

.ds-theme-switcher-btn.light svg path {
    fill: var(--ds-yellow-color)
}

.ds-blog-search-button {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 1.75rem
}

.ds-blog-search-button svg path {
    -webkit-transition: fill var(--ds-main-transition);
    transition: fill var(--ds-main-transition)
}

.ds-blog-search-button:focus:not([disabled]),
.ds-blog-search-button:hover {
    -webkit-box-shadow: none !important;
    box-shadow: none !important
}

.ds-blog-search-button:focus:not([disabled]) svg path,
.ds-blog-search-button:hover svg path {
    fill: var(--ds-primary-color)
}

@media (max-width: 575.98px) {
    .ds-megamenu-children.flex-grow-1.d-flex.flex-wrap.dark-text.px-3.px-xl-0.col-8>div {
        min-width: 100%;
        border-bottom: var(--ds-main-border);
        padding-bottom: 13px;
        padding-top: 15px;
    }
}

#article-comments .ds-product-reviews-item-content {
    border-bottom: 0;
    padding-bottom: 0 !important
}

.ds-empty-reviews svg path {
    fill: var(--ds-border-color);
}

#oct-infobar.hidden {
    opacity: 0;
    display: none;
}

.ds-header-user-button .ds-dropdown.position-absolute {
    left: -30px !important;
    right: auto !important;
}

.alert button.close {
    background: none;
    right: 10px;
    top: 10px;
    position: absolute;
    font-size: 25px;
}

#popup_cireview_form .ds-module-rating-star {
    margin-right: 0.5rem;
    cursor: pointer;
}

.ds-module-rating-star:after {
    display: none;
}



.found-contact-block .d-flex.flex-column.flex-md-row.gap-3 {
    flex-direction: column !important;
    gap: 0em !important;
}

/* =============================================
   Typography utility classes (gaps from design system)
   ============================================= */
.fsz-40 {
    font-size: 2.5rem !important;
}

.lh-136 {
    line-height: 1.36 !important;
}

.ls-5 {
    letter-spacing: 5px !important;
}

/* ===== Benefits strip — mobile ===== */
@media (max-width: 767px) {
    .ds-advantages {
        gap: 0.75rem;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .ds-advantages-item {
        min-width: 220px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
}

/* ===== Review card polish ===== */
.ds-product-reviews-item {
    border: 1px solid var(--ds-border-color-light);
    transition: box-shadow var(--ds-main-transition);
}

.ds-product-reviews-item:hover {
    box-shadow: var(--ds-light-shadow-light);
}

/* ===== Display text tracking ===== */
.fsz-56 {
    letter-spacing: -0.02em;
}

.fsz-40 {
    letter-spacing: -0.015em;
}

/* ===== Trust Module (product page content_bottom) ===== */

/* Override HTML module wrapper styles */
.content-block-text .ds-trust-module {
    font-size: initial;
    font-weight: initial;
    color: initial;
}

.ds-trust-module {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem 3rem;
}

.ds-trust-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--ds-border-color-light);
}

.ds-trust-section:first-child,
.ds-steps-block+.ds-trust-section {
    padding-top: 0;
}

.ds-trust-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ds-trust-section:nth-child(even) .ds-trust-section-image {
    order: 2;
}

.ds-trust-section:nth-child(even) .ds-trust-section-text {
    order: 1;
}

.ds-trust-section-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 0;
    transition: transform var(--ds-main-transition);
}

.ds-trust-section-image:hover img {
    transform: scale(1.02);
}

.ds-trust-section-title {
    color: var(--ds-dark-text-color);
    margin: 0 0 1rem;
    line-height: 1.36;
}

.ds-trust-section p {
    color: var(--ds-dark-text-color);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .ds-trust-section {
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .ds-trust-module {
        padding: 2rem 1rem;
    }

    .ds-trust-section {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.5rem 0;
    }

    .ds-trust-section:nth-child(even) .ds-trust-section-image,
    .ds-trust-section:nth-child(even) .ds-trust-section-text {
        order: unset;
    }

    .ds-trust-section-image img {
        border-radius: 0;
    }

    .ds-trust-section-title {
        font-size: 1.25rem;
    }
}

/* Steps block — 3-column process layout */
.ds-steps-block {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.ds-steps-block .ds-step img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 1rem;
    transition: transform var(--ds-main-transition);
}

.ds-steps-block .ds-step img:hover {
    transform: scale(1.02);
}

.ds-steps-block>h3 {
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
}

.ds-steps-block .ds-step {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ds-steps-block .ds-step h4 {
    color: var(--ds-dark-text-color);
    line-height: 1.36;
}

@media (min-width: 768px) {
    .ds-steps-block .ds-step h4 {
        min-height: 2.72em;
    }
}

.ds-steps-block .ds-step p {
    color: var(--ds-dark-text-color);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 767px) {
    .ds-steps-block .ds-step img {
        border-radius: 0;
    }
}

/* Product image caption — frosted glass for readability on any background */
.img-caption {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--ds-dark-text-color) !important;
    padding: 2px 8px;
    width: 70%;
    left: 50%;
    transform: translateX(-50%);
}

/* Help icon — green question mark circle (click → info modal) */
.ds-help-icon {
    color: var(--ds-primary-color);
    cursor: pointer;
    vertical-align: -3px;
    margin-left: 4px;
    flex-shrink: 0;
}
.ds-shipping-help-icon {
    vertical-align: -4px;
}

.ds-product-attributes-item .secondary-text {
    display: flex;
    align-items: center;
    gap: 4px;
}

.divide-pay-price .val {
    margin: 0px 5px 0px 5px;
}

/* DS Unit Switcher — dropdown for option measurement units */
.ds-unit-switcher {
    display: block;
    width: fit-content;
    margin-top: -14px;
    margin-bottom: 5px;
}

.ds-unit-switcher>.ds-unit-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    font-size: 12px;
    font-family: inherit;
    color: var(--ds-primary-color);
    cursor: pointer;
    line-height: 1;
    -webkit-appearance: none;
    appearance: none;
}

.ds-unit-switcher>.ds-unit-trigger:hover {
    opacity: 0.7;
}

.ds-unit-switcher>.ds-unit-trigger .ds-arrow-down {
    transition: transform 0.2s ease;
}

.ds-unit-switcher>.ds-unit-trigger[aria-expanded="true"] .ds-arrow-down {
    transform: rotate(180deg);
}

.ds-unit-dropdown.dropdown-menu {
    min-width: auto;
    padding: 0;
    border-radius: 0;
    border: 1px solid var(--ds-border-color-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.ds-unit-dropdown.dropdown-menu.show {
    animation: ds-unit-fade-in 0.15s ease;
}

@keyframes ds-unit-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.ds-unit-dropdown .dropdown-item {
    font-size: 13px;
    padding: 6px 16px;
    cursor: pointer;
    border-radius: 0;
}

.ds-unit-dropdown .dropdown-item:hover {
    background-color: var(--ds-primary-light-color-light);
}

.ds-unit-dropdown .dropdown-item.active {
    background-color: var(--ds-primary-color);
    color: #fff;
}

/* DS EU VAT — checkout VAT field status indicators */
.ds-euvat-status {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.3;
}

.ds-euvat-status small {
    font-size: 13px;
}

.ds-euvat-valid {
    color: var(--ds-interactive-color);
}

.ds-euvat-invalid {
    color: var(--ds-red-color);
}

.ds-euvat-warning {
    color: var(--ds-yellow-color);
}

.ds-euvat-loading .ds-loader-sm {
    display: inline-flex;
    align-items: center;
    width: 20px;
    height: 10px;
}

.ds-euvat-loading .ds-loader-sm svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ===== Baymard Navigation Improvements ===== */

/* Hover delay: 300ms open (Baymard), 150ms close buffer */
.ds-menu-maincategories-desktop-box .ds-menu-maincategories-dropdown {
    transition: opacity var(--ds-main-transition) 0.15s,
        visibility var(--ds-main-transition) 0.35s;
}

@media (min-width: 1200px) {
    .ds-menu-maincategories-item:hover>.ds-menu-maincategories-dropdown {
        transition: opacity 0.2s ease-out 0.3s,
            visibility 0s linear 0.3s;
    }
}

/* Active category — gold underline persists (replicate hover dimensions since default ::after has none) */
li.ds-menu-maincategories-item.ds-menu-maincategories-item--active>a:after {
    opacity: 1;
    width: 30px;
    bottom: -13px;
    left: calc(50% - 15px);
}

/* Mobile drawer — ensure footer doesn't overlap nav content */
div#mobileMenuBox .ds-menu-catalog-inner {
    padding-bottom: 1rem;
}

div#mobileMenuBox .ds-megamenu-child-wrapper {
    padding-bottom: 2rem;
}

/* Mobile mega menu — 2-column layout for link lists (Metal, Stone Shape, Featured, etc.) */
/* Uses CSS columns so items flow top-to-bottom, left-to-right regardless of item count */
@media (max-width: 1199px) {
    div#mobileMenuBox .ds-megamenu-child-wrapper ul.list-unstyled {
        columns: 2;
        column-gap: 1rem;
    }

    div#mobileMenuBox .ds-megamenu-child-wrapper ul.list-unstyled li {
        break-inside: avoid;
    }
}

/* "View All" link in dropdowns */
.ds-menu-catalog-item--viewall a {
    font-weight: 500;
    color: var(--ds-primary-color);
}

.ds-megamenu-viewall-link {
    color: var(--ds-primary-color);
    text-decoration: none;
    transition: color var(--ds-main-transition);
}

.ds-megamenu-viewall-link:hover {
    text-decoration: underline;
}

/* Mobile separator between categories and secondary links */
.ds-menu-mobile-separator {
    height: 1px;
    background: var(--ds-border-color-light);
    margin: 0.75rem 1rem;
    list-style: none;
}

/* Mobile secondary links — visually distinct from product categories */
.ds-menu-catalog-items--secondary .ds-menu-catalog-item--secondary a {
    color: var(--ds-light-text-color-light);
    font-weight: 400;
}

/* Product thumb — desktop hover to CGI image */
.ds-thumb-hover {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.ds-thumb-hover-primary,
.ds-thumb-hover-cgi {
    display: block;
    width: 100%;
    height: auto;
}

.ds-thumb-hover-cgi {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ds-module-img-box:hover .ds-thumb-hover-cgi {
    opacity: 1;
}

/* OCFilter checkbox brand color override */
.ocf-selected .ocf-value-input::before {
    border-color: var(--ds-primary-color) !important;
    background-color: var(--ds-primary-color) !important;
}

.ocf-value:active .ocf-value-input::before {
    box-shadow: 0 0 0 0.2rem rgba(17, 48, 37, 0.2) !important;
}

/* Featured filter dropdown (text-only, no images) */
.ds-ff-dropdown {
    position: relative;
    display: inline-block;
}

.ds-ff-dropdown-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border: 1px solid var(--ds-primary-color);
    cursor: pointer;
    font-size: 0.875rem;
    white-space: nowrap;
    transition: border-color var(--ds-main-transition);
    color: var(--ds-dark-text-color);
}

.ds-ff-dropdown-header:hover,
.ds-ff-dropdown.ocf-open .ds-ff-dropdown-header {
    border-color: var(--ds-primary-color);
}

.ds-ff-dropdown-header .ocf-filter-name {
    order: 0;
    margin-right: 0;
}

.ds-ff-dropdown-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.25rem;
    background: var(--ds-primary-color);
    color: var(--ds-white-color);
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: 0;
    line-height: 1;
}

.ds-ff-dropdown-header .ocf-active-label {
    display: inline !important;
    font-weight: 400;
    color: var(--ds-primary-color);
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ds-ff-dropdown-header .ds-arrow-down {
    margin-left: auto;
    transition: transform var(--ds-main-transition);
    flex-shrink: 0;
}

.ds-ff-dropdown.ocf-open .ds-arrow-down {
    transform: rotate(180deg);
}

.ds-ff-dropdown-panel {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 20;
    background: var(--ds-white-color);
    box-shadow: var(--ds-medium-shadow);
    padding: 1rem 1.25rem;
    min-width: 100%;
    max-height: 320px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out, transform 0.3s ease-out;
    pointer-events: none;
}

.ds-ff-dropdown.ocf-open .ds-ff-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.ds-ff-dropdown-grid {
    display: grid;
    gap: 4px 1.5rem;
    grid-template-columns: 1fr;
}

.ds-ff-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.ds-ff-dropdown-grid .ocf-value {
    margin-bottom: 0;
    white-space: nowrap;
    font-size: 0.8125rem;
    padding: 0.25rem 0;
}

.ds-ff-grid-images {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.ds-ff-img-value {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.25rem;
    white-space: normal;
}

.ds-ff-img-value .ocf-value-image {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #faf8f4;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: border-color var(--ds-main-transition), box-shadow var(--ds-main-transition);
}

.ds-ff-img-value.ocf-selected .ocf-value-image {
    border-color: var(--ds-primary-color);
    box-shadow: inset 0 0 0 2px #fff;
    border-radius: 50%;
}

.ds-ff-img-value.ocf-selected {
    outline: none;
}

.ocf-value.has-image img,
div[id^="ocf-filter"] .ocf-value.has-image img {
    border-radius: 50% !important;
}

/* Mobile: bottom sheet with slide-up transition */
@media (max-width: 767.98px) {
    .ds-ff-dropdown-panel {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10000;
        max-height: 60vh;
        padding: 1.25rem 1.25rem 5rem;
        border-top: 1px solid var(--ds-border-color);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(100%);
        opacity: 1;
        transition: transform 0.3s ease-out, visibility 0.3s ease-out;
    }

    .ds-ff-dropdown.ocf-open .ds-ff-dropdown-panel {
        transform: translateY(0);
    }

    .ds-ff-dropdown::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
        pointer-events: none;
    }

    .ds-ff-dropdown.ocf-open::before {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .ds-ff-grid-images {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ── Info modal tooltip content ── */
/* Mirrors .content-block styling from main.min.css (information pages) */
.modal-body-info {
    font-weight: 300;
    color: var(--ds-secondary-text-color);
}

.modal-body-info h2,
.modal-body-info h3,
.modal-body-info h4,
.modal-body-info h5,
.modal-body-info h6 {
    font-family: 'Noto Serif', serif;
    font-weight: 300;
    margin: 1.25rem 0 0.5rem 0;
    color: var(--ds-dark-text-color);
}

.modal-body-info h2 { font-size: 1.25rem; }
.modal-body-info h3 { font-size: 1.125rem; }
.modal-body-info h4 { font-size: 1rem; }
.modal-body-info h5 { font-size: 0.9rem; }
.modal-body-info h6 { font-size: 0.85rem; }

.modal-body-info h2:first-child,
.modal-body-info h3:first-child,
.modal-body-info h4:first-child,
.modal-body-info h5:first-child,
.modal-body-info h6:first-child {
    margin-top: 0;
}

.modal-body-info p+p,
.modal-body-info p+ul,
.modal-body-info p+ol,
.modal-body-info ul+p,
.modal-body-info ol+p,
.modal-body-info ul+ul,
.modal-body-info p+table,
.modal-body-info table+p {
    margin-top: 1rem;
}

.modal-body-info ul,
.modal-body-info ol {
    padding-left: 1rem;
}

.modal-body-info li::marker {
    font-size: .8rem;
}

.modal-body-info li+li {
    margin-top: 0.35rem;
}

.modal-body-info table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.modal-body-info th,
.modal-body-info td {
    padding: 8px 10px;
    text-align: left;
    border-bottom: 1px solid var(--ds-border-color-light);
}

.modal-body-info th {
    font-weight: 500;
    background: var(--ds-primary-light-color-light);
}

.modal-body-info a {
    color: var(--ds-primary-color);
    text-decoration: underline;
}

.modal-body-info a:hover {
    text-decoration: none;
}

.ds-loose-stone-alert {
    font-size: 14px;
    line-height: 1.4;
    border-color: var(--ds-red-color);
    background-color: var(--ds-error-bg-color);
    color: var(--ds-dark-text-color);
}

.ds-btn-disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

/* Get in touch / reassurance module */
.ds-get-in-touch {
    background-color: var(--ds-primary-light-color-light);
    overflow: hidden;
    margin: 2rem 0;
}

.ds-get-in-touch-image {
    height: 100%;
    object-fit: cover;
    min-height: 240px;
}

.ds-get-in-touch-content {
    padding: 2.5rem 3rem 2.5rem 3.5rem;
}

@media (max-width: 767.98px) {
    .ds-get-in-touch-image {
        max-height: 220px;
    }

    .ds-get-in-touch-content {
        padding: 1.5rem;
    }
}

/* ===== Subcategory cards – horizontal scroll ===== */

.ds-subcategories-scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
}

.ds-subcategories-scroll::-webkit-scrollbar {
    display: none;
}

.ds-subcategories-scroll .ds-subcategories-item {
    flex: 0 0 180px;
    min-width: 0 !important;
    max-width: 180px !important;
    scroll-snap-align: start;
}

.ds-subcategories-link {
    text-decoration: none;
    border: none;
    padding: 0;
    gap: 0.75rem;
    transition: opacity var(--ds-main-transition);
}

.ds-subcategories-link:hover {
    opacity: 0.8;
}

.ds-subcategories-link:hover .ds-subcategories-title {
    text-decoration: underline;
    color: var(--ds-links-color);
}

.ds-subcategories-scroll .ds-subcategories-link img {
    width: 100% !important;
    height: unset !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

@media (min-width: 768px) {
    .ds-subcategories-scroll {
        justify-content: center;
        flex-wrap: wrap;
        overflow-x: visible;
    }

    .ds-subcategories-scroll .ds-subcategories-item {
        flex: 0 0 200px;
        max-width: 200px !important;
    }
}

.email-newsletter .input-group:first-child {
    margin-top: 20px;
}

/* Page titles — prevent long translated words from causing horizontal scroll */
.ds-page-title h1 {
    overflow-wrap: break-word;
    word-break: break-word;
}

/* HubSpot custom form sections — shared warm background (matches vacancy form) */
.ds-hubspot-form-section {
    background: var(--ds-primary-light-color-light);
    border-radius: 8px;
    margin-bottom: 2rem;
}
