:root {
    --nk-header-height: 72px;
    --nk-header-bg: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4), transparent);
    --nk-text-light: #f5f5f5;
    --nk-cta-red: #B81F39;
    /* görsele yakın kırmızı */
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    padding-right: 0 !important;
}
.nav-link:focus, .nav-link:hover {
    color: #fff;
}
:focus-visible {
    outline: none;
}

/* HEADER */
.nk-header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, .35), transparent);
    height: 85px;
}


.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin: 0 10px;
}

.nav-link:hover {
    color: white;
}

/* Dropdown kapalı iken görünmesin */
.nk-dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
    width: max-content;
    min-width: 200px;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    border: 1px solid #e5e5e5;
    position: absolute;
    top: 58px;
    /* navbar hizası */
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s ease;
    z-index: 9999;
}

/* Hover olunca açılma */
.nav-item.dropdown-menu-parent:hover .nk-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown iç linkler */
.nk-dropdown li a {
    display: block;
    padding: 14px 20px;
    color: #222;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #efefef;
}

.nk-dropdown li:last-child a {
    border-bottom: none;
}

/* Hover style */
.nk-dropdown li a:hover {
    background: #fafafa;
}

/* Nav item relative olmalı */
.nav-item.dropdown-menu-parent {
    position: relative;
}

/* Masaüstünde asla görünmesin */
.nav-item .chevron-icon {
    display: none;
}

/* ------------------------------------------------ */
/* MOBIL — dropdown sadece tıklandığında açılacak   */
/* ------------------------------------------------ */
@media (max-width: 991px) {

    .nk-dropdown {
        position: relative;
        top: 0 !important;
        left: 0 !important;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        /* mobilde default kapalı */
        box-shadow: none;
        border-radius: 0;
        border: none;
        margin: 0 10px;
    }

    .nk-dropdown li a {
        padding: 7px 12px;
        border-bottom: 1px solid #ececec;
    }

    /* mobilde nav-item'a tıklayınca açılacak */
    .nav-item.open-mobile>.nk-dropdown {
        display: block;
    }

    .navbar-nav {
        background-color: #F6F4E9;
    }

    .navbar-nav .nav-link {
        color: #222 !important;
        font-weight: 500;
    }

    /* Menü item’ına göre yerleşecek */
    .nav-item {
        position: relative;
    }

    /* Chevron ikon */
    .nav-item .chevron-icon {
        display: block;
        position: absolute;
        right: 10px;
        top: 80%;
        transform: translateY(-50%);
        font-size: 15px;
        color: #000;
        /* sticky olunca beyaz gerekiyorsa color: #fff yaparız */
        pointer-events: none;

    }

    /* Chevron ikon */
    .open-mobile .chevron-icon {
        top: 25%;
    }

    .nk-dropdown li a {
        font-size: 14px;
        font-weight: 400;
    }

    /* Mobilde link sağındaki boşluk */
    .nav-link {
        padding-right: 25px !important;
    }

    .navbar-collapse {
        background-color: #F6F4E9;
        padding: 5px
    }
}

.navbar-toggler {
    background-color: #F6F4E9;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nk-cta {
    background: #B81F39;
    color: #fff;
    border-radius: 4px;
    padding: 8px 20px;
    font-size: 14px;
}

.nk-cta:hover {
    background: #B81F39;
    color: #fff;
    opacity: 0.85;
}

.nk-cta2 {
    background: #fff;
    color: #B81F39;
    border-radius: 4px;
    padding: 8px 20px;
    font-size: 14px;
}

.nk-cta2:hover {
    background: #fff;
    color: #B81F39;
    opacity: 0.85;
}

/* HERO (tam ekran, birebir görünüm) */
.nk-hero {
    position: relative;
    height: 100vh;
    background-image: url("../img/hero-banner.png");
    background-size: cover;
    background-position: center top;
}

/* ŞİŞE */
.nk-bottle {
    position: absolute;
    right: 28%;
    bottom: 0;
    transform: translateX(50%);
}

.nk-bottle img {
    height: 670px;
    /* referanstaki boyut */
}

/* SOLDEKİ METİN */
.nk-left-text {
    position: absolute;
    bottom: 50px;
    left: 20vw;
    color: white;

}

