:root{
    --vh100: 100dvh;
    --vw100: 100dvw;
}
[x-cloak] { display: none !important; }
body{
    font-family: 'HelveticaNowText', sans-serif;
    font-size: 16px;
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-weight: normal;
}

a{
    text-decoration: inherit;
}

.h-100vh {
    height: 100vh;
}
.header {
    /*position: relative;*/
    z-index: 100;
    background: linear-gradient(90deg, #0b3e27, #197149);
    /* padding: 15px 0; */
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
    transform: translateY(0);
    transform: translate3d(0,0,0);
    transition: .25s transform;
    backface-visibility: hidden;
}

.heads-up {
    transform: translateY(-6rem);
    transform: translate3d(0,-150px,0);
}

body.nav-active .heads-up {
    transform: translateY(0);
    transform: translate3d(0, 0, 0);
}

.header-menu {
    list-style: none;
    color: #fff;
    display: flex;
    gap: 50px;
    padding: 0;
    justify-content: end;
    margin: 0;
}

.header-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
}

.menu-icon {
    /* height: 30px; */
    width: 30px;
    /* position: fixed; */
    z-index: 2;
    left: 50px;
    top: 30px;
    cursor: pointer;
}
.menu-icon__line {
    height: 2px;
    width: 30px;
    display: block;
    background-color: #ffffff;
    margin-bottom: 4px;
    transition: transform 0.2s ease, background-color 0.5s ease;
}
.menu-icon__line-left {
    width: 15px;
}
.menu-icon__line-right {
    width: 15px;
    float: right;
}

