@import url(https://fonts.googleapis.com/css2?family=Sora:wght@400;700&display=swap);
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    margin: 0
}


.whatsapp-btn {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.55);
    align-items: center;
    justify-content: center;
}

.custom-modal-content {
    background: #fff;
    width: 90%;
    max-width: 420px;
    border-radius: 10px;
    overflow: hidden;
    animation: modalFade .2s ease;
}

@keyframes modalFade {
    from {
        transform: scale(.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.custom-modal-header {
    display: flex;
    justify-content: space-between;
    padding: 14px 16px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

    .custom-modal-header button {
        border: none;
        background: none;
        font-size: 20px;
        cursor: pointer;
    }

.custom-modal-body {
    padding: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.custom-modal-footer {
    display: flex;
    gap: 10px;
    padding: 14px 16px;
    border-top: 1px solid #eee;
}

    .custom-modal-footer a {
        flex: 1;
        text-align: center;
        padding: 10px;
        border-radius: 6px;
        text-decoration: none;
        font-size: 14px;
    }

.btn-outline {
    border: 1px solid #dc3545;
    color: #dc3545;
}

    .btn-outline:hover {
        background: #dc3545;
        color: #fff;
    }

.btn-success {
    background: #25D366;
    color: #fff !important;
}

    .btn-success:hover {
        opacity: .9;
    }


    .whatsapp-btn:hover {
        transform: scale(1.1);
    }

    .whatsapp-btn img {
        width: 30px;
        height: 30px;
    }

@media (max-width: 768px) {
    .whatsapp-btn {
        left: 10px;
        bottom: 10px;
        width: 50px;
        height: 50px;
    }

        .whatsapp-btn img {
            width: 28px;
            height: 28px;
        }
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, Courier New, monospace
}

.announcement,
.cookie-banner-container,
.home-container,
.text-wrapper,
body,
html {
    box-sizing: border-box;
    font-family: Sora, sans-serif;
    margin: 0;
    padding: 0
}

.background-video {
    height: 100vh;
    left: 0;
    object-fit: cover;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: -1
}

.small-background-video {
    height: auto;
    min-height: 100vh;
    object-fit: cover;
    width: 100vw
}

.text-wrapper {
    color: #000;
    left: 4%;
    position: fixed;
    top: 30%;
    width: 60%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.text-wrapper p {
    margin: 0;
    text-align: left
}

.welcome {
    color: #000;
    font-size: 1.5vw;
    font-weight: 400
}

.slider {
    position: relative;
    min-height: 100vh;
}

@media screen and (max-width: 768px) {
    .slick-nav {
        display: none;
    }
}

/* slider animasyon (fade) */
.slider .slide {
    position: relative;
    opacity: 0;
    transition: opacity 600ms ease;
    pointer-events: none;
    height: auto;
    display: none;
}

    .slider .slide.active {
        opacity: 1;
        display: block;
        pointer-events: auto;
    }

/* prev/next butonlar */
.slider .slick-nav {
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
}

.slider .slick-prev {
    left: 12px;
}

.slider .slick-next {
    right: 12px;
}

/* dots */
.slider .slick-dots {
    position: absolute;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    display: flex;
    gap: 8px;
}

    .slider .slick-dots button {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: none;
        background: rgba(255,255,255,0.5);
        cursor: pointer;
    }

        .slider .slick-dots button.active {
            background: #fff;
        }

.headline {
    font-size: 3vw;
    line-height: 1.1
}

.headline,
.last-two-words {
    color: #dc0a17;
    font-weight: 700
}

.last-two-words {
    display: block;
    margin-top: 5px
}

.description {
    word-wrap: break-word;
    font-size: 1vw;
    font-weight: lighter;
    margin-top: 10px;
    max-width: clamp(200px, 150%, 500px)
}

.announcement {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px #0003;
    left: 50%;
    max-width: 600px;
    padding: 20px;
    position: fixed;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    z-index: 1000
}

.announcement-content p {
    color: #333;
    font-size: 1.2rem;
    margin: 10px 0
}

.announcement-close {
    align-items: center;
    background-color: #dc3545;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 1.2rem;
    height: 35px;
    justify-content: center;
    padding: .5rem;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 35px
}

.cookie-banner-container {
    align-items: center;
    background-color: #f8f9fa;
    border-top: 2px solid #dc3545;
    bottom: 0;
    box-shadow: 0 -4px 12px #00000026;
    display: flex;
    flex-direction: column;
    padding: 15px;
    position: fixed;
    width: 100%;
    z-index: 999
}

.cookie-text {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 8px
}

.cookie-description {
    color: #555;
    font-size: .9rem;
    margin-bottom: 10px;
    max-width: 90%;
    text-align: center
}

.cookie-categories {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 8px
}

.cookie-categories label {
    color: #333;
    font-size: .85rem
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px
}

.cookie-accept,
.cookie-confirm,
.cookie-manage,
.cookie-reject {
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: .9rem;
    padding: 8px 16px;
    transition: background-color .3s
}

.cookie-accept {
    background-color: #28a745;
    color: #fff
}

.cookie-reject {
    background-color: #dc3545;
    color: #fff
}

.cookie-confirm {
    background-color: #ffc107;
    color: #000
}

.cookie-manage {
    background-color: #007bff;
    color: #fff
}

.cookie-accept:hover {
    background-color: #218838
}

.cookie-reject:hover {
    background-color: #c82333
}

.cookie-confirm:hover {
    background-color: #e0a800
}

.cookie-manage:hover {
    background-color: #0056b3
}

.modal {
    align-items: center;
    background-color: #00000080;
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1100
}

.modal-content {
    max-height: 80vh;
    max-width: 600px;
    width: 90%
}

.accordion-container,
.modal-content {
    background-color: #fff;
    border-radius: 10px;
    overflow-y: auto;
    padding: 20px
}

.accordion-container {
    box-shadow: 0 2px 10px #0000001a;
    height: 600px;
    position: relative;
    width: 600px;
    z-index: 1000
}

.accordion-content-wrapper {
    background-color: #f9f9f9;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 20px
}

.accordion-content-wrapper h2 {
    color: #d35400;
    font-size: 1.5em;
    margin-bottom: 15px
}

.accordion-content-wrapper h3 {
    color: #2980b9;
    font-size: 1.2em;
    margin-bottom: 10px;
    margin-top: 20px
}

.accordion-content-wrapper p {
    color: #333;
    margin-bottom: 15px
}

.accordion-content-wrapper ul {
    list-style-type: disc;
    margin-left: 20px
}

.accordion-content-wrapper ul li {
    color: #555;
    margin-bottom: 10px
}

.modal-overlay {
    background: #00000080;
    height: 100%;
    left: 0;
    overflow-y: auto;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999
}

.accordion-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px
}

.accordion-tab {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    padding: 10px
}

.accordion-tab.active {
    border-bottom: 2px solid #f90;
    color: #f90
}

.accordion-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0
}

.accordion-item-header {
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: 10px 0
}

.accordion-item-title {
    color: #333;
    font-size: 16px;
    font-weight: 700
}

.accordion-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px
}

.accept-all-button,
.confirm-button {
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
    padding: 10px 20px
}

.accept-all-button {
    background-color: #f60;
    color: #fff
}

.confirm-button {
    background-color: #06c;
    color: #fff
}

.about-us-container {
    background-image: url(/static/media/aboutus.4f749cf7720102eb1d1f.png);
    background-position: 70% 0, center -128px, 50px 92px;
    background-repeat: no-repeat;
    background-size: 80% 100%, 95%, 102%;
    color: #000;
    min-height: 100vh;
    padding: 50px 30px 20px;
    position: relative
}

.header-title {
    color: #333;
    font-family: Sora, serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-left: 10px;
    margin-top: 9%;
    text-align: left
}

.sub-header {
    color: #d9534f;
    display: block;
    font-size: 3rem !important;
    font-style: normal;
    margin-left: -10px !important
}

.header-detay {
    background: #fffc;
    border-radius: 10px;
    font-size: 1rem !important;
    margin-left: 0;
    margin-left: 15px !important;
    max-width: 50%;
    opacity: 0;
    overflow: hidden;
    padding: 10px;
    transform: translateY(20px)
}

.header-section p {
    word-wrap: break-word;
    font-size: 2rem;
    font-weight: lighter;
    line-height: 1.5;
    margin: 10px 0 0 3%;
    overflow-wrap: break-word;
    text-align: left;
    white-space: pre-wrap
}

.tabs-section {
    margin: 1% 0 15px;
    text-align: center
}

.tabs-section nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    list-style-type: none;
    margin: 0;
    padding: 0
}

.tabs-section ul li {
    margin: 0 15px 10px 0
}

.tabs-section ul li a {
    border-radius: 5px;
    color: #000;
    font-size: 1.2em;
    padding: 10px 15px;
    text-decoration: none;
    transition: background-color .3s, color .3s
}

.tabs-section ul li a.active,
.tabs-section ul li a:hover {
    background-color: #fff3;
    border-bottom: 2px solid #dc0a17;
    color: #dc0a17
}

.content-section {
    background: #fffc;
    border-radius: 10px;
    box-shadow: 0 4px 10px #0000001a;
    margin-left: 0;
    max-width: 800px;
    opacity: 0;
    overflow: hidden;
    padding: 20px;
    transform: translateY(20px);
    transition: transform .3s, opacity .3s
}

.animated-box {
    animation: fadeInUp .6s ease-out forwards
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.content-item {
    background: #f7f7f7;
    border-radius: 5px;
    display: none;
    padding: 15px
}

.content-item.active {
    animation: slideIn .5s ease-in-out;
    background: #f7f7f7;
    border-radius: 10px;
    display: block;
    margin-left: 0;
    margin-top: 20px;
    max-width: 800px;
    padding: 20px
}

@media (max-width:1200px) {
    * {
          -webkit-tap-highlight-color: transparent; /* Safari, Chrome, Android */
          -webkit-touch-callout: none; /* iOS uzun bas nca men    kmas n  engeller */
    }
    .text-wrapper {
        width: 100%;
        padding-right: 30px;
    }
    .text-wrapper .welcome {
        font-size: 36px;
    }
    .text-wrapper .description {
        font-size: 24px;
    }
    .text-wrapper .headline {
        font-size: 74px;
        line-height: 104px;
        width: 100%;
    }
    .about-us-container {
        background-position: right 20px bottom 0, right -20px top 130px, right 0 bottom 0;
        background-repeat: no-repeat;
        background-size: 130% 100%, 95%, 100% 102%;
        color: #000;
        min-height: 100vh;
        padding: 50px 30px 20px;
        position: relative;
        background-image: inherit !important;
    }
    .header-title {
        color: #333;
        font-family: Sora, serif;
        font-size: 3rem;
        font-weight: 400;
        margin-left: 1%;
        margin-top: 10%;
        text-align: left
    }
    .sub-header {
        color: #d9534f;
        display: block;
        font-size: 2rem !important;
        font-style: normal;
        font-weight: 700
    }
    .header-detay {
        background: #fffc;
        border-radius: 10px;
        margin-left: 0 !important;
        max-width: 600px;
        opacity: 0;
        overflow: hidden;
        padding: -30px;
        transform: translateY(20px)
    }
    .header-section {
        padding: 27px 8px;
        text-align: left
    }
    .header-section p {
        word-wrap: break-word;
        font-size: 1rem;
        font-weight: lighter;
        line-height: 1.5;
        margin: 10px 0 0 3%;
        overflow-wrap: break-word;
        text-align: left;
        white-space: pre-wrap
    }
    .tabs-section {
        display: flex;
        font-size: 1rem;
        justify-content: flex-start;
        margin: 10px 0;
        text-align: right
    }
    .tabs-section nav ul {
        grid-gap: 1px;
        display: grid;
        gap: 1px;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
        list-style-type: none;
        margin: 100;
        max-width: inherit !important;
        padding: 0
    }
    .tabs-section ul li {
        flex: 0 1 48%;
        margin: 10px 0;
        text-align: center
    }
    .tabs-section ul li a {
        border-radius: 5px;
        color: #000;
        display: block;
        font-size: 1.1em;
        padding: 8px 10px;
        text-decoration: none;
        transition: background-color .3s, color .3s
    }
    .tabs-section ul li a.active,
    .tabs-section ul li a:hover {
        background-color: #fff3;
        border-bottom: 2px solid #dc0a17;
        color: #dc0a17;
        padding-bottom: 2px;
        width: auto
    }
}

@media (max-width:768px) {
    .about-us-container {
        background-position: right 20px bottom 0, right -20px top 130px, right 0 bottom 0;
        background-size: 150% 100%, 95%, 60% 90%
    }
    .header-title {
        color: #333;
        font-family: Sora, serif;
        font-size: 2rem;
        font-weight: 400;
        margin-left: 0;
        margin-top: 15%;
        text-align: left
    }
    .sub-header {
        color: #d9534f;
        display: block;
        font-size: 2rem !important;
        font-style: normal;
        font-weight: 700
    }
    .header-detay {
        background: #fffc;
        border-radius: 10px;
        margin-left: 0 !important;
        max-width: 600px;
        opacity: 0;
        overflow: hidden;
        padding: -30px;
        transform: translateY(20px)
    }
    .header-section {
        padding: 27px 8px;
        text-align: left
    }
    .header-section p {
        word-wrap: break-word;
        font-size: 1rem;
        font-weight: lighter;
        line-height: 1.5;
        margin: 10px 0 0 3%;
        overflow-wrap: break-word;
        text-align: left;
        white-space: pre-wrap
    }
    .tabs-section {
        display: flex;
        font-size: 1rem;
        justify-content: flex-start;
        margin: 10px 0;
        text-align: right
    }
    .tabs-section nav ul {
        grid-gap: 1px;
        display: grid;
        gap: 1px;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        list-style-type: none;
        margin: 100;
        max-width: 100px;
        padding: 0
    }
    .tabs-section ul li {
        flex: 0 1 48%;
        margin: 10px 0;
        text-align: center
    }
    .tabs-section ul li a {
        border-radius: 5px;
        color: #000;
        display: block;
        font-size: 1.1em;
        padding: 8px 10px;
        text-decoration: none;
        transition: background-color .3s, color .3s
    }
    .tabs-section ul li a.active,
    .tabs-section ul li a:hover {
        background-color: #fff3;
        border-bottom: 2px solid #dc0a17;
        color: #dc0a17;
        padding-bottom: 2px;
        width: auto
    }
    .content-section {
        background: #fffc;
        border-radius: 10px;
        box-shadow: 0 4px 10px #0000001a;
        margin-left: 0;
        max-width: 800px;
        opacity: 0;
        overflow: hidden;
        padding: 20px;
        transform: translateY(20px);
        transition: transform .3s, opacity .3s
    }
    .animated-box {
        animation: fadeInUp .6s ease-out forwards
    }
    @keyframes fadeInUp {
        0% {
            opacity: 0;
            transform: translateY(20px)
        }
        to {
            opacity: 1;
            transform: translateY(0)
        }
    }
    .content-item {
        background: #f7f7f7;
        border-radius: 5px;
        display: none;
        padding: 15px
    }
    .content-item.active {
        animation: slideIn .5s ease-in-out;
        background: #f7f7f7;
        border-radius: 10px;
        display: block;
        font-size: .6em;
        margin-left: 0;
        margin-top: 10px;
        max-width: 1000px;
        padding: 20px
    }
}

@media (max-width:480px) {
    .about-us-container {
        background-position: right 20px top 50px, right -20px top 80px, right 0 top 50px;
        background-size: 140% 80%, 100%, 100% 80%
    }
    .header-title {
        color: #333;
        font-family: Sora, serif;
        font-size: 1rem;
        font-weight: 400;
        margin-left: 0;
        margin-top: 18%;
        text-align: left
    }
    .sub-header {
        color: #d9534f;
        display: block;
        font-size: .8rem !important;
        font-style: normal;
        font-weight: 700
    }
    .header-detay {
        background: #fffc;
        border-radius: 10px;
        margin-left: 0 !important;
        max-width: 1600px;
        opacity: 0;
        overflow: hidden;
        padding: 0;
        transform: translateY(20px)
    }
    .header-section {
        padding: 27px 8px;
        text-align: left
    }
    .header-section p {
        word-wrap: break-word;
        font-size: .8rem;
        font-weight: lighter;
        line-height: 1.5;
        margin: 20px 0 0 3%;
        overflow-wrap: break-word;
        text-align: left;
        white-space: pre-wrap
    }
    .tabs-section {
        display: flex;
        font-size: .6rem;
        justify-content: center;
        margin: 1% 0 10px -40%;
        text-align: left
    }
    .tabs-section nav ul {
        grid-gap: 1px;
        display: ruby;
        gap: 1px;
        grid-template-columns: repeat(2, 1fr);
        justify-items: left;
        list-style-type: none;
        margin: 0;
        max-width: 9100px;
        padding: 0
    }
    .tabs-section ul li {
        flex: 0 1 48%;
        margin: 0;
        text-align: center
    }
    .tabs-section ul li a {
        border-radius: 5px;
        color: #000;
        display: block;
        font-size: 1.1em;
        padding: 8px 10px;
        text-decoration: none;
        transition: background-color .3s, color .3s
    }
    .tabs-section ul li a.active,
    .tabs-section ul li a:hover {
        background-color: #fff3;
        border-bottom: 2px solid #dc0a17;
        color: #dc0a17;
        padding-bottom: 2px;
        width: auto
    }
    .content-section {
        background: #fffc;
        border-radius: 10px;
        box-shadow: 0 4px 10px #0000001a;
        margin-left: 0;
        max-width: 800px;
        opacity: 0;
        overflow: hidden;
        padding: 3px;
        transform: translateY(20px);
        transition: transform .3s, opacity .3s
    }
    .animated-box {
        animation: fadeInUp .6s ease-out forwards
    }
    @keyframes fadeInUp {
        0% {
            opacity: 0;
            transform: translateY(20px)
        }
        to {
            opacity: 1;
            transform: translateY(0)
        }
    }
    .content-item {
        background: #f7f7f7;
        border-radius: 5px;
        display: none;
        padding: 15px
    }
    .content-item.active {
        animation: slideIn .5s ease-in-out;
        background: #f7f7f7;
        border-radius: 10px;
        display: block;
        font-size: 1em;
        margin-left: 0;
        margin-top: 10px;
        max-width: 1000px;
        padding: 20px
    }
}

.production-facilities-container {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    min-height: 100vh;
    padding: 0;
    position: relative
}

.production-content {
    display: flex;
    flex-direction: column;
    height: 80vh;
    justify-content: flex-start;
    max-height: 80vh;
    overflow-y: auto;
    padding: 5%;
    position: relative;
    scroll-behavior: smooth;
    width: 50%;
    z-index: 3
}

.main-header-container {
    margin-bottom: 0;
    margin-left: 10%;
    padding-top: 15%
}

.main-header {
    color: #d32f2f;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-align: left
}

.sub-header-container {
    margin-bottom: 10px;
    margin-left: 10%;
    padding-top: 8%
}

.sub-header {
    color: #d32f2f;
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    padding-left: 10px
}

.description-container {
    margin-bottom: 20px;
    margin-top: 1%;
    padding-left: 11%
}

.description {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    margin-left: 0;
    padding-left: 0
}

.details-container {
    margin-top: 5px;
    padding-left: 11%
}

.details-title {
    color: #d32f2f;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    margin-left: 0
}

.details-content {
    color: #333;
    font-size: 16px;
    margin-left: 0
}

.production-image {
    align-items: flex-end;
    bottom: 10vh;
    display: flex;
    height: 70vh;
    justify-content: center;
    margin: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    width: 50%;
    z-index: 2
}

.factory-image {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%
}

.image-placeholder {
    background-color: #eee;
    color: #999;
    height: 100%;
    justify-content: center
}

.footer-bar,
.image-placeholder {
    align-items: center;
    display: flex;
    width: 100%
}

.footer-bar {
    background-color: #d32f2f;
    bottom: 0;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    gap: 25px;
    height: 20vh;
    justify-content: flex-start;
    padding: 0 5% 0 15%;
    position: absolute;
    right: 0;
    z-index: 5
}

.page-indicator-wrapper {
    align-items: center;
    color: #fff;
    display: flex;
    font-weight: 700;
    gap: 8px;
    white-space: nowrap
}

.page-indicator-number,
.page-indicator-separator,
.page-indicator-total {
    align-items: center;
    background-color: initial;
    border-radius: 50%;
    display: flex;
    font-size: 16px;
    height: 35px;
    justify-content: center;
    min-width: 35px;
    padding: 0 5px;
    transition: all .3s ease
}

.page-indicator-separator,
.page-indicator-total {
    border-radius: 0;
    color: #fffc;
    font-weight: 400;
    min-width: auto
}

.page-indicator-number--active {
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px #0003;
    color: #d32f2f;
    font-weight: 700;
    transform: scale(1.1)
}

.nav-button-left,
.nav-button-right {
    align-items: center;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 8px #0003;
    color: #d32f2f;
    cursor: pointer;
    display: flex;
    flex-shrink: 0;
    font-size: 24px;
    height: 50px;
    justify-content: center;
    width: 50px
}

@media (max-width:960px) {
    .production-facilities-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        margin: 20px;
    }
    .production-content {
        height: auto;
        max-height: none;
        overflow-y: visible;
        padding: 5% 5% 25vh;
        width: 100%;
        z-index: 3
    }
	
	.production-facilities-container .production-item.active {
		display: block;
	}
	
	.production-facilities-container .production-content{
		 padding: 0 !important;
	}
	
	
	.production-facilities-container .production-content {
		    width: 100% !important;
		justify-content: center !important;;
	}
	
	
    .description-container,
    .details-container,
    .main-header-container,
    .sub-header-container {
        margin-left: 5%;
        padding-left: 5%;
        padding-right: 5%
    }
    .main-header {
        font-size: 20px
    }
    .sub-header {
        font-size: 32px
    }
    .description,
    .details-content {
        font-size: 14px
    }
    .details-title {
        font-size: 18px
    }
    .production-image {
        bottom: auto;
        height: 40vh;
        margin-bottom: -10vh;
        order: -1;
        position: relative;
        right: auto;
        width: 100%;
        z-index: 1
    }
    .factory-image {
        object-position: center 20%
    }
    .footer-bar {
        clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
        gap: 15px;
        height: 15vh;
        padding-left: 10%;
        padding-right: 5%;
        z-index: 5
    }
    .nav-button-left,
    .nav-button-right {
        font-size: 20px;
        height: 40px;
        width: 40px
    }
    .page-indicator-wrapper {
        gap: 5px
    }
    .page-indicator-number,
    .page-indicator-separator,
    .page-indicator-total {
        font-size: 14px;
        height: 30px;
        min-width: 30px
    }
    .page-indicator-number--active {
        transform: scale(1.05)
    }
}

@media (max-width:480px) {
    .main-header {
        font-size: 18px
    }
    .sub-header {
        font-size: 28px
    }
    .description,
    .details-content {
        font-size: 13px
    }
    .details-title {
        font-size: 16px
    }
    .footer-bar {
        gap: 10px;
        height: 12vh;
        padding-left: 8%
    }
    .nav-button-left,
    .nav-button-right {
        font-size: 18px;
        height: 35px;
        width: 35px
    }
    .page-indicator-wrapper {
        gap: 3px
    }
    .page-indicator-number,
    .page-indicator-separator,
    .page-indicator-total {
        font-size: 12px;
        height: 25px;
        min-width: 25px
    }
}

.products-container,
body,
html {
    box-sizing: border-box;
    font-family: Sora, sans-serif;
    margin: 0;
    padding: 0
}

.confirmation-container {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    height: 100%;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(12px);
}

.is-active {
    display: flex;
}

.confirmation-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px #0000004d;
    max-width: 500px;
    padding: 30px;
    text-align: center;
    width: 90%;
    z-index: 1001
}

.confirmation-text {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 20px
}

.confirmation-buttons {
    display: flex;
    gap: 15px;
    justify-content: center
}

.cancel-btn,
.confirm-btn {
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    padding: 10px 20px
}

.confirm-btn {
    background-color: #28a745
}

.cancel-btn {
    background-color: #dc3545
}

.confirm-btn:hover {
    background-color: #218838
}

.cancel-btn:hover {
    background-color: #c82333
}

.products-container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px
}