.nk-left-text h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.25;
}

/* NORMAL HAL (üstteyken) */
.nk-header {
    background: transparent;
    transition: all 0.35s ease;
    padding: 5px 0;
    /* yüksek */
}

.nk-header .navbar-brand img {
    height: 50px;
    transition: all 0.35s ease;
}

.nk-header .nav-link {
    padding: 6px 16px !important;
    transition: all 0.35s ease;
}

@media (max-width: 992px) {
    .nk-header .nav-link {
        padding: 6px 0px !important;
    }
}

/* ====================== */
/* SCROLL OLUNCA (Georgiou gibi) */
/* ====================== */
.nk-header.is-sticky {
    background: #F6F4E9;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
}

.nk-header.is-sticky .navbar-brand img {
    height: 50px;
    margin: 0;
}

.nk-header.is-sticky .nav-link {
    padding: 6px 16px !important;
    /* linklerin yüksekliği küçülür */
    color: #222 !important;
}

.nk-header.is-sticky .nk-cta {
    padding: 8px 18px !important;
    font-size: 14px;
}

/* sticky olmayan durumda sticky logosunu gizliyoruz */
.logo-sticky {
    display: none;
}

/* ======= STICKY MODE ======= */
.nk-header.sticky .logo-normal {
    display: none;
}

.nk-header.sticky .logo-sticky {
    display: inline-block;
}

@media (max-width: 1599px) and (min-width: 1200px) {
    .nk-left-text {
        font-size: 28px;
        left: 15vw;
        bottom: 50px;
    }
}

@media (max-width: 992px) {
    .nk-left-text {
        position: absolute;
        bottom: 180px;
        left: 10vw;
        color: white;

    }

    .nk-left-text h1 {
        font-size: 30px;
        font-weight: 800;
        line-height: 1.25;
    }
}

/* SAĞDAKİ KUTU */
.nk-info-box {
    position: absolute;
    bottom: 0px;
    right: 0px;
    display: flex;
    width: 420px;
    background: #F6F4E9;
    overflow: hidden;
}

@media (max-width: 480px) {
    .nk-info-box {
        width: 100%
    }

}

@media (max-width: 370px) {
    .nk-info-box .thumb img {
        max-width: 150px;
    }
}

.nk-info-box .thumb img {
    height: 100%;
    object-fit: cover;
}

.nk-info-box .text {
    padding: 24px;
    font-size: 16px;
    color: #000;
}

.nk-info-box .text a {
    display: inline-block;
    margin-top: 8px;
    color: #d22;
    font-weight: 600;
}

.ninka-about {
    width: 100%;
    background: #F6F4E9;
    font-family: 'Inter', sans-serif;
    padding: 50px 0 0px;
}

.layout {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    padding: 0 40px;
}


@media (min-width:1600px) {
    .layout {
        padding: 0 75px;
        justify-content: flex-start;
    }

}

/* SOL TARAF */
.layout .left-area {
    width: 70%;
    padding-top: 40px;
}

.tag {
    display: inline-block;
    background: #c73a48;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.main-text {
    margin-top: 24px;
    font-size: 22px;
    color: #111;
    line-height: 1.6;
    max-width: 680px;
    font-weight: 700;
}

.green {
    color: #0d6b2b;
    font-weight: 600;
}

/* ANA GÖRSEL */
.big-image {
    margin-top: 40px;
    position: relative;
}

.big-image img {
    margin-left: -16vw;
    display: block;
}

@media (min-width: 1920px) {
    .big-image img {
        margin-left: -14.5vw;
    }
}

@media (min-width: 1921px) {
    .big-image img {
        margin-left: -16vw;
    }
}

@media (min-width: 2020px) {
    .big-image img {
        margin-left: -18vw;
    }
}

@media (min-width: 2100px) {
    .layout {
        padding: 0px 122px;
        justify-content: flex-start;
    }
}

.big-image .overlay {
    position: absolute;
    bottom: 40px;
    color: #fff;
    max-width: 700px;
}

.big-image .overlay h2 {
    font-size: 46px;
    font-weight: 800;
}

.big-image .overlay p {
    margin-top: 40px;
    line-height: 1.55;
    font-size: 24px;
}

/* SAĞ TARAF */
.layout .right-area {
    width: 22%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 40px;
}

