/* === assets/frontend/css/theme.css === */
/* Genel CSS */

a {
    text-decoration: none;
    outline: none;
    -webkit-transition: color 0.3s;
    -ms-transition: color 0.3s;
    transition: color 0.3s;
}

/* bs row padding */

.row {
    --bs-gutter-x: 0.5rem;
}

.breadcrumb {
    padding: 10px;
}

/* Page width: Tam Genişlik (Kenar Boşluksuz)
   Bootstrap container/container-fluid'in padding'i yok, viewport kenarlarına dayanır.
   İçerideki .row'ların --bs-gutter-x kaynaklı negative margin'i overflow yaratmasın diye
   overflow-x:clip (position:sticky'yi bozmaz, hidden'a göre daha güvenli). */
.container-full {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
    overflow-x: clip;
}

/* container-full sayfa genişliği seçildiğinde, listing toolbar'ının
   "X Ürün" sayacı (ps-0) ve sağdaki sıralama select'i (pe-0) viewport kenarına
   yapışıyor. Bootstrap utility'leri padding'i sıfırladığı için doğrudan
   ilgili elementlere ufak yatay margin veriyoruz. */
.container-full .ecom-products-toolbar #pagination-results2 {
    margin-left: 5px;
}

.container-full .ecom-products-toolbar .ecom-sort-select {
    margin-right: 5px;
}

/* Cart Icon Button */
.shpcrt-icon-wrapper {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2999;
}

.shpcrt-cart-btn {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shpcrt-cart-btn:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.shpcrt-cart-icon {
    font-size: 24px;
}

.shpcrt-badge {
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: bold;
}

/* Overlay */
.shpcrt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.shpcrt-overlay.shpcrt-active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar */
.shpcrt-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: white;
    z-index: 3001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
}

.shpcrt-sidebar.shpcrt-active {
    right: 0;
}

/* Header */
.shpcrt-header {
    padding: 20px;
    background: #fff;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.shpcrt-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.shpcrt-close-btn {
    background: #f5f5f5;
    border: none;
    color: #333;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.shpcrt-close-btn:hover {
    background: #e0e0e0;
}

/* Delivery Info */
.shpcrt-delivery-info {
    background: #f8f9fa;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.shpcrt-delivery-icon {
    font-size: 20px;
}

.shpcrt-delivery-text {
    flex: 1;
}

.shpcrt-delivery-title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.shpcrt-delivery-desc {
    font-size: 11px;
    color: #666;
}

/* Mini Cart Wrapper */
.mini-cart {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Cart Items Container */
.shpcrt-items-container {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    background: #fafafa;
}

.shpcrt-items-container::-webkit-scrollbar {
    width: 6px;
}

.shpcrt-items-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.shpcrt-items-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

/* Cart Item */
.shpcrt-item {
    background: white;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #e9ecef;
}

.shpcrt-item-content {
    display: flex;
    gap: 12px;
}

.shpcrt-item-image {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f5f5f5;
}

.shpcrt-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shpcrt-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.shpcrt-item-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.shpcrt-item-details {
    flex: 1;
}

.shpcrt-campaign-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #BB851B;
    line-height: 1.3;
    margin-bottom: 3px;
}

.shpcrt-item-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.3;
}

.shpcrt-item-title-info {
    color: #707070;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
}

.shpcrt-price-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.shpcrt-old-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
}

.shpcrt-new-price {
    font-size: 14px;
    font-weight: 700;
    color: #ff6b35;
}