.filter-section {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 13%;
}

.filter-section select {
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    outline: none;
    padding: 8px 12px;
    width: 16%
}

.filter-section button {
    background-color: #e30613;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    padding: 8px 16px;
    transition: background-color .3s ease
}

.filter-section button:hover {
    background-color: #0056b3
}

.products-container {
    overflow-y: auto;
    padding: 0 10px
}

.product-list {
    grid-gap: 20px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    padding: 10px 0
}

.product-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: left;
    transition: transform .3s ease;
    width: 100%
}

.product-item:hover {
    transform: scale(1.05)
}

.products-container::-webkit-scrollbar {
    width: 8px
}

.products-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px
}

.products-container::-webkit-scrollbar-thumb:hover {
    background: #555
}

.product-item img {
    -webkit-user-drag: none;
    border-radius: 8px;
    height: auto;
    margin-bottom: 15px;
    max-width: 100%;
    -webkit-user-select: none;
    user-select: none
}

.product-item h2 {
    font-size: 1.2rem;
    margin-bottom: 10px
}

.product-item p {
    color: #333;
    font-size: 1rem;
    margin: 5px 0
}

@media (max-width:1024px) {
    .products-container h1 {
        font-size: 2rem
    }
    .filter-section {
        flex-direction: row;
        gap: 10px;
        margin-top: 13%;
        width: 100%
    }
    .filter-section button,
    .filter-section select {
        width: 50%
    }
    .product-item {
        width: 100%;
    }
}