.mini-text {
    font-size: 16px;
    line-height: 1.55;
    color: #444;
    max-width: 250px;
}

.btn-hakk {
    display: inline-block;
    background: #B81F39;
    color: #fff;
    padding: 6px 20px;
    font-size: 13px;
    margin-top: 14px;
    cursor: pointer;
    text-decoration: none;
}

/* INFO BOX */
.info-box {
    margin-top: 40px;
}

.info-box h4 {
    font-size: 18px;
    margin: 2px 0;
    font-weight: 800;
    line-height: 30px;
}

.info-box .green {
    color: #0d6b2b;
}

.info-box .red {
    color: #c5343a;
}

.info-box .sub {
    font-size: 14px;
    margin: 15px 0px 25px 0px;
    line-height: 1.55;
    color: #333;
}

.small-img {
    margin-top: 15px;
}

.small-img img {
    width: 100%;

}


@media (max-width:991px) {
    .layout {
        flex-direction: column;
    }

    .layout .left-area {
        width: 100%;
        padding: 0 20px;
    }

    .layout .right-area {
        width: 100%;
        padding: 40px 20px 0 20px;
    }
}

@media (max-width:768px) {
    .big-image img {
        margin-left: -240px;
    }
}

/* ====================== */
/* GENEL BÖLÜM */
/* ====================== */

.home-products {
    background: #F6F4E9;
    padding: 80px 0;
}

.custom-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====================== */
/* WRAPPER → TÜM KUTULARI CONTAINERA YAYAR */
/* ====================== */
.home-products-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* kutular containeri tamamen doldurur */
    align-items: flex-start;
    gap: 0;
    /* istersen 20px yapabilirsin */
    padding-left: 0;
    /* artık sola yaslama yok */
}

/* 3 KUTUNUN EŞİT DAĞILMASI */
.home-products-left,
.home-products-box {
    flex: 1;
    max-width: 32%;
    /* toplam 3 kutu → containeri tamamen doldurur */
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}


/* ====================== */
/* SOL KIRMIZI KUTU */
/* ====================== */

.home-products-left {
    background: #b71d37;
    padding: 35px 30px;
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-products-left .title {
    font-size: 30px;
    font-weight: 700;

}

.home-products-left .arrow-btn {
    position: absolute;
    right: 30px;
    background: #fff;
    color: #B81F39;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.home-products-left .desc {
    font-size: 16px;
    line-height: 1.5;
}


/* ====================== */
/* ÜRÜN KARTLARI */
/* ====================== */

.home-products-box {
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 75% 100%, 0 100%);
}

.home-products-box .img-wrapper {
    width: 100%;
    height: 100%;
}

.home-products-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ALT GRADIENT (beyaz alan yok) */
.bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
}


/* ========================= */
/* MOBİL / TABLET */
/* ========================= */
@media (max-width: 991px) {

    .home-products-wrapper {
        flex-direction: column;
        /* alt alta */
        gap: 20px;
        padding: 0 20px;
        /* aralarına boşluk */
    }

    .home-products-left,
    .home-products-box {
        max-width: 100% !important;
        flex: none;
        width: 100% !important;
        height: 450px;
    }

    .home-products-left {
        padding: 20px 20px;
    }

    .home-products-box .img-wrapper {
        height: 450px;

    }

    .bottom-gradient {
        font-size: 16px;
        padding: 15px;
    }
}

/* TAM SECTION */
.home-x2 {
    width: 100%;
    background: #0e593f;
    padding: 0px 0px 20px 0px;
    /* üst + alt boşluk birebir */
}

/* FLEX YAPI (tam genişlik) */
.x2-wrapper {
    width: 100%;
    display: flex;
    align-items: flex-start;
}

/* SOL GÖRSEL */
.x2-left {
    margin-left: 80px;
    /* görselde SOL boşluk birebir */
}

.x2-image {
    width: 500px;
    /* tam ekran görüntüsündeki boyut */
    height: auto;
}

/* SAĞ İÇERİK */
.x2-right {

    margin-top: 40px;
    /* görselin tepesine göre hizalama */
}

/* BAŞLIK */
.x2-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    color: #f1b423;
    margin-bottom: 40px;
}

