/* ==========================================================================
   Liste Temasi - Ana Tema Stilleri
   Sade, temiz ve minimal tasarim
   ========================================================================== */

/* ========== CSS Degiskenleri ========== */
:root {
    --liste-orange: #f39c12;
    --liste-orange-dark: #e67e22;
    --liste-orange-light: #fef9f0;
    --liste-dark-blue: #1a2744;
    --liste-dark-blue-light: #2c3e50;
    --liste-white: #ffffff;
    --liste-bg: #f5f6f8;
    --liste-border: #e8e8e8;
    --liste-border-light: #f0f0f0;
    --liste-text: #333333;
    --liste-text-light: #777777;
    --liste-max-width: 1200px;
    --liste-spacing: 20px;
    --liste-radius: 6px;
    --liste-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
}

/* ========== Global Reset ========== */
*, *::before, *::after { box-sizing: border-box; }

/* ========== FOUC Önleme: JS çalışana kadar yanlış butonları gizle ========== */
/* Liste sayfalarında: WhatsApp butonlarını gizle (JS "Daha Fazla Bilgi Al"a çevirecek) - sadece JS tarafından dönüştürülecek olanlar */
body:not(.single-product):not(.liste-js-ready) .liste-urun-karti__teklif-btn.liste-urun-karti__whatsapp-btn:not(.liste-urun-karti__daha-fazla):not([data-liste-daha-fazla="1"]),
body:not(.single-product):not(.liste-js-ready) .liste-loop-kft-teklif.liste-loop-kft-whatsapp:not(.liste-loop-kft-daha-fazla):not([data-liste-daha-fazla="1"]),
body:not(.single-product):not(.liste-js-ready) .liste-urun-karti a[href*="wa.me"]:not(.liste-urun-karti__daha-fazla):not([data-liste-daha-fazla="1"]),
body:not(.single-product):not(.liste-js-ready) .liste-loop-kft a[href*="wa.me"]:not(.liste-loop-kft-daha-fazla):not([data-liste-daha-fazla="1"]) {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Tekil ürün sayfasında: "Teklif Al" metinli butonları gizle (JS WhatsApp'a çevirecek) - sadece JS tarafından dönüştürülecek olanlar */
body.single-product:not(.liste-js-ready) .liste-urun-karti__teklif-btn:not(.liste-urun-karti__whatsapp-btn):not(.liste-urun-karti__daha-fazla):not([data-liste-wa-done="1"]),
body.single-product:not(.liste-js-ready) .liste-loop-kft-teklif:not(.liste-loop-kft-whatsapp):not(.liste-loop-kft-daha-fazla):not([data-liste-wa-done="1"]) {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--liste-font);
    font-size: 15px;
    line-height: 1.6;
    color: var(--liste-text);
    background: var(--liste-bg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(243, 156, 18, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(26, 39, 68, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #f5f6f8 0%, #ffffff 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden; /* Yatay scroll'u engelle */
    position: relative;
}

/* Dekoratif arka plan elementleri */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(243, 156, 18, 0.01) 2px, rgba(243, 156, 18, 0.01) 4px),
        repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(26, 39, 68, 0.01) 2px, rgba(26, 39, 68, 0.01) 4px);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--liste-text);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover { color: var(--liste-orange); }

/* ========== Tipografi ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--liste-dark-blue-light);
}
h1 { font-size: 1.8rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }
h4 { font-size: 1.05rem; }
p { margin-top: 0; margin-bottom: 1rem; }

/* ========== Layout ========== */
.site-container {
    max-width: var(--liste-max-width);
    margin: 0 auto;
    padding: 0 var(--liste-spacing);
}

/* Rank Math breadcrumb - header altında */
.liste-breadcrumb-wrap {
    padding: 10px 0;
    font-size: 0.875rem;
}
.liste-breadcrumb-wrap .rank-math-breadcrumb {
    margin: 0;
    padding: 0;
    list-style: none;
}
.liste-breadcrumb-wrap .rank-math-breadcrumb li {
    display: inline;
}
.liste-breadcrumb-wrap .rank-math-breadcrumb a {
    color: inherit;
    text-decoration: none;
}
.liste-breadcrumb-wrap .rank-math-breadcrumb a:hover {
    text-decoration: underline;
}

.content-area {
    min-height: 50vh;
    padding: 60px 0;
    position: relative;
}

/* Content area için dekoratif elementler - tıklamayı engellemesin */
.content-area::before,
.content-area::after {
    pointer-events: none;
}
.content-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--liste-orange), transparent);
    opacity: 0.3;
}

.content-area::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--liste-orange), transparent);
    opacity: 0.3;
}

/* Elementor sayfalarında content-area padding'ini kaldır */
body.liste-elementor-page .content-area,
body.elementor-page .content-area {
    padding: 0 !important;
}

/* Slider içeren sayfalarda content-area padding yok */
.content-area:has(.liste-hero-slider) {
    padding: 0 !important;
}

/* Blog yazısı sayfasında sadece slider öğelerini gizle (section'ı değil, makale görünsün) */
body.single-post .liste-hero-slider,
body.single .liste-hero-slider,
body.single-post .liste-hero-nav,
body.single-post .swiper-button-prev,
body.single-post .swiper-button-next,
body.single-post .liste-hero-pagination,
body.single-post .swiper-pagination,
body.single-post #primary .liste-hero-slider,
body.single-post #primary .swiper,
body.single-post #primary [class*="swiper-button"],
body.single-post #primary .liste-hero-nav,
body.single #primary .liste-hero-slider,
body.single #primary .swiper,
body.single #primary [class*="swiper-button"],
body.single #primary .liste-hero-nav {
    display: none !important;
}
/* Single post: makale içeriği kesilmesin */
body.single-post #primary,
body.single-post .content-area,
body.single-post .entry-content,
body.single #primary .entry-content {
    overflow: visible !important;
    max-height: none !important;
}
/* Blog listesi sayfasında slider tamamen gizle (kart açıldığında da) */
.liste-blog-card .liste-hero-slider,
.liste-blog-card .swiper,
.liste-blog-card [class*="swiper-button"],
.liste-blog-card .liste-hero-nav,
.liste-blog-card .swiper-pagination,
.liste-blog-card [class*="swiper"],
.liste-blog-card .liste-hero-pagination {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}
/* Kart içindeki slider'ı içeren Elementor bölümünü tamamen gizle */
.liste-blog-card .elementor-section:has(.liste-hero-slider),
.liste-blog-card .elementor-section:has(.swiper),
.liste-blog-card .elementor-widget-wrap:has(.liste-hero-slider),
.liste-blog-card .elementor-widget-wrap:has(.swiper) {
    display: none !important;
}
body.blog .liste-blog-card .liste-hero-slider,
body.blog .liste-blog-card .swiper,
body.home .liste-blog-card .liste-hero-slider,
body.home .liste-blog-card .swiper {
    display: none !important;
}

/* ========== Announcement Bar (Kayan Yazi) ========== */
.liste-announcement-bar {
    width: 100%;
    overflow: hidden;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    z-index: 101;
}
.liste-announcement-link {
    display: block;
    text-decoration: none;
}
.liste-announcement-link:hover {
    opacity: 0.85;
}
.liste-announcement-track {
    display: inline-flex;
    animation: liste-marquee var(--ann-speed, 30s) linear infinite;
    padding: 8px 0;
}
.liste-announcement-text {
    display: inline-block;
    padding: 0 60px;
}

@keyframes liste-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hover'da duraksatma */
.liste-announcement-bar:hover .liste-announcement-track {
    animation-play-state: paused;
}

/* ========== Header Üst Bar (Adres, Telefon, Sosyal) ========== */
.liste-header-top {
    background: #2d2d2d;
    color: #fff;
    font-size: 13px;
    position: relative;
    z-index: 101;
}
.liste-header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px var(--liste-spacing);
    gap: 16px;
}
.liste-header-top-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.liste-header-icon {
    flex-shrink: 0;
    margin-right: 6px;
    vertical-align: middle;
    opacity: 0.9;
}
.liste-header-address,
.liste-header-phone {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.liste-header-phone:hover {
    color: #fff;
    opacity: 0.85;
}
.liste-header-social {
    display: flex;
    align-items: center;
    gap: 14px;
}
.liste-header-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}
.liste-header-social a:hover {
    color: #fff;
    opacity: 1;
}

/* ========== Navbar (Logo, Menü, Teklif, Arama, Dil) ========== */
.site-header.liste-navbar {
    background: rgba(70, 68, 65, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: none;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.site-header.liste-navbar .site-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    gap: 20px;
}

.site-logo {
    flex-shrink: 0;
    line-height: 0;
}
.site-logo a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 0;
}
.site-logo img {
    max-height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}
/* Navbar içinde logo metni beyaz */
.liste-navbar .site-title-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
}
.liste-navbar .site-title-link:hover {
    color: rgba(255,255,255,0.9);
}
.liste-navbar .site-logo img {
    filter: brightness(0) invert(1);
}

/* Navigation - navbar beyaz */
.liste-navbar .site-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 4px;
}
.liste-navbar .site-navigation li { position: relative; }
.liste-navbar .site-navigation a {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 14px;
    display: block;
    border-radius: 4px;
    transition: all 0.15s ease;
    text-transform: none;
    letter-spacing: 0.02em;
}
.liste-navbar .site-navigation a:hover {
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.1);
}
.liste-navbar .site-navigation .current-menu-item > a,
.liste-navbar .site-navigation .current_page_item > a {
    color: #fff;
    background: rgba(255,255,255,0.15);
}

/* Navbar sağ: Teklif İste, Arama, Dil */
.liste-navbar-right {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.liste-teklif-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-decoration: underline;
    padding: 8px 12px;
    transition: opacity 0.2s ease;
}
.liste-teklif-link:hover {
    color: #fff;
    opacity: 0.9;
}
.liste-search-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    border-radius: 4px;
    transition: background 0.2s ease;
}
.liste-search-toggle:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* Arama dropdown – navbar */
.liste-search-wrap {
    position: relative;
}
.liste-search-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 280px;
    background: var(--liste-white);
    border: 1px solid var(--liste-border);
    border-radius: var(--liste-radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 12px;
    z-index: 100;
}
.liste-search-wrap.is-open .liste-search-dropdown {
    display: block;
}
.liste-search-dropdown[hidden] {
    display: none !important;
}
.liste-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
}
.liste-search-field {
    flex: 1;
    min-width: 0;
    padding: 10px 14px;
    border: 1px solid var(--liste-border);
    border-radius: 4px;
    font-size: 14px;
    color: var(--liste-text);
}
.liste-search-field:focus {
    outline: none;
    border-color: var(--liste-orange);
    box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.2);
}
.liste-search-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    border-radius: 4px;
    background: var(--liste-orange);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
}
.liste-search-submit:hover {
    background: var(--liste-orange-dark);
}
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.liste-lang-selector {
    margin-left: 4px;
}
.liste-lang-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: rgba(227, 10, 23, 0.9);
    border-radius: 4px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.liste-lang-flag:hover {
    color: #fff;
    opacity: 0.9;
}

/* Header Actions (cart + account) - navbar'da beyaz */
.liste-navbar .liste-header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
    flex-shrink: 0;
}
.liste-navbar .liste-header-cart,
.liste-navbar .liste-user-toggle {
    color: #fff;
}
.liste-navbar .liste-header-cart:hover,
.liste-navbar .liste-user-toggle:hover,
.liste-navbar .liste-user-menu.is-open .liste-user-toggle {
    color: #fff;
    background: rgba(255,255,255,0.15);
}

/* Header Actions (cart + account) - genel */
.liste-header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
    flex-shrink: 0;
}

/* Header Cart Icon */
.liste-header-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--liste-dark-blue-light);
    border-radius: 50%;
    transition: all 0.15s ease;
}
.liste-header-cart:hover {
    color: var(--liste-orange);
    background: var(--liste-orange-light);
}
.liste-cart-count {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 18px;
    height: 18px;
    background: var(--liste-orange);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    border-radius: 9px;
    padding: 0 4px;
}
/* Badge 0 iken gizle */
.liste-cart-count:empty,
.liste-cart-count[data-count="0"] {
    display: none;
}

/* User Menu — ikon + dropdown */
.liste-user-menu {
    position: relative;
}
.liste-user-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--liste-dark-blue-light);
    transition: all 0.15s ease;
    padding: 0;
}
.liste-user-toggle:hover,
.liste-user-menu.is-open .liste-user-toggle {
    color: var(--liste-orange);
    background: var(--liste-orange-light);
}

/* Dropdown panel */
.liste-user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid var(--liste-border);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    padding: 6px 0;
    z-index: 200;
}
.liste-user-menu.is-open .liste-user-dropdown {
    display: block;
}

/* Giris yapmis — kullanici bilgisi */
.liste-dropdown-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
}
.liste-dropdown-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.liste-dropdown-user-info div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.liste-dropdown-user-info strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--liste-dark-blue-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.liste-dropdown-user-info small {
    font-size: 11px;
    color: var(--liste-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Giris yapmamis — misafir header */
.liste-dropdown-guest-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
}
.liste-dropdown-guest-header span {
    font-size: 14px;
    font-weight: 600;
    color: var(--liste-dark-blue-light);
}

/* Dropdown linkleri */
.liste-user-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-size: 13px;
    color: var(--liste-text);
    transition: all 0.1s ease;
}
.liste-user-dropdown a:hover {
    background: var(--liste-orange-light);
    color: var(--liste-orange);
}
.liste-user-dropdown a svg {
    flex-shrink: 0;
    opacity: 0.5;
}
.liste-user-dropdown a:hover svg {
    opacity: 1;
}
.liste-dropdown-divider {
    height: 1px;
    background: var(--liste-border-light);
    margin: 4px 0;
}

