/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300;400;600;700&display=swap');

:root {
    --primary-green: #44A82C;
    /* Approximate from logo/hover */
    --primary-dark: #333333;
    --text-color: #000000;
    --header-top-bg: #f8f8f8;
    --footer-bg: #1b1b1b;
    --hover-color: #7ab929;
    --border-color: #ddd;
    --primary-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Titillium Web', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

/* 404 Error Page */
.not-found-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95)),
        url("/images/mutlu-tohum-slider-img-1.jpg") center/cover no-repeat;
    padding: 48px 0;
}

.not-found-panel {
    text-align: center;
}

.not-found-logo {
    display: inline-flex;
    width: 150px;
    height: 150px;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    margin-bottom: 26px;
}

.not-found-logo img {
    width: 116px;
    height: 116px;
    object-fit: contain;
}

.not-found-code {
    color: var(--primary-green);
    font-size: 92px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 12px;
}

.not-found-panel h1 {
    color: var(--primary-dark);
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.not-found-text,
.not-found-text-en {
    max-width: 650px;
    margin: 0 auto;
    color: #444;
    font-size: 18px;
}

.not-found-text-en {
    margin-top: 6px;
    margin-bottom: 30px;
}

.not-found-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.not-found-primary,
.not-found-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 5px;
    font-weight: 700;
}

.not-found-primary {
    background: var(--primary-green);
    border: 2px solid var(--primary-green);
    color: #fff;
}

.not-found-secondary {
    background: #fff;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.not-found-primary:hover {
    background: var(--hover-color);
    border-color: var(--hover-color);
}

.not-found-secondary:hover {
    background: var(--primary-green);
    color: #fff;
}