/* Quantity and Remove */
.shpcrt-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.shpcrt-qty-wrapper {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.shpcrt-qty-btn {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    font-weight: 600;
    transition: all 0.2s ease;
}

.shpcrt-qty-btn:hover {
    color: #333;
}

.shpcrt-qty-input {
    width: 32px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.shpcrt-remove-text {
    font-size: 13px;
    color: #666;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s;
}

.shpcrt-remove-text:hover {
    color: #e74c3c;
}

/* Variants */
.shpcrt-variants {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.shpcrt-variant-item {
    font-size: 11px;
    color: #666;
    background: #f5f5f5;
    padding: 3px 8px;
    border-radius: 4px;
}

/* Campaign Badge */
.shpcrt-campaign {
    margin-top: 6px;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Promo Code */
.shpcrt-promo-section {
    padding: 15px 20px;
    background: white;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.shpcrt-promo-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px dashed #ccc;
}

.shpcrt-promo-icon {
    width: 20px;
    height: 20px;
    background: #4caf50;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.shpcrt-promo-text {
    flex: 1;
    font-size: 13px;
    color: #333;
}

.shpcrt-promo-btn {
    font-size: 12px;
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
}

/* Footer */
.shpcrt-footer {
    padding: 20px;
    background: white;
    border-top: 1px solid #eee;
    flex-shrink: 0;
}

.shpcrt-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.shpcrt-summary-label {
    font-size: 14px;
    color: #666;
}

.shpcrt-summary-value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.shpcrt-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.shpcrt-total-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.shpcrt-total-price {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.shpcrt-checkout-btn {
    width: 100%;
    background: #4caf50;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.shpcrt-checkout-btn:hover {
    background: #45a049;
    transform: translateY(-1px);
}

.shpcrt-continue-btn {
    width: 100%;
    background: white;
    border:none;
    color: #666;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.shpcrt-continue-btn:hover {
    background: #f5f5f5;
}

/* Responsive */
@media (max-width: 768px) {
    .shpcrt-sidebar {
        width: 100%;
        right: -100%;
    }

    .shpcrt-header {
        padding: 15px;
    }

    .shpcrt-header h2 {
        font-size: 18px;
    }

    .shpcrt-delivery-info {
        padding: 10px 15px;
    }

    .shpcrt-items-container {
        padding: 10px;
    }

    .shpcrt-item {
        padding: 10px;
        margin-bottom: 8px;
    }

    .shpcrt-item-image {
        width: 70px;
        height: 70px;
    }

    .shpcrt-item-title {
        font-size: 13px;
    }

    .shpcrt-old-price {
        font-size: 11px;
    }

    .shpcrt-new-price {
        font-size: 13px;
    }

    .shpcrt-qty-btn {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }

    .shpcrt-qty-input {
        width: 30px;
        font-size: 13px;
    }

    .shpcrt-remove-text {
        font-size: 12px;
    }

    .shpcrt-variant-item {
        font-size: 10px;
        padding: 2px 6px;
    }

    .shpcrt-campaign {
        font-size: 10px;
        padding: 3px 6px;
    }

    .shpcrt-promo-section {
        padding: 12px 15px;
    }

    .shpcrt-footer {
        padding: 15px;
    }

    .shpcrt-summary-label,
    .shpcrt-summary-value {
        font-size: 13px;
    }

    .shpcrt-total-label {
        font-size: 15px;
    }

    .shpcrt-total-price {
        font-size: 18px;
    }

    .shpcrt-checkout-btn {
        padding: 13px;
        font-size: 14px;
    }

    .shpcrt-continue-btn {
        padding: 11px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .shpcrt-cart-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* ============================================================
   TOAST — minimal pill (header-içi mobile, sağ üst desktop)
   ============================================================ */
.toast-container {
    position: fixed;
    top: 18px;
    right: 20px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    pointer-events: none;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.toast {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    border-radius: 6px;
    padding: 10px 14px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12), 0 1px 3px rgba(15, 23, 42, 0.06);
    font-size: 13px;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.3;
    width: max-content;
    max-width: 320px;
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
    transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto;
}

.toast-content { width: max-content; max-width: 100%; }

.toast.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.toast-content {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.toast-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    color: #fff;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.toast.success .toast-icon { background: #10b981; }
.toast.error   .toast-icon { background: #ef4444; }
.toast.warning .toast-icon { background: #f59e0b; }
.toast.info    .toast-icon { background: #3b82f6; }

.toast-text { min-width: 0; }
.toast-message {
    font-size: 13px;
    color: #1f2937;
    font-weight: 500;
    text-align: center;
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* Eski markup ile uyum için artık kullanılmayan elemanlar gizlensin */
.toast-close,
.toast-progress,
.toast-title { display: none !important; }

/* Mobile: header içine ortada konumlandır (görseldeki gibi) */
@media (max-width: 767.98px) {
    .toast-container {
        top: 12px;
        left: 50%;
        right: auto;
        transform: translate3d(-50%, 0, 0);
        align-items: center;
    }
    .toast {
        font-size: 12.5px;
        padding: 8px 14px;
        max-width: calc(100vw - 24px);
    }
    .toast-message { max-width: none; }
}


/* product card image ratio */

.ratio-1-1 { aspect-ratio: 1 / 1; }
.ratio-3-4 { aspect-ratio: 3 / 4; }
.ratio-9-16 { aspect-ratio: 9 / 16; }

/* product rating */

.product-rating {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    min-height: 14px;
}
.rating-score {
    font-weight: 600;
    color: #1a1a1a;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.stars-display {
    width: 90px;
    height: 15px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(90deg, #FFB800 var(--percent), #E0E0E0 var(--percent));
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M10 0l2.5 7.5h7.5l-6 4.5 2.5 7.5-6-4.5-6 4.5 2.5-7.5-6-4.5h7.5z"/><path d="M30 0l2.5 7.5h7.5l-6 4.5 2.5 7.5-6-4.5-6 4.5 2.5-7.5-6-4.5h7.5z"/><path d="M50 0l2.5 7.5h7.5l-6 4.5 2.5 7.5-6-4.5-6 4.5 2.5-7.5-6-4.5h7.5z"/><path d="M70 0l2.5 7.5h7.5l-6 4.5 2.5 7.5-6-4.5-6 4.5 2.5-7.5-6-4.5h7.5z"/><path d="M90 0l2.5 7.5h7.5l-6 4.5 2.5 7.5-6-4.5-6 4.5 2.5-7.5-6-4.5h7.5z"/></svg>') no-repeat left center;
    -webkit-mask-size: 100% 100%;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M10 0l2.5 7.5h7.5l-6 4.5 2.5 7.5-6-4.5-6 4.5 2.5-7.5-6-4.5h7.5z"/><path d="M30 0l2.5 7.5h7.5l-6 4.5 2.5 7.5-6-4.5-6 4.5 2.5-7.5-6-4.5h7.5z"/><path d="M50 0l2.5 7.5h7.5l-6 4.5 2.5 7.5-6-4.5-6 4.5 2.5-7.5-6-4.5h7.5z"/><path d="M70 0l2.5 7.5h7.5l-6 4.5 2.5 7.5-6-4.5-6 4.5 2.5-7.5-6-4.5h7.5z"/><path d="M90 0l2.5 7.5h7.5l-6 4.5 2.5 7.5-6-4.5-6 4.5 2.5-7.5-6-4.5h7.5z"/></svg>') no-repeat left center;
    mask-size: 100% 100%;
}
.stars-display::before, .stars-display::after {
    content: none !important;
    display: none !important;
}
.review-count {
    color: #888;
    font-size: 11px;
    white-space: nowrap;
    margin-left: 100px;
}

/* Modal Genel Ayarları: Pürüzsüz köşeler ve yumuşak, geniş bir gölge */
.minimal-modal {
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
}

/* Kapatma butonunu sağ üst köşeye sabitleme ve hafif şeffaflaştırma */
.minimal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
.minimal-close:hover {
  opacity: 1;
}

/* Minimal Input: Kutuyu kaldır, sadece alt çizgi bırak */
.minimal-input {
  border: none;
  border-bottom: 2px solid #e9ecef;
  border-radius: 0;
  padding: 10px 0;
  font-size: 1.1rem;
  background-color: transparent;
  box-shadow: none !important; /* Bootstrap'in mavi parlama efektini kapatır */
  transition: border-color 0.3s ease;
  text-align: center; /* Yazıyı ortala */
}

/* Inputa tıklandığında alt çizginin siyah olması (Yüksek kontrast) */
.minimal-input:focus {
  border-bottom: 2px solid #212529;
}

/* Gönder Butonu Efektleri */
.minimal-btn {
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.minimal-btn:hover {
  transform: translateY(-2px); /* Üzerine gelince çok hafif yukarı kalkar */
  box-shadow: 0 8px 15px rgba(33, 37, 41, 0.2);
}
/* === assets/frontend/css/theme_custom.css === */
/* --- THEME CUSTOM --- */
body {
    font-family: "Quicksand", sans-serif;
    background-color: #f5f5f5;
    color: #000000;
}
a {
    color: #000000;
}
button {
    background-color: #000000;
    color: #ffffff;
}
i {
    color: #ffffff;
}
button i {
    color: #000000;
}
.breadcrumb {
    background: transparent;
    border-radius: 8px;
    margin: 10px 0;
    font-size: 14px;
}
.breadcrumb a {
    color: #000000;
    text-decoration: none;
}
.breadcrumb a:hover {
    color: #4a4a4a;
}
.breadcrumb i {
    color: #000000;
    text-decoration: none;
}
.breadcrumb span.active {
    color: #000000;
    font-weight: 600;
}
.shpcrt-header {
    background: #ffffff;
    border-bottom-color: #ffffff;
}
.shpcrt-header h2 {
    color: #333333;
    font-weight: 600;
}
.shpcrt-close-btn {
    background: #f5f5f5;
    color: #333333;
}
.shpcrt-items-container {
    background: #fafafa;
}
.shpcrt-item {
    background: #ffffff;
    border-color: #e9ecef;
}
.shpcrt-item-title {
    color: #333333;
    font-weight: 500;
}
.shpcrt-new-price {
    color: #ff6b35;
    font-weight: 700;
}
.shpcrt-qty-wrapper {
    background: #f5f5f5;
    border-color: #e0e0e0;
}
.shpcrt-qty-btn {
    color: #666666;
}
.shpcrt-qty-input {
    color: #333333;
    font-weight: 600;
}
.shpcrt-remove-text {
    color: #666666;
    font-weight: 400;
}
.shpcrt-remove-text:hover {
    color: #e74c3c;
}
.shpcrt-footer {
    background: #ffffff;
    border-color: #eeeeee;
}
.shpcrt-total-label {
    color: #333333;
    font-weight: 600;
}
.shpcrt-total-price {
    color: #333333;
    font-weight: 700;
}
.shpcrt-continue-btn {
    background: #ffffff;
    color: #666666;
}
.shpcrt-continue-btn:hover {
    background: #ffffff;
    color: #666666;
}
.shpcrt-checkout-btn {
    background: #4caf50;
    color: #ffffff;
}
.shpcrt-checkout-btn:hover {
    background: #4caf50;
    color: #ffffff;
}

/* === assets/frontend/css/header/header_2_base.css === */
/* --- HEADER 2 BASE CSS (editable:false) --- */
/* Sticky footer: içerik az olsa bile footer her zaman en altta kalsın
   (footer'da margin-top:auto var, body'nin flex column olması gerekiyor) */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.logo-image{
    /* Sabit height yerine min-height: dikey/kare logolar (52-60px kutu) taşmadan sığsın */
    min-height: 40px;
    display: flex;
    align-items: center;
}
.logo-image img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
}
.h14-top-bar {
    color: white;
    font-size: 13px;
}
.h14-top-bar a {
    text-decoration: underline;
}
.h14-logo-img {
    max-height: 50px;
    width: 100%;
    object-fit: contain;
    transition: 0.3s;
}
.h14-search-input {
    border-radius: 5px 0 0 5px !important;
    border: 1px solid #ddd;
}
.h14-search-input:focus {
    outline: none;
    box-shadow: none;
}
.h14-search-btn {
    border-radius: 0 5px 5px 0 !important;
    border: none;
}
.h14-main-nav {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.h14-nav-link {
    padding: 15px 18px !important;
}
.h14-nav-item .dropdown-menu a img {
    width: 100px;
}

@media (min-width: 992px) {
    .h14-nav-container {
        position: relative;
    }
    .h14-nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    .h14-nav-item.h14-mega-area {
        position: static;
    }
    .h14-mega-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px;
        border-top: 3px solid #3e6d52;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-radius: 0 0 8px 8px;
    }
    .h14-standard-dropdown {
        min-width: 200px;
        border-top: 3px solid #3e6d52;
    }
    .dropdown-submenu {
        position: relative;
    }
    .dropdown-submenu > .dropdown-menu {
        display: none;
        position: absolute;
        left: 100%;
        top: 0;
        margin-left: 0;
        border-top: 2px solid #3e6d52;
    }
    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }
    .h14-submenu {
        min-width: 200px;
    }
    .h14-submenu-level3 {
        min-width: 180px;
    }
    .dropdown-submenu > .dropdown-toggle::after {
        content: '\f105';
        font-family: 'Font Awesome 6 Free';
        border: none;
        font-size: 18px;
        font-weight: bold;
        float: right;
        margin-left: auto;
    }
}
.h14-mega-title {
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin-bottom: 10px;
    display: block;
}
.h14-mega-list {
    list-style: none;
    padding: 0;
}
.h14-mega-list li a {
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    display: block;
}
.h14-mega-list li a:hover {
    padding-left: 5px;
    transition: 0.2s;
}

@media (max-width: 991px) {
    .h14-logo-img {
        max-height: 40px;
    }
    .h14-search-container {
        order: 3;
        margin-top: 15px;
    }
    .h14-mobile-dropdown-toggle {
        border: none !important;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .h14-mobile-dropdown-toggle .h14-mobile-arrow {
        font-size: 12px;
        transition: transform 0.3s ease;
    }
    .h14-mobile-dropdown-toggle[aria-expanded="true"] .h14-mobile-arrow {
        transform: rotate(90deg);
    }
    .h14-mobile-dropdown {
        display: none;
        padding: 10px 0;
    }
    .h14-mobile-dropdown.show {
        display: block;
    }
    .search-container {
        margin: 15px auto 0 auto;
        margin-top: 5px;
    }
}
@media (max-width: 768px){
    .logo-image{
        /* Sabit height yerine min-height: logo kutusu oranına göre esner */
        min-height: 35px;
    }
}
@media (max-width: 480px) {
    #h14MobileMenu.offcanvas-start {
        width: 100%;
        max-width: 100vw;
    }
}
#h14MobileMenu .collapsing {
    transition-duration: 0.2s;
}
.h14-announcement-wrapper {
    height: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.h14-announcement-item {
    display: none;
    width: 100%;
    text-align: center;
}
.h14-announcement-item.active {
    display: block;
}
.search-container {
    margin: 0 auto 0 auto;
    position: relative;
}
.search-input-wrapper {
    position: relative;
    width: 100%;
}
.search-input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
}
.search-input:focus {
    border-color: #4CAF50;
}
.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
}
.search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-top: 8px;
    max-height: 500px;
    overflow-y: auto;
    z-index: 1100;
}
.search-results.active {
    display: block;
}
.result-section {
    padding: 15px;
}
.section-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    padding-left: 5px;
}
.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-bottom: 8px;
}
.product-name {
    font-size: 14px;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 10px;
}
.product-price {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.original-price {
    font-size: 12px;
    text-decoration: line-through;
}
.no-results {
    padding: 30px;
    text-align: center;
}

/* === assets/frontend/css/header/header_2.css === */
/* --- HEADER GENEL --- */
.h14-top-bar {
    background-color: #2b405b;
}
.h14-top-bar a {
    color: #ffffff;
}
.h14-search-btn {
    background-color: #23415c;
    color: white;
}
.h14-search-btn i {
    color: #ffffff;
}
.h14-search-btn:hover {
    background-color: #2b405b;
    color: white;
}
.h14-heart-box i {
    color: #000000;
}
.h14-user-box i {
    color: #000000;
}
.h14-cart-box {
    background-color: #2b405b;
    color: #ffffff;
}
.h14-cart-box i {
    color: #ffffff;
}
.h14-main-nav {
    background: white;
}
.h14-nav-link {
    color: #333 !important;
    font-weight: 600;
}
.h14-mega-title {
    font-weight: bold;
    color: #2b405b;
}
.h14-mega-list li a {
    color: #555;
}
.h14-mega-list li a:hover {
    color: #3e6d52;
}

@media (max-width: 991px) {
    .h14-mobile-dropdown-toggle {
        background: transparent !important;
    }
}
.h14-announcement-item.active {
    color: #fff;
}
.h14-announcement-item.active a {
    color: #fff;
}
.search-results {
    background: white;
}
.section-title {
    color: #999;
}
.result-item:hover {
    background-color: #f8f8f8;
}
.product-name {
    color: #333;
    font-weight: 400;
}
.product-price {
    color: #333;
    font-weight: 600;
}
.original-price {
    color: #999;
    font-weight: 400;
}
.special-price {
    color: #2b405b;
}
.no-results {
    color: #999;
}

/* === assets/frontend/css/footer/footer_1_base.css === */
/* --- FOOTER 1 BASE CSS (editable:false) --- */
.f13-footer {
    background: #1a1a1a;
    color: #ffffff;
    margin-top: auto;
}
.f13-footer-main {
    padding: 60px 0 40px;
}
.f13-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.f13-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.f13-footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
}
.f13-footer-menu {
    list-style: none;
    padding-left: initial;
}
.f13-footer-menu li {
    margin-bottom: 12px;
}
.f13-footer-menu a {
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
}
.f13-footer-menu a:hover {
    padding-left: 5px;
}
.f13-subscribe {
    max-width: 100%;
}
.f13-subscribe p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}
.f13-subscribe-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.f13-subscribe-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}
.f13-subscribe-input:focus {
    border-color: #4a90e2;
}
.f13-subscribe-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}
.f13-payment-methods {
    margin-top: 20px;
}
.f13-payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 10px;
    margin-top: 15px;
}
.f13-payment-item {
    padding: 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}
.f13-payment-item:hover {
    border-color: #4a90e2;
}
.f13-payment-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0.8);
    transition: filter 0.2s ease;
}
.f13-payment-item:hover img {
    filter: brightness(1);
}
.f13-footer-bottom {
    padding: 25px 0;
    border-top: 1px solid #333;
}
.f13-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.f13-copyright {
    font-size: 14px;
}
.f13-etbis {
    display: flex;
    align-items: center;
    gap: 15px;
}
.f13-etbis-badge {
    background: #2a2a2a;
    padding: 8px 15px;
    border-radius: 4px;
    border: 1px solid #333;
    transition: transform 0.2s ease;
    display: block;
}
.f13-etbis-badge:hover {
    transform: scale(1.05);
}
.f13-etbis-badge img {
    height: 35px;
    display: block;
}
.f13-footer-right-text {
    font-size: 13px;
    text-align: right;
}
.f13-footer-right-text a {
    text-decoration: none;
    transition: color 0.3s ease;
}
.f13-social-links {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    /* Tum sosyal ikonlar aktifken sigmazsa alt satira kaysin (ezilmesin) */
    flex-wrap: wrap;
}
.f13-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border-width: 1px;
    border-style: solid;
    /* Daralinca yatayda ezilip yassi gorunmesin; daire boyutu sabit kalsin */
    flex-shrink: 0;
}
.f13-social-link:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .f13-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .f13-subscribe-form {
        flex-direction: column;
    }
    .f13-subscribe-btn {
        width: 100%;
    }
    .f13-footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    .f13-payment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* === assets/frontend/css/footer/footer_1.css === */