/* Giris Yap butonu — dropdown icinde */
.liste-dropdown-login-btn {
    font-weight: 600 !important;
    color: var(--liste-orange) !important;
}
.liste-dropdown-login-btn svg {
    opacity: 0.8 !important;
    stroke: var(--liste-orange) !important;
}

/* Kayit Ol butonu — dropdown icinde turuncu */
.liste-dropdown-register-btn {
    margin: 4px 10px 6px !important;
    padding: 9px 14px !important;
    background: var(--liste-orange) !important;
    color: #fff !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    justify-content: center;
}
.liste-dropdown-register-btn:hover {
    background: var(--liste-orange-dark) !important;
    color: #fff !important;
}
.liste-dropdown-register-btn svg {
    stroke: #fff !important;
    opacity: 0.9 !important;
}

/* Cikis Yap */
.liste-logout-link:hover {
    color: #e74c3c !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--liste-dark-blue-light);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.liste-navbar .mobile-menu-toggle span {
    background: #fff;
}

/* ========== Blog Posts (Sample Page) ========== */
.liste-blog-posts {
    margin-top: 40px;
}

.liste-blog-card {
    transition: all 0.3s ease;
}

.liste-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: var(--liste-orange);
}

.liste-blog-card h3 a:hover {
    color: var(--liste-orange);
}

.liste-blog-card a[href*="Devamını"]:hover {
    color: var(--liste-orange-dark);
}

@media (max-width: 768px) {
    .liste-blog-posts > div {
        grid-template-columns: 1fr !important;
    }
}

/* ========== Footer ========== */
.site-footer {
    background: var(--liste-dark-blue);
    color: rgba(255,255,255,0.7);
    padding: 48px 0 24px;
    margin-top: 40px;
}
.site-footer .site-container {
    max-width: var(--liste-container, 1200px);
    margin: 0 auto;
    padding: 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
}
.footer-col {
    min-width: 0;
}
.footer-title {
    color: var(--liste-white);
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 14px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.site-footer p { margin: 0 0 8px 0; font-size: 13px; line-height: 1.5; }
.site-footer p:last-child { margin-bottom: 0; }
.site-footer a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s ease; }
.site-footer a:hover { color: var(--liste-white); }

.footer-brand .footer-logo a,
.footer-brand .footer-site-name {
    color: var(--liste-white);
    font-size: 18px;
    font-weight: 700;
}
.footer-brand .footer-logo img { max-height: 40px; width: auto; display: block; }
.footer-tagline { font-size: 12px; opacity: 0.8; margin-top: 6px !important; }

.footer-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-navigation a { font-size: 13px; }

.footer-address,
.footer-phone {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-icon {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.8;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    transition: background 0.2s ease, color 0.2s ease;
}
.footer-social-links a:hover {
    background: var(--liste-orange);
    color: var(--liste-white);
}

.footer-bottom {
    text-align: center;
}
.footer-copyright {
    font-size: 12px;
    opacity: 0.8;
    margin: 0 !important;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========== Footer Reklart stili (koyu tema, kırmızı vurgu) ========== */
.site-footer--reklart {
    background: #252525;
    color: #ffffff;
    padding: 48px 0 60px;
    margin-top: 40px;
    position: relative;
}
.site-footer--reklart .footer-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 16px 0;
    text-transform: none;
    letter-spacing: 0;
}
.site-footer--reklart .footer-tagline {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    margin: 8px 0 20px 0;
}
.site-footer--reklart .footer-brand .footer-logo a,
.site-footer--reklart .footer-brand .footer-site-name {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
}
.site-footer--reklart .footer-brand .footer-logo img {
    max-height: 44px;
}
.site-footer--reklart a {
    color: rgba(255,255,255,0.9);
}
.site-footer--reklart a:hover {
    color: #ffffff;
}

/* Sosyal ikonlar: kare, ince beyaz çerçeve */
.footer-social-links--square {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.footer-social-links--square a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 2px;
    background: transparent;
    color: #ffffff;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.footer-social-links--square a:hover {
    background: rgba(255,255,255,0.1);
    border-color: #ffffff;
    color: #ffffff;
}

/* İletişim: Adres, Telefon, E-Posta etiketleri */
.site-footer--reklart .footer-label {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.site-footer--reklart .footer-address-text,
.site-footer--reklart .footer-phone-text,
.site-footer--reklart .footer-email-text {
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 14px 0;
}
.site-footer--reklart .footer-email-text:last-child,
.site-footer--reklart .footer-phone-text:last-child,
.site-footer--reklart .footer-address-text:last-child { margin-bottom: 0; }

/* Hizmetlerimiz & Alt Menü listeleri */
.site-footer--reklart .footer-list,
.site-footer--reklart .footer-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.site-footer--reklart .footer-list a,
.site-footer--reklart .footer-navigation a {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
}

/* Alt çizgi ve copyright */
.site-footer--reklart .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
    text-align: left;
}
.site-footer--reklart .footer-copyright {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    margin: 0 !important;
}

/* Yukarı çık butonu: kırmızı kare, sağ alt */
.footer-scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 0;
    background: #c41e3a;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    transition: background 0.2s ease, transform 0.2s ease;
    opacity: 0;
    visibility: hidden;
}
.footer-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
}
.footer-scroll-top:hover {
    background: #a01830;
    color: #ffffff;
    transform: translateY(-2px);
}
.footer-scroll-top:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* ========== İletişim sayfası (sol harita, sağ iletişim) ========== */
.liste-contact-page {
    padding: 32px 20px 48px;
    max-width: var(--liste-max-width, 1200px);
    margin: 0 auto;
}
.liste-contact-page__header {
    margin-bottom: 32px;
    text-align: center;
}
.liste-contact-page__title {
    margin: 0 0 12px 0;
    font-size: 28px;
    font-weight: 700;
    color: var(--liste-dark-blue, #1a2744);
}
.liste-contact-page__excerpt {
    margin: 0;
    font-size: 16px;
    color: var(--liste-text-light, #777);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.liste-contact-page__grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
    margin-bottom: 40px;
}
.liste-contact-page__map {
    min-height: 400px;
    background: var(--liste-border-light, #f0f0f0);
    border-radius: var(--liste-radius, 6px);
    overflow: hidden;
}
.liste-contact-page__map-wrap {
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative;
}
.liste-contact-page__map-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.liste-contact-page__map-placeholder {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    color: var(--liste-text-light, #777);
    font-size: 14px;
}
.liste-contact-page__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.liste-contact-page__card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--liste-border, #e8e8e8);
    border-radius: var(--liste-radius, 6px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.liste-contact-page__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--liste-orange-light, #fef9f0);
    color: var(--liste-orange, #f39c12);
    border-radius: var(--liste-radius, 6px);
}
.liste-contact-page__icon svg {
    width: 24px;
    height: 24px;
}
.liste-contact-page__label {
    margin: 0 0 6px 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--liste-text-light, #777);
}
.liste-contact-page__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: var(--liste-text, #333);
}
.liste-contact-page__text a {
    color: var(--liste-dark-blue, #1a2744);
    font-weight: 500;
}
.liste-contact-page__text a:hover {
    color: var(--liste-orange, #f39c12);
}
.liste-contact-page__content {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--liste-border, #e8e8e8);
}
.liste-contact-page__content.entry-content {
    max-width: none;
}

.liste-contact-page__whatsapp-wrap {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.liste-contact-page__whatsapp-wrap .liste-contact-page__whatsapp-btn,
.liste-contact-page__whatsapp-wrap .liste-contact-page__email-btn {
    width: 100%;
    min-width: 100%;
    justify-content: center;
}
.liste-contact-page__whatsapp-wrap .liste-contact-page__email-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    padding: 12px 20px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: background 0.2s ease, transform 0.15s ease;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.35);
}
.liste-contact-page__whatsapp-wrap .liste-contact-page__email-btn:hover {
    background: #2980b9;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}
.liste-contact-page__whatsapp-wrap .liste-contact-page__email-btn svg {
    flex-shrink: 0;
}
.liste-contact-page__whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: background 0.2s ease, transform 0.15s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
}
.liste-contact-page__whatsapp-btn:hover {
    background: #20bd5a;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}
.liste-contact-page__whatsapp-btn svg {
    flex-shrink: 0;
}

/* WhatsApp butonu – ürün kartı ve listede İletişim sayfasındaki gibi aynı stil */
.liste-urun-karti__teklif-btn.liste-urun-karti__whatsapp-btn,
.woocommerce ul.products li.product .liste-loop-kft-teklif.liste-loop-kft-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: background 0.2s ease, transform 0.15s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
    width: auto;
    min-width: 100%;
}
.liste-urun-karti__teklif-btn.liste-urun-karti__whatsapp-btn:hover,
.woocommerce ul.products li.product .liste-loop-kft-teklif.liste-loop-kft-whatsapp:hover {
    background: #20bd5a;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}
.liste-urun-karti__teklif-btn.liste-urun-karti__whatsapp-btn svg,
.woocommerce ul.products li.product .liste-loop-kft-teklif.liste-loop-kft-whatsapp svg {
    flex-shrink: 0;
}
/* Daha Fazla Bilgi Al – Teklif Al butonu ile birebir aynı */
.liste-urun-karti a.liste-urun-karti__daha-fazla-js,
.liste-urun-karti a.liste-urun-karti__daha-fazla,
.liste-urun-karti .liste-loop-kft-daha-fazla {
    display: block !important;
    width: 100%;
    background: #f39c12 !important;
    color: #ffffff !important;
    padding: 14px 24px;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-align: center;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}
.liste-urun-karti a.liste-urun-karti__daha-fazla-js:hover,
.liste-urun-karti a.liste-urun-karti__daha-fazla:hover,
.liste-urun-karti .liste-loop-kft-daha-fazla:hover {
    background: #e67e22 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(243, 156, 18, 0.4);
}

/* WhatsApp butonu – ürün sayfası (tekil ürün) */
.liste-product-whatsapp {
    margin-top: 1rem;
}
.liste-product-whatsapp .liste-product-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 12px 20px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: background 0.2s ease, transform 0.15s ease;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.35);
}
.liste-product-whatsapp .liste-product-email-btn:hover {
    background: #2980b9;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}
.liste-product-whatsapp .liste-product-email-btn svg {
    flex-shrink: 0;
}
.liste-product-whatsapp .liste-whatsapp-btn,
.liste-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: background 0.2s ease, transform 0.15s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
}
.liste-product-whatsapp .liste-whatsapp-btn:hover,
.liste-whatsapp-btn:hover {
    background: #20bd5a;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}
.liste-product-whatsapp .liste-whatsapp-btn svg,
.liste-whatsapp-btn svg {
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .liste-contact-page__grid {
        grid-template-columns: 1fr;
    }
    .liste-contact-page__map {
        order: 1;
        min-height: 320px;
    }
    .liste-contact-page__map-wrap {
        min-height: 320px;
    }
    .liste-contact-page__info {
        order: 2;
    }
}

/* ========== Butonlar ========== */
.liste-btn,
.site-main .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 20px;
    background: var(--liste-orange);
    color: var(--liste-white);
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: center;
    line-height: 1.4;
}
.liste-btn:hover,
.site-main .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--liste-orange-dark);
    color: var(--liste-white);
}

/* ========== WooCommerce ========== */

/* Shop layout: sidebar + content */
.liste-shop-layout {
    display: flex !important;
    gap: 0;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Shop layout'a dekoratif arka plan */
.liste-shop-layout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(243, 156, 18, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(26, 39, 68, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.liste-shop-layout > * {
    position: relative;
    z-index: 1;
}

/* Shop sayfalarında content-area'nın padding'ini optimize et */
.woocommerce-page .content-area {
    padding: 20px 0;
    position: relative;
}

/* Fiyat listesi ile ürünler bitişik: aradaki tüm boşluk kaldırıldı */
.woocommerce-page .liste-shop-layout {
    gap: 0 !important;
}
.woocommerce-page .liste-shop-content .site-container {
    padding-left: 0 !important;
}

.woocommerce-page .content-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.3), transparent);
    z-index: 1;
}

.woocommerce-page .content-area .liste-shop-layout {
    padding: 0;
    margin-top: 10px;
}

/* Sidebar: Ürün Fiyat Listesi – ürünlerle bitişik */
.liste-shop-sidebar {
    flex: 0 0 216px;
    width: 216px;
    margin-left: 0;
    margin-right: 0;
    position: sticky;
    top: 72px;
    background: var(--liste-white);
    border: 1px solid var(--liste-border);
    border-right: none;
    border-radius: var(--liste-radius) 0 0 var(--liste-radius);
    padding: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.liste-shop-sidebar:hover {
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.1);
    border-color: rgba(243, 156, 18, 0.2);
}

/* Ürün Fiyat Listesi kutusu (ss'teki gibi) */
.liste-product-price-list {
    width: 100%;
    background: var(--liste-white);
    border-radius: var(--liste-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 120px);
}

.liste-product-price-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #3d3d3d;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    user-select: none;
}

.liste-product-price-list-toggle {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #fff;
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.liste-product-price-list.collapsed .liste-product-price-list-toggle {
    transform: rotate(-90deg);
}

.liste-product-price-list.collapsed .liste-product-price-list-inner,
.liste-product-price-list.collapsed .liste-product-price-list-nav {
    display: none;
}

.liste-product-price-list-inner,
.liste-product-price-list-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid var(--liste-border);
    border-top: none;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1 1 auto;
    min-height: 0;
    max-height: calc(100vh - 180px);
    -webkit-overflow-scrolling: touch;
}

.liste-product-price-list-nav {
    display: block;
}

.liste-product-price-list-item {
    margin: 0;
    border-bottom: 1px solid var(--liste-border-light);
}

.liste-product-price-list-item:last-child {
    border-bottom: none;
}

.liste-product-price-list-item a {
    display: block;
    padding: 10px 14px;
    color: var(--liste-text);
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.liste-product-price-list-item a:hover,
.liste-product-price-list-item.current-cat a {
    background: #fef5e7;
    color: var(--liste-orange);
}

.liste-product-price-list-inner .widget {
    margin-bottom: 0;
    border: none;
    padding: 0;
}

.liste-product-price-list-inner .widget-title {
    display: none;
}

.liste-product-price-list-inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border: none;
}

.liste-product-price-list-inner ul li {
    margin: 0;
    border-bottom: 1px solid var(--liste-border-light);
}

.liste-product-price-list-inner ul li:last-child {
    border-bottom: none;
}

.liste-product-price-list-inner ul li a {
    display: block;
    padding: 10px 14px;
    color: var(--liste-text);
    font-size: 13px;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.liste-product-price-list-inner ul li a::before {
    content: '> ';
    color: var(--liste-text-light);
}

.liste-product-price-list-inner ul li a:hover,
.liste-product-price-list-inner ul li.current-cat > a {
    background: #fef5e7;
    color: var(--liste-orange);
}

.liste-shop-sidebar .widget {
    margin-bottom: 16px;
}
.liste-shop-sidebar .widget:last-child {
    margin-bottom: 0;
}

.liste-shop-sidebar .widget-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--liste-text-light);
    margin: 0 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--liste-border);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.liste-shop-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.liste-shop-sidebar ul li {
    margin: 0;
}
.liste-shop-sidebar ul li a {
    display: block;
    padding: 7px 10px;
    color: var(--liste-text);
    font-size: 13px;
    font-weight: 400;
    border-radius: 4px;
    transition: all 0.15s ease;
}
.liste-shop-sidebar ul li a:hover,
.liste-shop-sidebar ul li.current-cat > a {
    color: var(--liste-orange);
    background: var(--liste-orange-light);
}
.liste-shop-sidebar ul.children {
    padding-left: 8px;
    margin-top: 2px;
}
.liste-shop-sidebar ul.children li a {
    font-size: 12px;
    padding: 5px 10px;
}

/* Content area – sidebar ile bitişik */
.liste-shop-content {
    flex: 1;
    min-width: 0;
    position: relative;
    border: 1px solid var(--liste-border);
    border-radius: 0 var(--liste-radius) var(--liste-radius) 0;
    border-left: none;
}

/* Shop content'e dekoratif elementler */
.liste-shop-content::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.05), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.liste-shop-content::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(26, 39, 68, 0.05), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: float 10s ease-in-out infinite;
    animation-delay: -3s;
}

