/* ==========================================================================
   DESI CORE: LAYOUT & SECTIONS (desi_layout.css)
   ========================================================================== */

/* Sayfa Üstü Modern Hero / Başlık Bannerı */
.desi-hero-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: var(--desi-radius-lg, 16px);
    padding: 45px 25px 40px;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--desi-shadow-lg, 0 10px 30px rgba(15, 23, 42, 0.12));
}

.desi-hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 122, 104, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

.desi-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(45, 122, 104, 0.25);
    border: 1px solid rgba(45, 122, 104, 0.5);
    color: #34d399;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.desi-hero-banner h1 {
    color: #ffffff !important;
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 10px;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .desi-hero-banner h1 { font-size: 38px; }
}

.desi-hero-banner p {
    color: #cbd5e1;
    font-size: 15px;
    max-width: 620px;
    margin: 0 auto 25px;
    line-height: 1.5;
}

/* Yuvarlak Arama Kutusu */
.desi-hero-search {
    max-width: 520px;
    margin: 0 auto;
}

.desi-hero-search .uk-input {
    border-radius: 30px !important;
    height: 48px !important;
    padding-left: 44px !important;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.96) !important;
    color: #0f172a !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.desi-hero-search .uk-input:focus {
    background: #ffffff !important;
    border-color: var(--desi-primary, #2D7A68) !important;
    box-shadow: 0 6px 25px rgba(45, 122, 104, 0.35) !important;
}