/* --- FOOTER GENEL --- */
.f13-footer-main {
    background: #1a1a1a;
}
.f13-footer-column h3 {
    font-weight: 600;
    color: #ffffff;
}
.f13-footer-menu a {
    color: #b0b0b0;
    font-weight: 500;
}
.f13-footer-menu a:hover {
    color: #ffffff;
}
.f13-subscribe p {
    color: #b0b0b0;
}
.f13-subscribe-input {
    background: #2a2a2a;
    color: #ffffff;
}
.f13-subscribe-input::placeholder {
    color: #666;
}
.f13-subscribe-btn {
    background: #fff;
    color: #000;
    font-weight: 600;
}
.f13-subscribe-btn:hover {
    background: #bfbfbf;
}
.f13-payment-item {
    background: #ffffff;
}
.f13-footer-bottom {
    background: #0f0f0f;
}
.f13-copyright {
    color: #888;
    font-weight: 500;
}
.f13-footer-right-text {
    color: #888;
    font-weight: 500;
}
.f13-footer-right-text a {
    color: #888;
}
.f13-footer-right-text a:hover {
    color: #fff;
}
.f13-social-link {
    background: #fff;
    color: #000;
    border-color: #333;
}
.f13-social-link:hover {
    background: #bfbfbf;
    color: #000;
    border-color: #4a90e2;
}