.liste-shop-content > * {
    position: relative;
    z-index: 1;
}

/* WooCommerce product cards */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)) !important;
    gap: 16px !important;
    margin: 0 !important;
    padding: 20px 0 !important;
    list-style: none !important;
    position: relative;
}

/* Ürün grid'ine dekoratif çizgiler */
.woocommerce ul.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.2), transparent);
    z-index: 0;
}

.woocommerce ul.products::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.2), transparent);
    z-index: 0;
}
/* Ürün grid dekoratif çizgileri göster */
.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: block !important;
}
.woocommerce ul.products li.product {
    background: var(--liste-white);
    border: 1px solid var(--liste-border);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
    text-align: center;
    margin: 0 !important;
    width: 100% !important;
    float: none !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.woocommerce ul.products li.product::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.05), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.woocommerce ul.products li.product:hover::before {
    left: 100%;
}

.woocommerce ul.products li.product:hover {
    border-color: var(--liste-orange);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.15);
}

.woocommerce ul.products li.product > * {
    position: relative;
    z-index: 1;
}
.woocommerce ul.products li.product a img {
    border-radius: 8px;
    margin: 0 auto 8px !important;
    transition: transform 0.3s ease;
}

.woocommerce ul.products li.product:hover a img {
    transform: scale(1.05);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 13px;
    font-weight: 600;
    color: var(--liste-text);
    padding: 0 !important;
    margin-bottom: 2px !important;
}
.woocommerce ul.products li.product .price {
    color: var(--liste-orange);
    font-weight: 700;
    font-size: 17px !important;
    margin-bottom: 4px !important;
}
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.add_to_cart_button,
.woocommerce ul.products li.product a.product_type_simple {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 7px 18px !important;
    font-size: 12px !important;
}

.woocommerce .woocommerce-ordering,
.woocommerce .woocommerce-result-count {
    margin-bottom: 20px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(243, 156, 18, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Shop sayfası başlık alanına dekoratif element */
.woocommerce .woocommerce-products-header {
    position: relative;
    padding: 20px 0;
    margin-bottom: 20px;
}

.woocommerce .woocommerce-products-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.3), transparent);
}

/* Magaza slider alani (Elementor template) */
.liste-shop-slider {
    margin-bottom: 20px;
    border-radius: var(--liste-radius);
    overflow: hidden;
}
.liste-shop-slider .elementor-section-wrap > .elementor-section:first-child,
.liste-shop-slider > .elementor-section:first-child,
.liste-shop-slider > div:first-child {
    margin-top: 0 !important;
}
.liste-shop-slider .elementor-section-wrap > .elementor-section:last-child,
.liste-shop-slider > .elementor-section:last-child,
.liste-shop-slider > div:last-child {
    margin-bottom: 0 !important;
}

/* Kategori SEO makale alani (Elementor template) */
.liste-category-article {
    margin-top: 24px;
    padding: 28px 24px;
    background: var(--liste-white);
    border: 1px solid var(--liste-border);
    border-radius: var(--liste-radius);
    overflow: hidden;
}
.liste-category-article .elementor-section-wrap > .elementor-section:first-child,
.liste-category-article > .elementor-section:first-child,
.liste-category-article > div:first-child {
    margin-top: 0 !important;
}
.liste-category-article .elementor-section-wrap > .elementor-section:last-child,
.liste-category-article > .elementor-section:last-child,
.liste-category-article > div:last-child {
    margin-bottom: 0 !important;
}

/* Kategori makalesi (500 kelimelik metin alanı) */
.liste-category-article--text {
    margin-top: 24px;
}
.liste-category-article--text + .liste-category-article--text {
    margin-top: 16px;
}
.liste-category-article__inner {
    max-width: 720px;
    line-height: 1.7;
    font-size: 15px;
    color: var(--liste-text);
}
.liste-category-article__inner p {
    margin-bottom: 1em;
}
.liste-category-article__inner p:last-child {
    margin-bottom: 0;
}
.liste-category-article__inner h1,
.liste-category-article__inner h2,
.liste-category-article__inner h3,
.liste-category-article__inner h4,
.liste-category-article__inner h5,
.liste-category-article__inner h6 {
    margin-top: 1.4em;
    margin-bottom: 0.5em;
    color: var(--liste-dark-blue);
    line-height: 1.3;
}
.liste-category-article__inner h1 { font-size: 1.75rem; margin-top: 0; }
.liste-category-article__inner h2 { font-size: 1.45rem; }
.liste-category-article__inner h3 { font-size: 1.25rem; }
.liste-category-article__inner h4 { font-size: 1.1rem; }
.liste-category-article__inner h5 { font-size: 1rem; }
.liste-category-article__inner h6 { font-size: 0.95rem; }

/* Filtre bari */
.liste-filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
}
.liste-filter-item {
    flex: 1;
    min-width: 140px;
}
.liste-filter-select {
    width: 100%;
    padding: 8px 32px 8px 12px;
    font-size: 13px;
    font-family: inherit;
    color: #333;
    background: #f5f6f8;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: border-color 0.15s ease;
}
.liste-filter-select:hover,
.liste-filter-select:focus {
    border-color: #f39c12;
    outline: none;
}
.liste-filter-clear {
    padding: 8px 16px;
    font-size: 12px;
    color: #999;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    transition: all 0.15s ease;
    white-space: nowrap;
}
.liste-filter-clear:hover {
    color: #e74c3c;
    border-color: #e74c3c;
}

@media (max-width: 768px) {
    .liste-filter-bar {
        gap: 6px;
    }
    .liste-filter-item {
        min-width: calc(50% - 6px);
        flex: none;
    }
}

/* Page title */
.woocommerce .woocommerce-products-header__title {
    margin-bottom: 4px;
}

/* KFT inside shop loop – 2. görsel: 2x2 butonlar + Devamını Gör + Teklif Al */
.woocommerce ul.products li.product .liste-loop-kft {
    margin-top: 12px !important;
    padding: 0 !important;
}

.woocommerce ul.products li.product .liste-loop-kft--compact {
    display: block;
}
.woocommerce ul.products li.product .liste-loop-kft-adet-secimi,
.woocommerce ul.products li.product .liste-loop-kft-adet-ekstra {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}
.woocommerce ul.products li.product .liste-loop-kft-adet-ekstra {
    margin-top: -4px;
}
.woocommerce ul.products li.product .liste-loop-kft-adet-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 10px 14px;
    background: #ffffff;
    border: 2px solid #3498db;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: center;
}
.woocommerce ul.products li.product .liste-loop-kft-adet-btn:hover {
    border-color: #2980b9;
    background: #f8f9fa;
    color: #2c3e50;
}
.woocommerce ul.products li.product .liste-loop-kft-adet-main {
    display: block;
    line-height: 1.3;
}
.woocommerce ul.products li.product .liste-loop-kft-devmami {
    display: inline-block;
    margin-bottom: 10px;
    padding: 0;
    border: none;
    background: none;
    font-size: 13px;
    font-weight: 500;
    color: #3498db;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
}
.woocommerce ul.products li.product .liste-loop-kft-devmami:hover {
    color: #2980b9;
    text-decoration: underline;
}
.woocommerce ul.products li.product .liste-loop-kft-daha-fazla {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: #f39c12;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}
.woocommerce ul.products li.product .liste-loop-kft-daha-fazla:hover {
    background: #e67e22;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(243, 156, 18, 0.4);
}
.woocommerce ul.products li.product .liste-loop-kft-teklif {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: #f39c12;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.woocommerce ul.products li.product .liste-loop-kft-teklif:hover {
    background: #e67e22;
    color: #fff;
}
/* Liste WhatsApp butonu stili theme-style.css’te İletişim sayfası ile aynı blokta */

/* KFT eklentisi: Daha Fazla Bilgi Al butonu - tema ile ayni turuncu stil */
.kft-price-card-footer a.kft-quote-btn.kft-daha-fazla-bilgi {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: #f39c12;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}
.kft-price-card-footer a.kft-quote-btn.kft-daha-fazla-bilgi:hover {
    background: #e67e22;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(243, 156, 18, 0.4);
}

.woocommerce ul.products li.product table.liste-kft-mini {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    border: 1px solid #ddd !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    font-size: 13px !important;
    margin: 12px 0 0 !important;
    table-layout: auto !important;
    background: rgba(255, 255, 255, 0.6) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

.woocommerce ul.products li.product:hover table.liste-kft-mini {
    border-color: rgba(243, 156, 18, 0.4) !important;
    background: rgba(254, 245, 231, 0.4) !important;
    box-shadow: 0 2px 6px rgba(243, 156, 18, 0.1) !important;
}

/* Tablo baslik */
.woocommerce ul.products li.product table.liste-kft-mini thead th {
    background: linear-gradient(135deg, #f5f6f8, #ffffff) !important;
    color: #555 !important;
    padding: 10px 14px !important;
    text-align: center !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    border-bottom: 2px solid rgba(243, 156, 18, 0.2) !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    position: relative;
}

.woocommerce ul.products li.product table.liste-kft-mini thead th::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.4), transparent);
}
.woocommerce ul.products li.product table.liste-kft-mini thead th:last-child {
    width: 44px !important;
}

/* Tablo satirlar */
.woocommerce ul.products li.product table.liste-kft-mini tbody td {
    padding: 10px 14px !important;
    text-align: center !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    font-size: 13px !important;
    color: #333 !important;
    background: #fff !important;
    vertical-align: middle !important;
    transition: all 0.2s ease !important;
}

.woocommerce ul.products li.product table.liste-kft-mini tbody tr:hover td {
    background: rgba(254, 245, 231, 0.5) !important;
}
.woocommerce ul.products li.product table.liste-kft-mini tbody tr:last-child td {
    border-bottom: none !important;
}

/* Adet sutunu - kalin */
.woocommerce ul.products li.product table.liste-kft-mini tbody td:first-child {
    font-weight: 700 !important;
    color: #2c3e50 !important;
}

/* Fiyat sutunu */
.woocommerce ul.products li.product table.liste-kft-mini tbody td:nth-child(2) {
    font-weight: 600 !important;
    color: #2c3e50 !important;
}

/* Sepet ikonu sutunu */
td.liste-kft-cart-cell {
    text-align: center !important;
    width: 44px !important;
    padding: 6px 8px !important;
}
a.liste-kft-cart-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 6px !important;
    background: #f39c12 !important;
    color: #fff !important;
    transition: background 0.15s ease !important;
    text-decoration: none !important;
}
a.liste-kft-cart-link:hover {
    background: #e67e22 !important;
    color: #fff !important;
}
a.liste-kft-cart-link svg {
    display: block !important;
}

/* Devamini Gor butonu */
.liste-kft-more-wrap {
    text-align: center !important;
    margin-top: 10px !important;
}
a.liste-kft-more {
    display: inline-block !important;
    padding: 7px 24px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #555 !important;
    background: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 20px !important;
    transition: all 0.15s ease !important;
    text-decoration: none !important;
}
a.liste-kft-more:hover {
    border-color: #f39c12 !important;
    color: #f39c12 !important;
}
.liste-kft-kdv-note {
    display: block !important;
    margin-top: 4px !important;
    font-size: 9px !important;
    color: #bbb !important;
    font-style: italic !important;
    font-weight: 400 !important;
}

