/* Header */
.header__wrapper{
	display: flex;
    align-items: center;
    justify-content: space-between;
	padding: 30px 0;
}
.header__logo-image{
	width: 250px;
}
.header__menu-list{
	display: flex;
	list-style: none;
	gap: 70px;
}
.header__menu-list li.current_page_item a{
	color: var(--ORANGE);
}
.header__menu-list li a{
	color: var(--BLUE);
	font-size: 15px;
	font-family: "Manrope", sans-serif;
	position: relative;
}
.header__menu-list li a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--BLUE);
    bottom: -3px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}
.header__menu-list li a:hover:before {
    transform-origin: left;
    transform: scaleX(1);
}
.header.mobile .header__logo-image{
	width: 150px;
}
.header.mobile .header__wrapper {
    padding: 20px 0;
	z-index: 99999;
    position: relative;
}
.header__burger {
    position: relative;
    z-index: 3;
    display: flex;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.header__burger-line {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--BLUE);
    border-radius: 999px;
    transform-origin: center;
    transition:
        transform 0.3s ease,
        opacity 0.2s ease;
}

.header__mobile-menu {
    position: fixed;
    inset: 0;
    padding-top: 80px;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-20px);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

.header__navigation {
    display: flex;
    min-height: calc(100dvh - 80px);
    padding-top: 40px;
    padding-bottom: 40px;
    align-items: center;
    justify-content: center;
}

.header__mobile-menu .header__menu-list {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-direction: column;
    gap: 24px;
	text-align: center;
}

.header__mobile-menu .header__menu-list a {
    font-size: 25px;
    line-height: 1.2;
    text-decoration: none;
}

.header.mobile.is-open .header__burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.header.mobile.is-open .header__burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.header.mobile.is-open .header__burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.header.mobile.is-open .header__mobile-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
	z-index: 9999;
}

/* ========================================
   PRODUCT SHOWCASE
======================================== */

.product-showcase.ventilation{
	margin-top: 30px;
}
.product-showcase {
    display: grid;
    grid-template-columns: minmax(0, 55%) minmax(0, 45%);
    min-height: 750px;
    overflow: hidden;
    background-color: var(--WHITE);
}
.product-showcase__slide--video {
    background-color: var(--WHITE-F7);
}

.product-showcase__video {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    background-color: var(--WHITE-F7);

    pointer-events: none;
    user-select: none;
}
.product-showcase__media {
    position: relative;
    min-width: 0;
    min-height: 750px;
    overflow: hidden;
    background-color: var(--WHITE-F7);
}

.product-showcase__slider,
.product-showcase__slider .swiper-wrapper,
.product-showcase__slide {
    width: 100%;
    height: 100%;
}

.product-showcase__slide {
    position: relative;
    overflow: hidden;
	max-height: 1000px;
}

.product-showcase__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: top;
	max-height: 1000px;
}

.product-showcase__slider-controls {
    position: absolute;
    right: 32px;
    bottom: 32px;
    z-index: 10;

    display: flex;
    align-items: center;
    gap: 10px;
}

.product-showcase__slider-button {
    display: inline-flex;
    width: 50px;
    height: 50px;
    padding: 0;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;

    color: var(--BLUE);
    background-color: rgba(255, 255, 255, 0.92);

    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.product-showcase__slider-button svg {
    display: block;
}

.product-showcase__slider-button:hover {
    color: var(--WHITE);
    background-color: var(--ORANGE);
    border-color: var(--ORANGE);
    transform: translateY(-2px);
}

.product-showcase__slider-button:focus-visible {
    outline: 2px solid var(--ORANGE);
    outline-offset: 3px;
}

.product-showcase__slider-button.swiper-button-disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

.product-showcase__content {
    display: flex;
    padding:
        clamp(64px, 7vw, 110px)
        clamp(48px, 6vw, 90px);

    align-items: center;
    background-color: var(--WHITE);
}

.product-showcase__content-inner {
    width: 100%;
    max-width: 620px;
}

.product-showcase__eyebrow {
    margin-bottom: 25px;
    color: var(--ORANGE);
    font-size: 21px;
	letter-spacing: 0.32px;
    font-weight: 400;
    line-height: 1.3;
    text-transform: uppercase;
}

.product-showcase__title {
    max-width: 620px;
    margin: 0 0 32px;

    color: var(--BLUE);
    font-size: clamp(50px, 4.4vw, 60px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: 0.9px;
}

.product-showcase__description {
    max-width: 620px;
    margin-bottom: 44px;
    color: var(--BLUE);
    font-size: 14px;
	letter-spacing: 0.21px;
    font-weight: 400;
    line-height: 1.65;
}

.product-showcase__description p {
    margin: 0;
}

.product-showcase__description p + p {
    margin-top: 16px;
}

.product-showcase__links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.product-showcase__link {
    display: inline-flex;
    min-width: 0;
    gap: 10px;

    align-items: center;
    justify-content: flex-start;

    color: var(--BLUE);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;

    transition: color 0.25s ease;
}

.product-showcase__link span {
    min-width: 0;
}

.product-showcase__link svg {
    flex: 0 0 auto;
    color: var(--ORANGE);

    transition: transform 0.25s ease;
}

.product-showcase__link:hover {
    color: var(--ORANGE);
}

.product-showcase__link:hover svg {
    transform: translateX(5px);
}

.product-showcase__link:focus-visible {
    outline: 2px solid var(--ORANGE);
    outline-offset: 4px;
}

.product-showcase__button {
    display: inline-flex;
    min-width: 265px;
    min-height: 68px;
    padding: 18px 28px;
    gap: 9px;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--ORANGE);
    border-radius: 5px;

    color: var(--WHITE);
    background-color: var(--ORANGE);

    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.product-showcase__button svg {
    flex: 0 0 auto;

    transition: transform 0.25s ease;
}

.product-showcase__button:hover {
    color: var(--ORANGE);
    background-color: var(--WHITE);
    transform: translateY(-2px);
}

.product-showcase__button:hover svg {
    transform: translateX(5px);
}

.product-showcase__button:focus-visible {
    outline: 2px solid var(--ORANGE);
    outline-offset: 4px;
}

/* ========================================
   PRODUCT ACCESSORIES
======================================== */

.product-accessories {
    padding: 70px 0 80px;
    background-color: var(--WHITE);
}

.product-accessories__container {
    width: 100%;
}

.product-accessories__header {
    margin-bottom: 36px;
}

.product-accessories__heading {
    display: flex;
    margin: 0;
    gap: 14px;

    align-items: baseline;
    flex-wrap: wrap;

    font-family: "Manrope", sans-serif;
    line-height: 1.2;
}

.product-accessories__title {
    color: var(--BLUE);
    font-size: clamp(34px, 3vw, 40px);
    font-weight: 700;
    letter-spacing: 0.6px;
}

.product-accessories__subtitle {
    color: var(--LIGHT-GRAY);
    font-size: clamp(24px, 2.3vw, 27px);
    font-weight: 400;
    letter-spacing: 0.41px;
}
.product-accessories.ventilation .product-accessories__wrapper{
	display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.product-accessories.ventilation .product-accessories__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.product-accessories__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px;
}
.product-accessories.ventilation .product-accessories__card {
	min-height: 249px;
}
.product-accessories__card {
    display: flex;
    min-width: 0;
    min-height: 472px;
    overflow: hidden;

    flex-direction: column;

    border-radius: 15px;
    background-color: var(--WHITE-F7);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-accessories__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(37, 60, 97, 0.1);
}

.product-accessories__image-wrapper {
    display: flex;
    width: 100%;
    height: 275px;
    padding: 50px 34px 30px;

    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.product-accessories__image {
    display: block;
    width: 100%;
	max-width: unset;
    height: 275px !important;

    object-fit: contain!important;
    object-position: center;

    transition: transform 0.4s ease;
}

.product-accessories__card:hover .product-accessories__image {
    transform: scale(1.035);
}
.product-accessories.ventilation .product-accessories__content {
	min-height: 140px;
    padding: 17px 40px 17px;
}
.product-accessories__content {
    display: flex;
    min-height: 197px;
    padding: 17px 40px 42px;

    flex: 1;
    flex-direction: column;
    align-items: flex-start;
}

.product-accessories.ventilation .product-accessories__card-title {
	 margin: 0 0 10px;
}
.product-accessories__card-title {
    max-width: 320px;
    margin: 0 0 27px;
    color: var(--BLUE);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0.34px;
}

.product-accessories__description {
    margin: 0 0 27px;

    color: var(--BLUE);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.23px;
}
.product-accessories__link {
    display: inline-flex;
    margin-top: auto;
    gap: 4px;

    align-items: center;

    color: var(--ORANGE);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    text-decoration: none;
	letter-spacing: 0.23px;
    transition: color 0.25s ease;
}

.product-accessories__link svg {
    display: block;
    flex: 0 0 auto;

    transition: transform 0.25s ease;
}

.product-accessories__link:hover {
    color: var(--BLUE);
}

.product-accessories__link:hover svg {
    transform: translateX(5px);
}

.product-accessories__link:focus-visible {
    outline: 2px solid var(--ORANGE);
    outline-offset: 4px;
}

/* ========================================
   DESIGN BANNER
======================================== */

.design-banner {
    --design-banner-overlay: #253C61;
    --design-banner-overlay-opacity: 0.52;
    --design-banner-text: #FFFFFF;

    position: relative;
    min-height: 630px;
    overflow: hidden;
    isolation: isolate;

    background-color: var(--DARK);
}

.design-banner__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.design-banner__image {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}
.design-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background-color: var(--design-banner-overlay);
    opacity: var(--design-banner-overlay-opacity);

    pointer-events: none;
}

.design-banner__container {
    position: relative;
    z-index: 2;

    display: flex;
    min-height: 630px;
    padding-top: 100px;
    padding-bottom: 100px;

    align-items: center;
}

.design-banner__content {
    width: 100%;
    max-width: 720px;

    color: var(--design-banner-text);
}

.design-banner--center .design-banner__container {
    justify-content: center;
}

.design-banner--center .design-banner__content {
    text-align: center;
}

.design-banner--center .design-banner__description {
    margin-right: auto;
    margin-left: auto;
}

.design-banner--center .design-banner__button {
    margin-right: auto;
    margin-left: auto;
}


.design-banner--left .design-banner__container {
    justify-content: flex-start;
}

.design-banner--left .design-banner__content {
    max-width: 650px;
    text-align: left;
}

.design-banner--right .design-banner__container {
    justify-content: flex-end;
}

.design-banner--right .design-banner__content {
    max-width: 650px;
    text-align: right;
}

.design-banner--right .design-banner__description {
    margin-left: auto;
}

.design-banner--right .design-banner__button {
    margin-left: auto;
}

.design-banner__title {
    margin: 0 0 26px;
    color: var(--design-banner-text);
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 5vw, 65px);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: 0.97px;
    text-wrap: balance;
    text-shadow: 0 2px 22px rgba(0, 0, 0, 0.18);
}

.design-banner__subtitle {
    margin: 0 0 20px;

    color: var(--design-banner-text);
    font-family: "Manrope", sans-serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.38px;

    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.16);
}

