html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

:root {
    --esm-primary: #4e8427;
    --esm-primary-light: #5f9a2e;
    --esm-primary-dark: #3d6b1f;
    --esm-accent: #6bb536;
    --esm-accent-glow: rgba(78, 132, 39, 0.25);
    --esm-text: #2b2d42;
    --esm-text-light: #6c757d;
    --esm-white: #ffffff;
    --esm-bg-light: #f8f9fa;
    --esm-border: #e9ecef;
    --esm-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --esm-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --esm-radius: 8px;
    --esm-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --esm-font: 'Inter', 'Roboto', sans-serif;
}

/* RESET */
#esm-header {
    font-family: var(--esm-font);
    position: relative;
    z-index: 1000;
    width: 100%;
}

#esm-header *,
#esm-header *::before,
#esm-header *::after {
    box-sizing: border-box;
}

#esm-header a {
    text-decoration: none;
}

#esm-header ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#esm-header button {
    font-family: var(--esm-font);
}

/* ======== TOP BAR ======== */
.esm-topbar {
    background: #f0f0f0;
    height: 38px;
    border-bottom: 1px solid #e0e0e0;
}

.esm-topbar .container {
    height: 100%;
}

.esm-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 38px;
}

.esm-topbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.esm-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #555;
    font-size: 12.5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.esm-topbar-item:hover {
    color: #4e8427;
}

.esm-topbar-item svg {
    flex-shrink: 0;
    color: #4e8427;
}

.esm-topbar-divider {
    width: 1px;
    height: 16px;
    background: #ccc;
}

.esm-topbar-social {
    display: flex;
    align-items: center;
    gap: 2px;
}

.esm-topbar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #555;
    transition: var(--esm-transition);
}

.esm-topbar-social a:hover {
    color: var(--esm-primary);
    background: rgba(0, 0, 0, 0.05);
}

.esm-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Dil + Bayraklar */
.esm-lang-selector {
    position: relative;
    z-index: 200;
}

.esm-flag {
    font-size: 16px;
    line-height: 1;
}

.esm-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid #d0d0d0;
    border-radius: 20px;
    padding: 4px 12px 4px 8px;
    color: #444;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--esm-transition);
    font-family: var(--esm-font);
    outline: none;
}

.esm-lang-btn:hover,
.esm-lang-btn.active {
    background: rgba(0, 0, 0, 0.1);
    color: #222;
}

.esm-lang-arrow {
    transition: transform 0.3s ease;
}

.esm-lang-btn.active .esm-lang-arrow {
    transform: rotate(180deg);
}

.esm-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--esm-white);
    border-radius: var(--esm-radius);
    box-shadow: var(--esm-shadow-lg);
    min-width: 160px;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--esm-transition);
    z-index: 200;
    border: 1px solid var(--esm-border);
}

.esm-lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.esm-lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: var(--esm-text);
    font-size: 13px;
    font-weight: 500;
    transition: var(--esm-transition);
}

.esm-lang-dropdown a:hover {
    background: var(--esm-bg-light);
    color: var(--esm-primary);
}

.esm-lang-dropdown a.active {
    color: var(--esm-primary);
    background: rgba(78, 132, 39, 0.06);
    font-weight: 600;
}

.esm-lang-dropdown a .esm-flag {
    font-size: 18px;
}

/* ======== NAVBAR ======== */
.esm-navbar {
    background: var(--esm-white);
    transition: var(--esm-transition);
    border-bottom: 2px solid var(--esm-primary);
}

.esm-navbar-inner {
    display: flex;
    align-items: center;
    height: 76px;
    gap: 10px;
}

/* Sticky */
.esm-navbar--sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: var(--esm-shadow-md);
    animation: esmSlideDown 0.35s ease;
}

.esm-navbar--sticky .esm-navbar-inner {
    height: 64px;
}

.esm-navbar--sticky .esm-logo img {
    max-height: 40px;
}

/* Modern Section Titles Override */
.main_title {
    text-align: center !important;
    margin-bottom: 60px !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.main_title span {
    position: static !important;
    /* Ghost position'ı bozuyoruz */
    display: inline-block !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--esm-accent) !important;
    text-transform: uppercase !important;
    letter-spacing: 4px !important;
    margin-bottom: 10px !important;
    opacity: 0.9 !important;
    line-height: 1 !important;
    margin-top: 0 !important;
}