/* Doküman / PDF / Ürün Kartı Görsel Çerçevesi */
.desi-card-thumb {
    width: 72px;
    height: 96px;
    flex-shrink: 0;
    border-radius: var(--desi-radius-sm, 6px);
    background: #ffffff;
    border: 1px solid var(--desi-border, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    padding: 3px;
    box-sizing: border-box;
}

.desi-card-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.uk-card:hover .desi-card-thumb img {
    transform: scale(1.06);
}

/* Kategori & Durum Rozetleri */
.desi-badge-cat {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--desi-green, #2D7A68);
}

.desi-tag-pdf {
    font-size: 10px;
    font-weight: 700;
    color: var(--desi-red, #e30613);
    background: var(--desi-red-light, #fff1f2);
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   PREMIUM SLIDESHOW NAVIGATION & DOTNAV STYLING
   ========================================================================== */
/* ==========================================================================
   PREMIUM SLIDESHOW NAVIGATION & DOTNAV STYLING
   ========================================================================== */
/* 1. Navigasyon Okları (Glassmorphism & Dairesel Butonlar) */
.uk-slidenav,
.custom-slidenav {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: rgba(15, 23, 42, 0.55) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
    opacity: 0.85 !important;
}

.uk-slidenav:hover,
.custom-slidenav:hover {
    background: var(--desi-green, #2D7A68) !important;
    border-color: var(--desi-green, #2D7A68) !important;
    color: #ffffff !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(45, 122, 104, 0.6) !important;
    opacity: 1 !important;
}

.uk-slidenav svg,
.custom-slidenav svg {
    width: 22px !important;
    height: 22px !important;
    stroke-width: 2.5 !important;
}
/* 2. Alt Gösterge Noktaları Kapsayıcısı (Dotnav Capsule) - Gizlendi */
.custom-dotnav-wrapper,
.custom-dotnav,
.uk-dotnav,
.uk-slideshow-nav,
.slider-container .custom-dotnav-wrapper,
.slider-container .uk-slideshow-nav {
    display: none !important;
}

@media (max-width: 767px) {
    .slider-container .custom-slidenav {
        display: none !important;
    }
}




/* ==========================================================================
   DESi MODERN FOOTER SECTION
   ========================================================================== */
.desi-modern-footer {
    display: block;
    width: 100% !important;
    background: #ffffff;
    font-family: inherit;
    border-top: 1px solid #f1f5f9;
}

/* Newsletter Üst Alanı */
.desi-footer-newsletter-section {
    padding: 45px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e2e8f0;
}

.desi-newsletter-box {
    background: #ffffff;
    padding: 32px 36px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px -4px rgba(15, 23, 42, 0.05);
}

.desi-newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(45, 122, 104, 0.08);
    color: #2D7A68;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 9999px;
    margin-bottom: 10px;
}

.desi-newsletter-title {
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin: 0;
}

.desi-newsletter-form {
    width: 100%;
}

.desi-newsletter-input-group {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    padding: 4px;
    transition: all 0.25s ease;
}

.desi-newsletter-input-group:focus-within {
    border-color: #2D7A68;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(45, 122, 104, 0.12);
}

.desi-input-wrapper {
    display: flex;
    align-items: center;
    flex-grow: 1;
    padding-left: 14px;
    gap: 10px;
}

.desi-input-icon {
    color: #94a3b8;
    flex-shrink: 0;
}

.desi-nl-input {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    color: #0f172a;
    font-size: 14px;
    width: 100%;
    height: 42px;
    padding: 0 !important;
}

.desi-nl-input::placeholder {
    color: #94a3b8;
}

.desi-nl-button {
    background: #2D7A68;
    color: #ffffff;
    border: none;
    border-radius: 9px;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.desi-nl-button:hover {
    background: #235e50;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 122, 104, 0.25);
}

.desi-kvkk-wrap {
    margin-top: 10px;
    padding-left: 6px;
}

.desi-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
    cursor: pointer;
}

.desi-checkbox-label a {
    color: #2D7A68;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Ana Footer Menüsü */
.desi-footer-main-section {
    padding: 55px 0 30px;
    background: #ffffff;
}

.desi-footer-heading {
    position: relative;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0f172a;
    margin-bottom: 22px;
    padding-bottom: 12px;
}

.desi-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 3px;
    background: #2D7A68;
    border-radius: 2px;
}

.desi-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.desi-footer-links li a {
    display: inline-block;
    color: #475569;
    font-size: 14px;
    font-weight: 450;
    text-decoration: none;
    transition: all 0.2s ease;
}

.desi-footer-links li a:hover {
    color: #2D7A68;
    transform: translateX(4px);
}

/* İletişim Kolonu */
.desi-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.desi-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.desi-contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #f1f5f9;
    color: #2D7A68;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.desi-contact-item:hover .desi-contact-icon {
    background: rgba(45, 122, 104, 0.1);
    color: #2D7A68;
}

.desi-contact-body {
    display: flex;
    flex-direction: column;
}

.desi-contact-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 2px;
}

.desi-contact-val {
    color: #1e293b;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.2s ease;
}

a.desi-contact-val:hover {
    color: #2D7A68;
}

.desi-address-val {
    font-style: normal;
    color: #475569;
}

/* Sosyal Medya İkonları */
.desi-footer-social {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
}

.desi-social-title {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
    margin-bottom: 10px;
}

.desi-social-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.desi-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.desi-social-btn img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.desi-social-btn:hover {
    background: #ffffff;
    border-color: #2D7A68;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(45, 122, 104, 0.15);
}

.desi-social-btn:hover img {
    transform: scale(1.1);
}

/* Mobil Accordion Düzeni */
.desi-footer-accordion {
    padding: 0;
    margin: 0;
    list-style: none;
    border-top: 1px solid #e2e8f0;
}

.desi-accordion-item {
    border-bottom: 1px solid #e2e8f0;
}

.desi-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 4px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: #0f172a !important;
    text-decoration: none !important;
}

.desi-accordion-header::before {
    display: none !important;
}

.desi-acc-chevron {
    color: #94a3b8;
    transition: transform 0.3s ease;
}

.uk-open > .desi-accordion-header .desi-acc-chevron {
    transform: rotate(180deg);
    color: #2D7A68;
}

.desi-accordion-body {
    padding-bottom: 18px;
    padding-left: 6px;
}

/* Alt Bar: Copyright & Ödeme İkonları */
.desi-footer-bottom {
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
}

.desi-copyright-text {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.desi-payment-list {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.desi-payment-badge {
    padding: 4px 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease;
}

.desi-payment-badge:hover {
    border-color: #cbd5e1;
}

.desi-payment-badge img {
    height: 18px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 959px) {
    .desi-newsletter-box {
        padding: 24px 20px;
    }
    .desi-newsletter-title {
        text-align: center;
        margin-bottom: 18px;
    }
    .desi-newsletter-badge {
        display: flex;
        width: fit-content;
        margin: 0 auto 10px auto;
    }
    .desi-footer-bottom {
        text-align: center;
    }
    .desi-copyright-text {
        margin-bottom: 12px;
    }
}
/* ==========================================================================
   HEADER COMPONENT STYLES (MIGRATED FROM HEADER.SCSS & INLINE TPL)
   ========================================================================== */

/* Header Wrapper & Temel Reset */
#header-wrapper {
    width: 100%;
    position: relative;
    z-index: 980;
}

/* Header Top Bar */
#header-wrapper #header-top.uk-background-secondary {
    background-color: var(--desi-dark-top, #000000) !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
}

#header-wrapper #header-top.uk-light,
#header-wrapper #header-top.uk-light a {
    color: #ffffff;
}

#header-wrapper #header-top .uk-subnav > li > a {
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 250ms ease-in-out;
}

#header-wrapper #header-top .uk-subnav > li > a:hover {
    color: var(--desi-red, #e30613);
}

#header-wrapper #header-top .header-top-left > li + li,
#header-wrapper #header-top .header-top-right > li + li {
    margin-left: 4px;
}