@media (max-width:768px) {
    .products-container h1 {
        font-size: 1.8rem
    }
    .filter-section {
        margin-top: 30%
    }
    .filter-section button,
    .filter-section select {
        width: 90%
    }
    .product-list {
        flex-direction: column;
        overflow-x: visible
    }
    .product-item {
        margin: 10px 0;
        width: 100%
    }
}
select.form-control:not([size]):not([multiple]) {
    height: 2.8px !important;
}

.side-effects-page {
    background-color: #f5f5f5;
    height: auto;
    min-height: auto;
    min-height: 100vh;
    overflow-y: auto;
    padding: 20px;
    padding-top: 130px;
}

.side-effects-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px #0000001a;
    height: auto;
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px
}

.side-effects-form {
    margin-top: 20px
}

.form-group {
    grid-gap: 15px;
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 20px
}

input,
select,
textarea {
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 10px;
    width: 100%
}

.description-textarea {
    grid-column: span 3;
    height: 100px;
    resize: none
}

.checkbox-group {
    align-items: center;
    display: flex;
    gap: 10px;
    grid-column: span 3
}

.checkbox-group input[type=checkbox] {
    width: auto
}

.submit-button {
    background-color: #4caf50;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    grid-column: span 3;
    padding: 12px;
    transition: background-color .3s ease
}