.main_title h1,
.main_title h2 {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    position: relative !important;
    z-index: 2 !important;
    line-height: 1.2 !important;
}

/* Premium Product Hover Effect */
.grid_item {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease !important;
}

.grid_item:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1) !important;
}

.grid_item figure {
    overflow: hidden !important;
    border-radius: 8px !important;
}

.grid_item figure img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.grid_item:hover figure img {
    transform: scale(1.1) !important;
}

.grid_item h3 {
    transition: color 0.3s ease !important;
    margin-top: 15px !important;
}

.grid_item:hover h3 {
    color: var(--esm-accent) !important;
}

/* Sweet Hover Effect for Fairs & News */
.fuar_item {
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}

.fuar_item:hover {
    transform: none !important;
    /* Kayma kaldırıldı */
    box-shadow: none !important;
    /* Gölge kaldırıldı */
}

.fuar_item:hover figure img {
    transform: none !important;
    /* Scale kaldırıldı */
}

.fuar_date {
    font-size: 11.5px !important;
    color: var(--esm-accent);
    font-weight: 700;
    display: block;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

.fuar_title {
    font-size: 15.5px !important;
    color: #000 !important;
    margin-top: 5px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
    text-transform: uppercase;
}

.main_title h1::after,
.main_title h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--esm-accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

@media (max-width: 767px) {

    .main_title h1,
    .main_title h2 {
        font-size: 28px !important;
    }

    .main_title {
        margin-bottom: 40px !important;
    }
}

/* Logo */
.esm-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 10px;
}

.esm-logo img {
    max-height: 54px;
    width: auto;
    transition: var(--esm-transition);
}

.esm-logo:hover img {
    transform: scale(1.02);
}

/* Desktop Nav - BUYUK MENU */
.esm-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.esm-nav-list {
    display: flex;
    align-items: center;
    gap: 0;
}

.esm-nav-list>li {
    position: relative;
}

.esm-nav-list>li>a {
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    /* 15px'den 12px'e daraltıldı */
    color: var(--esm-text);
    font-size: 14.5px;
    /* 15.5px'den 14.5px'e tık daraltıldı */
    font-weight: 600;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    transition: var(--esm-transition);
    white-space: nowrap;
    position: relative;
    border-radius: 6px;
}

.esm-dropdown-arrow {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.esm-nav-list>li:hover .esm-dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.esm-nav-list>li>a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 3px;
    background: var(--esm-accent);
    border-radius: 3px 3px 0 0;
    transition: transform 0.3s ease;
}

.esm-nav-list>li:hover>a {
    color: var(--esm-primary);
    background: var(--esm-bg-light);
}

.esm-nav-list>li:hover>a::after {
    transform: translateX(-50%) scaleX(1);
}

/* SVG effects removed, MDI used via .esm-dropdown-arrow */

/* Dropdown */
.esm-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    background: var(--esm-white);
    border-radius: 0 0 var(--esm-radius) var(--esm-radius);
    box-shadow: var(--esm-shadow-lg);
    border: 1px solid var(--esm-border);
    min-width: 240px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: var(--esm-transition);
    z-index: 100;
}

.esm-has-dropdown:hover>.esm-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.esm-dropdown li a {
    display: block;
    padding: 11px 22px;
    color: var(--esm-text);
    font-size: 13.5px;
    font-weight: 600;
    transition: var(--esm-transition);
    border-left: 3px solid transparent;
}

.esm-dropdown li a:hover {
    background: var(--esm-bg-light);
    color: var(--esm-primary);
    border-left-color: var(--esm-accent);
    padding-left: 26px;
}

/* Right Actions */
.esm-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Search Toggle */
.esm-search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: var(--esm-text);
    cursor: pointer;
    transition: var(--esm-transition);
    outline: none;
    font-size: 26px;
}

.esm-search-toggle:hover {
    color: var(--esm-primary);
}

/* Search Overlay */
.esm-search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--esm-white);
    border-bottom: 2px solid var(--esm-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.esm-search-overlay.open {
    max-height: 100px;
    opacity: 1;
}

.esm-search-overlay-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
}

.esm-search-overlay-icon {
    color: var(--esm-text-light);
    flex-shrink: 0;
}

.esm-search-overlay-inner input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 0;
    font-size: 16px;
    font-family: var(--esm-font);
    color: var(--esm-text);
    background: transparent;
}