/* Ürün sayfası – Özellikler tablosu (resmin altında, Customizer'dan) */
.liste-product-specs {
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
    background: var(--liste-white);
    border: 1px solid var(--liste-border);
    border-radius: var(--liste-radius);
    padding: 0;
    overflow: hidden;
}
.liste-product-specs__title {
    margin: 0;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--liste-text);
    border-bottom: 1px solid var(--liste-border);
}
.liste-product-specs__table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0;
    table-layout: fixed;
}
.liste-product-specs__table th,
.liste-product-specs__table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--liste-border-light);
    font-size: 13px;
    line-height: 1.5;
    vertical-align: top;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.liste-product-specs__table th {
    font-weight: 600;
    color: var(--liste-text);
    width: 35%;
}
.liste-product-specs__table td {
    color: var(--liste-text-light);
    width: 65%;
}
.liste-product-specs__table tbody tr:last-child th,
.liste-product-specs__table tbody tr:last-child td {
    border-bottom: none;
}

/* Ürün sayfası – Hesaplama yapısı (dropdown Ekstralar + Adet + tek fiyat) */
.liste-product-calculator {
    margin-top: 16px;
    width: 100%;
    max-width: 100%;
    background: var(--liste-white);
    border: 1px solid var(--liste-border);
    border-radius: var(--liste-radius);
    padding: 18px 20px;
    overflow: visible;
    box-sizing: border-box;
}
.liste-product-calculator__title {
    margin: 0 0 14px 0;
    padding: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--liste-text);
    border: none;
}
.liste-product-calculator .liste-calc-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px 0;
    margin-bottom: 4px;
}
.liste-product-calculator .liste-calc-extras {
    display: contents;
}
.liste-product-calculator .liste-calc-extra {
    min-width: 0;
}
.liste-product-calculator .liste-calc-extra label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--liste-text);
    margin-bottom: 4px;
}
.liste-product-calculator .liste-calc-extra .required {
    color: #e74c3c;
}
.liste-product-calculator .liste-calc-select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 8px 10px;
    font-size: 13px;
    border: 1px solid var(--liste-border);
    border-radius: 6px;
    background: #fff;
    box-sizing: border-box;
}
.liste-product-calculator .liste-calc-quantity {
    margin: 0;
}
.liste-product-calculator .liste-calc-quantity label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--liste-text);
    margin-bottom: 4px;
}
.liste-product-calculator .liste-calc-total {
    padding: 14px 0 10px;
    margin-top: 6px;
    border-top: 1px solid var(--liste-border);
}
.liste-product-calculator .liste-calc-total-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--liste-text);
    margin-right: 8px;
}
.liste-product-calculator .liste-calc-total-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--liste-dark-blue);
}
.liste-product-calculator .liste-calc-actions {
    margin-top: 14px;
}
.liste-product-calculator .liste-calc-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #25d366;
    color: #fff;
    border-radius: var(--liste-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
}
.liste-product-calculator .liste-calc-whatsapp-btn:hover {
    background: #20bd5a;
    color: #fff;
}
.liste-product-calculator .liste-calc-whatsapp-btn svg {
    flex-shrink: 0;
}

/* Ürün sayfası – Ekstralar kutusu (Selefon vb.) */
.liste-product-extras {
    margin-top: 16px;
    width: 100%;
    background: var(--liste-white);
    border: 1px solid var(--liste-border);
    border-radius: var(--liste-radius);
}
.liste-product-extras__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid var(--liste-border);
}
.liste-product-extras__title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--liste-text);
}
.liste-product-extras__note {
    margin: 0;
    font-size: 11px;
    color: #e74c3c;
}
.liste-product-extras__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    gap: 16px;
    border-top: 1px solid var(--liste-border-light);
}
.liste-product-extras__label-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 140px;
}
.liste-product-extras__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--liste-text);
}
.liste-product-extras__required {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e74c3c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}
.liste-product-extras__control {
    flex: 1;
}
.liste-product-extras__choice {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 14px;
    font-size: 13px;
    color: var(--liste-text);
}
.liste-product-extras__choice input[type="checkbox"] {
    transform: scale(1.05);
}
.liste-product-extras__select {
    width: 100%;
    padding: 8px 10px;
    font-size: 13px;
    border-radius: 6px;
    border: 1px solid var(--liste-border);
    background-color: #fff;
}
@media (max-width: 768px) {
    .liste-product-extras__row {
        flex-direction: column;
        align-items: flex-start;
    }
    .liste-product-extras__label-wrap {
        min-width: 0;
    }
}

/* Single product – sağ kolonda KFT kartı + Özellikler yan yana */
.single-product .summary .kft-price-module,
.single-product .summary .liste-product-specs {
    display: inline-block;
    vertical-align: top;
}
.single-product .summary .kft-price-module {
    width: 55%;
    max-width: 380px;
}
.single-product .summary .liste-product-specs {
    width: 40%;
    margin-left: 20px;
    margin-top: 0;
}
/* Hesaplama bloğu varken Özellikler tam genişlik (taşma önlemi); :has() destekleyen tarayıcılar */
.single-product .summary:has(.liste-product-calculator) .liste-product-specs {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-top: 0;
}
.single-product .summary .liste-product-calculator {
    max-width: 100%;
}
@media (max-width: 992px) {
    .single-product .summary .kft-price-module,
    .single-product .summary .liste-product-specs {
        display: block;
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-top: 16px;
    }
}

/* Breadcrumb */
.woocommerce .woocommerce-breadcrumb {
    margin-bottom: 16px;
    font-size: 12px;
    color: var(--liste-text-light);
}
.woocommerce .woocommerce-breadcrumb a {
    color: var(--liste-text-light);
}
.woocommerce .woocommerce-breadcrumb a:hover {
    color: var(--liste-orange);
}

/* Single Product */
.woocommerce div.product div.images { margin-bottom: 24px; }
.woocommerce div.product .product_title {
    color: var(--liste-dark-blue-light);
    font-size: 1.5rem;
}

/* ========== Cart & Checkout Genel ========== */
.woocommerce-cart .content-area,
.woocommerce-checkout .content-area,
.woocommerce-account .content-area {
    padding: 30px 0;
}

/* --- WooCommerce Genel Butonlar --- */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--liste-font);
    color: #fff;
    background: var(--liste-orange);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
    line-height: 1.4;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    background: var(--liste-orange-dark);
    color: #fff;
}
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background: var(--liste-orange);
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background: var(--liste-orange-dark);
}
/* Disabled buton */
.woocommerce button.button:disabled,
.woocommerce button.button:disabled:hover,
.woocommerce button.button.disabled,
.woocommerce input.button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--liste-border);
    color: var(--liste-text-light);
}

/* --- Genel Tablo --- */
.woocommerce table.shop_table {
    border-radius: var(--liste-radius);
    border-collapse: collapse;
    width: 100%;
    background: var(--liste-white);
    border: 1px solid var(--liste-border);
    overflow: hidden;
}
.woocommerce table.shop_table th {
    background: var(--liste-bg);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--liste-text-light);
    padding: 12px 14px;
    border-bottom: 2px solid var(--liste-border);
    text-align: left;
}
.woocommerce table.shop_table td {
    padding: 14px;
    border-bottom: 1px solid var(--liste-border-light);
    vertical-align: middle;
    font-size: 14px;
}
.woocommerce table.shop_table tbody tr:last-child td {
    border-bottom: none;
}
.woocommerce table.shop_table img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--liste-border-light);
}

/* --- Bildirim / Mesaj Kutulari --- */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
    padding: 14px 18px 14px 44px !important;
    margin-bottom: 20px !important;
    border-radius: var(--liste-radius) !important;
    font-size: 13px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: none !important;
    position: relative;
}
/* WooCommerce varsayilan ikonu kaldir, kendi ikonumuzu koy */
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before,
.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before,
.woocommerce .woocommerce-error::before {
    position: absolute !important;
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 16px !important;
    width: auto !important;
    height: auto !important;
}
.woocommerce-message {
    background: #eafaf1 !important;
    border: 1px solid #a3d9b1 !important;
    border-left: 4px solid #27ae60 !important;
    color: #1a6b3c;
}
.woocommerce-info {
    background: #eaf4fc !important;
    border: 1px solid #a3c8e8 !important;
    border-left: 4px solid #3498db !important;
    color: #1a4a6b;
}
.woocommerce-error {
    background: #fdf0ef !important;
    border: 1px solid #e8a3a3 !important;
    border-left: 4px solid #e74c3c !important;
    color: #6b1a1a;
    list-style: none;
}
.woocommerce-message a.button,
.woocommerce-info a.button {
    padding: 6px 14px;
    font-size: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

/* ========== SEPET SAYFASI ========== */

/* Sepet tablosu */
.woocommerce-cart table.shop_table {
    background: var(--liste-white);
}
.woocommerce-cart table.shop_table td.product-name {
    font-weight: 500;
}
.woocommerce-cart table.shop_table td.product-name a {
    color: var(--liste-text);
    font-weight: 600;
    font-size: 14px;
}
.woocommerce-cart table.shop_table td.product-name a:hover {
    color: var(--liste-orange);
}
.woocommerce-cart table.shop_table td.product-price,
.woocommerce-cart table.shop_table td.product-subtotal {
    font-weight: 600;
    color: var(--liste-text);
}
.woocommerce-cart table.shop_table tbody tr:hover {
    background: var(--liste-orange-light);
}

/* Urun cikar butonu */
.woocommerce a.remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: var(--liste-text-light) !important;
    font-size: 16px;
    line-height: 1;
    transition: all 0.15s ease;
    background: transparent;
}
.woocommerce a.remove:hover {
    color: #fff !important;
    background: #e74c3c !important;
}

/* Miktar input */
.woocommerce .quantity .qty {
    width: 56px;
    text-align: center;
    border: 1px solid var(--liste-border);
    border-radius: 4px;
    padding: 8px 4px;
    font-size: 14px;
    font-family: var(--liste-font);
    transition: border-color 0.15s ease;
}
.woocommerce .quantity .qty:focus {
    outline: none;
    border-color: var(--liste-orange);
    box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.1);
}

/* Kupon alani */
.woocommerce-cart table.shop_table td.actions {
    padding: 16px 14px;
    background: var(--liste-bg);
}
.woocommerce .coupon {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}
.woocommerce .coupon label {
    display: none;
}
.woocommerce .coupon .input-text {
    border: 1px solid var(--liste-border);
    border-radius: 4px;
    padding: 9px 12px;
    font-size: 13px;
    max-width: 180px;
    font-family: var(--liste-font);
    transition: border-color 0.15s ease;
}
.woocommerce .coupon .input-text:focus {
    outline: none;
    border-color: var(--liste-orange);
    box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.1);
}
.woocommerce .coupon .button {
    background: var(--liste-dark-blue) !important;
    color: #fff !important;
    padding: 9px 16px;
    font-size: 12px;
}
.woocommerce .coupon .button:hover {
    background: var(--liste-dark-blue-light) !important;
}

/* Sepet guncelle butonu */
.woocommerce button[name="update_cart"] {
    background: var(--liste-white) !important;
    color: var(--liste-text) !important;
    border: 1px solid var(--liste-border) !important;
    padding: 9px 18px;
    font-size: 12px;
    float: right;
}
.woocommerce button[name="update_cart"]:hover {
    border-color: var(--liste-text) !important;
    background: var(--liste-bg) !important;
}

/* Sepet layout: tablo + toplam yan yana */
.woocommerce-cart .woocommerce {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
}
.woocommerce-cart .woocommerce > .woocommerce-notices-wrapper {
    width: 100%;
    flex: 0 0 100%;
}
.woocommerce-cart .woocommerce > form {
    flex: 1;
    min-width: 0;
}
.woocommerce-cart .cart-collaterals {
    width: 320px;
    flex-shrink: 0;
}

/* Sepet toplamlar */
.woocommerce .cart_totals {
    background: var(--liste-white);
    border: 1px solid var(--liste-border);
    border-radius: var(--liste-radius);
    padding: 24px;
}
.woocommerce .cart_totals h2 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--liste-orange);
    color: var(--liste-text);
}
.woocommerce .cart_totals table {
    margin-bottom: 16px;
    width: 100%;
}
.woocommerce .cart_totals table th {
    text-align: left;
    font-size: 13px;
    font-weight: 500;
    color: var(--liste-text-light);
    padding: 10px 0;
    background: none;
    border-bottom: 1px solid var(--liste-border-light);
    text-transform: none;
    letter-spacing: 0;
}
.woocommerce .cart_totals table td {
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    color: var(--liste-text);
    padding: 10px 0;
    border-bottom: 1px solid var(--liste-border-light);
}
.woocommerce .cart_totals table tr.order-total th,
.woocommerce .cart_totals table tr.order-total td {
    font-size: 16px;
    font-weight: 700;
    color: var(--liste-orange);
    border-bottom: none;
    padding-top: 14px;
}

/* Odemeye gec butonu */
.woocommerce .wc-proceed-to-checkout {
    padding-top: 4px;
}
.woocommerce .wc-proceed-to-checkout a.button {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
}

/* Bos sepet */
.woocommerce-cart .cart-empty {
    text-align: center;
    padding: 60px 20px;
    font-size: 15px;
    color: var(--liste-text-light);
}
.woocommerce-cart .return-to-shop a.button {
    margin-top: 12px;
}

/* ========== ODEME SAYFASI ========== */

/* Checkout 2 sutun layout */
.woocommerce-checkout .woocommerce {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
}
.woocommerce-checkout .woocommerce > .woocommerce-notices-wrapper {
    width: 100%;
    flex: 0 0 100%;
}
.woocommerce-checkout .woocommerce > .woocommerce-form-coupon-toggle,
.woocommerce-checkout .woocommerce > .woocommerce-form-login-toggle {
    width: 100%;
    flex: 0 0 100%;
}
.woocommerce-checkout .woocommerce > .checkout_coupon,
.woocommerce-checkout .woocommerce > .woocommerce-form-login {
    width: 100%;
    flex: 0 0 100%;
    background: var(--liste-white);
    border: 1px solid var(--liste-border);
    border-radius: var(--liste-radius);
    padding: 20px;
    margin-bottom: 0;
}