.design-banner__description {
    max-width: 620px;
    margin-bottom: 0;

    color: var(--design-banner-text);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.21px;

    text-wrap: pretty;

    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.18);
}

.design-banner__description p {
    margin: 0;
}

.design-banner__description p + p {
    margin-top: 16px;
}

.design-banner__button {
    display: flex;
    width: fit-content;
    min-width: 230px;
    min-height: 60px;
    margin-top: 34px;
    padding: 16px 28px;
    gap: 9px;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--ORANGE);
    border-radius: 5px;

    color: var(--WHITE);
    background-color: var(--ORANGE);

    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.design-banner__button svg {
    display: block;
    flex: 0 0 auto;

    transition: transform 0.25s ease;
}

.design-banner__button:hover {
    color: var(--WHITE);
    background-color: transparent;
    border-color: var(--WHITE);

    transform: translateY(-2px);
}

.design-banner__button:hover svg {
    transform: translateX(5px);
}

.design-banner__button:focus-visible {
    outline: 2px solid var(--WHITE);
    outline-offset: 4px;
}

/* ========================================
   HOMEPAGE VIDEO
======================================== */

.homepage-video {
    padding: 0px 0 0px;
    background-color: var(--WHITE);
}

.homepage-video__container {
    width: 100%;
}

.homepage-video__frame {
    --homepage-video-overlay: 0.18;
	max-height: 700px;
    position: relative;
    width: 100%;
    overflow: hidden;

    aspect-ratio: 16 / 7.5;

    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    background-color: var(--DARK);

    isolation: isolate;
}

.homepage-video__poster {
    position: absolute;
    inset: 0;
    z-index: 2;

    overflow: hidden;

    transition:
        opacity 0.45s ease,
        visibility 0.45s ease;
}

.homepage-video__poster-image {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.7s ease;
}

.homepage-video__frame:hover .homepage-video__poster-image {
    transform: scale(1.02);
}


.homepage-video__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    display: block;

    background-color: var(--DARK);
    opacity: var(--homepage-video-overlay);

    pointer-events: none;

    transition: opacity 0.3s ease;
}

.homepage-video__frame:hover .homepage-video__overlay {
    opacity: calc(var(--homepage-video-overlay) + 0.06);
}


.homepage-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;

    display: flex;
    width: 126px;
    height: 126px;
    padding: 0;

    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    color: var(--WHITE);
    background-color: transparent;

    cursor: pointer;

    transform: translate(-50%, -50%);

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}

.homepage-video__play-icon {
    display: flex;
    width: 100%;
    height: 100%;

    align-items: center;
    justify-content: center;
}

.homepage-video__play-icon svg {
    display: block;
    width: 100%;
    height: 100%;

    overflow: visible;

    filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.25));
}

.homepage-video__play:hover {
    color: var(--ORANGE);
    background-color: rgba(255, 255, 255, 0.08);

    transform:
        translate(-50%, -50%)
        scale(1.06);
}

.homepage-video__play:hover svg {
    filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.32));
}

.homepage-video__play:focus-visible {
    outline: 3px solid var(--ORANGE);
    outline-offset: 7px;
}