.submit-button:hover {
    background-color: #45a049
}

.disclaimer {
    margin-top: 20px
}

h1 {
    font-size: 2rem;
    margin-bottom: 15px
}

p {
    margin-bottom: 10px
}

@media screen and (max-width:1024px) {
    .side-effects-page {
        margin-top: 15%;
        overflow-y: auto
    }
    .form-group {
        grid-template-columns: repeat(2, 1fr)
    }
    .side-effects-container {
        max-width: 90%
    }
    h1 {
        font-size: 1.75rem
    }
}

@media screen and (max-width:768px) {
    .side-effects-page {
        -webkit-overflow-scrolling: touch;
        height: auto;
        margin-top: 15%;
        min-height: 100vh;
        overflow-y: auto;
        padding: 10px;
        position: relative
    }
    .side-effects-container {
        margin-bottom: 20px;
        padding: 15px
    }
    body {
        height: auto;
        overflow-y: auto
    }
    .form-group {
        grid-template-columns: 1fr
    }
    .checkbox-group,
    .description-textarea,
    .submit-button {
        grid-column: span 1
    }
    h1 {
        font-size: 1.5rem
    }
    input,
    select,
    textarea {
        font-size: 16px
    }
}

@media screen and (max-width:480px) {
    .side-effects-page {
        height: auto;
        margin-top: 30%;
        min-height: 100vh;
        overflow-y: auto;
        padding: 5px
    }
    .side-effects-container {
        height: auto;
        min-height: 0;
        min-height: auto
    }
    h1 {
        font-size: 1.25rem
    }
}