/* Checkout form */
.woocommerce-checkout form.woocommerce-checkout {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
}

/* Sol: Fatura/Gonderim Bilgileri */
#customer_details {
    flex: 1;
    min-width: 0;
}
#customer_details .woocommerce-billing-fields,
#customer_details .woocommerce-shipping-fields,
#customer_details .woocommerce-additional-fields {
    background: var(--liste-white);
    border: 1px solid var(--liste-border);
    border-radius: var(--liste-radius);
    padding: 24px;
    margin-bottom: 20px;
}
#customer_details h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--liste-orange);
    color: var(--liste-text);
}

/* Sag: Siparis Ozeti */
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
    width: 380px;
    flex-shrink: 0;
}
.woocommerce-checkout #order_review_heading {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    padding: 20px 24px 0;
    background: var(--liste-white);
    border: 1px solid var(--liste-border);
    border-bottom: none;
    border-radius: var(--liste-radius) var(--liste-radius) 0 0;
    color: var(--liste-text);
}
.woocommerce-checkout #order_review {
    background: var(--liste-white);
    border: 1px solid var(--liste-border);
    border-top: none;
    border-radius: 0 0 var(--liste-radius) var(--liste-radius);
    padding: 16px 24px 24px;
    position: sticky;
    top: 80px;
}

/* Siparis ozeti tablosu */
.woocommerce-checkout #order_review table.shop_table {
    border: none;
    margin-bottom: 0;
}
.woocommerce-checkout #order_review table.shop_table th {
    background: none;
    border-bottom: 1px solid var(--liste-border);
    padding: 10px 0;
    font-size: 11px;
}
.woocommerce-checkout #order_review table.shop_table td {
    padding: 10px 0;
    font-size: 13px;
}
.woocommerce-checkout #order_review table.shop_table tfoot th {
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
    color: var(--liste-text-light);
}
.woocommerce-checkout #order_review table.shop_table tfoot td {
    font-weight: 600;
    text-align: right;
}
.woocommerce-checkout #order_review table.shop_table tfoot tr.order-total th,
.woocommerce-checkout #order_review table.shop_table tfoot tr.order-total td {
    font-size: 16px;
    font-weight: 700;
    color: var(--liste-orange);
    padding-top: 14px;
    border-top: 2px solid var(--liste-border);
}

/* Checkout form alanlari */
.woocommerce-checkout .form-row {
    margin-bottom: 14px;
}
.woocommerce-checkout .form-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--liste-text);
    margin-bottom: 4px;
}
.woocommerce-checkout .form-row label .required {
    color: var(--liste-orange);
}
.woocommerce-checkout .form-row .input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid var(--liste-border);
    border-radius: 4px;
    font-family: var(--liste-font);
    transition: border-color 0.15s ease;
    background: var(--liste-white);
}
.woocommerce-checkout .form-row .input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
    outline: none;
    border-color: var(--liste-orange);
    box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.1);
}
/* Select2 (WooCommerce select dropdowns) */
.woocommerce-checkout .select2-container--default .select2-selection--single {
    height: 42px;
    border: 1px solid var(--liste-border);
    border-radius: 4px;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 42px;
    padding-left: 12px;
    font-size: 14px;
    color: var(--liste-text);
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}
.woocommerce-checkout .select2-container--default.select2-container--focus .select2-selection--single,
.woocommerce-checkout .select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--liste-orange);
    box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.1);
}

/* Odeme yontemi secimi */
.woocommerce-checkout #payment {
    background: var(--liste-bg);
    border-radius: var(--liste-radius);
    margin-top: 16px;
    padding: 0;
}
.woocommerce-checkout #payment ul.payment_methods {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--liste-border);
}
.woocommerce-checkout #payment ul.payment_methods li {
    padding: 14px 16px;
    border-bottom: 1px solid var(--liste-border-light);
    margin: 0;
}
.woocommerce-checkout #payment ul.payment_methods li:last-child {
    border-bottom: none;
}
.woocommerce-checkout #payment ul.payment_methods li label {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
.woocommerce-checkout #payment ul.payment_methods li img {
    max-height: 24px;
    width: auto;
}
.woocommerce-checkout #payment div.payment_box {
    background: var(--liste-white);
    border: 1px solid var(--liste-border-light);
    border-radius: 4px;
    padding: 12px 14px;
    margin-top: 10px;
    font-size: 13px;
    color: var(--liste-text-light);
    line-height: 1.6;
}
.woocommerce-checkout #payment div.payment_box::before {
    display: none;
}

/* Siparis ver butonu */
.woocommerce-checkout #payment .place-order {
    padding: 16px;
}
.woocommerce-checkout #place_order,
.woocommerce-checkout button[name="woocommerce_checkout_place_order"],
.woocommerce-checkout .wc-block-components-checkout-place-order-button,
.woocommerce-checkout form button.button.alt {
    width: 100% !important;
    padding: 14px 20px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border-radius: 6px !important;
    letter-spacing: 0.3px;
    background: var(--liste-orange) !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer;
    transition: background 0.15s ease;
    font-family: var(--liste-font);
    text-align: center;
    display: block;
}
.woocommerce-checkout #place_order:hover,
.woocommerce-checkout button[name="woocommerce_checkout_place_order"]:hover,
.woocommerce-checkout form button.button.alt:hover {
    background: var(--liste-orange-dark) !important;
}

/* Sepete geri don linki */
.woocommerce-checkout .wc-backward,
.woocommerce-checkout a.wc-backward {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--liste-text-light);
    text-decoration: none;
    margin-top: 12px;
}
.woocommerce-checkout .wc-backward:hover,
.woocommerce-checkout a.wc-backward:hover {
    color: var(--liste-orange);
}

/* Gizlilik metni */
.woocommerce-checkout .woocommerce-privacy-policy-text {
    font-size: 12px;
    color: var(--liste-text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}
.woocommerce-checkout .woocommerce-privacy-policy-text a {
    color: var(--liste-orange);
}

/* Sartlar/kosullar checkbox */
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
    margin-bottom: 12px;
}
.woocommerce-checkout .woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--liste-text);
    cursor: pointer;
}

/* ========== SIPARIS TAMAMLANDI SAYFASI ========== */
.woocommerce-order-received .woocommerce-thankyou-order-received {
    background: #eafaf1;
    border: 1px solid #a3d9b1;
    border-left: 4px solid #27ae60;
    padding: 16px 20px;
    border-radius: var(--liste-radius);
    font-size: 14px;
    color: #1a6b3c;
    font-weight: 500;
    margin-bottom: 24px;
}
.woocommerce-order-received .woocommerce-order-overview {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 20px;
    background: var(--liste-white);
    border: 1px solid var(--liste-border);
    border-radius: var(--liste-radius);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}
.woocommerce-order-received .woocommerce-order-overview li {
    font-size: 13px;
    color: var(--liste-text-light);
}
.woocommerce-order-received .woocommerce-order-overview li strong {
    display: block;
    font-size: 15px;
    color: var(--liste-text);
    margin-top: 4px;
}

/* ========== Elementor Uyumluluk ========== */
/* Elementor sayfalarinda content-area tam genislik */
.elementor-page .content-area,
.liste-elementor-page .content-area {
    padding: 0;
    max-width: none;
}
/* Elementor widget'lari icin wrapper gereksiz */
.elementor-page .content-area > .site-container,
.liste-elementor-page .content-area > .site-container {
    max-width: none;
    padding: 0;
}
/* WooCommerce sayfalari kendi container'ini korur */
.woocommerce-page.elementor-page .content-area,
.woocommerce-page.liste-elementor-page .content-area {
    padding: 30px 0;
}
.woocommerce-page.elementor-page .content-area > .site-container,
.woocommerce-page.liste-elementor-page .content-area > .site-container {
    max-width: var(--liste-max-width);
    padding: 0 var(--liste-spacing);
}
/* Elementor Canvas sablonu — header/footer gizle */
.elementor-template-canvas .site-header,
.elementor-template-canvas .site-footer {
    display: none;
}

/* ========== WooCommerce Hesabim Sayfasi ========== */
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
    box-sizing: border-box;
}

/* Ana Layout: Yan yana */
.woocommerce-account .woocommerce {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Sol Navigasyon */
.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 240px;
    min-width: 240px;
    background: var(--liste-white);
    border-radius: var(--liste-radius);
    border: 1px solid var(--liste-border);
    overflow: hidden;
    position: sticky;
    top: 80px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    margin: 0;
    border-bottom: 1px solid var(--liste-border-light);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--liste-text);
    text-decoration: none;
    transition: all 0.15s ease;
    position: relative;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    background: var(--liste-orange-light);
    color: var(--liste-orange);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a:hover {
    background: var(--liste-orange);
    color: #fff;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a::before {
    filter: brightness(0) invert(1);
}

/* Menu ikonlari (CSS ile) */
.woocommerce-account .woocommerce-MyAccount-navigation ul li a::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.55;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover::before {
    opacity: 0.8;
}
/* Pano */
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7'/%3E%3Crect x='14' y='3' width='7' height='7'/%3E%3Crect x='14' y='14' width='7' height='7'/%3E%3Crect x='3' y='14' width='7' height='7'/%3E%3C/svg%3E");
}
/* Siparisler */
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2L3 6v14a2 2 0 002 2h14a2 2 0 002-2V6l-3-4z'/%3E%3Cline x1='3' y1='6' x2='21' y2='6'/%3E%3Cpath d='M16 10a4 4 0 01-8 0'/%3E%3C/svg%3E");
}
/* Indirmeler */
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E");
}
/* Adresler */
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}
/* Hesap detaylari */
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}
/* Oturum kapat */
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23e74c3c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 21H5a2 2 0 01-2-2V5a2 2 0 012-2h4'/%3E%3Cpolyline points='16 17 21 12 16 7'/%3E%3Cline x1='21' y1='12' x2='9' y2='12'/%3E%3C/svg%3E");
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a {
    color: #e74c3c;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    background: #fdf0ef;
    color: #c0392b;
}

/* Sag Icerik Alani */
.woocommerce-account .woocommerce-MyAccount-content {
    flex: 1;
    min-width: 0;
    background: var(--liste-white);
    border-radius: var(--liste-radius);
    border: 1px solid var(--liste-border);
    padding: 28px;
}
.woocommerce-account .woocommerce-MyAccount-content > p:first-child {
    font-size: 14px;
    color: var(--liste-text-light);
    line-height: 1.7;
}
.woocommerce-account .woocommerce-MyAccount-content > p:first-child strong {
    color: var(--liste-text);
}

/* Siparis tablosu */
.woocommerce-account .woocommerce-orders-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.woocommerce-account .woocommerce-orders-table th {
    background: var(--liste-bg);
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--liste-text-light);
    border-bottom: 2px solid var(--liste-border);
}
.woocommerce-account .woocommerce-orders-table td {
    padding: 12px;
    border-bottom: 1px solid var(--liste-border-light);
    vertical-align: middle;
}
.woocommerce-account .woocommerce-orders-table tbody tr:hover {
    background: var(--liste-orange-light);
}

/* WooCommerce butonlari tema uyumlu */
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button,
.woocommerce-account .woocommerce-MyAccount-content .button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--liste-orange);
    background: transparent;
    border: 1px solid var(--liste-orange);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button:hover,
.woocommerce-account .woocommerce-MyAccount-content .button:hover {
    background: var(--liste-orange);
    color: #fff;
}

/* Form alanlari */
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row label,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .form-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--liste-text);
    margin-bottom: 4px;
}
.woocommerce-account .woocommerce-MyAccount-content input[type="text"],
.woocommerce-account .woocommerce-MyAccount-content input[type="email"],
.woocommerce-account .woocommerce-MyAccount-content input[type="tel"],
.woocommerce-account .woocommerce-MyAccount-content input[type="password"],
.woocommerce-account .woocommerce-MyAccount-content select,
.woocommerce-account .woocommerce-MyAccount-content textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid var(--liste-border);
    border-radius: 4px;
    background: var(--liste-white);
    transition: border-color 0.15s ease;
    font-family: var(--liste-font);
}
.woocommerce-account .woocommerce-MyAccount-content input:focus,
.woocommerce-account .woocommerce-MyAccount-content select:focus,
.woocommerce-account .woocommerce-MyAccount-content textarea:focus {
    outline: none;
    border-color: var(--liste-orange);
    box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.1);
}

/* Kaydet butonu */
.woocommerce-account .woocommerce-MyAccount-content button[type="submit"],
.woocommerce-account .woocommerce-MyAccount-content input[type="submit"] {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--liste-orange);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s ease;
    font-family: var(--liste-font);
}
.woocommerce-account .woocommerce-MyAccount-content button[type="submit"]:hover,
.woocommerce-account .woocommerce-MyAccount-content input[type="submit"]:hover {
    background: var(--liste-orange-dark);
}

/* Adres kartlari — u-columns yapisi */
.woocommerce-account .woocommerce-Addresses,
.woocommerce-account .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}
.woocommerce-account .woocommerce-Addresses .u-column1,
.woocommerce-account .woocommerce-Addresses .u-column2,
.woocommerce-account .woocommerce-Addresses .woocommerce-Address {
    background: var(--liste-bg);
    border: 1px solid var(--liste-border);
    border-radius: var(--liste-radius);
    padding: 20px;
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    box-sizing: border-box;
}
/* Adres kart header: baslik + link yan yana */
.woocommerce-account .woocommerce-Addresses header,
.woocommerce-account .woocommerce-Addresses .woocommerce-Address-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--liste-border);
    gap: 10px;
}
.woocommerce-account .woocommerce-Addresses header h2,
.woocommerce-account .woocommerce-Addresses header h3,
.woocommerce-account .woocommerce-Addresses .woocommerce-Address-title h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}
.woocommerce-account .woocommerce-Addresses header a,
.woocommerce-account .woocommerce-Addresses .woocommerce-Address-title a {
    font-size: 12px;
    color: var(--liste-orange);
    white-space: nowrap;
    font-weight: 500;
    text-decoration: none;
    flex-shrink: 0;
}
.woocommerce-account .woocommerce-Addresses header a:hover,
.woocommerce-account .woocommerce-Addresses .woocommerce-Address-title a:hover {
    color: var(--liste-orange-dark);
    text-decoration: underline;
}
.woocommerce-account .woocommerce-Addresses address {
    font-style: normal;
    font-size: 13px;
    line-height: 1.7;
    color: var(--liste-text-light);
}