.esm-search-overlay-inner input::placeholder {
    color: #bbb;
}

.esm-search-overlay-btn {
    flex-shrink: 0;
    border: none;
    background: linear-gradient(135deg, var(--esm-primary), var(--esm-primary-light));
    color: var(--esm-white);
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--esm-font);
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: var(--esm-transition);
    text-transform: uppercase;
    border-radius: 50px;
}

.esm-search-overlay-btn:hover {
    background: linear-gradient(135deg, var(--esm-primary-dark), var(--esm-primary));
}

.esm-search-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: var(--esm-bg-light);
    color: var(--esm-text-light);
    cursor: pointer;
    transition: var(--esm-transition);
    flex-shrink: 0;
}

.esm-search-close:hover {
    background: #fee2e2;
    color: #dc2626;
}

/* Telefon CTA - Pill */
.esm-phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--esm-primary), var(--esm-primary-light));
    color: var(--esm-white);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: var(--esm-transition);
    white-space: nowrap;
    box-shadow: 0 3px 12px var(--esm-accent-glow);
}

.esm-phone-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--esm-accent-glow);
    color: var(--esm-white);
    background: linear-gradient(135deg, var(--esm-primary-dark), var(--esm-primary));
}

.esm-phone-cta svg {
    flex-shrink: 0;
}

/* Hamburger */
.esm-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: var(--esm-transition);
    color: var(--esm-text);
    font-size: 32px;
}

.esm-hamburger:hover {
    color: var(--esm-primary);
}

/* ======== MOBILE MENU ======== */
.esm-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: var(--esm-transition);
}

.esm-mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

.esm-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--esm-white);
    z-index: 1200;
    overflow-y: auto;
    transform: translateX(101%);
    visibility: hidden;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.4s;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.esm-mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}


.esm-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--esm-border);
    flex-shrink: 0;
}

.esm-mobile-logo img {
    max-height: 36px;
    width: auto;
}

.esm-mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: var(--esm-bg-light);
    color: var(--esm-text);
    cursor: pointer;
    transition: var(--esm-transition);
}

.esm-mobile-close:hover {
    background: #fee2e2;
    color: #dc2626;
}

.esm-mobile-search {
    display: flex;
    align-items: center;
    margin: 16px 20px;
    background: var(--esm-bg-light);
    border-radius: var(--esm-radius);
    border: 1px solid var(--esm-border);
    overflow: hidden;
}

.esm-mobile-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 14px;
    font-size: 14px;
    font-family: var(--esm-font);
    color: var(--esm-text);
    background: transparent;
}

.esm-mobile-search input::placeholder {
    color: var(--esm-text-light);
}

.esm-mobile-search button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--esm-primary);
    color: var(--esm-white);
    cursor: pointer;
}

.esm-mobile-nav {
    flex: 1;
    padding: 8px 0;
    overflow-y: auto;
}

.esm-mobile-nav>li {
    border-bottom: 1px solid var(--esm-border);
}

.esm-mobile-nav>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    color: var(--esm-text);
    font-size: 14px;
    font-weight: 600;
    transition: var(--esm-transition);
}

.esm-mobile-nav>li>a:hover {
    color: var(--esm-primary);
    background: var(--esm-bg-light);
}

.esm-mobile-dropdown-toggle svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.esm-mobile-dropdown.open>.esm-mobile-dropdown-toggle svg {
    transform: rotate(180deg);
}

.esm-mobile-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--esm-bg-light);
}

.esm-mobile-dropdown.open>.esm-mobile-sub {
    max-height: 600px;
}

.esm-mobile-sub li a {
    display: block;
    padding: 11px 20px 11px 36px;
    color: var(--esm-text-light);
    font-size: 13px;
    font-weight: 500;
    transition: var(--esm-transition);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.esm-mobile-sub li a::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--esm-accent);
    opacity: 0;
    transition: var(--esm-transition);
}

.esm-mobile-sub li a:hover {
    color: var(--esm-primary);
    padding-left: 42px;
}

.esm-mobile-sub li a:hover::before {
    opacity: 1;
}

.esm-mobile-bottom {
    padding: 20px;
    border-top: 1px solid var(--esm-border);
    background: var(--esm-bg-light);
    flex-shrink: 0;
}

.esm-mobile-phone,
.esm-mobile-mail {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--esm-text);
    font-size: 13px;
    font-weight: 500;
    transition: var(--esm-transition);
}