#header-wrapper #header-top .header-top-left > li > a,
#header-wrapper #header-top .header-top-right > li > a {
    padding-left: 8px;
    padding-right: 8px;
}

#header-wrapper #header-top .header-top-right {
    gap: 2px;
}

#header-wrapper #header-top .header-top-right > :not(:first-child)::before {
    content: none !important;
    margin: 0 !important;
}

/* Main Navbar & Logo */
#header-main .uk-navbar-container {
    background-color: #ffffff !important;
}

#logo,
#logo p,
#logo div {
    display: flex;
    align-items: center;
    height: 38px;
    margin: 0;
}

@media (min-width: 960px) {
    #logo,
    #logo p,
    #logo div {
        height: 48px;
    }
}

#logo img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

/* Desktop Main Menu */
#header-wrapper .uk-navbar-nav.menu > li > a {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    position: relative;
    text-transform: uppercase;
    transition: color 250ms ease-in-out;
}

#header-wrapper .uk-navbar-nav.menu > li > a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--desi-red, #e30613);
    transform: scaleX(0);
    opacity: 0;
    transition: transform 250ms ease-in-out, opacity 250ms ease-in-out;
}

#header-wrapper .uk-navbar-nav.menu > li > a:hover {
    color: var(--desi-red, #e30613);
}

#header-wrapper .uk-navbar-nav.menu > li > a:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

/* Header Iconnav (Arama, Üye, Favori, Sepet) */
#header-wrapper .uk-iconnav > li {
    margin-left: 14px;
}

#header-wrapper .uk-iconnav > li:first-child {
    margin-left: 0;
}

#header-wrapper .uk-iconnav a {
    color: #0f172a !important;
    position: relative;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    transition: color 250ms ease-in-out;
}

#header-wrapper .uk-iconnav a svg {
    stroke: currentColor !important;
    color: inherit !important;
    transition: stroke 250ms ease-in-out, color 250ms ease-in-out;
}

#header-wrapper .uk-iconnav a:hover,
#header-wrapper .uk-iconnav a:hover svg {
    color: var(--desi-red, #e30613) !important;
    stroke: var(--desi-red, #e30613) !important;
}

/* Sepet ve Favori Sayaç Rozetleri */
#header-wrapper .uk-iconnav a .cart-soft-count,
#header-wrapper .uk-iconnav a .favourite-soft-count {
    position: absolute;
    top: -6px;
    right: -6px;
    z-index: 2;
    pointer-events: none;
    background-color: var(--desi-red, #e30613);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    padding: 0 4px;
    border-radius: 8px;
    text-align: center;
}

/* Dil ve Para Birimi Seçicileri */
#site-language-select,
[data-toggle="language"] {
    background-image: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    padding-right: 10px !important;
}

[id*="language-currency-btn"]::after,
.language-select::after {
    display: none !important;
    content: none !important;
}

/* Sticky Header Durumu */
.header-sticky #header-main {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    padding-top: 6px;
    padding-bottom: 6px;
    transition: all 0.3s ease;
}

#header-sticky.uk-sticky-fixed {
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Inline Canlı Arama (Header Navbar) */
form#search .search-form-list {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 999;
    overflow-y: auto;
    max-height: 380px;
    width: 100%;
    max-width: 600px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: var(--desi-radius-md, 10px);
}