/* === assets/frontend/css/pages/blog.css === */
/* ============================================================
   BLOG (frontend) — Kart bazlı modern tasarım
   Referans: iletişim sayfası (contact.css). Tüm kurallar
   .blog-page / .blog-post-page altına scope edilir.
   Mobile-first: önce mobil, masaüstü @media (min-width: 768px).
   ============================================================ */

.blog-page,
.blog-post-page {
    --primary-color: #f27a1a;
    --primary-hover: #d96a14;
    --primary-light: #fff5ed;
    --text-dark: #2a2a2a;
    --text-muted: #6b7280;
    --border-color: #e6e8eb;
    --bg-light: #f8f9fa;

    background: var(--bg-light);
    padding: 24px 0 48px;
}

.blog-wrap,
.blog-post-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ---------- Breadcrumb (Bootstrap .breadcrumb override) ---------- */
.blog-page .breadcrumb,
.blog-post-page .breadcrumb {
    display: block;
    background: none;
    padding: 0;
    margin: 0 0 18px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}
.blog-page .breadcrumb a,
.blog-post-page .breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.15s;
}
.blog-page .breadcrumb a:hover,
.blog-post-page .breadcrumb a:hover { color: var(--primary-color); }
.blog-page .breadcrumb .active,
.blog-post-page .breadcrumb .active { color: var(--text-dark); font-weight: 600; }
.blog-page .breadcrumb .mx-1,
.blog-post-page .breadcrumb .mx-1 { color: #c7ccd1; margin: 0 3px; }

/* ---------- Sayfa başlığı ---------- */
.blog-page-header {
    text-align: center;
    margin-bottom: 24px;
}
.blog-page-header h1 {
    color: var(--text-dark);
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px;
}
.blog-page-header p {
    color: var(--text-muted);
    font-size: 15px;
    margin: 0 auto;
    max-width: 640px;
    line-height: 1.5;
}

/* ---------- Kategori çubuğu (chip) ---------- */
.blog-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 28px;
}
.blog-cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
    padding: 7px 14px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background: #fff;
    color: var(--text-dark);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s;
}
.blog-cat-chip:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.blog-cat-chip.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.blog-cat-count {
    font-size: 11px;
    font-weight: 600;
    background: var(--bg-light);
    color: var(--text-muted);
    padding: 1px 7px;
    border-radius: 999px;
}
.blog-cat-chip.active .blog-cat-count {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* ---------- Yazı ızgarası ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.blog-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.18s, box-shadow 0.18s;
}
.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}
.blog-card-media {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--bg-light);
    overflow: hidden;
}
.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.blog-card:hover .blog-card-media img {
    transform: scale(1.04);
}
.blog-card-noimg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c7ccd1;
    font-size: 38px;
}
.blog-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 10px;
}
.blog-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.15s;
}
.blog-card-title a:hover {
    color: var(--primary-color);
}
.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 14px;
}
.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}
.blog-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--text-muted);
}
.blog-meta-item em {
    color: var(--primary-color);
}
.blog-card-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: var(--primary-color);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
}
.blog-card-more em {
    transition: transform 0.15s;
}
.blog-card-more:hover em {
    transform: translateX(3px);
}