/* Keep logos readable in forced dark mode */
.logo-container,
.footer-logo-container,
.not-found-logo,
.carousel-item {
    background-color: transparent !important;
    background-image: linear-gradient(#ffffff, #ffffff) !important;
    color-scheme: only light;
    forced-color-adjust: none;
}

.logo-container img,
.footer-logo-container img,
.not-found-logo img,
.carousel-item img {
    filter: none !important;
}

@media (prefers-color-scheme: dark) {
    .mobile-logo {
        background: transparent !important;
        background-image: none !important;
        box-shadow: none;
        color-scheme: only light;
        forced-color-adjust: none;
    }

    .mobile-logo img {
        position: relative;
        z-index: 1;
        opacity: 1 !important;
        filter: none !important;
        mix-blend-mode: normal;
    }
}

.menu-link {
    font-size: 20px;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f9f9f9;
    min-width: 140px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    z-index: 1;
}

.dropdown-content-products {
    width: 220px;
}

.dropdown-content a {
    color: var(--primary-dark);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: inherit;
    font-size: 0.9em;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a:hover {
    color: var(--primary-green);
    background-color: #f4f4f4;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-big {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.animated-underline {
    position: relative;
    text-decoration: none;
}

.animated-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.animated-underline:hover::after {
    width: 100%;
}

/* Header Top */
.header-top {
    background-color: var(--header-top-bg);
    padding: 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    color: var(--primary-dark);
    min-height: 48px;
    display: flex;
    align-items: center;
    
}

.header-top > .container {
    min-height: 48px;
    align-items: center;
    width: 100%;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.header-right {
    margin-left: auto;
}

.header-social-icons {
    display: flex;
    gap: 10px;
}

.header-social-icons a {
    color: var(--primary-dark);
    font-size: 16px;
}

.header-social-icons {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.header-social-icon-box {
    background-color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 5px 5px 5px 5px;
    border: 1px solid #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
}

.header-social-icon-box.facebook:hover {
    background-color: #3b5998;
    border-color: #3b5998;
}

.header-social-icon-box:hover .fa-facebook-f {
    color: #ffffff;
}

.header-social-icon-box.twitter:hover {
    background-color: #000000;
    border-color: #000000;
}

.header-social-icon-box.twitter:hover .fa-x-twitter {
    color: #ffffff;
}

.header-social-icon-box.instagram:hover {
    background-color: #e1306c;
    border-color: #e1306c;
}

.header-social-icon-box:hover .fa-instagram {
    color: #ffffff;
}

.header-social-icon-box.youtube:hover {
    background-color: #ff0000;
    border-color: #ff0000;
}

.header-social-icon-box:hover .fa-youtube {
    color: #ffffff;
}

.header-top .contact-info span {
    margin-right: 15px;
    color: var(--primary-dark);
}

/* Header Main (Nav) */
header.main-header {
    background: rgba(255, 255, 255, 1);
    z-index: 2;
    position: absolute;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-weight: bold;
    border: 2px solid var(--primary-green);
    height: clamp(76px, 10vh, 110px);
    min-height: 76px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: clamp(48px, 5vh, 64px);
}

.nav-container {
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 76px;
    position: relative;
    width: min(100%, 1400px);
    margin: 0 auto;
    padding: 0 clamp(12px, 1.2vw, 20px);
}

.logo-container {
    position: absolute;
    width: clamp(118px, 10.5vw, 165px);
    height: clamp(118px, 10.5vw, 165px);
    min-width: 118px;
    min-height: 118px;
    overflow: visible;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background: #fff;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container img {
    max-width: clamp(90px, 8vw, 125px);
    max-height: clamp(90px, 8vw, 125px);
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2px;
    z-index: 1001;
    position: relative;
}

.menu-left,
.menu-right {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-evenly;
}

.menu-left {
    padding-right: clamp(88px, 8vw, 120px);
}

.menu-right {
    padding-left: clamp(88px, 8vw, 120px);
}

.menu-left .menu-link,
.menu-right .menu-link {
    font-size: clamp(14px, 1.5vw, 20px);
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    white-space: nowrap;
}

.menu-left a:hover,
.menu-right a:hover {
    color: var(--primary-green);
}

.mobile-header,
.mobile-menu,
.mobile-menu-overlay {
    display: none;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 95vh;
    background: #f0f0f0;
    overflow: visible;
    z-index: 1;
}

.slide-item {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.slide-item.active {
    opacity: 1;
    pointer-events: auto;
}

/* Hero Slider Arrows */
.hero-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
}

.hero-btn:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: #fff;
}

.hero-btn-left {
    left: 25px;
}

.hero-btn-right {
    right: 25px;
}

/* Quick Actions */
.quick-actions {
    padding: 40px 0;
    text-align: center;
}

.quick-action-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
}

.action-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-green);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    color: #fff;
    font-size: 24px;
    transition: transform 0.3s;
}

.action-item:hover .action-icon {
    transform: scale(1.1);
}

.action-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-dark);
}

/* Product Categories */
.product-categories {
    padding: 60px 0;
    background: #f9f9f9;
    margin-top: 15vh;
}

.product-content {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    gap: 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 24%);
    column-gap: 30px;
    align-items: start;
}

.product-header,
.product-body,
.product-content > .technical-specs {
    grid-column: 1;
}

.product-body {
    gap: 30px;
    margin-top: 20px;
}

.product-info {
    width: 100%;
}

.product-image-galery {
    width: calc(25% - 30px);
}