body,
html {
    height: 100vh;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100vw
}

.export-countries-page {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding-top: 100px;
    width: 100vw
}

.map-container {
    flex-grow: 1;
    height: 100vh;
    transform: translateY(-190px);
    width: 100vw
}

.map-container,
.map-header {
    align-items: center;
    display: flex;
    justify-content: center
}

.map-header {
    flex-direction: column;
    padding: 20px;
    width: 100%
}

.map-header h1 {
    color: #d9534f;
    font-family: Sora, serif;
    font-size: clamp(1.5rem, 2vw, 3.5rem);
    font-weight: 700;
    margin: 10px 0;
    text-align: center
}

.map-header p {
    color: #666;
    font-size: 1.2em;
    margin: 5px 0 0;
    max-width: 80%;
    text-align: center
}

.world-map {
    height: 100vh;
    object-fit: cover;
    width: 100vw
}

.country-label,
.country-label-alt,
.line {
    display: none
}

.country-marker.active .country-label,
.country-marker.active .country-label-alt,
.country-marker.active .line,
.country-marker:hover .country-label,
.country-marker:hover .country-label-alt,
.country-marker:hover .line {
    display: block
}

.round-icon {
    fill: red;
    animation: pulse 1.5s infinite;
    cursor: pointer
}

.country-marker.up .country-label {
    fill: #333;
    text-anchor: start;
    font-size: .9em;
    font-weight: 700;
    transform: translate(-5px, -80px)
}

.country-marker.up .country-label-alt {
    fill: #555;
    text-anchor: start;
    font-size: .5em;
    transform: translate(-5px, -80px)
}

.country-marker.down .country-label {
    fill: #333;
    text-anchor: start;
    font-size: .9em;
    font-weight: 700;
    transform: translate(-5px, 35px)
}

.country-marker.down .country-label-alt {
    fill: #555;
    text-anchor: start;
    font-size: .4em;
    transform: translate(-5px, 36px)
}