.homepage-video__player {
    position: absolute;
    inset: 0;
    z-index: 1;

    width: 100%;
    height: 100%;

    background-color: var(--DARK);
}

.homepage-video__player video,
.homepage-video__player iframe {
    display: block;
    width: 100%;
    height: 100%;

    border: 0;
}

.homepage-video__player video {
    object-fit: contain;
    background-color: var(--DARK);
}

.homepage-video__frame.is-playing .homepage-video__poster {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.homepage-video__frame.is-playing .homepage-video__player {
    z-index: 4;
}

.homepage-video__fallback {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 5;

    margin: 0;
}

.homepage-video__fallback a {
    color: var(--WHITE);
    font-size: 14px;
    text-decoration: underline;
}

/* ========================================
   LATEST NEWS
======================================== */

.latest-news {
    padding: 0px 0 80px;
    background-color: var(--WHITE);
}

.latest-news__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 54px;
}

.latest-news__card {
    min-width: 0;
}

.latest-news__card-link {
    display: grid;
    grid-template-columns: minmax(0, 52%) minmax(0, 48%);
    min-height: 435px;
    overflow: hidden;

    border: 2px solid #E2E2E2;
    border-radius: 12px;

    color: inherit;
    background-color: var(--WHITE);
    text-decoration: none;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.latest-news__card-link:hover {
    border-color: rgba(222, 98, 37, 0.45);
    box-shadow: 0 18px 45px rgba(37, 60, 97, 0.1);
    transform: translateY(-4px);
}

.latest-news__card-link:focus-visible {
    outline: 2px solid var(--ORANGE);
    outline-offset: 4px;
}

.latest-news__image-wrapper {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background-color: var(--WHITE-F7);
}

.latest-news__image {
    display: block;
    width: 100%;
    height: 436px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}

.latest-news__card-link:hover .latest-news__image {
    transform: scale(1.035);
}

.latest-news__image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 435px;
    background-color: var(--WHITE-F7);
}

.latest-news__content {
    display: flex;
    min-width: 0;
    padding: 78px 38px 72px;

    flex-direction: column;
    align-items: flex-start;
}

.latest-news__date {
    margin-bottom: 32px;

    color: var(--GRAY);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.23px;
}

.latest-news__title {
    max-width: 280px;
    margin: 0 0 40px;

    color: var(--DARK);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: 0.3px;
}

.latest-news__more {
    display: inline-flex;
    margin-top: auto;
    gap: 4px;

    align-items: center;

    color: var(--ORANGE);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}

.latest-news__more svg {
    display: block;
    flex: 0 0 auto;

    transition: transform 0.25s ease;
}

.latest-news__card-link:hover .latest-news__more svg {
    transform: translateX(5px);
}

/* ========================================
   FOOTER
======================================== */

.footer {
    border-top: 1px solid #E5E5E5;
    background-color: var(--WHITE);
}

.footer__wrapper {
    display: flex;
    min-height: 120px;
    padding: 28px 0;

    align-items: center;
    justify-content: space-between;
}

.footer__brand {
    display: flex;
    align-items: center;
}

.footer__logo {
    display: inline-flex;
    align-items: center;

    color: var(--BLUE);
    text-decoration: none;
}

.footer__logo-image {
    display: block;
    width: 220px;
    height: auto;
}

.footer__site-name {
    color: var(--BLUE);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
}

.footer__socials {
    display: flex;
    align-items: center;
}

.footer__social-list {
    display: flex;
    margin: 0;
    padding: 0;
    gap: 26px;

    align-items: center;

    list-style: none;
}

.footer__social-item {
    display: flex;
}

.footer__social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease,
        background-color 0.25s ease;
}

.footer__social-icon {
    display: block;
    width: 36px;
    height: 36px;

    object-fit: contain;

    transition: transform 0.25s ease;
}

.footer__social-link:hover {
    opacity: 0.75;
    transform: translateY(-3px);
}

.footer__social-link:hover .footer__social-icon {
    transform: scale(1.05);
}

.footer__social-link:focus-visible {
    outline: 2px solid var(--ORANGE);
    outline-offset: 5px;
}

/* ========================================
   SINGLE POST
======================================== */

.single-post {
    background-color: var(--WHITE);
}

.single-post__header {
    padding: 84px 0 52px;
    background-color: var(--WHITE-F7);
}

.single-post__header-container {
    max-width: 980px;
    text-align: center;
}

.single-post__date {
    display: block;
    margin-bottom: 24px;
    color: var(--ORANGE);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.9px;
}