.esm-mobile-phone:hover,
.esm-mobile-mail:hover {
    color: var(--esm-primary);
}

.esm-mobile-phone svg,
.esm-mobile-mail svg {
    color: var(--esm-accent);
    flex-shrink: 0;
}

.esm-mobile-langs {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--esm-border);
}

.esm-mobile-langs a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 32px;
    padding: 0 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--esm-text-light);
    background: var(--esm-white);
    border: 1px solid var(--esm-border);
    transition: var(--esm-transition);
}

.esm-mobile-langs a:hover {
    border-color: var(--esm-primary);
    color: var(--esm-primary);
}

.esm-mobile-langs a.active {
    background: var(--esm-primary);
    border-color: var(--esm-primary);
    color: var(--esm-white);
}

/* ======== RESPONSIVE ======== */
@media (max-width: 1200px) {
    .esm-nav-list>li>a {
        padding: 12px 13px;
        font-size: 13px;
    }

    .esm-phone-cta span {
        display: none;
    }

    .esm-phone-cta {
        padding: 10px;
        border-radius: 50%;
    }
}

@media (max-width: 991px) {
    .esm-navbar-inner {
        justify-content: space-between;
    }

    .esm-logo {
        margin-right: auto;
    }

    .esm-nav-actions {
        margin-left: 0;
    }

    .esm-nav {
        display: none;
    }

    .esm-hamburger {
        display: flex;
    }

    .esm-phone-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .esm-logo img {
        max-height: 42px;
    }

    .esm-navbar-inner {
        height: 64px;
    }
}

@media (max-width: 576px) {
    .esm-topbar {
        height: 36px;
    }

    .esm-topbar-inner {
        height: 36px;
    }

    .esm-mobile-menu {
        width: 290px;
    }

    .esm-logo img {
        max-height: 45px;
    }

    .esm-navbar-inner {
        height: 56px;
        gap: 6px;
    }

    .esm-search-toggle {
        width: 38px;
        height: 38px;
    }
}

/* ======== ESKI STILLER ======== */
@media(max-width:1150px) {
    .product-img {
        display: flex;
        text-align: center;
        margin: 10px auto;
        width: 185px;
        height: 185px
    }
}

@media(max-width:1029px) {
    .product-img {
        display: flex;
        text-align: center;
        margin: 10px auto;
        width: 170px;
        height: 170px
    }
}

@media(max-width:768px) {
    .product-img {
        display: flex;
        text-align: center;
        margin: 10px auto;
        width: 40vh;
        height: 40vh
    }

    .countdown_inner a {
        margin: 0 6px;
        padding: 0 10px
    }

    .hesaplama .group {
        margin-top: 30px;
        margin-bottom: 30px
    }

    .hesaplama .group.text-right {
        text-align: center !important
    }

    .hesaplama .mb-5 {
        margin-bottom: 0 !important;
        margin-top: 10px
    }
}



/* Slider Modernization (BS5) */
.esm-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.esm-slider-wrapper .owl-slide {
    height: 750px;
    background-size: cover;
    background-position: center;
}

.esm-slider-wrapper .slide-text h2 {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.esm-slider-wrapper .slide-text p {
    font-size: 22px;
    margin-bottom: 34px;
    opacity: 0.9;
    color: #fff;
}

@media (max-width: 991px) {
    .esm-slider-wrapper .owl-slide {
        height: 550px;
    }

    .esm-slider-wrapper .slide-text h2 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .esm-slider-wrapper .owl-slide {
        height: 440px;
    }

    .esm-slider-wrapper .slide-text {
        text-align: center;
        padding: 0 15px;
    }

    .esm-slider-wrapper .slide-text h2 {
        font-size: 30px;
    }
}


/* Finer Adjustments */
.esm-nav-list>li>a {
    font-size: 14px !important;
}

.esm-navbar-inner {
    height: 96px !important;
}

.owl-dot span {
    background: rgba(255, 255, 255, 0.5) !important;
}

.owl-dot.active span {
    background: #fff !important;
}

.esm-topbar-social a i {
    font-size: 17px !important;
    margin: 0 5px;
}


/* Slider Owl Dots Re-Fix */
.owl-theme .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.45) !important;
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #ffffff !important;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}