.line {
    stroke: red;
    stroke-width: 1px
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .5;
        transform: scale(1.5)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

.contact-page {
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px #0000001a;
    box-sizing: border-box;
    margin: 0 auto;
    max-height: 100%;
    max-width: 100%;
    overflow: auto;
    padding: 140px 20px;
    text-align: center;
}

.contact-header h1 {
    animation: fadeInDown 1s ease-in-out;
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px
}

.contact-header p {
    animation: fadeInDown 1.5s ease-in-out;
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 40px
}

.contact-info {
    grid-gap: 20px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 20px
}

.contact-card {
    animation: slideInUp 1s ease-in-out;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px #0000001a;
    padding: 30px;
    transition: transform .3s ease-in-out, box-shadow .3s ease-in-out
}

.contact-card:hover {
    box-shadow: 0 8px 20px #00000026;
    transform: translateY(-10px)
}

.contact-icon {
    animation: bounceIn 2s ease-in-out;
    color: #dc0a17;
    margin-bottom: 15px
}

a {
    color: #dc0a17;
    font-weight: 700;
    text-decoration: none
}

a:hover {
    color: #0056b3;
    text-decoration: underline
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes bounceIn {
    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-10px)
    }
}

.footer {
    background-color: #dc0a17;
    bottom: 0;
    color: #fff;
    left: 0;
    padding: 20px 0;
    position: absolute;
    text-align: center
}

.footer-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 1200px
}

.footer-logo .footer-brand {
    font-size: 1.5rem;
    font-weight: 700
}

.footer-links {
    display: flex;
    gap: 20px;
    margin: 10px 0
}

.footer-links a {
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    transition: .3s
}

.footer-links a:hover {
    text-decoration: underline
}

.footer-social {
    display: flex;
    gap: 15px;
    margin: 10px 0
}

.footer-social a {
    color: #fff;
    font-size: 1.2rem;
    transition: .3s
}

.footer-social a:hover {
    opacity: .7
}

.footer-bottom {
    font-size: .9rem;
    margin-top: 10px;
    opacity: .8
}

.career-page {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 200px;
    min-height: 80vh;
    padding: 20px
}

.footer {
    width: 100%
}

.card {
    cursor: pointer;
    height: 380px;
    overflow: hidden;
    perspective: 1000px;
    position: relative;
    transition: transform .3s;
    width: 280px
}

.card.expanded {
    transform: scale(1.05)
}

.card-inner {
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform .6s;
    width: 100%
}

.card.expanded .card-inner {
    transform: rotateY(180deg)
}

.card-back,
.card-front {
    align-items: center;
    backface-visibility: hidden;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    overflow: hidden;
    padding: 20px;
    position: absolute;
    width: 100%;
}

.card-back,
.card-front {
    background-color: #f5f5f5;
    color: #333
}

.card-back {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    padding: 20px;
    text-align: left;
    transform: rotateY(180deg)
}

.card-back h2 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px
}

.card-back .separator-line {
    background-color: red;
    height: 1px;
    margin: 20px 0;
    width: 100%
}

.card-back p {
    color: #555;
    font-size: 1rem;
    text-align: left
}

.card img {
    border-radius: 8px 8px 0 0;
    height: 200px;
    margin-bottom: 15px;
    object-fit: cover;
    width: 100%
}

.card h2 {
    color: #333;
    font-size: 1.2rem
}

.card h2,
.card p {
    margin: 10px 0;
    text-align: left
}

.card p {
    color: #555;
    font-size: .9rem;
    max-height: 75px;
    overflow: hidden;
    text-overflow: ellipsis
}

.arrow-button {
    align-items: center;
    background-color: initial;
    border: 1px solid red;
    border-radius: 50%;
    bottom: 10px;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    position: absolute;
    right: 10px;
    transition: transform .2s ease, background-color .3s ease;
    width: 40px
}

.arrow-button:hover {
    background-color: #ff00001a;
    transform: scale(1.1)
}

.arrow-button svg {
    stroke: red;
    stroke-width: 2;
    fill: none;
    height: 16px;
    width: 16px
}

@media (max-width:768px) {
    .career-page {
        align-items: center;
        flex-direction: column
    }
    .card {
        height: 380px;
        width: 90%
    }
    .card img {
        height: 200px
    }
}

body,
html {
    height: 100%;
    overflow-y: auto
}

*,
body {
    box-sizing: border-box;
    font-family: Sora, sans-serif;
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    user-select: none
}

.app-container {
    overflow: hidden;
    position: relative
}

.header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    right: 2vw;
    width: 95%
}

.header,
.logo-container {
    position: fixed;
    top: 1vh;
    height: 100px;
    z-index: 1000;
}

@media screen and (max-width: 768px) {
    .header,
    .logo-container {
        position: fixed;
        top: 1vh;
        height: 70px;
        z-index: 1000;
    }

}

.logo-container {
    left: 2vw
}

.fixed-logo {
    height: auto;
    max-width: 300px;
    min-width: 200px;
    transition: width .3s ease, height .3s ease;
    width: 8vw
}

.assistance-button {
    background-color: #dc0a17;
    border: none;
    border-radius: 9px;
    bottom: 3%;
    box-shadow: -4px 7px 6px #cb2731;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    left: 2%;
    padding: 12px 20px;
    position: fixed;
    text-align: center;
    transition: all .3s ease;
    z-index: 1000
}

.assistance-button:hover {
    background-color: #a50c13;
    box-shadow: 0 6px 12px #0000004d
}

.assistance-button:active {
    background-color: #870000;
    box-shadow: 0 4px 10px #0003
}

.career-buttons {
    bottom: 3%;
    display: flex;
    gap: 10px;
    position: fixed;
    right: 2%;
    z-index: 1000
}

.career-button-red,
.career-button-white {
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: .9rem;
    font-weight: 700;
    padding: 10px 20px;
    text-align: center;
    transition: all .3s ease
}

.career-button-red {
    background-color: #dc0a17;
    color: #fff
}

.career-button-white {
    background-color: #fff;
    border: 1px solid #dc0a17;
    color: #dc0a17
}

.page-navigator {
    background-color: #fafafaf2;
    border-radius: 30px;
    box-shadow: 0 6px 15px #00000026;
    flex-direction: column;
    gap: 18px;
    padding: 20px 10px;
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1050
}

.nav-arrow,
.page-navigator {
    align-items: center;
    display: flex
}

.nav-arrow {
    background: none;
    border: none;
    color: #555;
    cursor: pointer;
    justify-content: center;
    padding: 5px;
    transition: color .3s ease, transform .2s ease
}

.nav-arrow svg {
    height: 24px;
    width: 24px
}