.product-image-galery-grid {
    width: calc(25% - 30px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.product-image-galery-grid img:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.product-image-galery-grid img {
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-image-galery-grid-1 {
    width: calc(25% - 30px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.product-image-galery-grid-1 img {
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: calc(25% - 30px);
}

.product-image img {
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-image1 img {
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-content > .product-image,
.product-content > .product-image-galery,
.product-content > .product-image-galery-grid,
.product-content > .product-image-galery-grid-1 {
    grid-column: 2;
    grid-row: 1 / span 4;
    width: 100%;
    max-width: 260px;
    justify-self: end;
    margin: 0;
}

/* Product Content */
.product-header h2 {
    color: var(--primary-dark);
    font-size: 28px;
    margin-bottom: 15px;
}

.icerik {
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.variety {
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    margin-left: 5px;
}

.technical-specs {
    margin-top: 40px;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary-dark);
    text-transform: uppercase;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    margin-bottom: 40px;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-img {
    height: 200px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
}

.category-content {
    padding: 20px;
    text-align: center;
}

.category-card-seeds .category-content {
    background: var(--primary-green);
}

.category-card-mixes .category-content {
    background: #e67e22;
}

.category-card-field .category-content {
    background: #f1c40f;
}

.category-title {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

.catalog-link {
    width: fit-content;
    max-width: 100%;
    margin: 26px auto 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--primary-dark);
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
    box-shadow: none;
}

.catalog-link:hover {
    color: var(--primary-green);
    transform: translateY(-2px);
}

.catalog-link > span:first-child {
    padding: 10px 18px;
    border-radius: 6px;
    background: var(--primary-green);
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(68, 168, 44, 0.24);
}

.catalog-icon {
    width: 76px;
    height: 76px;
    min-width: 76px;
    border-radius: 50%;
    background: var(--primary-green);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 10px 26px rgba(68, 168, 44, 0.28);
}

/* Üyelik & Temsilciliklerimiz - Logo Carousel */
.associations-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.carousel-container {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    max-width: 1250px;
    margin: 0 auto;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    background: #ffffff;
    color: var(--primary-green);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.carousel-btn:hover {
    background: var(--primary-green);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(68, 168, 44, 0.35);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-track-wrapper {
    overflow: hidden;
    flex: 1;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-item {
    min-width: 200px;
    max-width: 200px;
    max-height: 200px;
    min-height: 200px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.carousel-item:hover {
    border-color: var(--primary-green);
    box-shadow: 0 6px 20px rgba(68, 168, 44, 0.15);
}

.carousel-item img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.carousel-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.carousel-item-label {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    text-align: center;
    transition: color 0.3s ease;
}

.carousel-item:hover .carousel-item-label {
    color: var(--primary-green);
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: #ffffff;
    padding: 60px 0 20px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    transition: color 0.4s ease;
    transition: padding-left 0.4s ease;
    font-size: 16px;
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-social-icons {
    display: flex;
    min-width: 100px;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.footer-social-icon-box {
    width: 45px;
    height: 45px;
    border-radius: 0px 5px 0px 5px;
    border: 1px solid #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
}

.footer-social-icon-box a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-container {
    width: 165px;
    height: 165px;
    position: absolute;
    overflow: visible;
    top: 50%;
    border: 2px solid var(--primary-green);
    background-color: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-container img {
    width: 100%;
    height: 100%;
    max-width: 125px;
    max-height: 125px;
    padding: 2px;
    object-fit: contain;
    position: relative;
}

.footer-social-icon-box.facebook:hover {
    background-color: #3b5998;
    border-color: #3b5998;
}

.footer-social-icon-box.x-twitter .fa-x-twitter {
    color: #ffffff;
}

.footer-social-icon-box.x-twitter:hover {
    background-color: #ffffff;
    border-color: #ffffff;
}

.footer-social-icon-box.x-twitter:hover .fa-x-twitter {
    color: #000000;
}

.footer-social-icon-box.instagram:hover {
    background-color: #e1306c;
    border-color: #e1306c;
}

.footer-social-icon-box.youtube:hover {
    background-color: #ff0000;
    border-color: #ff0000;
}

.footer-social-icons a {
    color: #fff;
    font-size: 16px;
    transition: color 0.2s;
}

.footer-adress {
    border: 5px solid #fff;
    padding: 20px;
}

.footer-bottom {
    border-top: 1px solid var(--primary-green);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0px 0px;
    text-align: center;
    color: #fff;
    background-color: var(--footer-bg);
    width: 100%;
}

h4 {
    text-underline-offset: 5px;
    text-decoration: underline;
    text-decoration-color: var(--primary-green);
    margin-bottom: 20px;
}

.footer-grid-text1::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: var(--primary-green);
}

.page-header {
    margin-top: 15vh;
    background: #f4f4f4;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

/* Products Page & Detail Styles */
.btn-detail {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 14px;
}

.btn-detail:hover {
    color: var(--primary-dark);
}

/* Sidebar */
.sidebar {
    width: calc(25% - 20px);
    min-width: 250px;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
}

.widget-title {
    background: var(--primary-green);
    color: #fff;
    padding: 15px;
    font-size: 16px;
    text-transform: uppercase;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-menu li:last-child {
    border-bottom: none;
}

.sidebar-menu a {
    display: block;
    padding: 12px 20px;
    color: #555;
    font-size: 14px;
    transition: all 0.2s;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: #f9f9f9;
    color: var(--primary-green);
    padding-left: 25px;
}

.sidebar-menu i {
    font-size: 10px;
    margin-right: 5px;
}

.divider {
    border: 0;
    height: 3px;
    background: var(--primary-green);
    width: 60px;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding-left: 20px;
    list-style-type: disc;
}

.feature-list li {
    position: relative;
    padding-left: 0px;
    margin-bottom: 20px;
}

/* Specs Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    -webkit-tap-highlight-color: rgba(120, 120, 120, 0.18);
}

.specs-table th {
    padding: 12px 15px;
    border: 1px solid #eee;
    text-align: left;
    color: var(--primary-dark);
    width: 40%;
    font-weight: 600;
}

.specs-table th,
.specs-table td {
    transition: background-color 0.15s ease;
}

.specs-table td {
    padding: 12px 15px;
    border: 1px solid #eee;
    text-align: left;
}

.specs-table tbody > tr:hover > th,
.specs-table tbody > tr:hover > td {
    background-color: #f2f2f2;
}

.specs-table tbody > tr:active > th,
.specs-table tbody > tr:active > td {
    background-color: #ececec;
}

@media (hover: none) and (pointer: coarse) {
    .specs-table tbody > tr:hover > th,
    .specs-table tbody > tr:hover > td {
        background-color: transparent;
    }

    .specs-table tbody > tr:active > th,
    .specs-table tbody > tr:active > td {
        background-color: #eeeeee;
    }
}

@media (prefers-color-scheme: dark) {
    .specs-table tbody > tr:hover > th,
    .specs-table tbody > tr:hover > td {
        background-color: rgba(140, 140, 140, 0.12);
    }

    .specs-table tbody > tr:active > th,
    .specs-table tbody > tr:active > td {
        background-color: rgba(140, 140, 140, 0.2);
    }
}

.small-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 0px;
}

.small-image:hover {
    transform: scale(1.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-image {
    max-width: 80vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--primary-green);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2001;
}

.lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #fff;
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

.lightbox-counter {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 20px;
    border-radius: 20px;
    letter-spacing: 2px;
    z-index: 2001;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
    background: #f9f9f9;
    padding: clamp(32px, 4vw, 48px);
    border-radius: 5px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    min-height: 56px;
    padding: 15px 18px;
    border: 1px solid #d7d7d7;
    border-radius: 6px;
    background: #ffffff;
    color: var(--primary-dark);
    font-family: inherit;
    font-size: 17px;
    line-height: 1.35;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(68, 168, 44, 0.16);
}

.btn-submit {
    background: var(--primary-green);
    color: #fff;
    border: none;
    min-height: 56px;
    padding: 15px 40px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    transition: background 0.3s;
    width: 100%;
}

.btn-submit-disabled {
    opacity: 0.72;
    cursor: not-allowed;
}

.form-unavailable-message {
    margin: 14px 0 0;
    padding: 12px 14px;
    border: 1px solid rgba(68, 168, 44, 0.28);
    border-radius: 6px;
    background: rgba(68, 168, 44, 0.08);
    color: var(--primary-dark);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

.form-container {
    width: 100%;
    max-width: 980px !important;
}

.contact-form-wrapper h3,
.form-container h2 {
    font-size: clamp(24px, 3vw, 32px) !important;
    line-height: 1.2;
}

.contact-map {
    border-radius: 5px;
}

.iletisim-iframe-altı {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    flex-wrap: nowrap;
}

.iletisim-iframe-altı li:first-child {
    border-radius: 0px 0px 0px 5px;
}

.iletisim-iframe-altı li:last-child {
    border-radius: 0px 0px 5px 0px;
}

.iletisim-iframe-altı li {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-green);
    color: #fff;
    width: 100%;
    height: auto;
    border: 1px solid #fff;
    font-family: 'Titillium Web-regular', sans-serif;
    margin-top: 0;
}

.iletisim-iframe-altı li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    text-decoration: none;
    padding: 15px 0;
    width: 100%;
    gap: 8px;
}

.iletisim-iframe-altı li i {
    font-size: 24px;
}

@media (max-width: 768px) {
    body.mobile-menu-open {
        overflow: visible;
    }

    body:has(.mobile-header) .header-top,
    body:has(.mobile-header) header.main-header,
    body.has-mobile-header .header-top,
    body.has-mobile-header header.main-header {
        display: none;
    }

    body:not(:has(.mobile-header)) .header-top {
        display: none;
    }

    body:not(:has(.mobile-header)) header.main-header {
        position: relative;
        height: auto;
        min-height: 74px;
        margin-top: 0;
        overflow-x: auto;
        justify-content: flex-start;
    }

    body:not(:has(.mobile-header)) .nav-container {
        width: max-content;
        min-width: 920px;
        min-height: 74px;
        height: 74px;
    }

    body:not(:has(.mobile-header)) .logo-container {
        width: 98px;
        height: 98px;
        min-width: 98px;
        min-height: 98px;
    }

    body:not(:has(.mobile-header)) .logo-container img {
        max-width: 74px;
        max-height: 74px;
    }

    .mobile-header {
        position: sticky;
        top: 0;
        z-index: 1200;
        min-height: 70px;
        width: 100%;
        padding: 10px 16px;
        background: #ffffff;
        border-bottom: 2px solid var(--primary-green);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .mobile-logo {
        width: 142px;
        position: relative;
        height: 44px;
        padding: 4px 6px;
        background: transparent;
        background-image: none;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
        flex: 0 0 142px;
        isolation: isolate;
        color-scheme: only light;
        forced-color-adjust: none;
    }

    .mobile-logo img {
        width: 100%;
        position: relative;
        z-index: 1;
        height: 100%;
        max-width: 130px;
        max-height: 36px;
        object-fit: contain;
        display: block;
        filter: none !important;
        mix-blend-mode: normal;
        forced-color-adjust: none;
    }

    .mobile-menu-toggle {
        width: 46px;
        height: 46px;
        border: 2px solid var(--primary-green);
        border-radius: 6px;
        background: #ffffff;
        color: var(--primary-dark);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
        border-radius: 2px;
        background: var(--primary-green);
        display: block;
    }

    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 1290;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        pointer-events: none;
        display: block;
        transition: opacity 0.25s ease;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1300;
        width: min(86vw, 360px);
        height: 100vh;
        height: 100dvh;
        background: #ffffff;
        box-shadow: -8px 0 28px rgba(0, 0, 0, 0.18);
        display: flex;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: hidden;
        overflow-x: hidden;
    }

    body.mobile-menu-open .mobile-menu {
        transform: translateX(0);
    }

    body.mobile-menu-open .mobile-menu-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu-head {
        min-height: 66px;
        padding: 14px 18px;
        border-bottom: 1px solid #e7e7e7;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 16px;
    }

    .mobile-menu-close {
        width: 42px;
        height: 42px;
        border: 1px solid #d8d8d8;
        border-radius: 6px;
        background: #ffffff;
        color: var(--primary-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 18px;
    }

    .mobile-nav-list {
        padding: 10px 18px calc(205px + env(safe-area-inset-bottom, 0px));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-nav-list > li {
        border-bottom: 1px solid #eeeeee;
    }

    .mobile-nav-list a,
    .mobile-submenu-toggle {
        min-height: 52px;
        width: 100%;
        color: var(--primary-dark);
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0;
        text-align: left;
        background: transparent;
        border: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        cursor: pointer;
    }

    .mobile-nav-list a:hover,
    .mobile-submenu-toggle:hover {
        color: var(--primary-green);
    }

    .mobile-submenu-toggle i {
        font-size: 12px;
        transition: transform 0.25s ease;
    }

    .mobile-submenu-toggle:active i {
        transform: translateX(4px);
    }

    .mobile-submenu-panel {
        position: absolute;
        inset: 0 0 calc(195px + env(safe-area-inset-bottom, 0px)) 0;
        z-index: 2;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        transform: translateX(100%);
        opacity: 0.98;
        pointer-events: none;
        transition: transform 0.32s ease, opacity 0.32s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-menu.has-active-panel .mobile-nav-list {
        transform: translateX(-18px);
        opacity: 0.35;
        pointer-events: none;
        transition: transform 0.28s ease, opacity 0.28s ease;
    }

    .mobile-submenu-panel.is-active {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
        z-index: 4;
    }

    .mobile-submenu-panel.is-under {
        transform: translateX(0);
        opacity: 1;
        pointer-events: none;
        z-index: 3;
    }

    .mobile-submenu-panel-head {
        position: sticky;
        top: 0;
        z-index: 3;
        background: #ffffff;
        min-height: 82px;
        padding: 14px 18px;
        border-bottom: 1px solid #e7e7e7;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
    }

    .mobile-submenu-panel-head strong {
        font-size: 17px;
        color: var(--primary-dark);
        text-align: right;
    }

    .mobile-panel-back {
        width: 46px;
        min-width: 46px;
        height: 46px;
        min-height: 46px;
        padding: 0;
        border: 1px solid #d8d8d8;
        border-radius: 6px;
        background: #ffffff;
        color: var(--primary-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        cursor: pointer;
    }

    .mobile-panel-back:active {
        transform: translateX(-2px);
    }

    .mobile-panel-list {
        padding: 12px 18px 24px;
    }

    .mobile-panel-list li {
        border-bottom: 1px solid #eeeeee;
    }

    .mobile-panel-list a,
    .mobile-panel-list button {
        min-height: 58px;
        width: 100%;
        padding: 10px 0;
        color: var(--primary-dark);
        font-size: 16px;
        font-weight: 700;
        line-height: 1.25;
        text-align: left;
        border: 0;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
    }

    .mobile-panel-list button i {
        font-size: 12px;
    }

    .mobile-panel-list a:hover,
    .mobile-panel-list a:active,
    .mobile-panel-list button:hover,
    .mobile-panel-list button:active {
        color: var(--primary-green);
    }

    .mobile-product-list a {
        min-height: 48px;
        font-size: 15px;
        font-weight: 600;
    }

    .mobile-menu-bottom {
        position: absolute;
        left: 0;
        right: 0;
        bottom: calc(max(env(safe-area-inset-bottom, 0px), 12px) + 24px);
        z-index: 8;
        margin-top: 0;
        padding: 18px;
        border-top: 1px solid #eeeeee;
        background: #ffffff;
        box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.06);
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .mobile-language-switcher,
    .mobile-social-icons {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
    }

    .mobile-language-switcher {
        width: 100%;
    }

    .mobile-language-switcher a {
        flex: 1 1 0;
        min-width: 0;
        height: 46px;
        padding: 0 10px;
        border: 1px solid var(--primary-green);
        border-radius: 6px;
        background: var(--primary-green);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: #ffffff;
    }

    .mobile-social-icons {
        justify-content: center;
        gap: 18px;
    }

    .mobile-social-icons a {
        width: 42px;
        height: 42px;
        border: 1px solid #dddddd;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-dark);
        background: #ffffff;
    }

    .hero-slider {
        height: 58vh;
        min-height: 360px;
        overflow: hidden;
    }

    .hero-btn {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .hero-btn-left {
        left: 12px;
    }

    .hero-btn-right {
        right: 12px;
    }

    .product-categories,
    .associations-section {
        padding: 40px 0;
        margin-top: 0;
    }

    .product-detail-section {
        padding: 28px 0 42px !important;
    }

    .product-detail-section > .container {
        display: flex !important;
        flex-direction: column !important;
        gap: 22px !important;
        align-items: stretch !important;
    }

    .sidebar {
        display: none !important;
    }

    .product-image,
    .product-image-galery,
    .product-image-galery-grid,
    .product-image-galery-grid-1 {
        order: 1;
        width: 100% !important;
        max-width: 100%;
    }

    .product-content > .product-image,
    .product-content > .product-image-galery,
    .product-content > .product-image-galery-grid,
    .product-content > .product-image-galery-grid-1 {
        max-width: 100% !important;
        justify-self: stretch;
    }

    .product-content {
        order: 2;
        width: 100% !important;
        max-width: 100%;
        flex-grow: 0;
        display: block !important;
    }

    .product-body {
        display: flex !important;
        flex-direction: column !important;
        gap: 18px !important;
        width: 100%;
        margin-top: 18px !important;
    }

    .product-info {
        width: 100% !important;
        order: 2;
    }

    .product-body .product-image,
    .product-body .product-image-galery,
    .product-body .product-image-galery-grid,
    .product-body .product-image-galery-grid-1 {
        order: 1;
    }

    .product-header {
        display: block;
        margin-bottom: 18px;
    }

    .product-header h2 {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .latin-name,
    .variety {
        font-size: 15px;
        line-height: 1.45;
    }

    .feature-list {
        padding-left: 18px;
    }

    .feature-list li {
        margin-bottom: 14px;
        line-height: 1.55;
    }

    .product-image,
    .product-image-galery,
    .product-image-galery-grid,
    .product-image-galery-grid-1 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
        gap: 12px;
        justify-content: stretch;
        align-items: start;
        margin-bottom: 8px;
    }

    .product-image img,
    .product-image1 img,
    .product-image-galery-grid img,
    .product-image-galery-grid-1 img {
        width: 100%;
        aspect-ratio: 1 / 1;
        height: auto;
        max-height: none;
        object-fit: cover;
        border-radius: 6px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .product-image img:active,
    .product-image1 img:active,
    .product-image-galery-grid img:active,
    .product-image-galery-grid-1 img:active {
        transform: scale(0.97);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
    }

    .product-image-galery-grid img:nth-child(1) {
        grid-column: auto;
        grid-row: auto;
    }

    .technical-specs {
        width: 100% !important;
        margin-top: 26px !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .specs-table {
        min-width: 100%;
        font-size: 14px;
    }

    .specs-table th,
    .specs-table td {
        padding: 11px 10px;
        vertical-align: top;
    }

    .specs-table th {
        width: 46%;
    }

    .page-header {
        margin-top: 0;
        padding: 18px 0 !important;
    }

    .page-header h1 {
        display: none;
    }

    .page-header p {
        font-size: 13px !important;
        line-height: 1.45;
    }

    .page-content {
        padding: 34px 0 !important;
    }

    .page-content > .container.flex {
        flex-direction: column;
        gap: 24px !important;
    }

    .contact-map,
    .contact-form-wrapper,
    .form-container {
        width: 100% !important;
        min-width: 0 !important;
    }

    .contact-map iframe {
        height: 320px;
    }

    .contact-form-wrapper,
    .form-container {
        padding: 24px !important;
        border-radius: 6px !important;
    }

    .custom-form .form-row {
        display: flex !important;
        flex-direction: column;
        gap: 16px !important;
        margin-bottom: 16px !important;
    }

    .custom-form .form-row > input,
    .custom-form .form-row > select,
    .custom-form .form-row > div,
    .custom-form .form-row > textarea {
        width: 100% !important;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-control {
        min-height: 58px;
        padding: 16px;
        font-size: 16px;
    }

    textarea.form-control {
        min-height: 138px;
    }

    .btn-submit {
        min-height: 58px;
        padding: 16px 24px !important;
        font-size: 16px !important;
        border-radius: 8px !important;
    }

    .iletisim-iframe-altı {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 12px;
    }

    .iletisim-iframe-altı li,
    .iletisim-iframe-altı li:first-child,
    .iletisim-iframe-altı li:last-child {
        border-radius: 6px;
        min-height: 96px;
    }

    .iletisim-iframe-altı li a {
        padding: 16px 12px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .gallery-item-test {
        min-width: 0;
    }

    .small-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 6px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }

    .container {
        width: 100%;
        padding: 0 16px;
    }

    .section-title {
        font-size: 23px;
        line-height: 1.25;
        margin-bottom: 26px;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .category-card {
        margin-bottom: 0;
    }

    .category-img {
        height: 190px;
    }

    .category-content {
        padding: 16px;
    }

    .category-title {
        font-size: 17px;
        line-height: 1.25;
    }

    .catalog-link {
        width: fit-content;
        margin: 26px auto 0;
        justify-content: center;
        gap: 14px;
        font-size: 18px;
        text-align: center;
    }

    .catalog-icon {
        width: 68px;
        height: 68px;
        min-width: 68px;
    }

    .carousel-container {
        gap: 8px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 15px;
    }

    .carousel-track {
        gap: 12px;
    }

    .carousel-item {
        flex: 0 0 calc((100% - 12px) / 2);
        min-width: calc((100% - 12px) / 2);
        max-width: calc((100% - 12px) / 2);
        min-height: 150px;
        max-height: 150px;
        padding: 14px 10px;
    }

    .carousel-item img {
        height: 120px;
    }

    footer {
        padding: 40px 0 18px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 18px;
        align-items: start;
    }

    .footer-col:first-child {
        order: 4;
        grid-column: 1 / -1;
    }

    .footer-col:nth-child(2) {
        order: 2;
        padding-left: 12px;
    }

    .footer-col:nth-child(3) {
        order: 3;
    }

    .footer-col:nth-child(2) h4,
    .footer-col:nth-child(3) h4 {
        text-align: left;
    }

    .footer-col:nth-child(2) .footer-links li,
    .footer-col:nth-child(3) .footer-links li {
        margin-bottom: 16px;
        text-align: left;
    }

    .footer-col:nth-child(2) .footer-links a,
    .footer-col:nth-child(3) .footer-links a {
        position: relative;
        display: inline-block;
        padding: 0 0 8px;
        line-height: 1.35;
    }

    .footer-col:nth-child(2) .footer-links a::after,
    .footer-col:nth-child(3) .footer-links a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 96px;
        height: 1px;
        background-color: var(--primary-green);
        transform: none;
    }

    .footer-col:nth-child(2) .footer-links a:hover,
    .footer-col:nth-child(3) .footer-links a:hover {
        padding-left: 0;
    }

    .footer-adress {
        order: 1;
        grid-column: 1 / -1;
        padding: 18px;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-bottom {
        padding: 18px 16px 0;
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .mobile-header {
        min-height: 64px;
        padding: 8px 12px;
    }

    .mobile-logo {
        width: 126px;
        height: 40px;
        flex-basis: 126px;
    }

    .mobile-logo img {
        max-width: 116px;
        max-height: 32px;
    }

    .mobile-menu {
        width: 88vw;
    }

    .hero-slider {
        height: 52vh;
        min-height: 320px;
    }

    .section-title {
        font-size: 21px;
    }

    .category-img {
        height: 170px;
    }

    .product-header h2 {
        font-size: 22px;
    }

    .product-image img,
    .product-image1 img,
    .product-image-galery-grid img,
    .product-image-galery-grid-1 img {
        max-height: none;
    }

    .specs-table th,
    .specs-table td {
        display: block;
        width: 100% !important;
    }

    .specs-table th {
        padding-bottom: 4px;
        border-bottom: 0;
    }

    .specs-table td {
        padding-top: 4px;
    }

    .carousel-item {
        min-height: 140px;
        max-height: 140px;
    }

    .carousel-item img {
        height: 110px;
    }

    .footer-grid {
        gap: 22px 14px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-col h4 {
        font-size: 16px !important;
    }
}