/* AÇIKLAMA */
.x2-desc {
    font-size: 34px;
    line-height: 1.5;
    color: #fff;
    font-weight: 600;
    margin-bottom: 35px;
    margin-left: 100px;
}

/* BUTON */
.x2-btn {
    display: inline-block;
    background: #B81F39;
    color: #fff;
    padding: 10px 26px;
    font-size: 14px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 10rem;

}

.x2-btn i {
    margin-left: 8px;
}

/* ====================== */
/*  RESPONSIVE  */
/* ====================== */
@media (max-width: 991px) {

    .x2-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .x2-left {
        margin-left: 0;
    }

    .x2-image {
        width: 80%;
        margin: 0 auto 30px auto;
    }

    .x2-right {
        margin-left: 0;
        margin-top: 0;
        padding: 0 20px;
    }

    .x2-title {
        font-size: 28px;
        text-align: left;
    }

    .x2-desc {
        font-size: 18px;
        margin-left: 0px;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .x2-btn {
        margin-left: 0;
        margin-top: 2rem;
    }

    .home-x2 {
        width: 100%;
        background: #0e593f;
        padding: 20px 0px 20px 0px;
    }
}


.news-section {
    padding: 80px 0;
    background: #F6F4E9;
}

/* Başlık */
.news-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

/* Sağdaki buton */
.news-btn {
    background: #B81F39;
    color: #fff;
    padding: 6px 18px;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
}

.news-btn:hover {
    border: 1px solid #B81F39;
    color: #B81F39;
}

/* SOL ANA HABER */
.news-main {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.news-main {
    position: relative;
    overflow: hidden;
}

.news-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25); /* hafif koyuluk */
    pointer-events: none;
}


.news-main-content {
    position: absolute;
    left: 20px;
    bottom: 20px;
    color: white;
    z-index: 9999;
}

.nm-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.nm-title a {
    color:#fff;
    text-decoration: none;
}

.nm-desc {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    padding-right: 10px;
}

/* SAĞ LİSTE HABERLER */
.news-item {
    gap: 18px;
}

.news-icon {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
}

.news-item-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.news-item-title a{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color:#222;
    text-decoration: none;
}

.news-item-desc {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: #444;
}

.news-text {
    flex: 1;
}

/* MOBİL UYUMU */
@media(max-width: 991px) {
    .news-main-img {
        height: 240px;
    }

    .news-section {
        padding: 50px 0;
    }
}


.ninka-footer {
    background: #204529;
    color: #ccc;
    padding: 80px 0 40px;
    font-family: 'Inter', sans-serif;
}

.ninka-footer a {
    color: #ccc;
    text-decoration: none;
}

.ninka-footer a:hover {
    color: #fff;
}

.footer-top {
    margin-bottom: 40px;
}

.footer-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .footer-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