/* WooCommerce float override — tum u-columns icin */
.woocommerce-account .u-columns {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100% !important;
}
.woocommerce-account .u-columns::before,
.woocommerce-account .u-columns::after {
    display: none !important;
}
.woocommerce-account .u-columns > .u-column1,
.woocommerce-account .u-columns > .u-column2,
.woocommerce-account .u-columns > .col-1,
.woocommerce-account .u-columns > .col-2 {
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box;
}

/* Giris / Kayit Formu */
.woocommerce-account .u-columns:not(.woocommerce-Addresses) .u-column1,
.woocommerce-account .u-columns:not(.woocommerce-Addresses) .u-column2 {
    background: var(--liste-white);
    border: 1px solid var(--liste-border);
    border-radius: var(--liste-radius);
    padding: 28px !important;
}
.woocommerce-account .u-columns h2 {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--liste-orange);
    color: var(--liste-text);
}
.woocommerce-account .woocommerce-form-login .form-row,
.woocommerce-account .woocommerce-form-register .form-row {
    margin-bottom: 16px;
}
.woocommerce-account .woocommerce-form-login label,
.woocommerce-account .woocommerce-form-register label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--liste-text);
}
.woocommerce-account .woocommerce-form-login input[type="text"],
.woocommerce-account .woocommerce-form-login input[type="email"],
.woocommerce-account .woocommerce-form-login input[type="password"],
.woocommerce-account .woocommerce-form-register input[type="text"],
.woocommerce-account .woocommerce-form-register input[type="email"],
.woocommerce-account .woocommerce-form-register input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid var(--liste-border);
    border-radius: 4px;
    transition: border-color 0.15s ease;
    font-family: var(--liste-font);
}
.woocommerce-account .woocommerce-form-login input:focus,
.woocommerce-account .woocommerce-form-register input:focus {
    outline: none;
    border-color: var(--liste-orange);
    box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.1);
}
.woocommerce-account .woocommerce-form-login button[type="submit"],
.woocommerce-account .woocommerce-form-register button[type="submit"] {
    width: 100%;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--liste-orange);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s ease;
    font-family: var(--liste-font);
}
.woocommerce-account .woocommerce-form-login button[type="submit"]:hover,
.woocommerce-account .woocommerce-form-register button[type="submit"]:hover {
    background: var(--liste-orange-dark);
}
.woocommerce-account .woocommerce-form-login .woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--liste-text-light);
}
.woocommerce-account .lost_password a {
    font-size: 13px;
    color: var(--liste-orange);
}
.woocommerce-account .lost_password a:hover {
    color: var(--liste-orange-dark);
}

/* WooCommerce bildirimler */
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-error {
    border-radius: var(--liste-radius);
    font-size: 13px;
    padding: 12px 16px;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    :root {
        --liste-spacing: 15px;
    }

    body { font-size: 14px; }
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }

    .liste-announcement-bar { font-size: 12px; }
    .liste-announcement-track { padding: 6px 0; }

    .liste-header-top-inner { flex-direction: column; padding: 10px var(--liste-spacing); gap: 8px; text-align: center; }
    .liste-header-top-left { justify-content: center; gap: 12px; }

    .site-header .site-container,
    .site-header.liste-navbar .site-container { height: auto; min-height: 55px; flex-wrap: wrap; padding: 10px var(--liste-spacing); }
    .site-logo img { max-height: 38px; max-width: 160px; }
    .liste-navbar-right { order: 10; width: 100%; justify-content: center; margin-top: 4px; }
    .liste-header-actions { margin-left: 0; }

    .mobile-menu-toggle { display: flex; }

    .site-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(70, 68, 65, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 8px 16px;
    }
    .site-navigation.is-open { display: block; }
    .site-navigation ul {
        flex-direction: column;
        gap: 0;
    }
    .site-navigation a {
        padding: 10px 0;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        color: #fff;
    }
    .site-navigation a:hover,
    .site-navigation .current-menu-item > a,
    .site-navigation .current_page_item > a {
        background: rgba(255,255,255,0.1);
    }

    /* Shop layout stacks */
    .liste-shop-layout {
        flex-direction: column !important;
    }
    .liste-shop-sidebar {
        flex: none;
        width: 100%;
        max-width: 100%;
        position: static;
        margin-bottom: 16px;
    }
    .liste-shop-sidebar ul {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
    }
    .liste-shop-sidebar ul li a {
        padding: 5px 12px;
        font-size: 12px;
        border: 1px solid var(--liste-border);
        border-radius: 3px;
    }
    .liste-shop-sidebar ul li a:hover,
    .liste-shop-sidebar ul li.current-cat > a {
        border-color: var(--liste-orange);
        background: var(--liste-orange-light);
    }

    /* Mobilde tek sutun */
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
    }

    /* Hesabim sayfasi mobil */
    .woocommerce-account .woocommerce {
        flex-direction: column;
        gap: 16px;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation {
        width: 100%;
        min-width: 100%;
        position: static;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation ul li {
        flex: 1 1 auto;
        border-bottom: none;
        border-right: 1px solid var(--liste-border-light);
    }
    .woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
        border-right: none;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation ul li a {
        padding: 10px 12px;
        font-size: 11px;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 4px;
    }
    .woocommerce-account .woocommerce-MyAccount-content {
        padding: 18px;
    }
    .woocommerce-account .woocommerce-Addresses,
    .woocommerce-account .u-columns {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    .woocommerce-account .u-columns:not(.woocommerce-Addresses) .u-column1,
    .woocommerce-account .u-columns:not(.woocommerce-Addresses) .u-column2 {
        padding: 20px !important;
    }
    .woocommerce-account .woocommerce-orders-table {
        font-size: 12px;
    }
    .woocommerce-account .woocommerce-orders-table th,
    .woocommerce-account .woocommerce-orders-table td {
        padding: 8px 6px;
    }

    /* Sepet sayfasi mobil */
    .woocommerce-cart .woocommerce {
        flex-direction: column;
    }
    .woocommerce-cart .woocommerce > form {
        width: 100%;
    }
    .woocommerce-cart .cart-collaterals {
        width: 100%;
    }
    .woocommerce-cart table.shop_table thead {
        display: none;
    }
    .woocommerce-cart table.shop_table,
    .woocommerce-cart table.shop_table tbody,
    .woocommerce-cart table.shop_table tr,
    .woocommerce-cart table.shop_table td {
        display: block;
        width: 100%;
    }
    .woocommerce-cart table.shop_table tr {
        position: relative;
        padding: 14px;
        border-bottom: 1px solid var(--liste-border-light);
    }
    .woocommerce-cart table.shop_table td {
        padding: 4px 0;
        border: none;
        text-align: left;
    }
    .woocommerce-cart table.shop_table td::before {
        content: attr(data-title);
        display: inline-block;
        font-size: 11px;
        font-weight: 600;
        color: var(--liste-text-light);
        text-transform: uppercase;
        letter-spacing: 0.3px;
        margin-right: 8px;
        min-width: 70px;
    }
    .woocommerce-cart table.shop_table td.product-thumbnail {
        display: none;
    }
    .woocommerce-cart table.shop_table td.product-remove {
        position: absolute;
        top: 10px;
        right: 10px;
        width: auto;
        padding: 0;
    }
    .woocommerce-cart table.shop_table td.product-remove::before {
        display: none;
    }
    .woocommerce-cart table.shop_table td.actions {
        padding: 14px;
    }
    .woocommerce .coupon {
        flex-wrap: wrap;
        width: 100%;
    }
    .woocommerce .coupon .input-text {
        flex: 1;
        max-width: none;
    }
    .woocommerce button[name="update_cart"] {
        width: 100%;
        margin-top: 8px;
        float: none;
    }

    /* Odeme sayfasi mobil */
    .woocommerce-checkout .woocommerce,
    .woocommerce-checkout form.woocommerce-checkout {
        flex-direction: column;
    }
    .woocommerce-checkout #order_review_heading,
    .woocommerce-checkout #order_review {
        width: 100%;
    }
    #customer_details .woocommerce-billing-fields,
    #customer_details .woocommerce-shipping-fields,
    #customer_details .woocommerce-additional-fields {
        padding: 18px;
    }
    .woocommerce-checkout #order_review_heading {
        border-radius: var(--liste-radius) var(--liste-radius) 0 0;
        padding: 16px 18px 0;
    }
    .woocommerce-checkout #order_review {
        position: static;
        padding: 12px 18px 20px;
        border-radius: 0 0 var(--liste-radius) var(--liste-radius);
    }

    /* Siparis tamamlandi mobil */
    .woocommerce-order-received .woocommerce-order-overview {
        grid-template-columns: 1fr 1fr;
        padding: 14px;
        gap: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    .footer-col { text-align: center; }
    .footer-brand .footer-logo img { margin: 0 auto; }
    .footer-navigation ul {
        align-items: center;
    }
    .footer-address,
    .footer-phone {
        justify-content: center;
    }
    .footer-social-links {
        justify-content: center;
    }
    .site-footer--reklart .footer-bottom {
        text-align: center;
    }
    .footer-social-links--square {
        justify-content: center;
    }
    .footer-scroll-top {
        bottom: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
    }
}

/* ========== Hero Slider - Tam ekran (viewport'u tamamen kaplar) ========== */
/* Header ve navbar yüksekliği için CSS değişkeni */
:root {
    --liste-header-top-height: 40px;
    --liste-navbar-height: 72px;
    --liste-header-total-height: calc(var(--liste-header-top-height) + var(--liste-navbar-height));
}