/* Pure White Dots & Navigation Arrows */
.owl-theme .owl-dots .owl-dot span {
    background: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
    opacity: 0.5;
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    transition: opacity 0.3s;
}

.owl-theme .owl-dots .owl-dot.active span {
    opacity: 1 !important;
    background: #ffffff !important;
}

.owl-theme .owl-nav [class*='owl-'] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s;
    margin: 0;
}

.owl-theme .owl-nav .owl-prev {
    left: 30px;
}

.owl-theme .owl-nav .owl-next {
    right: 30px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: #fff !important;
    color: #000 !important;
}

@media (max-width: 767px) {
    .owl-theme .owl-nav {
        display: none;
    }
}


.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: block;
}

/* Slider Navigation Arrows Final Adjustments */
.owl-theme .owl-nav [class*='owl-'] {
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 30px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    width: 50px !important;
    height: 50px !important;
    z-index: 100 !important;
}

.owl-theme .owl-nav [class*='owl-'] i {
    line-height: 1 !important;
}

.owl-theme .owl-nav .owl-prev {
    left: 20px !important;
}

.owl-theme .owl-nav .owl-next {
    right: 20px !important;
}

/* Mobile Header Top Cleanup */
@media (max-width: 767px) {

    /* Mail ve Sosyal Medyay� mobilde gizle, alan� ferahlat */
    .esm-topbar-left a[href^='mailto:'],
    .esm-topbar-right .esm-topbar-social {
        display: none !important;
    }

    /* Ayra�lar� gizle */
    .esm-topbar-left .esm-divider {
        display: none !important;
    }

    /* Kalanlar� (Telefon ve Dil) iki uca yasla */
    .esm-header-top-inner {
        justify-content: space-between !important;
        padding: 0 15px !important;
    }

    /* Yaz� boyutunu mobilde bir t�k daha optimize et */
    .esm-topbar-left a,
    .esm-header-top-inner .styled-select select {
        font-size: 12px !important;
    }

    /* Topbar y�ksekli�ini mobilde biraz daralt (opsiyonel) */
    .esm-header-top {
        height: 40px !important;
        display: flex;
        align-items: center;
    }
}

/* Mobile Header Top Re-Arrangement (Keep Mail & Socials) */
@media (max-width: 767px) {

    /* Dil se�ene�ini gizle (men�de var) */
    .esm-header-top-inner .styled-select {
        display: none !important;
    }

    /* Mail ve Sosyal Medyay� mobilde g�ster */
    .esm-topbar-left a[href^='mailto:'],
    .esm-topbar-right .esm-topbar-social {
        display: flex !important;
    }

    /* Mail adresinin metnini mobilde gizle, sadece ikon kals�n */
    /* (Bu sayede yer kazan�yoruz ve ikon t�klanabiliyor) */
    .esm-topbar-left a[href^='mailto:'] span {
        display: none !important;
    }

    /* Mobilde aradaki o dikey ayra�lar� gizle */
    .esm-topbar-left .esm-divider {
        display: none !important;
    }

    /* Telefon, Mail ve Sosyal Medyay� �� uca/merkeze yay */
    .esm-header-top-inner {
        justify-content: space-between !important;
        padding: 0 10px !important;
    }

    .esm-topbar-left {
        gap: 15px !important;
    }

    /* Sosyal medya ikonlar�n� mobilde biraz daha s�k���k yap */
    .esm-topbar-social a i {
        font-size: 16px !important;
        margin: 0 4px !important;
    }
}


/* Final Mobile Polish: Hide TR & Shrink Slider */
@media (max-width: 767px) {

    /* Dil butonunu (TR) mobilde kesin olarak gizle */
    .esm-topbar-right .styled-select {
        display: none !important;
    }

    /* Aradaki dikey ayra�lar� gizle */
    .esm-divider,
    .esm-header-top-inner .esm-divider {
        display: none !important;
    }

    /* Slider y�ksekli�ini kabadan zarife indir */
    .esm-slider-wrapper .owl-slide,
    #carousel-home .owl-carousel .owl-slide {
        height: 280px !important;
    }

    /* Telefon, Mail ikonu ve Sosyal medyalar� yatayda yay */
    .esm-header-top-inner {
        display: flex !important;
        justify-content: center !important;
        gap: 15px !important;
        padding: 0 10px !important;
    }

    .esm-topbar-left,
    .esm-topbar-right {
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    /* Mail metnini gizle, sadece ikon kals�n */
    .esm-topbar-left a[href^='mailto:'] span {
        display: none !important;
    }
}