.nav {
    position: fixed;
    z-index: 99;
    pointer-events: none;
}
.nav:before, .nav:after {
    content: "";
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(234, 234, 234, 0.2);
    z-index: -1;
    transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
    transform: translateX(0%) translateY(-100%);
    top: 0;
}
.nav:after {
    background: white;
    transition-delay: 0s;
    background: linear-gradient(90deg, #0b3e27, #197149);
}
.nav:before {
    transition-delay: 0.1s;
}
.nav__content {
    position: absolute;
    /* top: 50%; */
    /* transform: translate(0%, -50%); */
    /* width: 100%; */
    /* text-align: center; */
    /* font-size: calc(2vw + 10px); */
    /* font-weight: 300; */
    /* cursor: pointer; */
    /* height: 100%; */
    padding-block-start: clamp(5rem, 3.4375rem + 3.9063vw, 6.875rem);
    /* width: 100%; */
    height: auto;
    max-height: 100vh;
    width: 100vw;
}
.nav__list-item {
    position: relative;
    display: inline-block;
    transition-delay: 0.8s;
    opacity: 0;
    transform: translate(0%, 100%);
    transition: opacity 0.2s ease, transform 0.3s ease;
    margin-right: 25px;
    color: #ffffff;
    width: 100%;
    font-size: 30px;
    font-weight: 500;
}

body.nav-active .menu-icon__line {
    background-color: #fff;
    transform: translateX(0px) rotate(-45deg);
}
body.nav-active .menu-icon__line-left {
    transform: translateX(1px) rotate(45deg);
}
body.nav-active .menu-icon__line-right {
    transform: translateX(-2px) rotate(45deg);
}
body.nav-active .nav {
    visibility: visible;
    pointer-events: inherit;
}
body.nav-active .nav:before, body.nav-active .nav:after {
    transform: translateX(0%) translateY(0%);
}
body.nav-active .nav:after {
    transition-delay: 0.1s;
}
body.nav-active .nav:before {
    transition-delay: 0s;
}
body.nav-active .nav__list-item {
    opacity: 1;
    transform: translateX(0%);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.nav__list-item a {
    transition: color .2s;
}

.nav__list-item:hover a {
    color: #1ba062!important;
}
body.nav-active .nav__list-item:nth-child(0) {
    transition-delay: 0.5s;
}
body.nav-active .nav__list-item:nth-child(1) {
    transition-delay: 0.6s;
}
body.nav-active .nav__list-item:nth-child(2) {
    transition-delay: 0.7s;
}
body.nav-active .nav__list-item:nth-child(3) {
    transition-delay: 0.8s;
}
body.nav-active .nav__list-item:nth-child(4) {
    transition-delay: 0.9s;
}
body.nav-active .nav__list-item:nth-child(5) {
    transition-delay: 1s;
}
body.nav-active .nav__list-item:nth-child(6) {
    transition-delay: 1.1s;
}
body.nav-active .nav__list-item:nth-child(7) {
    transition-delay: 1.2s;
}
body.nav-active .nav__list-item:nth-child(8) {
    transition-delay: 1.3s;
}
body.nav-active .nav__list-item:nth-child(9) {
    transition-delay: 1.4s;
}
body.nav-active .nav__list-item:nth-child(10) {
    transition-delay: 1.5s;
}
body.nav-active .nav__list-item:nth-child(11) {
    transition-delay: 1.6s;
}
body.nav-active .nav__list-item:nth-child(12) {
    transition-delay: 1.7s;
}


.menu-text {
    font-weight: 400;
}

.home {
    height: 90vh;
    background: url('../../../img/slider-1.png');
    background-position: center top;
    background-size: cover;
}

.slider-title {
    font-size: 90px;
    margin: 0;
    font-weight: 700;
}

.slider-subtitle {
    font-size: 20px;
    font-weight: 700;
}

.about-title {
    background: linear-gradient(90deg, #10633d, #1a915a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* font-size: 50px; */
    font-weight: 700;
}

.about {
    background: url('../../../img/slider-alt.png');
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-link {
    text-decoration: none;
    color: #127749;
    font-weight: 700;
}

.about-text {
    font-weight: 300;
}

.bottom-25 {
    bottom: 25%;
}

.bottom-20 {
    bottom: 20%;
}

.home-product-title {
    font-size: 36px;
    font-weight: 700;
}

.home-product-subtitle {
    font-size: 23px;
    font-weight: 300;
}

.home-product-link {
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.text-green-linear {
    background: linear-gradient(90deg, #10633d, #1a915a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bg-green-linear {
    background: linear-gradient(90deg, #10633d, #1a915a);
}
.text-green {
    color: #0d663a;
}

.footer-menu-title {
    font-size: 25px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu a {
    color: #000;
    text-decoration: none;
    font-weight: 400;
}

.footer-menu a:hover {
    text-decoration: underline;
}

.footer-menu li {
    margin-bottom: 5px;
}

footer {
    min-height: 50vh;
}

.footer-creator-link {
    color: #007ac0;
    text-decoration: none;
}

.menu-button {
    cursor: pointer;
}

.nav-active {
    /* overflow: hidden; */
}

.home-product-menu {
    top: 85px; /* Default değer */
    transition: .25s top; /* Geçiş efekti */
}

body:has(.header.heads-up) .home-product-menu {
    top: 0px;
}


.home-product {min-height: 80vh;}

.product-detail-slider {
    /* min-height: 120vh; */
    background-position: center!important;
    background-repeat: no-repeat!important;
    background-size: cover!important;
    position: relative;
    /* margin-top: -100px; */
    /* overflow: scroll; */
}

.gsap-marker-scroller-start {
    display: none!important;
}

.gsap-marker-scroller-end {
    display: none!important;
}

.gsap-marker-end {
    display: none!important;
}

.gsap-marker-start {
    display: none!important;
}

.product-detail-slider-subtitle {
    font-size: 30px;
    margin: 0;
    /* line-height: 0; */
}

.product-detail-slider-title {
    font-size: 95px;
    margin-top: -20px;
}

.product-detail-slider-text-title {
    font-size: 40px;
}

.product-detail-slider-text-subtitle {
    font-size: 25px;
}

.col-lg-6.product-detail-slider-text {
    font-size: 19px;
}

.product-detail-slider {
    position: relative;
    background-attachment: fixed!important; /* Arka planı sabit tutmak için */
    background-size: cover!important;
    background-position: center!important;
    /* max-height: 150vh!important; */ /* Yükseklik 150vh olarak ayarlandı */
    padding: 0;
    /* height: 150vh!important; */
    /* padding-bottom: 90px!important; */!importan;!importa;!import;!impor;!import;!impor;!impo;!imp;!im;!i;!;
    /* overflow: hidden; */
    /* display: block; */
}

.scroll-text {
    color: #fff;
    /* transition: all 0.05s ease-out; */
    /* position: sticky; */
    width: 100%;
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* position: relative; */
    z-index: 1;
    /* top: 60vh; */
    /* padding-bottom: 10vh; */
}


.video-section video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.text-yellow-linear {
    background: linear-gradient(90deg, #a5804d, #d0b380);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 991px) {
    .navbar .container-xxl{
        justify-content: center;
    }
    .header-menu{
        gap:10px
    }
}


.gsap-opacity-effect {
    /* background-attachment: fixed !important; */
    /* background-size: cover !important; */
    /* background-position: center !important; */
    max-height: 150vh !important;
    padding: 0;
    /* height: 100vh !important; */
    /* overflow: hidden; */
}


.gsap-opacity-effect .text-content {
    position: relative;
    z-index: 2;
    opacity: 0; /* Başlangıçta görünmez */
    /* transform: translateY(50px); */ /* Aşağıdan yukarı çıkacak */
    display: flex;
    align-items: end;
    padding-bottom: 20vh;
}
.venarmis-check label{
    transition: box-shadow .4s;
    /* border-width: 2px !important; */
}
.venarmis-check input:hover + label {
    /* border-width: 2px!important; */
    box-shadow: inset 0 4px 6px -2px rgb(0 0 0 / 10%);
}
.venarmis-check input:checked + label {
    border-color: #197149!important;
    border-width: 2px!important;
    box-shadow: inset 0 4px 6px -2px rgb(0 0 0 / 10%);
}


.header-bar {
    position: fixed;
    top: 85px;
    left: 0;
    width: 100%;
    padding: 10px 0;
    color: white;
    display: block; /* Initially hidden */
    z-index: 9;
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
    background: rgba(255, 255, 255, 0.8);
    transition: top .5s;
}


body:has(.header.heads-up) .header-bar {
    top: 0px;
}

.collapse.show {
    visibility: visible;
}

.accordion-button:not(.collapsed) {
    color: #0d663a;
    background: #eff7f3;
}
.about-page-title{
    background-image: linear-gradient(var(--title-grad-angle, 0.45turn), rgb(0 0 0 / 1),rgb(160 160 160 / 1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
strong{
    font-weight: bold;
}
.order-lg-1 .about-page-title{
    background-image: linear-gradient(var(--title-grad-angle, 0.9turn), rgb(0 0 0 / 1),rgb(160 160 160 / 1));
}
.wg-map iframe {
    border-radius: 16px;
    overflow: hidden;
    height: 600px;
    width: 100%;
}

.contact-list {
    display: grid;
    gap: 10px;
}

ul.contact-list,.contact-list li {
    list-style-type: none;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}
.contact-list p {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    margin: 0;
}
.contact-list a, .contact-list span {
    font-weight: 300;
    color: #000;
}
.tf-social-icon.style-large {
    gap: 15px;
}

.tf-social-icon {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}
.tf-social-icon .social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 12px;
    color: #000;
    border: 1px solid #000;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.tf-social-icon.style-large .social-item {
    width: 38px;
    height: 38px;
    border-color: #ebebeb;
    font-size: 16px;
    color: #383d38;
}
.tf-social-icon.style-large .social-item:hover {
    background-color: #0d663a;
    color: #fff;
    border: transparent;
}
.parallax-cover {
    transition: all .5s linear;
    width: 100%;
    margin: 0 auto 25px;
    text-align: center;
}

.parallax-cover img {
    max-width: 100%;
    transition: max-width 0.2s linear;
}
.parallax-cover.complete img {
    max-width: 1170px;
}
.page-detail ul, .page-detail ol {
    list-style: initial;
}
@media screen and (max-width: 767px) {
    .product-detail-slider-title{
        font-size: 60px;
        margin-top: 0px;
    }
    .slider-title{
        font-size: 70px;
    }
    body.nav-active .nav__list-item{
        width: auto;
        clear: both;
        float: none;
        margin: 0 auto 0px;
        display: block;
        font-size: 20px;
    }
    .store-detail-image{
        aspect-ratio: 1/1;
        object-fit: cover;
    }

.nav__list-item a {
    font-size: 20px!important;
}

.nav__list {
    padding: 0;
}

}


.shipping-right-content {
    top: 125px;
    transition: all .4s;
}

body:has(.header.heads-up) .shipping-right-content {
    top: 10px;
}


.slider-link {
    background: linear-gradient(90deg, #0b3e27, #197149);
    color: #fff;
    padding: 10px 35px;
    border-radius: 45px;
    /* transition: all .5s; */
}

.slider-link:hover {
    background: #fff;
    color: #0b3e27;
}

.nav__list {
    padding: 0;
    margin: 0;
}


.headerProduct {
    opacity: 0;
}

body.nav-active .headerProduct {
    opacity: 1;
    transform: translateX(0%);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
    transition-delay: 0.7s;
}

.headerProductSwiper a .headerProductSwiper-image {
    overflow: hidden;
    transition: all .5s;
}
.headerProductSwiper a .headerProductSwiper-image img{
    transition: all .5s;
}
.headerProductSwiper a:hover .headerProductSwiper-image img{
    transform: scale(1.1);
}
.headerProductSwiper .swiper-button-next, .headerProductSwiper .swiper-button-prev{
    background: rgb(187 187 187 / 70%);
    border-radius: 100%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #fff;
}
.headerProductSwiper .swiper-button-next:after, .headerProductSwiper .swiper-button-prev:after{
    font-size: 20px;
}

.store-swiper .swiper-button-next, .store-swiper .swiper-button-prev{
    background: rgb(187 187 187 / 70%);
    border-radius: 100%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #fff;
}
.store-swiper .swiper-button-next:after, .store-swiper .swiper-button-prev:after{
    font-size: 20px;
}



.detail-image {
    z-index: -1;
    pointer-events: none;
    object-fit: cover;
    object-position: center;
    /* height: 0; */
}

.form-check-input{
    border-color: #a3a3a3!important;
}