/* Slider'ı saran TÜM Elementor elementleri: viewport genişliğinde ve yüksekliğinde */
.elementor-section:has(.liste-hero-slider),
.elementor-section .liste-hero-slider,
#primary:has(.liste-hero-slider),
.content-area:has(.liste-hero-slider) {
    width: 100vw !important;
    max-width: 100vw !important;
    height: calc(100vh - var(--liste-header-total-height)) !important;
    min-height: calc(100vh - var(--liste-header-total-height)) !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    box-sizing: border-box !important;
    position: relative !important;
    overflow: hidden !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Elementor editör modunda slider section'larını düzenlenebilir yap */
body.elementor-editor-active .elementor-section:has(.liste-hero-slider),
body.elementor-editor-preview .elementor-section:has(.liste-hero-slider),
body.elementor-editor-active #primary:has(.liste-hero-slider),
body.elementor-editor-preview #primary:has(.liste-hero-slider),
body.elementor-editor-active .content-area:has(.liste-hero-slider),
body.elementor-editor-preview .content-area:has(.liste-hero-slider) {
    overflow: visible !important;
    position: relative !important;
    z-index: auto !important;
    pointer-events: auto !important;
}

/* Elementor container ve column wrapper'larını da tam genişlik yap */
.elementor-section:has(.liste-hero-slider) .elementor-container,
.elementor-section:has(.liste-hero-slider) .elementor-column,
.elementor-section:has(.liste-hero-slider) .elementor-row,
.elementor-section:has(.liste-hero-slider) .elementor-widget,
.elementor-section:has(.liste-hero-slider) .elementor-widget-html,
#primary:has(.liste-hero-slider) .site-container,
.content-area:has(.liste-hero-slider) .site-container,
.elementor-section:has(.liste-hero-slider) > *,
.elementor-section:has(.liste-hero-slider) .elementor-container > * {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
}

/* Ana sayfada ikinci slider'ı içeren Elementor bölümünü tamamen gizle (boşluk kalmasın) */
body.home:not(.elementor-editor-active):not(.elementor-editor-preview) .elementor-section:has(.liste-hero-slider) {
    display: none !important;
}

/* Slider container tam ekran - EN ÜSTTE, TÜM DİĞER STİLLERİ OVERRIDE EDER */
.liste-hero-slider {
    width: 100vw !important;
    max-width: 100vw !important;
    height: calc(100vh - 112px) !important;
    min-height: calc(100vh - 112px) !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 0 !important;
    right: 0 !important;
    box-sizing: border-box !important;
}

/* Elementor editör modunda slider'ı düzenlenebilir yap */
body.elementor-editor-active .liste-hero-slider,
body.elementor-editor-preview .liste-hero-slider {
    position: relative !important;
    overflow: visible !important;
    z-index: auto !important;
    pointer-events: auto !important;
}

/* Elementor editör modunda slider section'ını düzenlenebilir yap */
body.elementor-editor-active .elementor-section:has(.liste-hero-slider),
body.elementor-editor-preview .elementor-section:has(.liste-hero-slider) {
    position: relative !important;
    overflow: visible !important;
    z-index: auto !important;
    pointer-events: auto !important;
}

/* Elementor editör modunda slider içindeki widget'ları düzenlenebilir yap */
body.elementor-editor-active .liste-hero-slider .elementor-widget,
body.elementor-editor-preview .liste-hero-slider .elementor-widget {
    position: relative !important;
    z-index: auto !important;
    pointer-events: auto !important;
}

/* Slider section'ının içindeki shortcode dışındaki widget'ları gizle (sadece frontend'de) */
.elementor-section:has(.liste-hero-slider) .elementor-widget:not(:has(.liste-hero-slider)) {
    display: none !important;
}

/* Elementor editör modunda tüm widget'ları göster */
body.elementor-editor-active .elementor-section:has(.liste-hero-slider) .elementor-widget,
body.elementor-editor-preview .elementor-section:has(.liste-hero-slider) .elementor-widget {
    display: block !important;
}

/* Slider'ın içindeki wrapper'ları da tam genişlik yap */
.liste-hero-slider .swiper-wrapper {
    width: 100% !important;
    height: 100% !important;
}

.liste-hero-slider .swiper-slide {
    width: 100% !important;
    height: 100% !important;
    min-height: calc(100vh - 112px) !important;
}

/* Slider'dan sonraki içerikler normal akışta */
.elementor-section:has(.liste-hero-slider) + .elementor-section {
    margin-top: 0 !important;
    padding-top: 40px !important;
}

/* Slide arka planları tam ekran */
.liste-hero-slider .swiper-slide {
    width: 100% !important;
    height: 100% !important;
}

.liste-hero-slide {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    position: relative;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.liste-hero-content h1 {
    color: #fff !important;
    font-size: 42px !important;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
    line-height: 1.2 !important;
}

.liste-hero-content p {
    color: #cbd5e1 !important;
    font-size: 18px !important;
    margin-bottom: 24px !important;
}

.liste-hero-btn {
    display: inline-block;
    background: #f39c12 !important;
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.liste-hero-btn:hover {
    background: #e67e22 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.liste-hero-nav {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.liste-hero-nav:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: scale(1.1);
}

.liste-hero-nav::after {
    font-size: 20px !important;
    font-weight: 700 !important;
}

.liste-hero-pagination {
    bottom: 30px !important;
}

.liste-hero-pagination .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.liste-hero-pagination .swiper-pagination-bullet-active {
    background: #f39c12 !important;
    width: 30px !important;
    border-radius: 6px !important;
}

/* Responsive Hero Slider */
@media (max-width: 768px) {
    :root {
        --liste-header-top-height: 60px; /* Mobilde header daha yüksek */
        --liste-navbar-height: 60px;
    }
    
    .elementor-section:has(.liste-hero-slider) {
        height: calc(100vh - var(--liste-header-total-height)) !important;
        min-height: calc(100vh - var(--liste-header-total-height)) !important;
    }
    
    .liste-hero-slide .site-container {
        padding: 40px 20px !important;
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .liste-hero-content h1 {
        font-size: 28px !important;
    }
    
    .liste-hero-content p {
        font-size: 16px !important;
    }
    
    .liste-hero-image {
        max-width: 100% !important;
    }
    
    .liste-hero-content h1 {
        font-size: 28px !important;
    }
    
    .liste-hero-content p {
        font-size: 16px !important;
    }
    
    .liste-hero-slide .site-container {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .liste-hero-image {
        max-width: 100% !important;
    }
    
    .liste-hero-nav {
        width: 40px !important;
        height: 40px !important;
    }
    
    .liste-hero-nav::after {
        font-size: 16px !important;
    }
    
    .liste-hero-pagination {
        bottom: 20px !important;
    }
}

/* ========== Boş Alanlar İçin Dekoratif Dokunuşlar ========== */

/* Elementor Section'larına subtle shadow ve spacing */
.elementor-section:not(:has(.liste-hero-slider)) {
    position: relative;
    padding: 60px 0;
}

/* Slider'dan sonraki ilk section'ları yukarı taşı */
.elementor-section:has(.liste-hero-slider) ~ .elementor-section {
    padding-top: 20px !important;
    margin-top: 0 !important;
}

/* Hizmet kartlarını içeren section'ların padding'ini azalt */
.elementor-section:has(.elementor-icon-box-wrapper),
.elementor-section:has(.elementor-widget-icon-box) {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

/* "Hizmetlerimiz" başlığını içeren section'ı yukarı taşı */
.elementor-section.liste-services-header,
.elementor-section[data-id*="services"] {
    padding-top: 10px !important;
    margin-top: 0 !important;
}

/* Slider'dan hemen sonraki section'ları yukarı taşı */
.elementor-section:has(.liste-hero-slider) ~ .elementor-section:first-of-type {
    padding-top: 10px !important;
    margin-top: 0 !important;
}

.elementor-section:not(:has(.liste-hero-slider))::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--liste-orange), transparent);
    opacity: 0.2;
}

/* Icon Box'lara güzel hover efektleri ve shadow */
.elementor-icon-box,
.elementor-widget-icon-box {
    transition: all 0.3s ease;
    position: relative;
}

.elementor-icon-box:hover,
.elementor-widget-icon-box:hover {
    transform: translateY(-5px);
}

.elementor-icon-box .elementor-icon-box-wrapper,
.elementor-widget-icon-box .elementor-icon-box-wrapper {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(243, 156, 18, 0.1);
    position: relative;
    overflow: hidden;
    /* Sabit kart yüksekliği (desktop) */
    height: 210px !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Tablet ve mobilde biraz daha düşük sabit yükseklik kullan */
@media (max-width: 1024px) {
    .elementor-icon-box .elementor-icon-box-wrapper,
    .elementor-widget-icon-box .elementor-icon-box-wrapper {
        height: 200px !important;
    }
}

@media (max-width: 767px) {
    .elementor-icon-box .elementor-icon-box-wrapper,
    .elementor-widget-icon-box .elementor-icon-box-wrapper {
        height: 190px !important;
    }
}

/* Icon box content'i flex ile genişlet */
.elementor-icon-box .elementor-icon-box-content,
.elementor-widget-icon-box .elementor-icon-box-content {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Icon box description'ı altına itmek için */
.elementor-icon-box .elementor-icon-box-description,
.elementor-widget-icon-box .elementor-icon-box-description {
    margin-top: auto !important;
}

/* Aynı row'daki tüm icon-box kartlarını aynı yüksekliğe getir - JavaScript ile yapılacak */
/* CSS sadece min-height sağlar, JavaScript gerçek yüksekliği eşitler */

.elementor-icon-box .elementor-icon-box-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.05), transparent);
    transition: left 0.5s ease;
}

.elementor-icon-box:hover .elementor-icon-box-wrapper::before,
.elementor-widget-icon-box:hover .elementor-icon-box-wrapper::before {
    left: 100%;
}

.elementor-icon-box:hover .elementor-icon-box-wrapper,
.elementor-widget-icon-box:hover .elementor-icon-box-wrapper {
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.15);
    border-color: rgba(243, 156, 18, 0.3);
}

/* Icon'lara renkli glow efekti */
.elementor-icon-box .elementor-icon,
.elementor-widget-icon-box .elementor-icon {
    transition: all 0.3s ease;
    position: relative;
}

.elementor-icon-box:hover .elementor-icon,
.elementor-widget-icon-box:hover .elementor-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(243, 156, 18, 0.3));
}

/* Heading'lere subtle underline */
.elementor-heading-title {
    position: relative;
    display: inline-block;
}

.elementor-heading-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--liste-orange), transparent);
    opacity: 0.5;
}

/* Text editor içeriklerine subtle background */
.elementor-widget-text-editor {
    position: relative;
}

.elementor-widget-text-editor::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.02), rgba(26, 39, 68, 0.02));
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.elementor-widget-text-editor:hover::before {
    opacity: 1;
}

/* Section'lara dekoratif köşe elementleri */
.elementor-section:not(:has(.liste-hero-slider)):nth-child(even) {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(245, 246, 248, 0.5));
}

.elementor-section:not(:has(.liste-hero-slider)):nth-child(odd) {
    background: linear-gradient(180deg, rgba(245, 246, 248, 0.5), rgba(255, 255, 255, 0.5));
}

/* Container'lara subtle border ve shadow */
.site-container {
    position: relative;
}

.site-container::before,
.site-container::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--liste-orange), transparent);
    opacity: 0.1;
    top: 50%;
    transform: translateY(-50%);
}

.site-container::before {
    left: 0;
}

.site-container::after {
    right: 0;
}

/* Boş alanlara dekoratif noktalar */
.elementor-section:not(:has(.liste-hero-slider))::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(243, 156, 18, 0.1) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

/* Feature kartlarına özel efektler */
.elementor-icon-box-wrapper {
    position: relative;
}

.elementor-icon-box-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.1), transparent);
    border-radius: 50%;
    transition: all 0.5s ease;
    z-index: 0;
}

.elementor-icon-box:hover .elementor-icon-box-wrapper::after {
    width: 200px;
    height: 200px;
}

.elementor-icon-box .elementor-icon-box-content,
.elementor-widget-icon-box .elementor-icon-box-content {
    position: relative;
    z-index: 1;
}

/* Section'lara subtle animasyon */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.elementor-section:not(:has(.liste-hero-slider)) {
    animation: fadeInUp 0.6s ease-out;
}

/* Heading'lere daha güzel stil */
.elementor-heading-title {
    background: linear-gradient(135deg, var(--liste-dark-blue-light), var(--liste-dark-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Text editor'lara subtle border */
.elementor-widget-text-editor {
    padding: 20px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.elementor-widget-text-editor:hover {
    border-left-color: var(--liste-orange);
    padding-left: 25px;
}

/* Column'lara subtle background */
.elementor-column {
    position: relative;
}

.elementor-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(245, 246, 248, 0.5));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.elementor-column:hover::before {
    opacity: 1;
}

/* Boş alanlara dekoratif çizgiler */
.elementor-section:not(:has(.liste-hero-slider)):not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.2), transparent);
}

/* Service kartlarına özel efektler */
.liste-service-card {
    position: relative;
    overflow: hidden;
}

.liste-service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.liste-service-card:hover::before {
    opacity: 1;
}

.liste-service-card i {
    transition: all 0.3s ease;
    display: inline-block;
}

.liste-service-card:hover i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Boş alanlara floating dekoratif elementler */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.elementor-section:not(:has(.liste-hero-slider)):nth-child(3n+1)::after {
    animation: float 6s ease-in-out infinite;
}

.elementor-section:not(:has(.liste-hero-slider)):nth-child(3n+2)::after {
    animation: float 8s ease-in-out infinite;
    animation-delay: -2s;
}

.elementor-section:not(:has(.liste-hero-slider)):nth-child(3n)::after {
    animation: float 7s ease-in-out infinite;
    animation-delay: -4s;
}

/* Container'lara subtle glow */
.site-container {
    box-shadow: 0 0 0 1px rgba(243, 156, 18, 0.05);
    border-radius: 0;
    position: relative;
}

/* Section'lara alternating background patterns */
.elementor-section:not(:has(.liste-hero-slider)):nth-child(even) {
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(243, 156, 18, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(26, 39, 68, 0.02) 0%, transparent 50%);
}

.elementor-section:not(:has(.liste-hero-slider)):nth-child(odd) {
    background-image: 
        radial-gradient(circle at 90% 20%, rgba(243, 156, 18, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(26, 39, 68, 0.02) 0%, transparent 50%);
}

/* Shop sayfası için – fiyat listesi ile bitişik (sol padding yok) */
.liste-shop-content .site-container {
    position: relative;
    padding-left: 0 !important;
}
.liste-shop-content .site-container::before {
    display: none;
}

/* Ürün kartlarına köşe dekorasyonu */
.woocommerce ul.products li.product::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.1), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.woocommerce ul.products li.product:hover::after {
    opacity: 1;
}

/* Sidebar'a subtle glow */
.liste-shop-sidebar::after {
    content: '';
    position: absolute;
    top: 0;
    right: -2px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(243, 156, 18, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.liste-shop-sidebar:hover::after {
    opacity: 1;
}

/* Boş alanlara floating dekoratif noktalar */
.liste-shop-content::before {
    background-image: 
        radial-gradient(circle, rgba(243, 156, 18, 0.05), transparent),
        radial-gradient(circle at 20% 50%, rgba(243, 156, 18, 0.03) 0%, transparent 50%);
}

/* Ürün grid'inin arka planına subtle pattern */
.woocommerce ul.products {
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(243, 156, 18, 0.01) 2px, rgba(243, 156, 18, 0.01) 4px);
    background-size: 100% 40px;
}

/* Responsive - mobilde dokunuşları azalt */
@media (max-width: 768px) {
    body::before {
        opacity: 0.3;
    }
    
    .elementor-section:not(:has(.liste-hero-slider))::after {
        display: none;
    }
    
    .site-container::before,
    .site-container::after {
        display: none;
    }
    
    .elementor-icon-box-wrapper::after {
        display: none;
    }
    
    .content-area::before,
    .content-area::after {
        display: none;
    }
    
    .elementor-section:not(:has(.liste-hero-slider)) {
        padding: 40px 0;
    }
    
    .liste-shop-layout {
        gap: 16px;
    }
    
    .liste-shop-content::before,
    .liste-shop-content::after {
        display: none;
    }
    
    .woocommerce ul.products {
        background-image: none;
    }
}

/* ==========================================================================
   Blog sayfası – Makaleler kutucuklarda, tıklanınca açılır
   ========================================================================== */

.liste-blog-container {
    padding-top: var(--liste-spacing, 20px);
    padding-bottom: var(--liste-spacing, 20px);
}

.liste-blog-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 50;
    pointer-events: auto;
}
.liste-blog-container {
    position: relative;
    z-index: 50;
    pointer-events: auto;
}
#primary .liste-blog-container,
#primary .liste-blog-list,
#primary .liste-blog-card {
    pointer-events: auto !important;
}
#primary .liste-blog-card__header,
#primary .liste-blog-card__toggle,
#primary .liste-blog-card__toggle-wrap,
#primary .liste-blog-card__close {
    pointer-events: auto !important;
    cursor: pointer !important;
    display: block !important;
    visibility: visible !important;
}
#primary .liste-blog-card__toggle-wrap {
    display: block !important;
}
#primary a.liste-blog-card__toggle {
    display: inline-flex !important;
}