/* Force Hide Language Selector on Mobile (Selector Fix) */
@media (max-width: 767px) {

    .esm-lang-selector,
    .esm-lang-btn,
    #esmLangToggle,
    #esmLangDropdown {
        display: none !important;
    }
}


/* Mobile Topbar Divider Hide */
@media (max-width: 767px) {
    .esm-topbar-divider {
        display: none !important;
    }
}


/* Mobile Slider Navigation Arrows (Shrink) */
@media (max-width: 767px) {

    #carousel-home .owl-theme .owl-nav,
    #carousel-home .owl-carousel .owl-nav.disabled {
        display: block !important;
    }

    .owl-theme .owl-nav [class*='owl-'] {
        width: 36px !important;
        height: 36px !important;
        font-size: 24px !important;
        background: rgba(255, 255, 255, 0.4) !important;
        line-height: 26px !important;
    }

    .owl-theme .owl-nav .owl-prev {
        left: 10px !important;
    }

    .owl-theme .owl-nav .owl-next {
        right: 10px !important;
    }
}

/* Banners Grid Slider Dots Polish */
#banners_grid .owl-dots {
    text-align: center;
    margin-top: 15px !important;
    display: block !important;
    /* Mobilde g�r�n�rl��� garantile */
}

#banners_grid .owl-dots .owl-dot span {
    background: rgba(0, 0, 0, 0.4) !important;
    /* Pasif noktalar siyah�ms� */
    width: 10px;
    height: 10px;
    margin: 5px 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    transition: all 200ms ease;
    border-radius: 30px;
}

#banners_grid .owl-dots .owl-dot.active span {
    background: #ffffff !important;
    /* Aktif nokta saf beyaz */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    transform: scale(1.2);
}


/* Hide Banners Grid Arrows Only */
#banners_grid .owl-nav {
    display: none !important;
}

/* Owl Carousel Responsive Peek Fix */
@media (max-width: 560px) {
    #banners_grid .owl-item {
        width: 80% !important;
        margin-right: 10px !important;
    }
}

/* ===================================================
   ESMESEN FOOTER CSS
   =================================================== */
#footer {
    background: #0b0b0b;
    color: #aaa;
    padding: 0;
    font-size: 14.5px;
    border-top: 5px solid #4e8427;
}

#footer .footer-top h4 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#footer .footer-top h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #4e8427;
}

#footer .footer-logo img {
    margin-bottom: 25px;
}

#footer .footer-logo p {
    font-size: 14px;
    color: #888;
    line-height: 1.8;
    margin-bottom: 25px;
}

#footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-links ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

#footer .footer-links ul li:last-child {
    border-bottom: none;
}

#footer .footer-links ul li a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

#footer .footer-links ul li a:hover {
    color: #4e8427;
    padding-left: 8px;
}

#footer .pt-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .pt-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

#footer .pt-contact li i {
    color: #4e8427;
    font-size: 22px;
    width: 25px;
    text-align: center;
}

#footer .pt-contact li span,
#footer .pt-contact li a {
    color: #aaa;
    line-height: 1.6;
    text-decoration: none;
    transition: 0.3s;
}

#footer .pt-contact li a:hover {
    color: #fff;
}

#footer .newsletter-box {
    padding: 0;
    border: none;
}

#footer .newsletter-box h5 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

#footer .newsletter-box .input-group {
    background: #151515;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #252525;
}

#footer .newsletter-box .input-group input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 12px 15px;
    font-size: 13px;
    flex-grow: 1;
    outline: none;
}

#footer .newsletter-box .input-group .btn {
    background: #4e8427;
    border: none;
    width: 50px;
    color: #fff;
    font-weight: 700;
    transition: 0.3s;
    padding: 0;
}

#footer .newsletter-box .input-group .btn:hover {
    background: #fff;
    color: #000;
}

#footer .footer-bottom {
    background: #050505;
    padding: 25px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#footer .footer-bottom .pt-copyright {
    color: #666;
    font-size: 13px;
}

#footer .pt-footer-social ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 12px;
}

#footer .pt-footer-social ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: #aaa;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

#footer .pt-footer-social ul li a:hover {
    background: #4e8427;
    color: #fff;
    border-color: #4e8427;
    transform: translateY(-3px);
}