.nav-arrow:hover:not(:disabled) {
    color: #e74c3c;
    transform: scale(1.2)
}

.nav-arrow:disabled {
    color: #ccc;
    cursor: not-allowed;
    transform: none
}

.nav-dots {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 15px
}

.nav-dot {
    background-color: #bbb;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    height: 12px;
    padding: 0;
    position: relative;
    transition: background-color .3s ease, transform .2s ease;
    width: 12px
}

.nav-dot.active {
    background-color: #e74c3c;
    transform: scale(1.3)
}

.nav-dot:not(.active):hover {
    background-color: #999
}

.nav-dot:before {
    background-color: #333;
    border-radius: 5px;
    box-shadow: 0 2px 5px #0003;
    color: #fff;
    content: attr(data-tooltip);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 10px;
    right: 25px;
    transform: translateY(-50%) scale(.8);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    white-space: nowrap;
    z-index: 10
}

.nav-dot:after,
.nav-dot:before {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    visibility: hidden
}

.nav-dot:after {
    border: 5px solid #0000;
    border-left-color: #333;
    content: "";
    right: 20px;
    transform: translateY(-50%);
    transition: opacity .2s ease, visibility .2s ease
}

.nav-dot:focus:after,
.nav-dot:focus:before,
.nav-dot:hover:after,
.nav-dot:hover:before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    transition-delay: .3s;
    visibility: visible
}

@media (max-width:768px) {
    .header {
        right: 5vw;
        width: 90%;
        top: 0 !important;
    }
    .menu-container {
        right: 5vw;
        top: 2vh
    }
    .career-buttons {
        bottom: 3%;
        right: 5%
    }
    .fixed-logo {
        left: 4vw;
        min-width: 150px;
        width: 20vw
    }
    .assistance-button {
        bottom: 5%;
        font-size: .9rem;
        left: 3%;
        padding: 10px 15px;
        width: auto
    }
    .page-navigator {
        gap: 15px;
        padding: 15px 8px;
        right: 15px
    }
    .nav-dot {
        height: 10px;
        width: 10px
    }
    .nav-arrow svg {
        height: 20px;
        width: 20px
    }
}

.language-button,
.menu-button {
    align-items: center;
    background-color: #dc0a17;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px #0003;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 1rem;
    gap: 5px;
    overflow: hidden;
    padding: 10px 15px;
    position: relative;
    transition: all .3s ease
}

.language-button:hover,
.menu-button:hover {
    background-color: #a50c13;
    transform: scale(1.05)
}

.menu-container {
    gap: 10px;
    right: 2vw;
    top: 2vh;
    z-index: 1100
}

.fullscreen-menu,
.menu-container {
    align-items: center;
    display: flex;
    position: fixed
}

.fullscreen-menu {
    animation: fadeInMenu .4s ease forwards;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background: #dc0a1780;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    left: 0;
    opacity: 0;
    top: 0;
    transform: scale(1.05);
    width: 100vw;
    z-index: 1200
}

@keyframes fadeInMenu {
    0% {
        opacity: 0;
        transform: scale(1.05)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

.close-menu {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 2rem;
    position: absolute;
    right: 3vw;
    top: 3vh;
    transition: transform .2s ease
}

.close-menu:hover {
    transform: scale(1.2)
}

.fullscreen-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center
}

.fullscreen-menu li {
    color: #fff;
    cursor: pointer;
    font-size: 2rem;
    font-weight: 700;
    padding: 15px;
    transition: transform .3s ease, background-color .3s ease
}

.fullscreen-menu li:hover {
    text-decoration: underline;
    transform: scale(1.1)
}

.popup-overlay {
    align-items: center;
    background-color: #00000080;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000
}

.popup-content {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px #0000001a;
    padding: 20px;
    text-align: center
}

.popup-content p {
    margin-bottom: 20px
}

.popup-content button {
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    padding: 10px 20px
}

.popup-content button:hover {
    background-color: #0056b3
}

.app-routes {
    min-height: 100vh;
    position: relative
}

@media screen and (max-width: 1200px) {
    .app-routes {
        min-height: inherit !important;
        position: relative
    }
    .career-page {
        min-height: inherit !important;
    }
    .contact-info {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    }
    .side-effects-page {
        min-height: inherit !important;
    }
    .about-us-container {
        min-height: 80vh !important;
        padding: 0px 30px !important;
    }
    .header-section {
        padding: 0 !important;
    }
    .career-page {
        margin-top: 100px !important;
    }
}

.language-selection {
    align-items: center;
    background-color: initial;
    border-radius: 15px;
    display: flex;
    justify-content: flex-start;
    padding: 20px 0;
    position: fixed;
    right: 3%;
    top: 0;
    width: auto;
    z-index: 1000
}

.language-selection select {
    border: 1px solid #6b4b4d;
    border-radius: 20%;
    font-size: 89%;
    margin-left: -19%;
    padding: 11%
}

@media (max-width:768px) {
    .language-selection {
        align-items: center;
        background-color: initial;
        border-radius: 15px;
        display: flex;
        justify-content: flex-start;
        padding: 10px 0;
        position: fixed;
        right: 9%;
        top: 0;
        width: auto;
        z-index: 1000
    }
}

@media (max-width:480px) {
    .language-selection {
        align-items: center;
        background-color: initial;
        border-radius: 15px;
        display: flex;
        justify-content: flex-start;
        padding: 10px 0;
        position: fixed;
        right: 9%;
        top: 0;
        width: auto;
        z-index: 1000
    }
}

.d-none {
    display: none;
}

.production-item {
    display: none;
}

.production-item.active {
    display: flex;
    gap: 40px;
}

.production-content {
    display: flex;
    flex-direction: column;
    height: 80vh;
    justify-content: center;
    max-height: 80vh;
    overflow-y: auto;
    padding: 200px 160px;
    position: relative;
    scroll-behavior: smooth;
    justify-content: space-between;
    z-index: 3;
    width: 70%;
    overflow:hidden;
}


.details-container h4 {
    color: #d32f2f;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    margin-left: 0;
}

.description-container {
    padding: 0 !important;
}

.details-container {
    padding: 0 !important;
}

.details-content {
    padding: 0 !important;
    color: #333;
    font-size: 16px;
    margin-left: 0;
}

.side-effects-container {
    max-width: 1100px !important;
}

#Layer_1 {
    opacity: 1;
}