.single-post__title {
    max-width: 900px;
    margin: 0 auto;
    color: var(--BLUE);
    font-size: clamp(50px, 4.4vw, 60px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: 0.9px;
}

.single-post__media {
    position: relative;
    z-index: 2;
    margin-top: -1px;
}

.single-post__image-wrapper {
    overflow: hidden;
    aspect-ratio: 16 / 8.5;
    border-radius: 20px;
    background-color: var(--WHITE-F7);
}

.single-post__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.single-post__body {
    max-width: 920px;
    padding-top: 64px;
    padding-bottom: 90px;
}

.single-post__content {
    color: var(--DARK);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0.12px;
}

.single-post__content > *:first-child {
    margin-top: 0;
}

.single-post__content > *:last-child {
    margin-bottom: 0;
}

.single-post__content p {
    margin: 0 0 26px;
}

.single-post__content h2,
.single-post__content h3,
.single-post__content h4 {
    color: var(--BLUE);
    font-weight: 600;
    line-height: 1.25;
}

.single-post__content h2 {
    margin: 56px 0 22px;
    font-size: clamp(30px, 3vw, 42px);
}

.single-post__content h3 {
    margin: 42px 0 18px;
    font-size: clamp(24px, 2.2vw, 30px);
}

.single-post__content h4 {
    margin: 34px 0 16px;
    font-size: 22px;
}

.single-post__content a {
    color: var(--ORANGE);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.single-post__content a:hover {
    color: var(--BLUE);
}

.single-post__content ul,
.single-post__content ol {
    margin: 0 0 28px;
    padding-left: 24px;
}

.single-post__content li + li {
    margin-top: 10px;
}

.single-post__content blockquote {
    margin: 48px 0;
    padding: 28px 34px;
    border-left: 4px solid var(--ORANGE);
    border-radius: 0 12px 12px 0;
    color: var(--BLUE);
    background-color: var(--WHITE-F7);
    font-size: 21px;
    font-weight: 500;
    line-height: 1.55;
}

.single-post__content blockquote p {
    margin: 0;
}

.single-post__content img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.single-post__content figure {
    margin: 42px 0;
}

.single-post__content figcaption {
    margin-top: 10px;
    color: var(--GRAY);
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.single-post__pages {
    display: flex;
    margin-top: 40px;
    gap: 10px;
    align-items: center;
}

.single-post__footer {
    display: flex;
    margin-top: 64px;
    padding-top: 30px;
    border-top: 1px solid #E5E5E5;
}

.single-post__back {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    color: var(--ORANGE);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
}

.single-post__back svg {
    transition: transform 0.25s ease;
}

.single-post__back:hover {
    color: var(--BLUE);
}

.single-post__back:hover svg {
    transform: translateX(-5px);
}

.single-post__back:focus-visible {
    outline: 2px solid var(--ORANGE);
    outline-offset: 4px;
}
/* ========================================
   NEWS PAGE
======================================== */

.news-page {
    background-color: var(--WHITE);
}

.news-page__hero {
    padding: 84px 0 58px;
    background-color: var(--WHITE-F7);
}

.news-page__hero-container {
    text-align: center;
}

.news-page__eyebrow {
    margin: 0 0 18px;
    color: var(--ORANGE);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.news-page__title {
    margin: 0;
    color: var(--BLUE);
    font-size: clamp(50px, 4.4vw, 60px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: 0.9px;
}

.latest-news--archive {
    padding: 72px 0 90px;
}

.latest-news--archive .latest-news__grid {
    row-gap: 42px;
}

.news-page__pagination {
    display: flex;
    margin-top: 58px;
    justify-content: center;
}

.news-page__pagination .page-numbers {
    display: flex;
    margin: 0;
    padding: 0;
    gap: 10px;
    align-items: center;
    list-style: none;
}

.news-page__pagination .page-numbers a,
.news-page__pagination .page-numbers span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid #E2E2E2;
    border-radius: 50%;
    color: var(--BLUE);
    background-color: var(--WHITE);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.news-page__pagination .page-numbers a:hover {
    color: var(--WHITE);
    background-color: var(--ORANGE);
    border-color: var(--ORANGE);
    transform: translateY(-2px);
}

.news-page__pagination .page-numbers .current {
    color: var(--WHITE);
    background-color: var(--BLUE);
    border-color: var(--BLUE);
}

.news-page__pagination .prev,
.news-page__pagination .next {
    font-size: 18px;
}

.news-page__pagination a:focus-visible {
    outline: 2px solid var(--ORANGE);
    outline-offset: 3px;
}

.news-page__empty {
    padding: 90px 0;
    color: var(--GRAY);
    text-align: center;
}
/* ========================================
   VARIATIONS ROW
======================================== */

.hometech-product__details--variations {
    border-top: 1px solid #e1e1e1;
}

.hometech-product__details--technical {
    border-top: 1px solid #e1e1e1;
}

.hometech-product__variations {
    min-width: 0;
}

.hometech-product__details--variations
.hometech-product__technical {
    padding: 70px 80px;
}

.hometech-product__details--technical
.hometech-product__technical {
    padding: 70px 80px;
}

.hometech-product__variation-media-wrap {
    position: relative;
    min-width: 0;
    min-height: 600px;
    overflow: hidden;
    background-color: #f7f7f7;
}

.hometech-product__variation-media-slider {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.hometech-product__variation-media-slider .swiper-wrapper {
    height: 100%;
}

.hometech-product__variation-media-slide {
    display: flex;
    min-height: 600px;
    padding: 50px;
    align-items: center;
    justify-content: center;
    background-color: #f7f7f7;
}

.hometech-product__variation-media-image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 650px;
    max-height: 650px;
    object-fit: contain;
    object-position: center;
}


/*
 * Techniniai + video:
 * video aukštis prisitaiko prie techninės lentelės.
 */
.hometech-product__details--technical
.hometech-product__video-wrap {
    position: relative;
    min-width: 0;
    min-height: 100%;
    overflow: hidden;
    background-color: #f2f2f2;
}

.hometech-product__details--technical
.hometech-product__video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

/* ========================================
   SINGLE PRODUCT
======================================== */

.hometech-product__options {
    margin-top: 40px;
    scroll-margin-top: 120px;
}

.hometech-product__options:first-child {
    margin-top: 0;
}

.hometech-product__options-title {
    margin: 0 0 24px;
    color: var(--BLUE);
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0.6px;
}

.hometech-product__variation-list {
    display: grid;
    gap: 14px;
}

.hometech-product__variation-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-width: 0;
    overflow: hidden;
    align-items: stretch;
    border: 1px solid #cfd5dd;
    border-radius: 7px;
    background: var(--WHITE);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.hometech-product__variation-item:hover {
    border-color: rgba(222, 98, 37, 0.65);
    transform: translateY(-1px);
}

.hometech-product__variation-item.is-selected {
    border-color: var(--ORANGE);
    box-shadow: 0 8px 22px rgba(37, 60, 97, 0.08);
}

.hometech-product__variation-item.is-disabled {
    opacity: 0.58;
}

.hometech-product__variation-select {
    display: flex;
    min-width: 0;
    min-height: 92px;
    padding: 10px 18px 10px 10px;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    border: 0;
    color: var(--BLUE);
    background: transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.hometech-product__variation-select:focus-visible {
    position: relative;
    z-index: 2;
    outline: 2px solid var(--ORANGE);
    outline-offset: -3px;
}

.hometech-product__variation-card-main {
    display: flex;
    min-width: 0;
    gap: 16px;
    align-items: center;
}

.hometech-product__variation-thumb {
    display: flex;
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #f7f7f7;
}

.hometech-product__variation-thumb-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.hometech-product__variation-name {
    min-width: 0;
    color: var(--BLUE);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
}

.hometech-product__variation-price {
    flex: 0 0 auto;
    color: var(--BLUE);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.hometech-product__variation-price .price {
    margin: 0;
}

.hometech-product__variation-cart-form {
    display: flex;
    margin: 0 !important;
    padding: 10px;
    align-items: center;
    border-left: 1px solid #e2e5e9;
}

.woocommerce .hometech-product__variation-add-to-cart {
    min-width: 132px;
    min-height: 50px;
    margin: 0 !important;
    padding: 12px 18px !important;
    border: 1px solid var(--ORANGE) !important;
    border-radius: 5px !important;
    color: var(--WHITE) !important;
    background: var(--ORANGE) !important;
    font-family: inherit;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    white-space: nowrap;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.woocommerce .hometech-product__variation-add-to-cart:hover {
    color: var(--ORANGE) !important;
    background: var(--WHITE) !important;
    transform: translateY(-1px);
}

.woocommerce .hometech-product__variation-add-to-cart:focus-visible {
    outline: 2px solid var(--ORANGE) !important;
    outline-offset: 3px;
}

.woocommerce .hometech-product__variation-add-to-cart:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.hometech-product__variation-item.is-adding-to-cart
.hometech-product__variation-add-to-cart {
    opacity: 0.65;
    pointer-events: none;
}

.hometech-product__variation-media-wrap {
    position: relative;
    min-width: 0;
    min-height: 620px;
    overflow: hidden;
    background: #f2f2f2;
}

.hometech-product__variation-media-slider,
.hometech-product__variation-media-slider .swiper-wrapper,
.hometech-product__variation-media-slide {
    width: 100%;
    height: 100%;
}

.hometech-product__variation-media-slider {
    position: absolute;
    inset: 0;
}

.hometech-product__variation-media-slide {
    position: relative;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
}

.hometech-product__variation-media-image {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: contain;
    object-position: center;
}

.hometech-product__variation-media-slide--video
.hometech-product__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hometech-product__variation-media-nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-flex;
    width: 46px;
    height: 46px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(37, 60, 97, 0.18);
    border-radius: 50%;
    color: var(--BLUE);
    background: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    transform: translateY(-50%);
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.hometech-product__variation-media-nav span {
    display: block;
    margin-top: -3px;
    font-size: 34px;
    font-weight: 300;
    line-height: 1;
}

.hometech-product__variation-media-nav--prev {
    left: 24px;
}

.hometech-product__variation-media-nav--next {
    right: 24px;
}

.hometech-product__variation-media-nav:hover {
    color: var(--WHITE);
    border-color: var(--ORANGE);
    background: var(--ORANGE);
}

.hometech-product__variation-media-nav.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.hometech-product__variation-media-pagination {
    z-index: 5;
    bottom: 22px !important;
}

.hometech-product__variation-media-pagination
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
    background: #c4c7cb;
    opacity: 1;
}

.hometech-product__variation-media-pagination
.swiper-pagination-bullet-active {
    background: var(--ORANGE);
}

.hometech-product__variation-media-nav.is-hidden,
.hometech-product__variation-media-pagination.is-hidden {
    display: none !important;
}

.hometech-single-product {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-right: -50vw;
    margin-left: -50vw;
    background-color: var(--WHITE);
}

.hometech-product__breadcrumb-wrap {
    padding-top: 8px;
    padding-bottom: 18px;
}

.hometech-product__breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    color: var(--BLUE);
    font-size: 12px!important;
    line-height: 1.5!important;
}

.hometech-product__breadcrumb a {
    color: #7a8799;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hometech-product__breadcrumb a:hover {
    color: var(--ORANGE);
}

.hometech-product__breadcrumb a:focus-visible {
    outline: 2px solid var(--ORANGE) !important;
    outline-offset: 3px;
}

.hometech-product__breadcrumb-separator {
    color: #aab1bc;
}

.hometech-product__main {
    display: grid;
    grid-template-columns: minmax(0, 50%) minmax(0, 50%);
    min-height: 565px;
}

.hometech-product__gallery {
    position: relative;
    min-width: 0;
    min-height: 565px;
    overflow: hidden;
    background-color: #fbfbfb;
}

.hometech-product__slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hometech-product__slider .swiper-wrapper,
.hometech-product__slide {
    width: 100%;
    height: 100%;
}

.hometech-product__slide {
    display: flex;
    padding: clamp(45px, 6vw, 85px);
    align-items: center;
    justify-content: center;
}

.hometech-product__image {
    display: block;
    width: 100%;
    height: 100%;
    /*max-height: 455px;*/
    object-fit: contain;
    object-position: center;
	
	 user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
	
}

.hometech-product__pagination.swiper-pagination-bullets {
    top: 50%;
    right: auto;
    bottom: auto;
    left: clamp(26px, 3.2vw, 48px);
    z-index: 5;
    display: flex;
    width: auto;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 7px;
}

.hometech-product__pagination .swiper-pagination-bullet {
    display: block;
    width: 8px;
    height: 8px;
    margin: 0 !important;
    background-color: #d7d7d7;
    opacity: 1;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.hometech-product__pagination .swiper-pagination-bullet-active {
    background-color: #555;
    transform: scale(1.05);
}

.hometech-product__pagination .swiper-pagination-bullet:focus-visible {
    outline: 2px solid var(--ORANGE) !important;
    outline-offset: 3px;
}

.hometech-product__summary {
    display: flex;
    min-width: 0;
    padding: 36px clamp(38px, 5.2vw, 80px) 52px;
    align-items: flex-start;
    background-color: var(--WHITE);
}

.hometech-product__summary-inner {
    width: 100%;
    max-width: 560px;
}

.hometech-product__title {
    max-width: 620px;
    margin: 0 0 32px;
    color: var(--BLUE);
    font-size: clamp(50px, 4.4vw, 60px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: 0.9px;
}

.hometech-product__title--without-subtitle {
    margin-bottom: 38px;
}

.hometech-product__subtitle {
    margin-bottom: 25px;
    color: var(--ORANGE);
    font-size: 21px;
    letter-spacing: 0.32px;
    font-weight: 400;
    line-height: 1.3;
    text-transform: uppercase;
}

.hometech-product__description {
    max-width: 540px;
    margin-bottom: 28px;
    color: var(--BLUE);
    font-size: 14px;
    letter-spacing: 0.21px;
    font-weight: 400;
    line-height: 1.65;
}

.hometech-product__description p {
    margin: 0;
}

.hometech-product__description p + p {
    margin-top: 14px;
}

.hometech-product__price {
    margin-bottom: 28px;
    color: var(--BLUE);
	
   
}
.woocommerce .woocommerce-breadcrumb::after, .woocommerce .woocommerce-breadcrumb::before {
    display: none!important;
}
.hometech-product__price .price {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.21px;
    font-weight: 500;
    line-height: 1.65;
}

.hometech-product__price del {
    margin-right: 7px;
    color: #8c98a9;
    opacity: 1;
}

.hometech-product__price ins {
    color: var(--BLUE);
    font-weight: 600;
}

.hometech-product__cart form.cart {
    display: flex;
    margin: 0;
}

.hometech-product__cart .quantity {
    display: none;
}

.woocommerce .hometech-product__cart .single_add_to_cart_button {
	position: relative;
    display: inline-flex;
    min-width: 265px;
    min-height: 68px;
    padding: 18px 28px;
    gap: 9px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ORANGE)!important;
    border-radius: 5px;
    color: var(--WHITE);
    background-color: var(--ORANGE)!important;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.woocommerce .hometech-product__cart .single_add_to_cart_button::after {
    position: absolute;
    top: 50%;
    right: 26px;
    width: 15px;
    height: 9px;
    background-image: url("../assets/icons/chevron-down.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    filter: brightness(0) invert(1);
    transform: translateY(-50%) rotate(-90deg);
    transition: transform 0.25s ease;
}

.woocommerce .hometech-product__cart .single_add_to_cart_button:hover {
    color: var(--ORANGE)!important;
    background-color: var(--WHITE)!important;
    transform: translateY(-2px);
}

.woocommerce .hometech-product__cart .single_add_to_cart_button:hover::after {
    transform: translate(4px, -50%) rotate(-90deg);
	background-image: url("../assets/icons/chevron-down-orange.svg");
	filter: none;
}

.woocommerce .hometech-product__cart .single_add_to_cart_button:focus-visible {
    outline: 2px solid var(--ORANGE) !important;
    outline-offset: 4px;
}

.woocommerce .hometech-product__cart .single_add_to_cart_button.disabled,
.woocommerce .hometech-product__cart .single_add_to_cart_button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.hometech-product__files {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    width: 100%;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    background-color: var(--WHITE);
}

.hometech-product__file-link {
    display: flex;
    min-width: 0;
    min-height: 58px;
    padding: 12px clamp(28px, 3.2vw, 48px);
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-right: 1px solid #d9d9d9;
    color: var(--BLUE);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.hometech-product__file-link:last-child {
    border-right: 0;
}

.hometech-product__file-link:hover {
    color: var(--ORANGE);
    background-color: #fbfbfb;
}

.hometech-product__file-link:focus-visible {
    outline: 2px solid var(--ORANGE) !important;
    outline-offset: -4px;
}

.hometech-product__file-icon {
    display: block;
    width: 18px;
    height: 10px;
    flex: 0 0 auto;
    filter: brightness(0) saturate(100%) invert(21%) sepia(24%) saturate(1137%) hue-rotate(175deg) brightness(91%) contrast(90%);
    transition: transform 0.2s ease;
}

.hometech-product__file-link:hover .hometech-product__file-icon {
    transform: translateY(4px);
}

.hometech-product__details {
   padding: 0;
    overflow: hidden;
    background-color: var(--WHITE);
}

.hometech-product__details-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
}

.hometech-product__details-grid--single {
    grid-template-columns: minmax(0, 1fr);
}

.hometech-product__technical {
	padding: 80px 80px 65px;
}
.hometech-product__details-grid--single .hometech-product__technical {
    width: 100%;
    max-width: none;
	min-width: 0;
    padding:
        clamp(64px, 7vw, 120px)
        clamp(40px, 8vw, 150px);
}

.hometech-product__details-grid--single .hometech-product__video-wrap {
   position: relative;
    min-width: 0;
    min-height: 100%;
    overflow: hidden;
    aspect-ratio: auto;
    background-color: #f2f2f2;
}
.hometech-product__video {
    position: absolute;
    inset: 0;

    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}
.hometech-product__technical-title {
    margin: 0 0 18px;
    color: var(--BLUE);
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0.6px;
}

.hometech-product__technical-subtitle {
    max-width: 760px;
    margin-bottom: 34px;
    color: var(--BLUE);
    font-size: 14px;
    letter-spacing: 0.21px;
    font-weight: 400;
    line-height: 1.65;
}

.hometech-product__technical-subtitle p {
    margin: 0;
}

.hometech-product__technical-subtitle p + p {
    margin-top: 12px;
}

.hometech-product__table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #cfd5dd;
}

.hometech-product__table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    color: var(--BLUE);
    font-size: 14px;
    line-height: 1.4;
}

.hometech-product__table th,
.hometech-product__table td {
    padding: 13px 16px;
    border-right: 1px solid #cfd5dd;
    border-bottom: 1px solid #cfd5dd;
    text-align: left;
    vertical-align: middle;
}

.hometech-product__table th:last-child,
.hometech-product__table td:last-child {
    border-right: 0;
}

.hometech-product__table tbody tr:last-child th,
.hometech-product__table tbody tr:last-child td {
    border-bottom: 0;
}

.hometech-product__table thead th {
    color: var(--BLUE);
    background-color: #eef1f4;
    font-weight: 600;
}

.hometech-product__table tbody th {
    width: 54%;
    font-weight: 500;
}

.hometech-product__table tbody td {
    width: 46%;
    font-weight: 400;
}

.hometech-product__table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.hometech-product__video-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background-color: #f2f2f2;
}

.hometech-product__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-cross-sells {
    border-top: 1px solid #e1e1e1;
}

.product-cross-sells .product-accessories__card-link {
    display: flex;
    width: 100%;
    height: 100%;

    flex: 1;
    flex-direction: column;

    color: inherit;
    text-decoration: none;
}

.product-cross-sells .product-accessories__card-title {
    margin-bottom: 12px;
}

.product-cross-sells__subtitle {
    margin: 0 0 27px;
    color: var(--BLUE);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.23px;
}

.product-cross-sells .product-accessories__card-link:focus-visible {
    outline: 2px solid var(--ORANGE);
    outline-offset: -4px;
}




/* ========================================
   PRODUCT CATEGORY PAGE
======================================== */
.product-category-page__video-card {
    position: relative;
    min-height: 472px;
    overflow: hidden;
    background-color: #000;
}

.product-category-page__loop-video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 472px;
    max-height: 500px;
	object-fit: cover;
    object-position: center;
    background-color: transparent;
}
.product-category-page {
    padding-top: 54px;
}

.product-category-page__description {
    max-width: 760px;
    margin-top: 18px;

    color: var(--BLUE);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
}

.product-category-page__description > *:last-child {
    margin-bottom: 0;
}

.product-category-page__toolbar {
    display: flex;
    margin-bottom: 36px;
    gap: 20px;

    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product-category-page__toolbar .woocommerce-notices-wrapper {
    width: 100%;
}

.product-category-page__toolbar .woocommerce-result-count,
.product-category-page__toolbar .woocommerce-ordering {
    float: none;
    margin: 0;
}

.product-category-page__toolbar select {
    min-width: 220px;
    min-height: 46px;
    padding: 10px 42px 10px 16px;

    color: var(--BLUE);
    font-family: inherit;
    font-size: 14px;

    border: 1px solid #d9dce1;
    background-color: var(--WHITE);
}

.product-category-page .product-accessories__card-link {
    display: flex;
    width: 100%;
    height: 100%;

    flex: 1;
    flex-direction: column;

    color: inherit;
    text-decoration: none;
}

.product-category-page .product-accessories__card-title {
    margin-bottom: 12px;
}

.product-category-page__product-subtitle {
      margin: 0 0 27px;
    color: var(--BLUE);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.23px;
}

.product-category-page .product-accessories__card-link:focus-visible {
    outline: 2px solid var(--ORANGE);
    outline-offset: -4px;
}

.product-category-page__pagination {
    margin-top: 56px;
}

.product-category-page__pagination .woocommerce-pagination ul.page-numbers {
    display: flex;
    margin: 0;
    padding: 0;
    gap: 10px;

    justify-content: center;

    border: 0;
}

.product-category-page__pagination .woocommerce-pagination ul li {
    margin: 0;
    border: 0;
}

.product-category-page__pagination .page-numbers a,
.product-category-page__pagination .page-numbers span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 0;

    align-items: center;
    justify-content: center;

    color: var(--BLUE);
    text-decoration: none;

    border: 1px solid #d9dce1;
    background-color: var(--WHITE);
}

.product-category-page__pagination .page-numbers a:hover {
    color: var(--WHITE);
    border-color: var(--ORANGE);
    background-color: var(--ORANGE);
}

.product-category-page__pagination .page-numbers .current {
    color: var(--WHITE);
    border-color: var(--BLUE);
    background-color: var(--BLUE);
}

/* ========================================
   WOOCOMMERCE NOTICES
======================================== */
.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title{
	text-align: center;
	color: var(--BLUE);
}
.woocommerce-order-received .woocommerce-customer-details br{
	margin-bottom: 15px;
}
.woocommerce-order-received .woocommerce-order-overview__payment-method.method,
.woocommerce-order-received .woocommerce-customer-details{
	display: none;
}
.woocommerce-order-received .woocommerce-table.woocommerce-table--order-details{
	margin-top: 15px;
}
.woocommerce-table__product-name.product-name a{
	color: var(--BLUE);
    font-weight: 600;
}
.woocommerce-order-received .woocommerce-order .woocommerce-thankyou-order-received{
	padding-bottom: 15px;
	color: var(--BLUE);
}
.woocommerce-order-received .woocommerce-order p{
	line-height: 1.5;
}
.woocommerce-notices-wrapper {
    width: 100%;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    min-height: 70px;
    margin: 0 0 32px !important;
    padding: 20px 24px 20px 62px !important;

    color: var(--BLUE);
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;

    border: 1px solid rgba(37, 60, 97, 0.12);
    border-top: 1px solid rgba(37, 60, 97, 0.12);
    border-left: 4px solid var(--ORANGE);
    border-radius: 10px;
    background-color: var(--WHITE-F7);

    box-shadow: 0 8px 24px rgba(37, 60, 97, 0.06);
}

.woocommerce-message,
.woocommerce-info {
    display: flex;
    gap: 24px;

    align-items: center;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
    top: 50% !important;
    left: 23px !important;

    color: var(--ORANGE);
    font-size: 18px;
    line-height: 1;

    transform: translateY(-50%);
}

.woocommerce-message {
    border-left-color: var(--ORANGE);
}

.woocommerce-info {
    border-left-color: var(--BLUE);
}

.woocommerce-info::before {
    color: var(--BLUE);
}

.woocommerce-error {
    border-left-color: #c84e3b;
}

.woocommerce-error::before {
    top: 23px !important;

    color: #c84e3b;

    transform: none;
}

.woocommerce-error li {
    margin: 0;
}

.woocommerce-error li + li {
    margin-top: 7px;
}

/* Paprastos nuorodos žinutėse */

.woocommerce-message a:not(.button),
.woocommerce-info a:not(.button),
.woocommerce-error a:not(.button) {
    color: var(--ORANGE);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.woocommerce-message a:not(.button):hover,
.woocommerce-info a:not(.button):hover,
.woocommerce-error a:not(.button):hover {
    color: var(--BLUE);
}

/* Žinutėse esantys mygtukai */

.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button,
.woocommerce-notices-wrapper .button.wc-forward {
    display: inline-flex;
    min-height: 44px;
    margin: 0 0 0 auto !important;
    padding: 11px 22px !important;

    order: 2;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    float: none !important;

    color: var(--WHITE) !important;
    font-family: "Manrope", sans-serif;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;

    border: 1px solid var(--ORANGE) !important;
    border-radius: 5px !important;
    background: var(--ORANGE) !important;

    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.woocommerce-message .button:hover,
.woocommerce-info .button:hover,
.woocommerce-error .button:hover,
.woocommerce-notices-wrapper .button.wc-forward:hover {
    color: var(--WHITE) !important;
    border-color: var(--BLUE) !important;
    background: var(--BLUE) !important;

    transform: translateY(-2px);
}

.woocommerce-message .button:focus-visible,
.woocommerce-info .button:focus-visible,
.woocommerce-error .button:focus-visible {
    outline: 2px solid var(--ORANGE) !important;
    outline-offset: 3px;
}
.woocommerce-checkout main,
.woocommerce-cart main{
	padding: 80px 0;
}
.section_page_title h1{
	margin: 0 0 18px;
    color: var(--BLUE);
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0.6px;
}
.wp-block-woocommerce-cart-order-summary-heading-block.wc-block-cart__totals-title,
.wc-block-cart-items .wc-block-cart-items__header span{
    color: var(--BLUE);
    font-weight: 500;
    letter-spacing: 0.6px;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link):hover {
	color: var(--ORANGE) !important;
    background-color: var(--WHITE) !important;
    transform: translateY(-2px);
}
body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
    display: inline-flex;
    min-width: 265px;
    min-height: 68px;
    padding: 18px 28px;
    gap: 9px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ORANGE);
    border-radius: 5px;
    color: var(--WHITE);
    background-color: var(--ORANGE);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}
.interita-inquiry-description{
	color: var(--BLUE);
	font-size: var(--wp--preset--font-size--medium, 22px);
    font-weight: 500;
    line-height: 1.4;
}
.wc-block-components-product-name,
.wc-block-components-checkout-order-summary__title-text,
.wc-block-components-checkout-step__title{
	 color: var(--BLUE);
}
.wc-block-components-address-form__country.wc-block-components-country-input{
	margin-top: 12px!important;
}

/* ========================================
   CONTACT PAGE
======================================== */

.contact-page {
    background-color: var(--WHITE);
}

.contact-page__container {
    width: 100%;
}


/* ========================================
   HERO
======================================== */

.contact-page__hero {
    padding: 70px 0 75px;

    border-bottom: 1px solid #e7e9ed;
    background-color: var(--WHITE-F7);
}

.contact-page__hero-copy {
    max-width: 820px;
}

.contact-page__eyebrow {
  
	
	margin-bottom: 25px;
    color: var(--ORANGE);
    font-size: 21px;
    letter-spacing: 0.32px;
    font-weight: 400;
    line-height: 1.3;
    text-transform: uppercase;
}

.contact-page__title {
    max-width: 900px;
    margin: 0;

    color: var(--BLUE);

    font-family: "Manrope", sans-serif;
    font-size: clamp(50px, 4.4vw, 60px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: 0.9px;
	

}

.contact-page__intro {
    max-width: 690px;
    margin-top: 24px;

    color: var(--BLUE);

    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.21px;
}

.contact-page__intro > * {
    margin-top: 0;
}

.contact-page__intro > *:last-child {
    margin-bottom: 0;
}


/* ========================================
   MAIN CONTENT
======================================== */

.contact-page__content {
    padding: 70px 0 70px;
}

.contact-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(42px, 6vw, 90px);

    align-items: start;
}

.contact-page__info {
    display: grid;
    gap: 24px;
}


/* ========================================
   CONTACT INFO CARD
======================================== */

.contact-page__info-card,
.contact-page__details-card,
.contact-page__form-card {
    min-width: 0;

    border: 1px solid #e2e2e2;
    border-radius: 12px;

    background-color: var(--WHITE);
}

.contact-page__info-card {
    padding: clamp(30px, 3.6vw, 48px);
}

.contact-page__company {
    margin-bottom: 30px;

    color: var(--BLUE);

    font-family: "Manrope", sans-serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0.34px;

}

.contact-page__contact-row {
    display: flex;
    min-width: 0;
    padding: 20px 0;
    gap: 18px;

    align-items: center;

    border-top: 1px solid #e8eaed;

    color: var(--BLUE);
    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.contact-page__contact-row:hover {
    color: var(--ORANGE);
}

.contact-page__contact-row:focus-visible {
    outline: 2px solid var(--ORANGE) !important;
    outline-offset: 4px;
}

.contact-page__contact-row > span:last-child {
    min-width: 0;
}

.contact-page__contact-row strong {
    display: block;

    overflow-wrap: anywhere;

    color: currentColor;

    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
}

.contact-page__row-label {
    display: block;
    margin-bottom: 3px;

    color: var(--GRAY);

    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.65px;
    text-transform: uppercase;
}


/* ========================================
   CONTACT ICONS
======================================== */

.contact-page__icon {
    display: inline-flex;
    width: 48px;
    height: 48px;

    flex: 0 0 48px;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--ORANGE);
    background-color: #fff5ef;
}

.contact-page__icon svg {
    display: block;
    width: 23px;
    height: 23px;
}

.contact-page__icon--small {
    width: 38px;
    height: 38px;

    flex-basis: 38px;
}

.contact-page__icon--small svg {
    width: 20px;
    height: 20px;
}


/* ========================================
   RESPONSE NOTE
======================================== */

.contact-page__response-note {
    display: flex;
    margin-top: 8px;
    padding-top: 24px;
    gap: 14px;

    align-items: center;

    border-top: 1px solid #e8eaed;

    color: var(--BLUE);

    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}


/* ========================================
   COMPANY DETAILS
======================================== */

.contact-page__details-card {
    padding: 30px 34px;

    background-color: var(--WHITE-F7);
}

.contact-page__details-title {
    margin: 0 0 20px;

    color: var(--BLUE);

    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
}

.contact-page__details-list {
    display: grid;
    margin: 0;
    gap: 14px;
}

.contact-page__details-list > div {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 16px;
}

.contact-page__details-list dt {
    color: var(--GRAY);

    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

.contact-page__details-list dd {
    min-width: 0;
    margin: 0;

    overflow-wrap: anywhere;

    color: var(--BLUE);

    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}


/* ========================================
   FORM CARD
======================================== */

.contact-page__form-card {
    padding: clamp(34px, 4.5vw, 58px);

    box-shadow: 0 18px 45px rgba(37, 60, 97, 0.08);
}

.contact-page__form-head {
    margin-bottom: 32px;
}

.contact-page__form-title {
    margin-bottom: 30px;
    color: var(--BLUE);
    font-family: "Manrope", sans-serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0.34px;
}

.contact-page__form-intro {
    max-width: 620px;
    margin-top: 14px;

    color: var(--BLUE);

    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.21px;
}

.contact-page__form-intro > * {
    margin-top: 0;
}

.contact-page__form-intro > *:last-child {
    margin-bottom: 0;
}


/* ========================================
   CONTACT FORM 7
======================================== */

.contact-page__form-shortcode,
.contact-page__form-shortcode .wpcf7 {
    width: 100%;
}

.contact-page__form-shortcode .wpcf7-form {
    margin: 0;
}

.contact-page__form-shortcode .wpcf7-form p {
    margin: 0 0 22px;
}

.contact-page__form-shortcode .wpcf7-form p:last-of-type {
    margin-bottom: 0;
}

/* ========================================
   CONTACT FORM 7 LAYOUT
======================================== */

.contact-page__form-shortcode .contact-form {
    width: 100%;
}

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

.contact-page__form-shortcode .contact-form__field {
    min-width: 0;
}

.contact-page__form-shortcode .contact-form__field--full,
.contact-page__form-shortcode .contact-form__actions {
    grid-column: 1 / -1;
}

.contact-page__form-shortcode .contact-form__field label {
    display: block;
    margin: 0;
}

.contact-page__form-shortcode .contact-form__label {
    display: block;
    margin-bottom: 8px;

    color: var(--BLUE);

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.contact-page__form-shortcode .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    margin: 0;
}

.contact-page__form-shortcode .contact-form__actions {
    margin-top: 6px;
}

/* Labels */

.contact-page__form-shortcode .wpcf7-form label {
    display: block;

    color: var(--BLUE);

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.contact-page__form-shortcode .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    margin-top: 8px;
}


/* Text fields */

.contact-page__form-shortcode
.wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-checkbox):not(.wpcf7-radio):not(.wpcf7-acceptance) {
    box-sizing: border-box;
    width: 100%;
    min-height: 54px;
    padding: 13px 15px;

    border: 1px solid #d7dce2;
    border-radius: 5px;
    outline: 0;

    color: var(--BLUE);
    background-color: var(--WHITE);

    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-page__form-shortcode
textarea.wpcf7-form-control {
    min-height: 165px;
    resize: vertical;
}

.contact-page__form-shortcode
select.wpcf7-form-control {
    cursor: pointer;
}

.contact-page__form-shortcode
.wpcf7-form-control::placeholder {
    color: #8e98a7;
    opacity: 1;
}

.contact-page__form-shortcode
.wpcf7-form-control:not(.wpcf7-submit):focus {
    border-color: var(--ORANGE);

    box-shadow: 0 0 0 3px rgba(222, 98, 37, 0.09);
}


/* Invalid */

.contact-page__form-shortcode
.wpcf7-form-control.wpcf7-not-valid {
    border-color: #c84e3b;
}

.contact-page__form-shortcode .wpcf7-not-valid-tip {
    display: block;
    margin-top: 7px;

    color: #c84e3b;

    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}


/* Checkbox / acceptance */

.contact-page__form-shortcode .wpcf7-form-control.wpcf7-checkbox{
	display: flex;
    flex-direction: column;
    gap: 7px;
}
.contact-page__form-shortcode .wpcf7-list-item {
    margin: 0;
}

.contact-page__form-shortcode .wpcf7-list-item label {
    display: flex;
    gap: 10px;

    align-items: flex-start;

    font-size: 12px;
    font-weight: 400;
    line-height: 1.55;

    cursor: pointer;
}

.contact-page__form-shortcode
input[type="checkbox"],
.contact-page__form-shortcode
input[type="radio"] {
    width: 17px;
    height: 17px;
    margin: 1px 0 0;

    flex: 0 0 17px;

    accent-color: var(--ORANGE);
}


/* Submit */

.contact-page__form-shortcode .wpcf7-submit {
    display: inline-flex;
    min-width: 265px;
    min-height: 68px;
    padding: 18px 28px;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--ORANGE);
    border-radius: 5px;

    color: var(--WHITE);
    background-color: var(--ORANGE);

    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;

    cursor: pointer;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.contact-page__form-shortcode .wpcf7-submit:hover {
    color: var(--ORANGE);
    background-color: var(--WHITE);

    transform: translateY(-2px);
}

.contact-page__form-shortcode .wpcf7-submit:focus-visible {
    outline: 2px solid var(--ORANGE) !important;
    outline-offset: 4px;
}

.contact-page__form-shortcode .wpcf7-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}


/* Spinner */

.contact-page__form-shortcode .wpcf7-spinner {
    margin: 0 0 0 14px;

    background-color: var(--BLUE);

    vertical-align: middle;
}


/* Response messages */

.contact-page__form-shortcode .wpcf7-response-output {
    margin: 24px 0 0 !important;
    padding: 15px 18px !important;

    border: 1px solid rgba(37, 60, 97, 0.14) !important;
    border-left: 4px solid var(--BLUE) !important;
    border-radius: 8px;

    color: var(--BLUE);
    background-color: var(--WHITE-F7);

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.contact-page__form-shortcode
.wpcf7-form.sent
.wpcf7-response-output {
    border-left-color: var(--ORANGE) !important;
}

.contact-page__form-shortcode
.wpcf7-form.invalid
.wpcf7-response-output,
.contact-page__form-shortcode
.wpcf7-form.failed
.wpcf7-response-output,
.contact-page__form-shortcode
.wpcf7-form.unaccepted
.wpcf7-response-output,
.contact-page__form-shortcode
.wpcf7-form.spam
.wpcf7-response-output {
    border-left-color: #c84e3b !important;
}


/* ========================================
   ADMIN-ONLY NOTICE
======================================== */

.contact-page__notice {
    padding: 15px 18px;

    border: 1px solid rgba(37, 60, 97, 0.14);
    border-left: 4px solid var(--ORANGE);
    border-radius: 8px;

    color: var(--BLUE);
    background-color: var(--WHITE-F7);

    font-size: 14px;
    line-height: 1.55;
}

.contact-page__notice--error {
    border-left-color: #c84e3b;
}