/* ---------- Boş durum ---------- */
.blog-empty {
    text-align: center;
    padding: 64px 20px;
    color: var(--text-muted);
}
.blog-empty em {
    font-size: 46px;
    color: #c7ccd1;
    margin-bottom: 14px;
    display: block;
}
.blog-empty p {
    font-size: 15px;
    margin: 0;
}

/* ---------- Sayfalama ---------- */
.blog-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
}
.blog-page-link {
    min-width: 40px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
    color: var(--text-dark);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.15s;
}
.blog-page-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.blog-page-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* ============================================================
   TEKİL YAZI
   ============================================================ */
.blog-post-top {
    margin-bottom: 16px;
}
.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s;
}
.blog-back-link:hover {
    color: var(--primary-color);
}

.blog-article {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    padding: 24px 20px;
    max-width: 820px;
    margin: 0 auto;
}
.blog-post-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.blog-article-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-dark);
    margin: 0 0 14px;
}
.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}
.blog-article-media {
    margin: 0 0 22px;
    border-radius: 10px;
    overflow: hidden;
}
.blog-article-media img {
    width: 100%;
    height: auto;
    display: block;
}

/* İçindekiler kutusu */
.blog-toc {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--primary-color);
    border-radius: 8px;
    padding: 16px 18px;
    margin: 0 0 24px;
}
.blog-toc-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-toc-title em { color: var(--primary-color); }
.blog-toc-list { list-style: none; margin: 0; padding: 0; }
.blog-toc-list li { margin: 0 0 7px; }
.blog-toc-list li:last-child { margin-bottom: 0; }
.blog-toc-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.15s;
}
.blog-toc-list a:hover { color: var(--primary-color); text-decoration: underline; }
.blog-toc-list li.toc-h3 { padding-left: 18px; }
.blog-toc-list li.toc-h3 a { font-size: 13.5px; }
.blog-toc-list li.toc-h3 a::before { content: '– '; color: #c7ccd1; }

/* Başlık anchor offset (sticky header altına gizlenmesin) */
.blog-article-content h2,
.blog-article-content h3 { scroll-margin-top: 90px; }

/* CKEditor içeriği */
.blog-article-content {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.75;
    word-wrap: break-word;
}
.blog-article-content p {
    margin: 0 0 18px;
}
.blog-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
}
.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
    margin: 28px 0 12px;
}
.blog-article-content h2 { font-size: 22px; }
.blog-article-content h3 { font-size: 19px; }
.blog-article-content h4 { font-size: 17px; }
.blog-article-content a {
    color: var(--primary-color);
    text-decoration: underline;
}
.blog-article-content ul,
.blog-article-content ol {
    margin: 0 0 18px;
    padding-left: 22px;
}
.blog-article-content li {
    margin-bottom: 8px;
}
.blog-article-content blockquote {
    margin: 18px 0;
    padding: 12px 18px;
    border-left: 4px solid var(--primary-color);
    background: var(--primary-light);
    color: var(--text-dark);
    border-radius: 0 8px 8px 0;
}
.blog-article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 18px;
}
.blog-article-content table td,
.blog-article-content table th {
    border: 1px solid var(--border-color);
    padding: 8px 10px;
}
.blog-post-bottom {
    max-width: 820px;
    margin: 24px auto 0;
}