.liste-blog-card {
    background: var(--liste-white, #fff);
    border-radius: var(--liste-radius, 6px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--liste-border-light, #f0f0f0);
    overflow: visible;
    transition: box-shadow 0.2s ease;
}
.liste-blog-card:not(.is-open) {
    overflow: hidden;
}

.liste-blog-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.liste-blog-card__header {
    padding: 20px 24px;
    cursor: pointer;
    outline: none;
    text-align: left;
    width: 100%;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
    position: relative;
    z-index: 2;
    pointer-events: auto;
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.liste-blog-card__header:focus-visible {
    box-shadow: inset 0 0 0 2px var(--liste-orange, #f39c12);
}

.liste-blog-card__title {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--liste-dark-blue-light, #2c3e50);
}

.liste-blog-card__excerpt {
    margin: 0 0 12px;
    font-size: 0.95rem;
    color: var(--liste-text-light, #777);
    line-height: 1.5;
}

/* Devamını oku – tam genişlik çubuk, metin + ok net görünsün */
.liste-blog-card__toggle-wrap {
    display: block;
    width: 100%;
    margin-top: 12px;
    border-top: 1px solid var(--liste-border-light, #eee);
    padding-top: 12px;
}
.liste-blog-card__toggle,
.liste-blog-card_toggle,
a.liste-blog-card__toggle {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem !important;
    font-weight: 600;
    color: #f39c12 !important;
    cursor: pointer;
    pointer-events: auto !important;
    text-decoration: none;
    padding: 6px 0;
    margin: 0;
    border: none;
    background: none;
    font: inherit;
}
.liste-blog-card__toggle:hover,
.liste-blog-card_toggle:hover {
    color: #e08e0b !important;
    text-decoration: underline;
}
.liste-blog-card__toggle-text {
    display: inline !important;
    font-size: inherit !important;
    color: inherit !important;
    visibility: visible !important;
}
.liste-blog-card__toggle-icon {
    font-size: 0.6rem !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
    transition: transform 0.25s ease;
    color: inherit !important;
}
.liste-blog-card.is-open .liste-blog-card__toggle-icon {
    transform: rotate(-180deg);
}

.liste-blog-card.is-open .liste-blog-card__toggle-icon {
    transform: rotate(-180deg);
}

/* Blog kartı kategorileri */
.liste-blog-card__categories {
    margin-bottom: 8px;
    font-size: 0.85rem;
    min-height: 1.2em;
}
.liste-blog-card__no-cat {
    color: #999;
    font-style: italic;
}
.liste-blog-card__categories a {
    color: #27ae60;
    text-decoration: none;
}
.liste-blog-card__categories a:hover {
    text-decoration: underline;
}
/* Blog kartı alttaki tarih */
.liste-blog-card__date {
    margin: 1.5em 0 0;
    padding-top: 1em;
    border-top: 1px solid rgba(0,0,0,0.08);
    font-size: 0.85rem;
    color: #888;
}
/* Kapalıyken içerik tamamen gizli */
.liste-blog-card__content {
    display: none !important;
    overflow: visible;
}

/* Açıkken içerik tam gösterim – makalenin tamamı görünsün */
.liste-blog-card.is-open .liste-blog-card__content,
body.blog .liste-blog-card.is-open .liste-blog-card__content,
body.home .liste-blog-card.is-open .liste-blog-card__content {
    display: block !important;
    overflow: visible !important;
    max-height: none !important;
    min-height: 0 !important;
    visibility: visible !important;
    height: auto !important;
}
/* İçerikteki tüm sarmalayıcılar kesmesin (Elementor vb.) */
.liste-blog-card.is-open .liste-blog-card__content .elementor-section,
.liste-blog-card.is-open .liste-blog-card__content .elementor-widget-wrap,
.liste-blog-card.is-open .liste-blog-card__content .elementor-element,
.liste-blog-card.is-open .liste-blog-card__content .elementor-container,
.liste-blog-card.is-open .liste-blog-card__content > *,
.liste-blog-card.is-open .liste-blog-card__content .entry-content,
body.blog .liste-blog-card.is-open .liste-blog-card__content .entry-content,
body.home .liste-blog-card.is-open .liste-blog-card__content.entry-content {
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
    display: block !important;
}
/* Blog listesi açık kartı kesmesin */
.liste-blog-list:has(.liste-blog-card.is-open),
.liste-blog-container:has(.liste-blog-card.is-open) {
    overflow: visible !important;
}
/* Blog / yazılar sayfasında ana alan içeriği kesmesin, footer'a taşma olmasın */
body.blog #primary,
body.home #primary,
body.blog .content-area,
body.home .content-area {
    overflow: visible !important;
}
body.blog #page,
body.home #page {
    overflow: visible !important;
}
body.blog .site .content-area,
body.home .site .content-area {
    display: block !important;
}
/* Blog sayfasında içerik footer'a taşmasın – altta bol boşluk, taşma yok */
body.blog .content-area,
body.home .content-area {
    padding-bottom: 80px !important;
    min-height: auto !important;
    overflow: visible !important;
}
body.blog .site-main,
body.home .site-main {
    padding-bottom: 60px !important;
    overflow: visible !important;
}
body.blog .liste-blog-container,
body.blog .liste-blog-list,
body.home .liste-blog-container,
body.home .liste-blog-list {
    overflow: visible !important;
    position: relative;
    z-index: 1;
}
body.blog #primary .liste-blog-card,
body.home #primary .liste-blog-card {
    position: relative;
    z-index: 1;
}
/* Blog açıldığında footer hep içeriğin altında – #page normal akışta, içerik yüksekliği sayfayı uzatsın */
body.blog #page,
body.home #page {
    display: block !important;
    min-height: auto !important;
}
body.blog #primary,
body.home #primary {
    flex: none !important;
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
}
body.blog .liste-blog-list,
body.home .liste-blog-list {
    max-height: none !important;
    overflow: visible !important;
}
/* Kart açıkken altta ekstra boşluk, footer daha aşağı gitsin */
body.blog .liste-blog-list:has(.liste-blog-card.is-open),
body.home .liste-blog-list:has(.liste-blog-card.is-open) {
    padding-bottom: 24px;
}
body.blog .content-area:has(.liste-blog-card.is-open),
body.home .content-area:has(.liste-blog-card.is-open) {
    padding-bottom: 120px !important;
}
body.blog .site-main:has(.liste-blog-card.is-open),
body.home .site-main:has(.liste-blog-card.is-open) {
    padding-bottom: 80px !important;
}
/* Footer sayfanın en altında – blog sayfasında üst boşluk artırıldı */
body.blog .site-footer,
body.home .site-footer {
    clear: both;
    position: relative;
    z-index: 5;
    margin-top: 48px;
}
.site-footer {
    clear: both;
    position: relative;
    z-index: 5;
    margin-top: 0;
}

.liste-blog-card__content .entry-content,
.liste-blog-card__content.entry-content,
.liste-blog-card__content .entry-content *,
.liste-blog-card__content .elementor-widget-text-editor,
.liste-blog-card__content .elementor-widget-text-editor * {
    text-align: left !important;
}
.liste-blog-card__content .entry-content,
.liste-blog-card__content.entry-content {
    padding: 0 24px 20px;
    margin: 0;
    border-top: 1px solid var(--liste-border-light, #f0f0f0);
    padding-top: 20px;
}

.liste-blog-card__close {
    display: block;
    margin: 16px 24px 24px;
    padding: 10px 20px;
    background: var(--liste-border, #e8e8e8);
    color: var(--liste-text, #333);
    border: none;
    border-radius: var(--liste-radius, 6px);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.liste-blog-card__close:hover {
    background: var(--liste-orange, #f39c12);
    color: var(--liste-white, #fff);
}

/* ========== Arama sonuçları sayfası ========== */
.liste-search-results {
    padding-top: 20px;
    padding-bottom: 60px;
}
.liste-search-title {
    margin: 0 0 24px;
    font-size: 1.5rem;
    color: var(--liste-dark-blue-light, #2c3e50);
}
.liste-search-title span {
    color: var(--liste-orange, #f39c12);
}
.liste-search-section {
    margin-bottom: 40px;
}
.liste-search-section-title {
    margin: 0 0 16px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--liste-text, #333);
}
.liste-search-posts-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.liste-search-post-item {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--liste-border-light, #f0f0f0);
}
.liste-search-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.liste-search-post-item a {
    font-weight: 600;
    color: var(--liste-dark-blue-light, #2c3e50);
    text-decoration: none;
}
.liste-search-post-item a:hover {
    color: var(--liste-orange, #f39c12);
}
.liste-search-post-excerpt {
    margin: 6px 0 0;
    font-size: 0.9rem;
    color: var(--liste-text-light, #777);
    line-height: 1.5;
}
.liste-search-no-results {
    margin: 0;
    padding: 24px 0;
    color: var(--liste-text-light, #777);
}

/* ========== Makina Parkuru sayfası ========== */
.liste-makina-parkuru {
    padding-left: 6em;
    padding-right: 6em;
    max-width: var(--liste-max-width);
    margin: 0 auto;
}
.liste-makina-parkuru .entry-header {
    margin-bottom: 1.5em;
}
.liste-makina-parkuru .entry-title {
    margin: 0 0 0.2em;
    font-size: 1.75rem;
    color: var(--liste-dark-blue-light);
}
.liste-makina-parkuru__rows {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.liste-makina-parkuru__row {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}
.liste-makina-parkuru__row .liste-makina-parkuru__img {
    flex: 0 0 auto;
    width: 100%;
    max-width: 380px;
    margin: 0;
    line-height: 0;
}
/* Yazı yoksa resim biraz daha geniş ama yine sınırlı */
.liste-makina-parkuru__row:not(:has(.liste-makina-parkuru__caption)) .liste-makina-parkuru__img {
    flex: 0 0 auto;
    max-width: 520px;
}
.liste-makina-parkuru__row .liste-makina-parkuru__img img {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: cover;
    display: block;
    border-radius: var(--liste-radius);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.liste-makina-parkuru__row .liste-makina-parkuru__caption {
    flex: 1;
    min-width: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--liste-text);
}
.liste-makina-parkuru__row .liste-makina-parkuru__caption p {
    margin: 0 0 0.75em;
}
.liste-makina-parkuru__row .liste-makina-parkuru__caption p:last-child {
    margin-bottom: 0;
}
.liste-makina-parkuru__text {
    margin-top: 2rem;
}
@media (max-width: 768px) {
    .liste-makina-parkuru {
        padding-left: 1.5em;
        padding-right: 1.5em;
    }
    .liste-makina-parkuru__row {
        flex-direction: column;
        gap: 1rem;
    }
    .liste-makina-parkuru__row .liste-makina-parkuru__img {
        flex: none;
        max-width: 100%;
    }
}

/* ========== Hakkımızda sayfası ========== */
.liste-hakkimizda {
    max-width: var(--liste-max-width);
    margin: 0 auto;
    padding: 0 var(--liste-spacing);
}
.liste-hakkimizda__header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--liste-border-light);
}
.liste-hakkimizda .entry-title {
    margin: 0 0 0.5rem;
    font-size: 2rem;
    color: var(--liste-dark-blue-light);
}
.liste-hakkimizda__lead {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--liste-text-light);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.liste-hakkimizda__content {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--liste-text);
}
.liste-hakkimizda__content h2 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--liste-dark-blue-light);
}
.liste-hakkimizda__content h2:first-child {
    margin-top: 0;
}
.liste-hakkimizda__content p {
    margin-bottom: 1em;
}
.liste-hakkimizda__content p:last-child {
    margin-bottom: 0;
}
.liste-hakkimizda__content ul,
.liste-hakkimizda__content ol {
    margin: 1em 0;
    padding-left: 1.5em;
}
.liste-hakkimizda__content li {
    margin-bottom: 0.35em;
}
@media (max-width: 768px) {
    .liste-hakkimizda .entry-title {
        font-size: 1.6rem;
    }
    .liste-hakkimizda__lead {
        font-size: 1rem;
    }
}

/* ========== Global KFT kart düzeni ========== */
/* Tüm sitedeki KFT kartlarının köşe yuvarlaklarını ve CTA buton boyutunu ortaklaştıralım. */

/* Kart dış çerçevesi: her yerde daha keskin (daha az yuvarlak) */
.kft-price-card {
    border-radius: 10px !important;
}
.single-product .kft-price-card,
.kft-loop-card .kft-price-card,
.kft-loop-item-inner .kft-price-card {
    border-radius: 10px !important;
}

/* Kart içindeki ürün görseli de uyumlu olsun */
.kft-product-image {
    border-radius: 8px !important;
}

/* Adet | Fiyat butonlarının da border-radius'unu düşür */
.kft-option-btn,
.kft-price-card .kft-add-to-cart-btn,
.kft-loop-card .kft-option-btn,
.kft-loop-item-inner .kft-option-btn,
.single-product .kft-option-btn {
    border-radius: 12px !important;
}

/* Üstteki kategori şeridinin (Dijital Etiket vb.) radius'unu da azalt */
.kft-category-label,
.kft-loop-card .kft-category-label,
.kft-loop-item-inner .kft-category-label,
.single-product .kft-category-label {
    border-radius: 10px !important;
}

/* "Daha Fazla Bilgi Al" (kft-quote-btn) butonunu bir tık küçült */
.kft-quote-btn,
.kft-loop-card .kft-quote-btn,
.kft-loop-item-inner .kft-quote-btn {
    padding: 10px 16px !important;
    font-size: 14px !important;
    border-radius: 10px !important;
}

/* Ürün kategori sayfası SEO metni (kategori açıklaması) için kaydırılabilir kutu */
.liste-cat-seo-scroll {
    max-width: 900px;
    margin: 0 auto 24px;
    max-height: 260px;
    overflow-y: auto;
    padding: 16px 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-size: 0.95rem;
    line-height: 1.6;
}
.liste-cat-seo-scroll::-webkit-scrollbar {
    width: 6px;
}
.liste-cat-seo-scroll::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.15);
    border-radius: 3px;
}
.liste-cat-seo-heading {
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #1a2744;
}
.liste-cat-seo-heading--h1 {
    font-size: 1.8rem;
}
.liste-cat-seo-subheading {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a2744;
}