@media screen and (max-width: 800px) {
    .production-facilities-container .production-content {
        padding-top: 80px !important;
    }
}

@media screen and (max-width: 1899px) {
    .side-effects-page {
	margin-top: 90px !important;
	}

.production-content {
	padding: 200px 60px !important;
}
}

@media (max-width: 768px) {
    iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        border: 0;
        display: block;
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 768px) {
    .production-content {
        width: 100%;
        padding: 100px 20px; /* Daha az padding */
        height: auto;
        max-height: none;
    }
}

@media (max-width: 768px) { 
    .headline {
    font-size: 6vw;
}

.welcome {
    font-size: 4.5vw;
}

.text-wrapper {
    top: 30%;
    width: 80%;
}
    .text-wrapper .welcome {
        font-size: 20px;
    }
    .text-wrapper .headline {
        font-size: 50px;
        line-height: 64px;
    }
    .text-wrapper .description {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .tabs-section {
        display: ruby-text;
        flex-direction: row;
        flex-wrap: wrap; 
        justify-content: center;
        align-items: center;
        gap: 8px; 
        font-size: 0.6rem;
        margin: 10px 0;
        text-align: center;
    }

    .tabs-section > * {
        flex: 1 1 auto; 
        min-width: 80px;
    }
}

@media screen and (max-width: 768px) {
    .about-us-container {
        background: none !important;
    }
    .about-us-container .tabs-section {
        display: none !important;
    }
    .about-us-container .content-section {
        display: none !important;
    }

    .about-accordion-container {
	    display:block !important;
        max-width: 800px;
        margin: 20px 10% 0px 0%;
        border-radius: 12px;
        overflow: hidden;
        font-family: "Segoe UI", sans-serif;
    }

    .about-accordion-item {
        border-bottom: 1px solid #e5e5e5;
        background: #fff;
        transition: background 0.3s ease;
    }

        .about-accordion-item:last-child {
            border-bottom: none;
        }

    .about-accordion-header {
        padding: 18px 20px;
        cursor: pointer;
        position: relative;
        font-size: 18px;
        font-weight: 600;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #f9f9f9;
        transition: background 0.3s ease;
    }

        .about-accordion-header:hover {
            background: #f1f1f1;
        }

    .accordion-icon {
        font-size: 22px;
        transition: transform 0.3s ease;
    }

    .about-accordion-item.active .accordion-icon {
        transform: rotate(45deg);
    }

    .about-accordion-content {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        font-size: 16px;
        line-height: 1.5;
        background: #fff;
        transition: max-height 0.4s ease, padding 0.3s ease;
    }

    .about-accordion-item.active .about-accordion-content {
        max-height: 500px; /*   eri e g re ayarlamak i in b y k bir de er */
        padding: 15px 20px;
    }



}

 .about-accordion-container  { display: none; }

 @media screen and (max-width: 1200px) {
    .production-content {
        height: inherit !important;
        max-height: inherit !important;
        width: 100% !important;
    }

    .production-image {
        height: inherit !important;
        position: relative !important;
        right: inherit !important;
        width: 100% !important;
    }

    .production-item {
        flex-direction: column !important;
    }

 }

 @media screen and (max-width: 960px) {
    .production-facilities-container {
        min-height: 80vh !important;
        padding-top: 80px;
    }
    .products-container {
        max-height: 100vh;
    }
 }

/* 1) En basit: tüm elementlerde dokunma vurgusunu kaldırır */
* {
  -webkit-tap-highlight-color: transparent;
}

/* 2) Sadece etkileşimli elementler için (daha seçici) */
a, button, input, textarea, label {
  -webkit-tap-highlight-color: transparent;
}

/* 3) Dokunmatik cihazlara özgü kural — yalnızca dokunmatik (tablet/telefon) cihazlarda uygulanır */
@media (hover: none) and (pointer: coarse) {
  a, button, [role="button"], .btn {
    -webkit-tap-highlight-color: transparent;
  }
}

/* 4) :active ile gelen arka plan değişimini engelle (gerekirse) */
a:active, button:active, [role="button"]:active {
  background-color: transparent;
}

/* 5) Klavye erişebilirliğini koru: fare/klavye kullanıcıları için focus görünür kalsın.
   Mobil dokunmada görünürlüğü kaldırmak için :focus:not(:focus-visible) kullan */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
[role="button"]:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

/* Loader kapsayıcı (tam ekran ortalanır) */
.loader-wrapper {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loader-active {
    display: flex !important;
}

    .loader-wrapper.hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

/* Circle Loader */
.loader {
    width: 80px;
    height: 80px;
    border: 6px solid rgba(0, 0, 0, 0.1);
    border-top-color: #dc0a17;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.language-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 8px;
    background: #dc0a17;
    border: 1px solid transparent;
    cursor: pointer;
    height: 44px;
    font-weight: 600;
}
    .language-button:focus {
        background: #dc0a17;
    }

.chev{ transition: transform .15s ease; }
.language-button[aria-expanded="true"] .chev{ transform: rotate(180deg); }

.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 150px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    padding: 6px;
    list-style: none;
    margin: 0;
}
.dropdown li{ margin:4px 0; }
.lang-item{
  width:100%; text-align:left; padding:8px 10px; border-radius:6px; background:transparent; border:none; cursor:pointer;
}
    .lang-item:hover, .lang-item:focus {
        outline: none;
        color: #dc0a17;
    }
    .lang-item.active { color: #dc0a17; font-weight:700;
    }
.lang-item {
    color: black;
    font-weight: normal;
}
.language-button {
    color: white !important;
    text-decoration: none !important;
}

@media screen and (max-width: 1280px) {
    .hidden-scroll {
        overflow: hidden !important;
    }
    .contact-page {
        padding: 80px 20px;
    }
    .contact-card {
        padding: 15px;
    }
    .footer-bar {
        bottom: 80px !important;
    }
}

@media screen and (max-width: 768px) {
    .hidden-scroll {
        overflow: auto !important;
    }
    .footer-bar {
        bottom: 0px !important;
        position: relative !important;
        margin-top: 50px !important;
    }

    .production-facilities-container img {
        display: none;
    }
    .header-section {
        padding: 30px 0 !important;
    }

    .production-facilities-container .production-content {padding-top: 0 !important;}
}