/* ESMESEN PREMIUM SLIDER SYSTEM */
.esm-premium-carousel.owl-carousel {
    position: relative !important;
    padding: 0 45px !important;
}

/* Oklar (Nav) */
.esm-premium-carousel .owl-nav button.owl-prev,
.esm-premium-carousel .owl-nav button.owl-next {
    position: absolute !important;
    top: 50% !important;
    width: 45px !important;
    height: 45px !important;
    background: #4e8427 !important;
    color: #fff !important;
    border-radius: 50% !important;
    transform: translateY(-50%) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 100 !important;
    cursor: pointer !important;
}

.esm-premium-carousel .owl-nav button.owl-prev {
    left: -5px !important;
}

.esm-premium-carousel .owl-nav button.owl-next {
    right: -5px !important;
}

.esm-premium-carousel .owl-nav button:hover {
    background: #3a631d !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.esm-premium-carousel .owl-nav button i {
    font-size: 28px !important;
    line-height: 1 !important;
    color: #fff !important;
}

.esm-premium-carousel .owl-nav button.disabled {
    opacity: 0.5 !important;
    cursor: default !important;
}

/* Noktalar (Dots) */
.esm-premium-carousel .owl-dots {
    text-align: center !important;
    margin-top: 30px !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 10 !important;
}

.esm-premium-carousel .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    margin: 5px 7px !important;
    background: #ddd !important;
    display: block !important;
    transition: all 0.3s ease !important;
    border-radius: 50% !important;
}

.esm-premium-carousel .owl-dot.active span,
.esm-premium-carousel .owl-dot:hover span {
    background: #4e8427 !important;
    transform: scale(1.3) !important;
}

/* ===================================================
   KURUMSAL SAYFA CSS (ESMESEN)
   =================================================== */

.kurumsal-hero-section {
    position: relative;
    padding: 100px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    min-height: 400px;
    margin-bottom: 0;
}

.kurumsal-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.kurumsal-hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--esm-white);
}

.hero-back {
    margin-bottom: 20px;
}

.hero-back .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--esm-white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: var(--esm-transition);
}

.hero-back .back-link:hover {
    opacity: 1;
    color: var(--esm-accent);
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--esm-accent);
    margin-bottom: 10px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    color: var(--esm-white);
}

.kurumsal-breadcrumb-section {
    background: var(--esm-white);
    border-bottom: 1px solid var(--esm-border);
    padding: 15px 0;
}

.kurumsal-breadcrumb-section .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.kurumsal-breadcrumb-section .breadcrumb-item a {
    color: var(--esm-text-light);
    transition: var(--esm-transition);
}

.kurumsal-breadcrumb-section .breadcrumb-item a:hover {
    color: var(--esm-primary);
}

.kurumsal-breadcrumb-section .breadcrumb-item.active {
    color: var(--esm-text);
    font-weight: 500;
}

.kurumsal-breadcrumb-section .breadcrumb-item+.breadcrumb-item::before {
    content: "\203A";
    /* Unicode angle bracket */
    font-family: inherit;
    font-weight: normal;
    color: var(--esm-text-light);
    font-size: 18px;
    line-height: 1;
}

.kurumsal-section {
    padding: 80px 0;
    transition: background-color 0.3s ease;
}

.kurumsal-title-wrapper {
    position: relative;
    padding-left: 0;
    border-left: none;
}

.kurumsal-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: var(--esm-text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.kurumsal-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--esm-text);
    line-height: 1.3;
    margin: 0 0 20px 0;
}

.kurumsal-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--esm-text-light);
}

.kurumsal-content p {
    margin-bottom: 15px;
}

.kurumsal-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .kurumsal-title-wrapper {
        border-left: none;
        padding-left: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .kurumsal-title-wrapper::after {
        content: '';
        display: block;
        width: 50px;
        height: 4px;
        background: var(--esm-accent);
        margin: 15px auto 0;
        border-radius: 2px;
    }

    .hero-title {
        font-size: 36px;
    }
}


.breadcrumb-item+.breadcrumb-item {
    padding: 0;
}

.mb-30 {
    margin-bottom: 30px;
}

/* ===================================================
   BLOG / AKADEMI SIDEBAR CSS
   =================================================== */
.esm-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
    padding-top: 10px;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
    border: none !important;
    background: none !important;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #4e8427;
    border-radius: 2px;
}