.footer-social-icons {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.footer-social-icons a {
    width: 48px;
    height: 48px;
    background: #193820;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.footer-social-icons a:hover {
    background: #1d3b24;
    color: #fff;
    transform: translateY(-2px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #ccc;
    font-size: 14px;
}

.footer-contact-item i {
    font-size: 18px;
}

.footer-social a {
    margin-left: 12px;
    color: #ccc;
    font-size: 18px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    justify-items: center;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr); 
        justify-items: start;
    }
}
@media (max-width: 480px) {
    .footer-columns {
        grid-template-columns: repeat(1, 1fr); 
        justify-items: start;
    }
}
/* 992px altı */
@media (max-width: 991px) {
    .nk-hero {
        background-image: url(attr(data-bg-mobile url));
    }
}
.footer-col h4.footer-title {
    color: #fff;
    font-size: 14px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-col p {
    font-size: 14px;
    line-height: 22px;
    color: #bbb;
}

.footer-watermark {
    font-size: 90px;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.5;
    text-align: center;
    margin: 60px 0;
}

.footer-watermark span {
    display: block;
    font-size: 32px;
    letter-spacing: 4px;
    margin-top: -10px;
}

.footer-bottom {
    text-align: center;
    color: #777;
    font-size: 13px;
    margin-top: 40px;
}

/* PAGE HEADER */
.page-header {
    width: 100%;
    height: 480px;
    /* görsele göre birebir yükseklik */
    background-color: #204529;
    /* görseldeki kırmızı */
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0;
}

/* İç alan solda hizalı */
.page-header__inner {

    padding-bottom: 80px;
    color: #fff;
}

/* About Us tag */
.page-header__tag {
    display: inline-block;
    background: #fff;
    color: #000;
    font-size: 14px;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 25px;
    text-decoration: none;
    font-weight: 600;
}

/* Başlık */
.page-header__title {
    font-size: 72px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}


/* Sağ alt köşedeki diagonal üçgen */
.page-header__diagonal {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 520px;
    /* görseldeki genişlik */
    height: 520px;
    /* görseldeki yükseklik */
    background: #f4f1e9;
    /* sayfanın alt beyaz tonu */
    clip-path: polygon(179% 0, 0 155%, 100% 100%)
}
@media (max-width: 991px) {
    .nk-dropdown {
      display: none !important;
    }
    .dropdown-menu-parent.open-mobile > .nk-dropdown {
      display: block !important;
    }
  }
  .chevron-icon,
.chevron-icon * {
    pointer-events: auto;
    cursor: pointer;
}
@media (max-width:991px) {
    .dropdown-menu-parent .chevron-icon i {
      transition: transform 0.25s;
    }
    .dropdown-menu-parent.open-mobile .chevron-icon i {
      transform: rotate(-180deg);
    }
  }
  .chevron-icon i {
    color: #222 !important;
    font-size: 18px;
  }
  
@media (max-width:991px) {
    .navbar-nav .nav-link {
      width: auto !important;
      flex: none !important;
      display: inline-block !important;
      vertical-align: middle;
      /* padding veya margin kullanıyorsan azalt! */
    }
    .dropdown-menu-parent > .d-flex {
      align-items: center !important;
    }
  }
  @media (max-width: 991px) {
    .dropdown-menu-parent > .d-flex {
      align-items: center;
    }
    .dropdown-menu-parent .nav-link {
      display: inline-block !important;
      width: auto !important;
      padding-right: 0 !important;
      margin-right: 0 !important;
      max-width: 90vw;
    }
    .chevron-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      cursor: pointer;
      z-index: 9;
      background: transparent;
      user-select: none;
    }
  }
  
@media (max-width: 991px) {
    .page-header__title {
        font-size: 40px;
        font-weight: 700;
        margin: 0;
        line-height: 1;
    }
    .page-header__diagonal {
        clip-path: polygon(210% 0, 0 155%, 100% 100%);
    }
}

.page-knowUs {
    background: #f4f1e9;
    /* görseldeki açık krem */
    padding: 100px 0;
}

.page-knowUs__tag {
    display: inline-block;
    background: #c71d33;
    /* Georgiou kırmızısı */
    color: #fff;
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    width: max-content;
}

.page-knowUs__title {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.20;
    color: #111;
}

.page-knowUs p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 18px;
}

.page-knowUs__link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    color: #c71d33;
    text-decoration: none;
}

.page-knowUs__link:hover {
    text-decoration: underline;
}

/* Sağ görsel */
.page-knowUs__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.prod-gallery {
    margin: 50px 0;
}

.prod-gallery img {
    border-radius: 6px;
    object-fit: cover;
    height: 400px;
}

.fancybox img {
    cursor: zoom-in;
}

.compensate-for-scrollbar {
    padding-right: 0px !important;
}


.brandPageArea {
    background: #f8f6ea;
}

/* Kırmızı küçük badge */
.brandPageArea-badge {
    display: inline-block;
    background: #b71d37;
    color: #fff;
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
}

/* Büyük başlık */
.brandPageArea-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.25;
    max-width: 850px;
    color: #000;
}

.brandPageArea-title .highlight {
    color: #b71d37;
}

/* Kartlar */
.brandPageArea-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 20px;
}

.brandPageArea-card img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
}

/* Card içi başlık */
.brandPageArea-card-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.1;
}



/* Başlık */
.spec-title {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #b71d37;
}

/* Liste */
.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list li {
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
    line-height: 1.45;
    color: #000;
}

/* Modern nokta – Gradient neon */
.spec-list li::before {
    content: "";
    width: 9px;
    height: 9px;
    position: absolute;
    left: 0;
    top: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b71d37, #b71d37);
    box-shadow: 0 0 6px rgba(255, 100, 130, 0.7);
}

