* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    margin: 0;
    overflow-x: hidden;
}

.product-wrapper {
    font-family: "Albert Sans", sans-serif;
}

.container-small {
    width: 100%;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.container-large {
    width: 100%;
    max-width: 92.5%;
    margin-left: auto;
    margin-right: auto;
}

/* hero section css start here */
.HerobannerWrapper {
    width: 100vw !important;
    height: 100vh;
    margin: 0 auto;
    text-align: center;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.HerobannerWrapper .bannerVideoWrapper {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.HerobannerWrapper .bannerVideoWrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.HerobannerWrapper .bannerVideoWrapper video.mobileVideo {
    display: none;
}

.HerobannerWrapper .mobileScrollDownArrow {
    width: 90%;
    height: auto;
    position: absolute;
    bottom: 2em;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 3;
    display: none;
}

.HerobannerWrapper .btnblocsec {
    background: transparent;
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.HerobannerWrapper .btnblocsec a {
    text-decoration: none;
}

.HerobannerWrapper .mobileScrollDownArrow .arrows {
    position: relative;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 0;
    transform: translate(-50%, 0%);
    right: 0;
    bottom: 2em;
    margin: 0 auto;
}

.HerobannerWrapper .mobileScrollDownArrow p {
    color: #fff;
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 1.5em;
}

.HerobannerWrapper .mobileScrollDownArrow .arrows:before,
.HerobannerWrapper .mobileScrollDownArrow .arrows:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-left: 3.333px solid rgba(255, 255, 255, 1);
    border-bottom: 3.333px solid rgba(255, 255, 255, 1);
    transform: rotate(-45deg);
    animation: arrows 3s ease-in-out infinite
}

.mobileScrollDownArrow .arrows:before {
    transform: translate(5px, 15px) rotate(-45deg)
}

.mobileScrollDownArrow .arrows:after {
    transform: translate(10px, 30px) rotate(-45deg);
    animation-delay: -1.5s
}

@keyframes arrows {
    0% {
        border-left: 3.333px solid rgba(255, 255, 255, 0);
        border-bottom: 3.333px solid rgba(255, 255, 255, 0);
        transform: translate(-2px, -8px) rotate(-45deg)
    }

    10%,
    90% {
        border-left: 3.333px solid rgba(255, 255, 255, 0);
        border-bottom: 3.333px solid rgba(255, 255, 255, 0)
    }

    50% {
        border-left: 3.333px solid rgba(255, 255, 255, 1);
        border-bottom: 3.333px solid rgba(255, 255, 255, 1);
        transform: translate(-2px, 0) rotate(-45deg)
    }

    100% {
        border-left: 3.333px solid rgba(255, 255, 255, 0);
        border-bottom: 3.333px solid rgba(255, 255, 255, 0);
        transform: translate(-2px, 8px) rotate(-45deg)
    }
}

.HerobannerWrapper .bannerVideoWrapper iframe {
    width: 100%;
    height: 100%;
    margin: 0 auto
}

.HerobannerWrapper .heroTextWrapper {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
}

.HerobannerWrapper .heroTextWrapper h2 {
    font-size: 6.25vw;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    color: #fff;
}

.HerobannerWrapper .heroTextWrapper h2 span {
    font-weight: 700;
}

.cursor {
    width: 120px;
    height: 120px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

/* faq section css start here */
.faq-section {
    padding: 4.167vw 0;
    background: #100A0A;
    color: #fff;
}

.faq-title {
    font-size: 3.125vw;
    font-weight: 800;
    margin-bottom: 2.083vw;
    text-transform: uppercase;
}

.faq-title span.red-txt {
    color: #ff2a2a;
    margin-right: 0.521vw;
}

.faq {
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2.083vw;
}

.faq-item.active .faq-question {
    margin-bottom: 1.563vw;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #d6d6d6;
    font-size: 1.563vw;
    font-weight: 400;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    line-height: 1.4;
    font-family: inherit;
}

.faq-question:hover {
    color: #fff;
}

.faq-question .icon {
    font-size: 1.042vw;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    overflow: hidden;
    font-size: 1.563vw;
    font-weight: 400;
    line-height: 1.4;
    color: #bdbdbd;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active {
    background-color: #000000;
}

.faq-item.active .faq-answer {
    display: block;
    padding-bottom: 1.042vw;
}

.faq-item.active .icon {
    transform: rotate(180deg);
    filter: brightness(0) invert(1);
}

.faq-item.active .faq-question {
    color: #fff;
}

/* specification css start here */

.specs-section {
    padding: 2.5vw 0;
    background: #1E1818;
}

.specs-container {
    display: flex;
    gap: 2.083vw;
}

/* LEFT TABS */
.specs-tabs {
    width: 25%;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
}

.specs-tabs .tab {
    display: block;
    width: 100%;
    padding: 16px 0;
    background: none;
    border: none;
    text-align: left;
    color: rgb(255 255 255 / 30%);
    font-size: 1.771vw;
    font-weight: 300;
    cursor: pointer;
    position: relative;
    font-family: inherit;
}

.specs-tabs .tab.active {
    color: #fff;
}

.specs-tabs .tab::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80%;
    height: 1px;
    background: #616161;
}

.specs-tabs .tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80%;
    height: 2px;
    background: #fff;
}

/* RIGHT CONTENT */
.specs-content {
    flex: 1;
    background: #252525;
}

.tab-content {
    display: none;
    padding: 20px 20px 20px 44px;
}

.tab-content .tab-inner {
   grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
    display: grid;
}
.tab-content .content-image {
    max-width: 542px;
}
.tab-content.active {
    display: block;
}

.mobile-accordion-toggle {
    display: none;
}

.content-text {
    font-size: 14px;
}

.content-text .content-row {
    border-bottom: 1px solid #100A0A;
    padding: 1.406vw 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.content-text .content-row:last-child {
    border-bottom: none;
}

.content-text .label {
    color: #9b9b9b;
    font-size: 0.833vw;
    margin-bottom: 8px;
}

.content-text .value {
    font-size: 0.938vw;
    font-weight: 700;
    color: #fff;
}

.content-text .value.small {
    font-size: 14px;
    line-height: 1.6;
}


.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

/* stack slider section start here */
.applications {
    padding: 6.25vw 0;
    background-color: #100A0A;
    color: #fff;
    background-image: url("../optima-images/vibrance-square-bg.svg");
    background-repeat: repeat;
    background-size: cover;
}

.applications-header {
    padding: 0 1.042vw 3.125vw;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.applications-header .left_header {
    width: 75%;
}

.applications-header .right_header {
    width: 25%;
    display: flex;
    justify-content: end;
}

.applications-header h2 {
    color: #EF0000;
    font-size: 3.125vw;
    font-weight: 800;
    margin-bottom: 1.042vw;
}

.applications-header p {
    color: #FFFFFF;
    font-size: 1.042vw;
    font-weight: 400;
    line-height: 1.5;
}

.skip-btn {
    font-size: 1.042vw;
    font-weight: 400;
    background: #252525;
    border: none;
    color: #fff;
    padding: 1.563vw 4.167vw;
    cursor: pointer;
    transition: all 0.3s ease;
}

.skip-btn:hover {
    background: #EF0000;
}

/* STACK */
.applications-stack {
    position: relative;
}

.app-card {
    position: sticky;
    top: 100px;
    height: 36.458vw;
    margin-bottom: 2.083vw;
    overflow: hidden;
}

.app-card img {
    width: 100%;
    height: 100%;
}

.app-content {
    padding: 60px;
    /* background: rgba(255, 255, 255, 0.05); */
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.app-content h3 {
    font-size: 3.125vw;
    font-weight: 600;
    margin-bottom: 0.833vw;
    line-height: 1.1;
}

.app-content p {
    max-width: 31.25vw;
    font-size: 1.563vw;
    font-weight: 400;
    line-height: 1.4;
}

.view-specs {
    margin-top: 2.083vw;
    width: 7.083vw;
    height: 7.083vw;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 1.563vw;
    font-weight: 300;
}

.app-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MODAL */
.spec-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.spec-modal.active {
    display: flex;
}

.spec-modal .modal-content {
    background: #3E3E3E;
    color: #FFFFFF;
    padding: 15vh 10vw;
    width: 100vw;
    height: 100vh;
    position: relative;
}

.spec-modal .close-modal {
    position: absolute;
    right: 10%;
    top: 10%;
    font-size: 1.563vw;
    width: 7.083vw;
    height: 7.083vw;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
}
.table_responsive table{
    width: 100%;
}
.specs-table table,
.specs-table table th,
.specs-table table td, 
.table_responsive table,
.table_responsive table th,
.table_responsive table td {
    border-collapse: collapse;
    border: 1px solid #FFFFFF;
    padding: 0.521vw 1.042vw;
    text-align: left;
    line-height: 1.4;
    color: #FFFFFF;
}
.table_responsive{
width: 100%;
overflow-y: auto;
}
.specs-table table th {
    font-size: 1.563vw;
}
.table_responsive table th{
font-size: 1.2vw;
font-weight: 500;
}
.specs-table table td, .table_responsive table td {
    font-size: 0.833vw;
}

.spec-modal .modal-content h3 {
    font-size: 3.125vw;
    font-weight: 600;
    margin-bottom: 4.688vw;
}

.spec-modal .modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.spec-modal .modal-grid h4 {
    border-bottom: 1px solid #666;
    padding-bottom: 10px;
    margin-bottom: 16px;
}

/* vibrance css start here */
.vibrance {
    min-height: 100vh;
    background-color: #CCCCCC;
    background-image: url("../optima-images/vibrance-square-bg.svg");
    background-repeat: repeat;
    background-size: cover;
    padding: 5.208vw 0;
}

.vibrance-track {
    overflow: hidden;
}

.vibrance .vibrance-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 4.688vw;
    gap: 1.042vw;
}

.vibrance .vibrance-header img.vibrance-black-logo {
    width: 80%;
}

.vibrance .vibrance-header h2 {
    color: #000000;
    font-size: 2.5vw;
    font-weight: 600;
}

.vibrance .vibrance-header h2 span {
    font-weight: 700;
}

.vibrance .vibrance-header p {
    font-size: 1.458vw;
    font-weight: 400;
    color: #000000;
    text-align: center;
}

.vibrance-row {
    display: flex;
    gap: 2.083vw;
    padding: 0 6.25vw;
}

.vibrance-row.row-2 {
    padding: 0 6.25vw 0 14.25vw;
}

.vibrance-row+.vibrance-row {
    margin-top: 2.083vw;
}

.vibrance .v-card {
    min-width: 29.688vw;
    background: #fff;
    padding: 1.563vw;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vibrance .v-card .v-card-wrapper {
    display: flex;
    align-items: center;
    gap: 2vw;
    color: #000000;
}

.vibrance .v-card .v-card-wrapper p {
    color: #000000;
    font-size: 1.042vw;
    font-weight: 400;
}

.vibrance .v-card .v-card-wrapper p span {
    font-weight: 700;
}

.vibrance .v-card .v-card-wrapper img {
    height: 7.292vw;
}

/* Timeline */
.vibrance .vibrance-progress {
    width: 26.042vw;
    height: 8px;
    background: #a09c9c;
    margin: 2.604vw auto 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.vibrance .progress-fill {
    position: absolute;
    inset: 0;
    width: 0%;
    background: #3A50A2;
}

/* second statement section css start here */
.statement-section {
    padding: 7.292vw 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #252525;
}

.statement-section.optima {
    background: #1E1818;
}

.statement-section .statement-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 38px;
}

.statement-section.optima .statement-inner {
    gap: 22px;
}

.statement-section.optima .optima-logo {
    width: 80%;
}

.statement-section.optima .statement-text {
    width: 100%;
    font-size: 2.604vw;
    font-weight: 300;
}

.statement-section .statement-text {
	font-size: 3.25vw;
	font-weight: 300;
	line-height: 1.25;
	color: #ffffff;
	text-transform: uppercase;
}

.word-parent {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.word-child {
    display: inline-block;
}
.char-parent {
    display: inline-block;
    overflow: hidden;
}

.char-child {
    display: inline-block;
}

.statement-section.optima .red-slash {
    margin-top: 18px;
}

.statement-section .red-slash {
    color: #EF0000;
    font-size: 3.5vw;
    letter-spacing: 1vw;
    font-weight: 900;
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
}



.appliance-parallax {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #100A0A;
    /* matches your dark theme */
    display: flex;
    align-items: center;
    justify-content: center;
}

.appliance-parallax .parallax-wrapper {
    width: 90%;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.appliance-parallax .parallax-image {
    position: absolute;
    inset: 0;
    background-image: url("../optima-images/vibrance-image.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 120%;
    top: -18%;
    will-change: transform;
}

/* optima page application sec css start here */
.applications-sec {
    background: #0c0606;
    padding: 80px 0;
}

.applications-sec__title {
    text-align: center;
    color: #ff1e1e;
    font-size: 2.604vw;
    font-weight: 900;
    margin-bottom: 2.083vw;
}

/* Tabs */
.applications-sec__tabs {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 16px;
}

.applications-sec__mobile-toggle {
    display: none;
}

.applications-sec__tab {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 0.9vw;
    cursor: pointer;
    padding: 0.720vw 1.302vw;
    border-right: 1px solid #EB1D25;
    font-family: inherit;
}

.applications-sec__tab:last-child {
    border-right: none;
}

.applications-sec__tab.active {
    color: #fff;
    background-color: #EB1D25;
}

/* Timeline */
.applications-sec__timeline {
    height: 2px;
    background: #333;
    margin: 5px 0 5px;
    position: relative;
}

.applications-sec__progress {
    position: absolute;
    height: 100%;
    width: 0%;
    background: #fff;
}
.applications-sec__contents{
    height: 85vh;
}
/* Content */
.applications-sec__item {
    display: none;
    position: relative;
    height: 100%;
}

.applications-sec__dropdown {
    display: none;
}

.applications-sec__item.active {
    display: block;
}

.applications-sec__inner {
    position: relative;
    height: 100%;
}
.applications-sec__image{
    overflow: hidden;
    height: 100%;
}
.applications-sec__image img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    display: block;
    transition: transform 0.6s ease;
        will-change: transform;
}
.applications-sec__image:hover img{
    transform: scale(1.02);
}
/* SPEC BOX with clipped corners */
.applications-sec__spec-box {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px 24px;
    width: 22%;
    font-size: 0.833vw;
    font-weight: 500;
    line-height: 1.5;
    color: #000;

    clip-path: polygon(40px 0,
            100% 0,
            100% calc(100% - 40px),
            calc(100% - 40px) 100%,
            0 100%,
            0 40px);
}

.applications-sec__spec-box p {
    padding: 0.833vw 0;
    border-bottom: 1px solid rgb(0 0 0 / 20%);
}

.applications-sec__spec-box p:last-child {
    border-bottom: 0;
}

/* optima kv section css start here */
.optima-hero {
    background: #100A0A;
    padding-bottom: 60px;
}

/* =========================
   TOP RED WAVE
========================= */


.optima-hero__top {
    position: relative;
    padding: 6.25vw 0;
    overflow: hidden;
}

.optima-hero__top-wrapper {
    text-align: center;
    position: relative;
    z-index: 2;
}
.optima-hero__top-wrapper img,.optima-hero__top-wrapper picture{
    margin-inline: auto;
    display: table;
}

.vibrance-header img, .vibrance-header picture, .vibrance-header svg, .word-parent img, .word-parent picture, .word-parent svg, .heroTextWrapper img, .heroTextWrapper picture, .heroTextWrapper svg{
    display: unset;
}

/* CENTERED BACKGROUND BLOCK */
.optima-hero__top-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    z-index: 0;

    /* Gradient base */
    box-shadow: 0px 4px 4px 0px #00000040;
    overflow: hidden;
}

/* Wave overlay */
.optima-hero__top-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../optima-images/bg-wave.svg") no-repeat center 30%;
    background-size: cover;
    opacity: 0.8;
    pointer-events: none;
}

/* Make text appear above */
.optima-hero__top .container-large {
    position: relative;
    z-index: 1;
}

.optima-hero__title {
    font-size: 42px;
    color: #fff;
    font-weight: 600;
    position: relative;
}

.optima-hero__title span {
    font-weight: 700;
}

.optima-hero__desc {
    max-width: 65%;
    margin: 20px auto 0;
    font-size: 1.458vw;
    font-weight: 400;
    line-height: 1.4;
    color: #fff;
    position: relative;
}

/* =========================
   VISUAL SECTION
========================= */


.optima-hero__visual .optima-kv_wrapper {
    position: relative;
}

.optima-hero__image-wrap {
    text-align: center;
}

.optima-hero__image-wrap img {
    max-width: 100%;
    height: auto;
}

.optima-hero__side-text {
    position: absolute;
    right: 6%;
    top: 6%;
    text-align: right;
    width: 40%;
}
.optima-hero__side-text.white {
	right: 2%;
	top: 5%;
	width: 37%;
}

.optima-hero__side-text h2 {
    font-size: 4.167vw;
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
    line-height: 1.2;
}
.optima-hero__side-text.white h2 {
    font-size: 2.5vw;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 1px #000;
    line-height: 1;
}

/* =========================
   FEATURES STRIP
========================= */

.optima-hero__features {
    padding: 0.833vw 0;
}
.optima-hero__features.vibrance-icons {
	padding: 0 0 60px 0;
	background: #000;
}

.optima-hero__features.vibrance-icons span {
	font-size: 1.5vw;
	line-height: 1.2;
}

.optima-hero__features .optima-hero__features-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 0.833vw;
    width: 85%;
    margin: 0 auto;
}

.optima-hero__feature {
    flex: 1;
    background: #fff;
    padding: 16px 14px;
    display: flex;
    align-items: center;
    gap: 0.833vw;
    border-radius: 2px;
}

.optima-hero__feature img {
    width: auto;
    height: 58px;
    object-fit: cover;
}

.optima-hero__feature span {
    font-size: 1.25vw;
    font-weight: 500;
    color: #000;
}

/* optima stacked cards section css start here */
.advantages-sec {
    background: #100A0A;
    padding: 70px 0;
}

.advantages-sec__wrapper {
    display: flex;
    gap: 60px;
}

/* LEFT SIDE */
.advantages-sec__left {
    width: 30%;
    height: auto;
    margin-right: 5%;
}

.advantages-sec__left .advantages-sec__left_wrapper {
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.advantages-sec__left h2 {
    color: #EB1D25;
    font-size: 2.604vw;
    font-weight: 900;
}

.advantages-sec__left p {
    color: #FFFFFF;
    margin-top: 20px;
    font-size: 1.563vw;
    font-weight: 400;
    line-height: 1.3;
}

.advantages-sec__left p span {
    color: #EB1D25;
    font-weight: 600;
}

.advantages-sec__skip {
    margin-top: 5.208vw;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    width: 7.083vw;
    height: 7.083vw;
    border-radius: 50%;
    font-size: 1.563vw;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.advantages-sec__skip:hover{
    border: 1px solid #ff1e1e;
    color: #ff1e1e;
}
/* RIGHT SIDE */

.advantages-sec__right {
    width: 50%;
    position: relative;
}

.advantages-sec__card {
    background: url("../optima-images/card-bg-wall.png") no-repeat;
    background-size: cover;
    padding: 1.042vw;
    margin-bottom: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 1.2);
    transition: transform 0.4s ease;
    position: sticky;
    top: 100px;

}

.advantages-sec__card:last-child {
    padding-bottom: 40px;
}

.advantages-sec__card .advantages-sec__card_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border: 2px solid #D1D3D4;
    padding: 1.042vw;
    min-height: 440px;
    border-radius: 30px;
}

.advantages-sec__card h3 {
    font-size: 2.083vw;
    color: #EB1D25;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 12px;
}

.advantages-sec__card p {
    color: #000000;
    font-size: 1.25vw;
    font-weight: 400;
    line-height: 1.3;
}

/* Pagination */
.advantages-sec__pagination {
    width: 5%;
}

.advantages-sec__pagination .advantages-sec__pagination-wrapper {
    position: sticky;
    right: 0;
    top: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: fit-content;
    border: 1px solid #363636;
    padding: 20px;
    border-radius: 40px;
}

.advantages-sec__pagination .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #444;
    transition: 0.3s;
}

.advantages-sec__pagination .dot.active {
    background: #fff;
    transform: scale(1.4);
}

body:has(.product-wrapper), main:has(.product-wrapper) {
	overflow: unset;
	overflow-y: unset;
}