/* Modal Canlı Arama (#mobile-search-modal) */
#search-modal {
    max-width: 680px;
    margin: 0 auto;
}

#search-modal .search-form-list {
    position: static !important;
    transform: none !important;
    margin: 20px auto 0 !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    max-height: 50vh !important;
    overflow-y: auto !important;
    background: #ffffff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    border-radius: var(--desi-radius-md, 10px) !important;
}

.search-form-list[v-cloak] {
    display: none !important;
}

.search-form-list .dynamic-search ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.search-form-list .dynamic-search ul > li {
    padding: 6px 0;
    border-bottom: 1px solid #f1f5f9;
}

.search-form-list .dynamic-search ul > li > a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #334155;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.search-form-list .dynamic-search ul > li > a:hover {
    color: var(--desi-red, #e30613);
}

.search-form-list .dynamic-search .search-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px;
    background: #f8fafc;
}

.search-form-list .dynamic-search .search-image img,
.search-form-list .dynamic-search img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* Mobil Menü (Offcanvas) */
[id*="mobile-menu"] .uk-offcanvas-bar {
    background: #0f172a;
    padding: 24px 20px;
    color: #ffffff;
}

[id*="mobile-menu"] .uk-offcanvas-bar .uk-heading-bullet {
    margin-top: 14px;
    margin-bottom: 8px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
}

[id*="mobile-menu"] .uk-nav-default > li > a {
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    color: #ffffff !important;
}

[id*="mobile-menu"] .uk-nav-default > li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[id*="mobile-menu"] .uk-nav-sub {
    padding-left: 12px;
}

[id*="mobile-menu"] .uk-nav-sub > li > a {
    color: #cbd5e1 !important;
    font-size: 14px;
    padding: 6px 0;
}

[id*="mobile-menu"] .uk-nav-sub > li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* UIkit Native Totop (Yukarı Kaydır) Butonu */
.scroll-to-up.uk-totop {
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: var(--desi-green, #2D7A68) !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22) !important;
    z-index: 9999 !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.scroll-to-up.uk-totop:hover {
    background: var(--desi-green-hover, #246354) !important;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(45, 122, 104, 0.4) !important;
}

.scroll-to-up.uk-totop svg {
    color: #ffffff !important;
    stroke: #ffffff !important;
}

/* ==========================================================================
   HEADER RESPONSIVE RULES (MOBİL HİZALAMALARI & TAŞMA KORUMASI)
   ========================================================================== */
@media (max-width: 959px) {
    #header-top {
        display: none !important;
    }

    html body #header-main .uk-navbar,
    html body #header-main [uk-navbar] {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        height: auto !important;
        min-height: 56px;
    }

    html body #header-main .uk-navbar-left {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        flex: 0 1 auto !important;
        width: auto !important;
        min-width: 0 !important;
        position: static !important;
    }

    html body #header-main .uk-navbar-right {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        flex: 0 0 auto !important;
        width: auto !important;
        margin-left: auto !important;
        position: static !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;
        padding-bottom: 0 !important;
    }

    html body #header-main .uk-container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    /* Mobilde inline desktop arama çubuğunu gizle */
    #header-main .nav-overlay.uk-navbar-left.uk-flex-1 {
        display: none !important;
    }

    .scroll-to-up {
        bottom: 80px !important;
    }
}



/* ==========================================================================
   SHOWCASE / VİTRİN BİLEŞENİ STİLLERİ (DESi Master Showcase)
   ========================================================================== */
.showcase-default-block {
    margin-top: 20px;
    margin-bottom: 30px;
}

.showcase-default-block .block-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--desi-text-dark, #0f172a);
}

/* Vitrin Tab Başlıkları */
.showcase-default-block .showcase-tab-titles .showcase-tab-item {
    border-radius: 8px;
    padding: 6px 16px;
    background: #f1f5f9;
    color: #475569;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.showcase-default-block .showcase-tab-titles .showcase-tab-item .tab-name {
    font-weight: 600;
    font-size: 13px;
}