.text-red {
    color: #b71d37;
}

.geo-acc-item {
    margin-bottom: 10px;
}

.geo-acc-header {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.geo-acc-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.geo-acc-icon {
    width: 32px;
    height: 32px;
    background: #e63636;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    transition: 0.3s ease;
}

.geo-acc-icon.open {
    background: #e63636;
    transform: rotate(0deg);
}

/* İçerik */
.geo-acc-body {
    padding: 15px 0 10px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
}

.geo-acc-body p {
    margin-bottom: 0;
}

/* Alt çizgi */
.geo-acc-line {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin-top: 10px;
}

/* Normal çizgi */
.geo-acc-line {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin-top: 10px;
}

/* Collapse açıksa çizgi kırmızı olsun */
.collapse.show+.geo-acc-line {
    background: #d93030 !important;
}

.geo-acc-line.red {
    background: #d93030;
}

/* Kırmızı link stili */
.geo-acc-link {
    color: #d93030;
    font-weight: 600;
    text-decoration: none;
}

.geo-acc-link:hover {
    text-decoration: underline;
}

/* Accordion açılınca ikon değiştirme */
.collapse.show~.geo-acc-line.red {
    background: #d93030 !important;
}

[data-bs-toggle="collapse"][aria-expanded="true"] .geo-acc-icon {
    content: "×";
}
.news-card {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05),
        0 6px 20px rgba(0, 0, 0, 0.25);
    color: #b71d37;
    min-height: 385px;
   
}
.news-card img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    height: 280px;
    object-fit: cover;
}
.news-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: #000;
    margin:20px 0px 0px 0px;
    text-decoration: none;

}

.page-knowUs a {
   text-decoration: none;
}

.age-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-popup {
    background: #fff;
    width: 100%;
    max-width: 520px;
    padding: 50px 40px;
    text-align: center;
    border-radius: 4px;
}

.age-popup h3 {
    font-size: 26px;
    color: #204529;
    margin-bottom: 35px;
    font-weight: 600;
}

.age-popup-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.age-popup button {
    min-width: 130px;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #204529;
    background: transparent;
    color: #0b3b82;
    cursor: pointer;
}

.age-popup button.btn-yes {
    background: #204529;
    color: #fff;
}

.age-warning {
    display: none;
    margin-top: 30px;
    font-size: 15px;
    color: #204529;
    line-height: 1.5;
}




.distributor-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.distributor-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.distributor-btn {
    background: #204529;
    color: #fff;
    padding: 14px 32px;
    font-weight: 600;
    border: none;
    margin-top: 30px;
    border-radius: 6px;
}

.distributor-btn:hover {
    background: #000;
    color: #fff;
}

.modal {
    padding-right: 0 !important;
}

.distributor-form-box {
    background: #204529;
    padding: 50px;
    color: #fff;
}


/* MODAL */
.distributor-modal {
    background: #204529;
    color: #fff;
    border-radius: 6px;
}

.distributor-modal .modal-title {
    font-weight: 700;
}

.distributor-modal .form-control {
    background: transparent;
    border: 1px solid rgba(255,255,255,.6);
    color: #fff;
}

.distributor-modal .form-control::placeholder {
    color: rgba(255,255,255,.7);
}

.form-submit-btn {
    background: #fff;
    color: #204529;
    font-weight: 600;
    padding: 12px 30px;
    border: none;

}

.form-submit-btn:hover {
    background: #fff;
    color: #204529;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
}


.form-control:focus {
    box-shadow: none;
    outline:0;
}

.contact-section {
    background: #f6f2e9;
    padding: 80px 0;
}

.contact-heading {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,.15);
    padding-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    color: #B81F39;
    font-size: 18px;
}

.contact-link {
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
}

.contact-link.phone {
    color: #B81F39;
}

.contact-link.email {
    color: #B81F39;
}

.contact-person {
    margin-bottom: 28px;
}

.contact-person strong {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
}

.contact-person a {
    display: block;
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

.contact-person span {
    display: block;
    font-size: 14px;
    color: #000;
}

.contact-media-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-media-mail {
    color: #000;
    font-size: 14px;
    text-decoration: none;
}