/* ============================================================
   İKİ SÜTUN DÜZEN (içerik + sidebar)
   ============================================================ */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}
.blog-main { min-width: 0; }

/* ---------- Sidebar ---------- */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.blog-widget {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    padding: 18px;
}
.blog-widget-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

/* Arama */
.blog-search {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}
.blog-search input {
    flex: 1;
    min-width: 0;
    border: none;
    padding: 10px 12px;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    background: #fff;
}
.blog-search button {
    border: none;
    background: var(--primary-color);
    color: #fff;
    padding: 0 16px;
    min-height: 42px;
    cursor: pointer;
    transition: background 0.15s;
}
.blog-search button:hover { background: var(--primary-hover); }

/* Kategori listesi */
.blog-cat-list { list-style: none; margin: 0; padding: 0; }
.blog-cat-list li { margin: 0; }
.blog-cat-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 42px;
    padding: 9px 10px;
    border-radius: 7px;
    color: var(--text-dark);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.15s;
}
.blog-cat-list a:hover { background: var(--primary-light); color: var(--primary-color); }
.blog-cat-list a.active { background: var(--primary-color); color: #fff; }
.blog-cat-num {
    font-size: 12px;
    font-weight: 600;
    background: var(--bg-light);
    color: var(--text-muted);
    padding: 2px 9px;
    border-radius: 999px;
    min-width: 26px;
    text-align: center;
}
.blog-cat-list a:hover .blog-cat-num { background: #fff; }
.blog-cat-list a.active .blog-cat-num { background: rgba(255,255,255,0.25); color: #fff; }

/* Popüler yazılar */
.blog-pop-list { list-style: none; margin: 0; padding: 0; }
.blog-pop-list li { margin-bottom: 14px; }
.blog-pop-list li:last-child { margin-bottom: 0; }
.blog-pop-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    align-items: center;
}
.blog-pop-thumb {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c7ccd1;
}
.blog-pop-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-pop-info { min-width: 0; }
.blog-pop-title {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-dark);
    transition: color 0.15s;
}
.blog-pop-item:hover .blog-pop-title { color: var(--primary-color); }
.blog-pop-meta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================================
   TEKİL YAZI — paylaşım / önceki-sonraki / benzer
   ============================================================ */
.blog-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}
.blog-share-label { font-size: 13px; font-weight: 600; color: var(--text-muted); margin-right: 2px; }
.blog-share-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s, opacity 0.15s;
}
.blog-share-btn:hover { transform: translateY(-2px); }
.blog-share-btn.wa { background: #25D366; }
.blog-share-btn.x  { background: #000; }
.blog-share-btn.x svg { display: block; }
.blog-share-btn.fb { background: #1877F2; }
.blog-share-btn.copy { background: #6b7280; }
.blog-share-btn.copied { background: var(--primary-color); }

/* Önceki / Sonraki */
.blog-adjacent {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
}
.blog-adj {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.15s;
}
.blog-adj:hover { border-color: var(--primary-color); box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.blog-adj-next { text-align: right; align-items: flex-end; }
.blog-adj-dir { font-size: 12.5px; font-weight: 600; color: var(--primary-color); display: inline-flex; align-items: center; gap: 6px; }
.blog-adj-title { font-size: 14.5px; font-weight: 600; color: var(--text-dark); line-height: 1.35; }

/* Benzer yazılar */
.blog-related { margin-top: 36px; }
.blog-related-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

/* ============================================================
   YORUMLAR
   ============================================================ */
.blog-comments { margin-top: 36px; }
.blog-comments-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}
.blog-comments-count { color: var(--text-muted); font-weight: 600; font-size: 16px; }
.blog-comments-empty { color: var(--text-muted); font-size: 14px; margin: 0 0 24px; }

.blog-comment-list { list-style: none; margin: 0 0 28px; padding: 0; }
.blog-comment {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}
.blog-comment:last-child { border-bottom: none; }
.blog-comment-avatar {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 17px;
}
.blog-comment-body { flex: 1; min-width: 0; }
.blog-comment-head {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}
.blog-comment-name { font-weight: 600; font-size: 14.5px; color: var(--text-dark); }
.blog-comment-date { font-size: 12px; color: var(--text-muted); }
.blog-comment-text { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text-dark); word-wrap: break-word; }

/* Yorum formu */
.blog-comment-form-wrap {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 22px;
}
.blog-comment-form-title { font-size: 17px; font-weight: 700; color: var(--text-dark); margin: 0 0 16px; }
.blog-form-row { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
.blog-form-group { margin-bottom: 14px; }
.blog-form-row .blog-form-group { margin-bottom: 0; }
.blog-comment-form input,
.blog-comment-form textarea {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 14px;
    color: var(--text-dark);
    background: #fff;
    font-family: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.blog-comment-form input:focus,
.blog-comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(242, 122, 26, 0.12);
}
.blog-comment-form textarea { resize: vertical; min-height: 110px; }
.blog-comment-btn {
    min-height: 46px;
    padding: 0 26px;
    border: none;
    border-radius: 8px;
    background: var(--primary-color);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
.blog-comment-btn:hover { background: var(--primary-hover); }
.blog-comment-btn:disabled { opacity: 0.6; cursor: default; }
.blog-comment-note { font-size: 12.5px; color: var(--text-muted); margin: 12px 0 0; }
.blog-comment-msg:not(:empty) { margin-bottom: 14px; }
.blog-form-msg {
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 13.5px;
}
.blog-form-msg.success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.blog-form-msg.error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

/* ============================================================
   MASAÜSTÜ
   ============================================================ */
@media (min-width: 600px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-adjacent { grid-template-columns: 1fr 1fr; }
    .blog-form-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px) {
    .blog-page-header h1 { font-size: 32px; }
    .blog-layout { grid-template-columns: minmax(0, 1fr) 320px; }
    .blog-sidebar { position: sticky; top: 90px; }
    .blog-main .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .blog-article { padding: 36px 40px; }
    .blog-article-title { font-size: 30px; }
}
@media (min-width: 1200px) {
    .blog-main .blog-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-grid-related { grid-template-columns: repeat(3, 1fr); }
}