.recent-post-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
    transition: all 0.3s ease;
}

.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-thumb {
    width: 80px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recent-post-content {
    flex-grow: 1;
}

.recent-post-content h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 5px 0;
}

.recent-post-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.recent-post-item:hover .recent-post-thumb img {
    transform: scale(1.1);
}

.recent-post-item:hover h4 a {
    color: #4e8427;
}

.recent-post-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #888;
}

.sidebar-search .input-group {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    padding: 2px;
    display: flex;
}

.sidebar-search .form-control {
    background: transparent;
    border: none;
    height: 45px;
    padding-left: 15px;
    font-size: 14px;
    flex-grow: 1;
    box-shadow: none !important;
}

.sidebar-search .btn {
    background: #222;
    color: #fff;
    border: none;
    width: 45px !important;
    height: 45px !important;
    border-radius: 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.sidebar-search .btn:hover {
    background: #4e8427;
}

.widget-cta {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.widget-cta .widget-title {
    color: #fff;
    text-align: center;
}

.widget-cta .widget-title::after {
    left: 50%;
    margin-left: -20px;
}

.widget-cta p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 25px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #4e8427;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: #fff;
    color: #222;
    transform: translateY(-3px);
}

/* ===================================================
   MEGA MENU STYLES - 2026-04-15 04:09
   =================================================== */

.esm-has-mega {
    position: static !important;
}

.esm-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1001;
    visibility: hidden;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-top: 2px solid var(--esm-primary);
    padding: 35px 0;
}

.esm-has-mega:hover .esm-mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.esm-mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.esm-mega-head {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--esm-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.esm-mega-head:hover {
    color: var(--esm-accent);
    padding-left: 5px;
}

.esm-mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.esm-mega-list li {
    margin-bottom: 8px;
}

.esm-mega-list li a {
    display: block;
    font-size: 13.5px;
    color: #555;
    font-weight: 500;
    transition: all 0.3s ease;
}

.esm-mega-list li a:hover {
    color: var(--esm-primary);
    transform: translateX(5px);
}

/* RESPONSIVE MEGA MENU */
@media (max-width: 991px) {
    .esm-mega-menu {
        display: none !important;
    }
}

.custom-product-tabs .nav-link.active::after {
    bottom: -4px !important;
}

/* ===================================================
   PRODUCT BROCHURE LIST - 2026-04-15 04:42
   =================================================== */

.brochure-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.brochure-item {
    background: #fff;
    border: 1px solid #f0f2f5;
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.brochure-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--esm-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.brochure-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: var(--esm-primary);
}

.brochure-item:hover::before {
    opacity: 1;
}

.brochure-info {
    display: flex;
    flex-direction: column;
}

.brochure-info h4 {
    margin: 0;
    color: #222;
    font-size: 1.1rem;
    letter-spacing: -0.2px;
}

.brochure-info p {
    font-size: 0.85rem;
    margin-top: 4px;
}

.btn-download {
    display: flex;
    align-items: center;
    padding: 10px 22px;
    background: #f8f9fa;
    color: #444;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none !important;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.btn-download i {
    font-size: 1.1rem;
    color: var(--esm-primary);
    transition: transform 0.3s;
}

.btn-download:hover {
    background: var(--esm-primary);
    color: #fff;
    border-color: var(--esm-primary);
}

.btn-download:hover i {
    color: #fff;
    transform: translateY(2px);
}

@media (max-width: 768px) {
    .brochure-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .btn-download {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================================
   PRODUCT GALLERY SLIDER - 2026-04-15 04:54
   =================================================== */

.product-gallery-container {
    position: sticky;
    top: 30px;
}

.product-main-slider-wrapper {
    background: #fff;
    border: 1px solid #e5e8ed;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-bottom: 15px;
}

.product-main-slider .main-slider-item {
    outline: none !important;
}

.product-main-slider .main-slider-item img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    padding: 20px;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.product-thumb-slider-wrapper {
    padding: 10px 5px;
}

.product-thumb-slider .thumb-slider-item {
    padding: 0;
    outline: none !important;
    cursor: pointer;
}

.product-thumb-slider .thumb-image-inner {
    border: 2px solid #f0f2f5;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    background: #fff;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Owl Current State */
.product-thumb-slider .owl-item.current .thumb-image-inner {
    border-color: var(--esm-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-thumb-slider .thumb-image-inner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 5px;
}