.showcase-default-block .showcase-tab-titles li.uk-active .showcase-tab-item {
    background: var(--desi-primary, #2D7A68);
    color: #ffffff;
}

/* Vitrin Ürün Kartı */
.showcase-default-block .product-item .product-card-inner {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    overflow: hidden;
}

.showcase-default-block .product-item .product-card-inner:hover {
    border-color: var(--desi-primary, #2D7A68);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.showcase-default-block .product-item .uk-card-header {
    padding: 12px 14px 8px 14px;
    border-bottom: 1px solid #f8fafc;
}

.showcase-default-block .product-item .uk-card-header .brand-title {
    font-size: 11px;
    letter-spacing: 0.5px;
    color: #94a3b8;
    text-transform: uppercase;
}

.showcase-default-block .product-item .uk-card-header .add-favourite-btn {
    width: 28px;
    height: 28px;
    background: transparent;
    color: #94a3b8;
    transition: color 0.2s ease, transform 0.2s ease;
}

.showcase-default-block .product-item .uk-card-header .add-favourite-btn:hover {
    color: var(--desi-accent, #e11d48);
    transform: scale(1.15);
}

/* Vitrin Ürün Başlık Formatı (Smarty'den gelen DESi Kırmızı / Model Siyah Kalın) */
.showcase-default-block .product-item .uk-card-title {
    margin: 0;
    line-height: 1.35;
}

.showcase-default-block .product-item .uk-card-title .product-title {
    text-decoration: none;
    display: block;
    color: inherit;
}

.showcase-default-block .product-item .desi-brand-prefix {
    color: var(--desi-accent, #e11d48);
    font-weight: 800;
    margin-right: 5px;
    display: inline-block;
}

.showcase-default-block .product-item .desi-model-name {
    color: #0f172a;
    font-weight: 700;
    display: inline;
    margin-right: 5px;
}

.showcase-default-block .product-item .desi-title-rest {
    display: block;
    font-weight: 400;
    color: #64748b;
    font-size: 13px;
    line-height: 1.35;
    margin-top: 2px;
}

/* Vitrin Görsel ve Fiyat Rozeti */
.showcase-default-block .product-item .uk-card-media-top {
    min-height: 200px;
    padding: 10px;
    background: #ffffff;
}

.showcase-default-block .product-item .uk-card-media-top .image-wrapper img {
    max-height: 220px;
    object-fit: contain;
    margin: 0 auto;
    transition: transform 0.25s ease;
}

.showcase-default-block .product-item .product-card-inner:hover .image-wrapper img {
    transform: scale(1.03);
}

.showcase-default-block .product-item .product-price-tag-wrapper {
    z-index: 2;
}

.showcase-default-block .product-item .product-price-tag-wrapper .price-tag-badge {
    background: #0f172a;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.2px;
}

.showcase-default-block .product-item .product-price-tag-wrapper .product-discounted-price {
    font-size: 11px;
    color: #94a3b8;
    text-decoration: line-through;
    margin-bottom: 2px;
}

/* Vitrin Slider Nav Okları */
.showcase-default-block .showcase-slidenav-prev,
.showcase-default-block .showcase-slidenav-next {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.showcase-default-block .showcase-slidenav-prev:hover,
.showcase-default-block .showcase-slidenav-next:hover {
    background: #ffffff;
    color: var(--desi-primary, #2D7A68);
    border-color: var(--desi-primary, #2D7A68);
    transform: scale(1.08);
}

/* ==========================================================================
   SHOWCASE CATALOG SECTION (Grid / Katalog Görünümü)
   ========================================================================== */
.showcase-catalog-section {
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-top: 30px;
    padding-bottom: 45px;
    box-sizing: border-box;
    display: block;
}

.showcase-catalog-section .uk-container,
.showcase-catalog-section.uk-section .uk-container {
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box;
}

.showcase-catalog-section .uk-grid {
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center;
}


.showcase-catalog-section .block-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--desi-text-dark, #0f172a);
    letter-spacing: -0.3px;
}


/* Tablar */
.showcase-catalog-section .showcase-tab-titles {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
}

.showcase-catalog-section .showcase-tab-titles .showcase-tab-item {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    transition: all 0.2s ease;
}

.showcase-catalog-section .showcase-tab-titles .showcase-tab-item .tab-name {
    font-weight: 600;
    font-size: 13px;
    color: #475569;
}

.showcase-catalog-section .showcase-tab-titles li.uk-active .showcase-tab-item {
    background-color: #ffffff;
    border-color: var(--desi-primary, #2D7A68);
    box-shadow: 0 2px 8px rgba(45, 122, 104, 0.12);
}

.showcase-catalog-section .showcase-tab-titles li.uk-active .showcase-tab-item .tab-name {
    color: var(--desi-primary, #2D7A68);
}


/* ==========================================================================
   DESI SHORTS SECTION (YOUTUBE SHORTS GRID & MODALS)
   ========================================================================== */
.shorts-section {
    background-color: #f8fafc;
    padding: 80px 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    font-family: var(--desi-font-sans, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
}

.shorts-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--desi-primary, #2D7A68);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(45, 122, 104, 0.08);
    padding: 6px 14px;
    border-radius: var(--desi-radius-pill, 9999px);
    margin-bottom: 16px;
}

.shorts-badge .badge-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--desi-primary, #2D7A68);
}

.shorts-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--desi-text-dark, #0f172a);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 16px 0;
}

.shorts-desc {
    font-size: 1rem;
    color: var(--desi-text-muted, #64748b);
    line-height: 1.6;
    margin-bottom: 28px;
}

/* Video Kart Yapısı */
.shorts-section .video-card {
    position: relative;
    border-radius: var(--desi-radius-lg, 16px);
    overflow: hidden;
    background: #0f172a;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease, box-shadow 0.35s ease;
    display: block;
    text-decoration: none !important;
    cursor: pointer;
}

.shorts-section .video-card:hover { 
    transform: translateY(-6px); 
    border-color: var(--desi-primary, #2D7A68);
    box-shadow: 0 18px 36px rgba(45, 122, 104, 0.18);
}

.shorts-section .thumb-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.shorts-section .video-card:hover .thumb-bg { 
    opacity: 1; 
    transform: scale(1.06); 
}

/* Yükseklik & Orantı */
.shorts-section .main-shorts-height { 
    height: 580px; 
    position: relative;
}

.shorts-section .small-shorts-height { 
    height: 282px; 
    position: relative;
}

/* Play Butonu */
.shorts-section .play-trigger {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff; 
    z-index: 5;
    background: rgba(15, 23, 42, 0.65);
    width: 64px; 
    height: 64px;
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.shorts-section .play-trigger svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
    margin-left: 3px;
}

.shorts-section .small-video .play-trigger { 
    width: 44px; 
    height: 44px; 
}

.shorts-section .small-video .play-trigger svg { 
    width: 18px; 
    height: 18px; 
}

.shorts-section .video-card:hover .play-trigger { 
    background: var(--desi-primary, #2D7A68); 
    color: #ffffff;
    transform: translate(-50%, -50%) scale(1.12);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(45, 122, 104, 0.5);
}

/* YouTube Kanal Kutusu (CTA) */
.shorts-section .cta-content { 
    padding-right: 32px; 
}

.shorts-section .youtube-join-box {
    display: block;
    padding: 18px 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--desi-radius-lg, 16px);
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.shorts-section .youtube-join-box:hover { 
    background: #ffffff; 
    border-color: #e30613;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(227, 6, 19, 0.12);
}

.shorts-section .yt-icon-wrap {
    width: 44px; 
    height: 44px;
    background: #e30613; 
    border-radius: 12px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: #ffffff !important;
    flex-shrink: 0;
}

.shorts-section .yt-icon-wrap svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Shorts Modal Formatı (Mobil Ekran Oranı) */
.shorts-modal .uk-modal-dialog {
    background: #000000 !important;
    border-radius: 16px;
    overflow: hidden;
    max-width: 420px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.shorts-modal iframe {
    display: block;
    width: 100%;
    height: 740px;
    max-height: 85vh;
    border: none;
}

@media (max-width: 959px) {
    .shorts-section {
        padding: 50px 0;
    }
    .shorts-section .cta-content { 
        margin-bottom: 36px; 
        text-align: center; 
        padding-right: 0; 
    }
    .shorts-section .youtube-join-box { 
        max-width: 320px; 
        margin: 0 auto; 
        text-align: left; 
    }
    .shorts-section .main-shorts-height { 
        height: 420px; 
    }
    .shorts-section .small-shorts-height { 
        height: 200px; 
    }
}
