/* === assets/frontend/css/palette/palette.css === */
/* --- SITE RENK PALETI --- */
/* Bu dosya panelden otomatik uretilir, elle duzenlemeyin. */
:root {
    --wv-primary: #111827;
    --wv-primary-fg: #ffffff;
    --wv-secondary: #4b5563;
    --wv-secondary-fg: #ffffff;
    --wv-accent: #ef4444;
    --wv-accent-fg: #ffffff;
    --wv-white: #ffffff;
    --wv-gray-50: #f9fafb;
    --wv-gray-100: #f3f4f6;
    --wv-gray-200: #e5e7eb;
    --wv-gray-300: #d1d5db;
    --wv-gray-500: #6b7280;
    --wv-gray-700: #374151;
    --wv-gray-900: #111827;
    --wv-success: #16a34a;
    --wv-danger: #dc2626;
    --wv-warning: #f59e0b;
    --wv-info: #2563eb;
    --wv-primary-hover: #0e1421;
    --wv-primary-soft: #e7e8e9;
    --wv-secondary-hover: #404854;
    --wv-secondary-soft: #edeeef;
    --wv-accent-hover: #cb3a3a;
    --wv-accent-soft: #fdecec;
    --wv-success-soft: #e8f6ed;
    --wv-danger-soft: #fce9e9;
    --wv-warning-soft: #fef5e7;
    --wv-info-soft: #e9effd;
    --wv-body-bg: var(--wv-gray-50);
    --wv-text: var(--wv-gray-900);
    --wv-muted: var(--wv-gray-500);
    --wv-border: var(--wv-gray-200);
}

/* === 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: var(--wv-primary, #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: var(--wv-primary-hover, #34495e);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.shpcrt-cart-icon {
    font-size: 24px;
}

.shpcrt-badge {
    background: var(--wv-danger, #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: var(--wv-white, #fff);
    color: var(--wv-gray-900, #333);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--wv-gray-200, #eee);
    flex-shrink: 0;
}

.shpcrt-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--wv-gray-900, #333);
}

.shpcrt-close-btn {
    background: var(--wv-gray-50, #f5f5f5);
    border: none;
    color: var(--wv-gray-900, #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: var(--wv-gray-200, #e0e0e0);
}

/* Delivery Info */
.shpcrt-delivery-info {
    background: var(--wv-gray-50, #f8f9fa);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--wv-gray-200, #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: var(--wv-gray-900, #333);
    margin-bottom: 2px;
}

.shpcrt-delivery-desc {
    font-size: 11px;
    color: var(--wv-gray-500, #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: var(--wv-gray-50, #fafafa);
}

.shpcrt-items-container::-webkit-scrollbar {
    width: 6px;
}

.shpcrt-items-container::-webkit-scrollbar-track {
    background: var(--wv-gray-100, #f1f1f1);
}

.shpcrt-items-container::-webkit-scrollbar-thumb {
    background: var(--wv-gray-300, #ccc);
    border-radius: 3px;
}

/* Cart Item */
.shpcrt-item {
    background: white;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid var(--wv-gray-200, #e9ecef);
}

.shpcrt-item-content {
    display: flex;
    gap: 12px;
}

.shpcrt-item-image {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--wv-gray-50, #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: var(--wv-accent, #BB851B);
    line-height: 1.3;
    margin-bottom: 3px;
}

.shpcrt-item-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--wv-gray-900, #333);
    margin-bottom: 4px;
    line-height: 1.3;
}

.shpcrt-item-title-info {
    color: var(--wv-gray-500, #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: var(--wv-gray-500, #999);
    text-decoration: line-through;
}

.shpcrt-new-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--wv-accent, #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: var(--wv-gray-50, #f5f5f5);
    border-radius: 6px;
    border: 1px solid var(--wv-gray-200, #e0e0e0);
}

.shpcrt-qty-btn {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 16px;
    color: var(--wv-gray-500, #666);
    font-weight: 600;
    transition: all 0.2s ease;
}

.shpcrt-qty-btn:hover {
    color: var(--wv-gray-900, #333);
}

.shpcrt-qty-input {
    width: 32px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--wv-gray-900, #333);
}

.shpcrt-remove-text {
    font-size: 13px;
    color: var(--wv-gray-500, #666);
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s;
}

.shpcrt-remove-text:hover {
    color: var(--wv-danger, #e74c3c);
}

/* Variants */
.shpcrt-variants {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.shpcrt-variant-item {
    font-size: 11px;
    color: var(--wv-gray-500, #666);
    background: var(--wv-gray-50, #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 var(--wv-gray-200, #eee);
    border-bottom: 1px solid var(--wv-gray-200, #eee);
    flex-shrink: 0;
}

.shpcrt-promo-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--wv-gray-50, #f8f9fa);
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px dashed var(--wv-gray-300, #ccc);
}

.shpcrt-promo-icon {
    width: 20px;
    height: 20px;
    background: var(--wv-primary, #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: var(--wv-gray-900, #333);
}

.shpcrt-promo-btn {
    font-size: 12px;
    color: var(--wv-gray-500, #666);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
}

/* Footer */
.shpcrt-footer {
    padding: 20px;
    background: white;
    border-top: 1px solid var(--wv-gray-200, #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: var(--wv-gray-500, #666);
}

.shpcrt-summary-value {
    font-size: 14px;
    color: var(--wv-gray-900, #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: var(--wv-gray-900, #333);
}

.shpcrt-total-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--wv-gray-900, #333);
}

.shpcrt-checkout-btn {
    width: 100%;
    background: var(--wv-primary, #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: var(--wv-primary-hover, #45a049);
    transform: translateY(-1px);
}

.shpcrt-continue-btn {
    width: 100%;
    background: var(--wv-primary-soft, white);
    border:none;
    color: var(--wv-primary, #666);
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.shpcrt-continue-btn:hover {
    background: var(--wv-primary, #f5f5f5);
    color: var(--wv-primary-fg, #666);
}

/* 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: var(--wv-white, #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: var(--wv-gray-900, #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: var(--wv-white, #fff);
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.toast.success .toast-icon { background: var(--wv-success, #10b981); }
.toast.error   .toast-icon { background: var(--wv-danger, #ef4444); }
.toast.warning .toast-icon { background: var(--wv-warning, #f59e0b); }
.toast.info    .toast-icon { background: var(--wv-info, #3b82f6); }

.toast-text { min-width: 0; }
.toast-message {
    font-size: 13px;
    color: var(--wv-gray-900, #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: var(--wv-gray-900, #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), var(--wv-gray-200, #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: var(--wv-gray-500, #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: var(--wv-white, #ffffff);
}

/* Özel Form Modalı: iframe içindeki form, kendi genişliğine göre sütuna geçer.
   Varsayılan modal (500px) iframe'i 768px eşiğinin altında bıraktığı için alanlar
   masaüstünde de alt alta düşüyordu. Geniş ekranda pencere büyütülür; mobilde
   dokunulmaz, alanlar tek sütun kalır. */
@media (min-width: 900px) {
  #customFormModal .modal-dialog { max-width: 860px; }
}

/* iframe'in kendi border-radius'u mobilde kaydırma sırasında kırpmayı bırakabiliyor
   (köşede arka plan sızıyor). Kırpmayı iframe'e değil kapsayıcılara yaptırıyoruz. */
#customFormModal .modal-content { overflow: hidden; }
#customFormModal .modal-body { overflow: hidden; border-radius: inherit; }
/* Kaydırma iframe'in sonuna gelince hareket arkadaki sayfaya/modala taşmasın */
#customFormModal .modal-body,
#customform-modal-frame { overscroll-behavior: contain; }

/* 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 var(--wv-gray-200, #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 var(--wv-gray-900, #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);
}
/* Kisa icerikli sayfalarda (or. sonuc bulunamayan arama/kategori) footer'in
   yukari cikmamasi icin: govde dikey flex olur, ana icerik (#wsv-main) kalan
   alani doldurur, footer her zaman ekranin altina yapisik kalir. */
body {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
}
#wsv-main {
    flex: 1 0 auto;
    width: 100%;
}

/* =============================================
   LAYOUT SATIRLARI — MODÜLLER ARASI DİKEY BOŞLUK
   ---------------------------------------------
   Modüllerin bir kısmı kendi sarmalayıcısında mt-3 taşır (Öne Çıkan Ürünler,
   Resim+Yazı, Video), bir kısmı taşımaz (Banner, HTML, Kayan Yazı). Bu yüzden
   aynı satır ayarıyla farklı boşluklar oluşuyor, düzen dengesiz görünüyordu.

   Çözüm: dikey boşluk TEK YERDEN — satırın kendi ayarlarından — yönetilir.
   Modül üstü boşluk sıfırlanır (Bootstrap utility'leri !important taşıdığı için
   burada da gerekir). Aynı satırda alt alta düşen modüller birbirine yapışmasın
   diye satıra row-gap verilir; bu boşluk yalnızca satır kaydığında (mobil)
   devreye girer, yan yana dizilimde fazladan boşluk yaratmaz.
   ============================================= */

.layout-row-wrapper > .container > .row,
.layout-row-wrapper > .container-fluid > .row,
.layout-row > .container > .row,
.layout-row > .container-fluid > .row {
    row-gap: 1rem;
}

.layout-row-wrapper > .container > .row > [class*="col-"],
.layout-row-wrapper > .container-fluid > .row > [class*="col-"],
.layout-row > .container > .row > [class*="col-"],
.layout-row > .container-fluid > .row > [class*="col-"] {
    margin-top: 0 !important;
}

/* Kenar boşluksuz satırlarda modüller doğrudan sarmalayıcının altındadır */
.layout-row-wrapper.layout-row-container-full > [class*="col-"],
.layout-row.layout-row-container-full > [class*="col-"] {
    margin-top: 0 !important;
}

/* === assets/frontend/css/theme_custom.css === */
/* --- OTOMATIK URETIM (palet varsayilanlari) --- */
body {
    font-family: "Quicksand", sans-serif;
    background-color: var(--wv-gray-50, #f5f5f5);
    color: var(--wv-gray-900, #000000);
}
a {
    color: var(--wv-primary, #000000);
}
button {
    background-color: var(--wv-primary, #000000);
    color: var(--wv-primary-fg, #ffffff);
}
i {
    color: var(--wv-gray-900, #000000);
}
button i {
    color: currentColor;
}
.breadcrumb {
    background: transparent;
    border-radius: 8px;
    margin: 10px 0;
    font-size: 14px;
}
.breadcrumb a {
    color: var(--wv-primary, #2ba40a);
    text-decoration: none;
}
.breadcrumb a:hover {
    color: var(--wv-primary-hover, #52fb46);
}
.breadcrumb i {
    color: var(--wv-primary, #2ba40a);
    text-decoration: none;
}
.breadcrumb span.active {
    color: var(--wv-gray-700, #2e8500);
    font-weight: 700;
}
.shpcrt-header {
    background: var(--wv-white, #ffffff);
    border-bottom-color: var(--wv-white, #ffffff);
}
.shpcrt-header h2 {
    color: var(--wv-gray-900, #333333);
    font-weight: 600;
}
.shpcrt-close-btn {
    background: var(--wv-gray-50, #f5f5f5);
    color: var(--wv-gray-900, #333333);
}
.shpcrt-items-container {
    background: var(--wv-gray-50, #fafafa);
}
.shpcrt-item {
    background: var(--wv-white, #ffffff);
    border-color: var(--wv-gray-200, #e9ecef);
}
.shpcrt-item-title {
    color: var(--wv-gray-900, #333333);
    font-weight: 500;
}
.shpcrt-new-price {
    color: var(--wv-accent, #ff6b35);
    font-weight: 700;
}
.shpcrt-qty-wrapper {
    background: var(--wv-gray-50, #f5f5f5);
    border-color: var(--wv-gray-200, #e0e0e0);
}
.shpcrt-qty-btn {
    color: var(--wv-gray-500, #666666);
}
.shpcrt-qty-input {
    color: var(--wv-gray-900, #333333);
    font-weight: 600;
}
.shpcrt-remove-text {
    color: var(--wv-gray-500, #666666);
    font-weight: 400;
}
.shpcrt-remove-text:hover {
    color: var(--wv-danger, #e74c3c);
}
.shpcrt-footer {
    background: var(--wv-white, #ffffff);
    border-color: var(--wv-gray-200, #eeeeee);
}
.shpcrt-total-label {
    color: var(--wv-gray-900, #333333);
    font-weight: 600;
}
.shpcrt-total-price {
    color: var(--wv-gray-900, #333333);
    font-weight: 700;
}
.shpcrt-continue-btn {
    background: var(--wv-primary-soft, #ffffff);
    color: var(--wv-primary, #666666);
}
.shpcrt-continue-btn:hover {
    background: var(--wv-primary, #ffffff);
    color: var(--wv-primary-fg, #666666);
}
.shpcrt-checkout-btn {
    background: var(--wv-primary, #4caf50);
    color: var(--wv-primary-fg, #ffffff);
}
.shpcrt-checkout-btn:hover {
    background: var(--wv-primary-hover, #4caf50);
    color: var(--wv-primary-fg, #ffffff);
}

/* === assets/frontend/css/header/header_1_base.css === */
/* --- HEADER GENEL --- */
.h13-announcement-bar {
    background: #fbbb00;
    color: #333;
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 1500;
}
.h13-announcement-bar a {
    color: #333;
    text-decoration: underline;
    font-weight: 600;
}
.announcement-slider {
    height: 20px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.announcement-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease;
}
.announcement-slide.active {
    opacity: 1;
    transform: translateY(0);
}
.announcement-slide span {
    color: #000;
    font-size: 13px;
}
.announcement-slide a {
    color: #000;
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.3s ease;
}
.announcement-slide a:hover {
    color: #3b3b3b;
}
.h13-site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 40px;
    z-index: 1501;
}
.h13-header-top {
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}
.h13-container-logo {
    max-width: 1320px;
    margin: 0 auto;
}
.h13-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 41px 0 24px;
}
.h13-header-top .h13-container-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 34px;
}
.h13-logo {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.h13-logo span {
    color: #fbbb00;
}
.h13-header-search {
    flex: 1;
    max-width: 600px;
    margin: 0 40px;
}
.h13-search-form {
    display: flex;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: all 0.2s ease;
    position: relative;
}
.h13-search-form:focus-within {
    border-color: #fbbb00;
    box-shadow: 0 0 0 3px rgba(251, 187, 0, 0.1);
}
.h13-search-input {
    flex: 1;
    border: none;
    padding: 12px 16px;
    outline: none;
    font-size: 14px;
    color: #333;
}
.h13-search-input::placeholder {
    color: #999;
}
.h13-search-btn {
    background: #fbbb00;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    color: #fff;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 10px 10px 0;
}
.h13-search-btn:hover {
    background: #e6a900;
    transform: scale(1.02);
}
.h13-search-btn:active {
    transform: scale(0.98);
}
.h13-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.h13-info-icon {
    width: 40px;
    height: 40px;
    fill: #fbbb00;
}
.h13-info-text {
    display: flex;
    flex-direction: column;
}
.h13-info-text span {
    font-size: 11px;
    color: #666;
}
.h13-info-text .h13-phone {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}
.search-container {
    max-width: 600px;
    margin: 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;
    background: white;
    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: 1000;
}
.search-results.active {
    display: block;
}
.result-section {
    padding: 15px;
}
.section-title {
    font-size: 12px;
    color: #999;
    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;
}
.result-item:hover {
    background-color: #f8f8f8;
}
.product-name {
    font-size: 14px;
    color: #333;
    font-weight: 400;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 10px;
}
.product-price {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.original-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}
.special-price {
    color: #e74c3c;
}
.no-results {
    padding: 30px;
    text-align: center;
    color: #999;
}
.divider {
    height: 1px;
    background-color: #eee;
    margin: 5px 0;
}
.h13-header-main {
    padding: 7px 0;
}
.h13-header-main .h13-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.h13-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}
.h13-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s;
}
.h13-mobile-toggle.h13-active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}
.h13-mobile-toggle.h13-active span:nth-child(2) {
    opacity: 0;
}
.h13-mobile-toggle.h13-active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
.h13-nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}
.h13-nav-menu > li {
    position: relative;
}
.h13-nav-menu > li > a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}
.h13-nav-menu > li > a:hover {
    color: #fbbb00;
}
.h13-nav-menu .h13-arrow {
    font-size: 12px;
}
.h13-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    border-radius: 5px;
    padding: 10px 0;
    z-index: 101;
}
.h13-nav-menu > li:hover .h13-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.h13-dropdown li {
    list-style: none;
}
.h13-dropdown li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}
.h13-dropdown li a:hover {
    background: #fffbf0;
    color: #fbbb00;
    padding-left: 25px;
}
.h13-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    width: 600px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    border-radius: 5px;
    padding: 20px;
    z-index: 101;
}
.h13-nav-menu > li:hover .h13-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.h13-mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.h13-mega-menu-column h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}
.h13-mega-menu-column ul {
    list-style: none;
}
.h13-mega-menu-column ul li {
    margin-bottom: 8px;
}
.h13-mega-menu-column ul li a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}
.h13-mega-menu-column ul li a:hover {
    color: #fbbb00;
}
.h13-header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}
.h13-header-actions a {
    position: relative;
    color: #333;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
}
.h13-header-actions a:hover {
    color: #fbbb00;
}
.h13-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.h13-login-btn {
    padding: 10px 20px;
    background: transparent;
    color: #333;
    text-decoration: none;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.2px;
}
.h13-login-btn:hover {
    border-color: #fbbb00;
    color: #fbbb00;
    background: rgba(251, 187, 0, 0.05);
}
.h13-login-btn:active {
    transform: scale(0.98);
}
.h13-login-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}
.h13-offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}
.h13-offcanvas-overlay.h13-active {
    opacity: 1;
    visibility: visible;
}
.h13-btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
    margin-bottom: 10px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}
.h13-btn-primary {
    background: #fbbb00;
    color: #fff;
}
.h13-btn-primary:hover {
    background: #e6a900;
}
.h13-btn-secondary {
    background: #f8f9fa;
    color: #333;
}
.h13-btn-secondary:hover {
    background: #e0e0e0;
}
.h13-mobile-logo {
    display: none !important;
}
.h13-mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    width: 40px;
    height: 40px;
    display: none !important;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
    z-index: 1002;
}
.h13-mobile-menu-close:hover {
    color: #333;
}
.h13-mobile-login-header {
    display: none !important;
    background: transparent;
    padding: 12px 0 !important;
    margin: -80px -20px 15px -20px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    text-align: center;
}
.h13-mobile-login-header a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.3px;
    transition: color 0.2s;
    display: inline;
}
.h13-mobile-login-header .h13-mobile-login-link {
    padding-left: 20px;
}
.h13-mobile-login-header a:hover {
    color: #fbbb00;
}
.h13-mobile-login-header .h13-separator {
    margin: 0 8px;
    color: #ddd;
    font-weight: 300;
    display: inline;
}
.h13-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}
.h13-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}
.h13-icon-heart::before {
    content: '♡';
}
.h13-search-btn .h13-icon {
    width: 18px;
    height: 18px;
}
.h13-header-actions .h13-icon {
    width: 22px;
    height: 22px;
}
.h13-login-text-mobile {
    display: none;
}
.h13-login-text-full {
    display: inline;
}
.h13-mobile-search-btn {
    display: none;
}
.h13-mobile-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 998;
}
.h13-mobile-search-overlay.h13-active {
    opacity: 1;
    visibility: visible;
}
.h13-mobile-search-panel {
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 998;
    transition: top 0.3s;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.h13-mobile-search-panel.h13-active {
    top: 109px;
}
.h13-mobile-search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.h13-mobile-search-header h3 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}
.h13-mobile-search-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}
.h13-mobile-search-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.h13-mobile-search-form select, .h13-mobile-search-form input {
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
}
.h13-mobile-search-form select:focus, .h13-mobile-search-form input:focus {
    border-color: #fbbb00;
}
.h13-mobile-search-form button {
    background: #fbbb00;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.h13-mobile-search-form button:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .h13-mobile-search-btn {
        display: block;
    }
    .search-input {
        padding: 10px 40px 10px 12px;
        font-size: 14px;
    }
    .search-results {
        max-height: 400px;
    }
    .result-section {
        padding: 12px;
    }
    .result-item {
        padding: 10px 8px;
    }
    .product-name {
        font-size: 13px;
    }
    .product-price {
        font-size: 13px;
    }
    .h13-mobile-login-header {
        display: block !important;
    }
    .h13-header-top {
        display: none;
    }
    .h13-header-search {
        display: none;
    }
    .h13-header-info {
        display: none;
    }
    .h13-mobile-toggle {
        display: flex;
        order: 1;
    }
    .h13-mobile-logo {
        display: flex !important;
        order: 2;
        margin-left: 15px;
    }
    .h13-header-main nav {
        order: 4;
    }
    .h13-header-actions {
        order: 3;
        margin-left: auto;
        gap: 12px;
    }
    .h13-nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 20px !important;
        box-shadow: 5px 0 20px rgba(0,0,0,0.1);
        transition: left 0.3s;
        overflow-y: auto;
        gap: 0;
        z-index: 1501;
    }
    .h13-mobile-menu-close {
        display: flex !important;
    }
    .h13-nav-menu.h13-active {
        left: 0;
    }
    .h13-nav-menu > li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    .h13-nav-menu > li > a {
        width: 100%;
        padding: 15px 0;
    }
    .h13-dropdown, .h13-mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        width: 100%;
        display: none;
        padding: 0;
        margin-top: 10px;
    }
    .h13-nav-menu > li.h13-active .h13-dropdown, .h13-nav-menu > li.h13-active .h13-mega-menu {
        display: block;
    }
    .h13-mega-menu-grid {
        grid-template-columns: 1fr;
    }
    .h13-header-actions a {
        font-size: 18px;
    }
    .h13-login-btn {
        padding: 8px 14px;
        font-size: 13px;
        border-radius: 6px;
    }
    .h13-login-text-full {
        display: none;
    }
    .h13-login-text-mobile {
        display: inline;
    }
}
body {
    margin: 0 !important;
    line-height: normal !important;
    /* 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) */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
ul, ol {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

/* === assets/frontend/css/header/header_1.css === */
/* --- HEADER GENEL --- */
.h13-announcement-bar {
    background: #000000;
    font-weight: 500;
}
.h13-announcement-bar a {
    color: #333;
    font-weight: 600;
}
.announcement-slide span {
    color: #000;
}
.announcement-slide a {
    color: #000;
}
.announcement-slide a:hover {
    color: #3b3b3b;
}
.h13-site-header {
    background: #fff;
}
.h13-header-top {
    background: #f8f9fa;
}
.h13-search-input {
    color: #333;
}
.h13-search-input::placeholder {
    color: #999;
}
.h13-search-btn {
    background: #000000;
    color: #fff;
}
.h13-search-btn:hover {
    background: #424242;
}
.h13-info-text span {
    color: #000000;
}
.h13-info-text .h13-phone {
    font-weight: 800;
    color: #333;
}
.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: #000000;
}
.no-results {
    color: #999;
}
.h13-mobile-toggle {
    background: none;
}
.h13-mobile-toggle span {
    background: #333;
}
.h13-nav-menu > li > a {
    color: #333;
    font-weight: 500;
}
.h13-nav-menu > li > a:hover {
    color: #383838;
}
.h13-dropdown {
    background: #fff;
}
.h13-dropdown li a {
    color: #333;
}
.h13-dropdown li a:hover {
    background: #ffffff;
    color: #404040;
}
.h13-mega-menu {
    background: #fff;
}
.h13-mega-menu-column h4 {
    color: #333;
    font-weight: 600;
}
.h13-mega-menu-column ul li a {
    color: #666;
}
.h13-mega-menu-column ul li a:hover {
    color: #404040;
}
.h13-header-actions a {
    color: #333;
}
.h13-header-actions a:hover {
    color: #000000;
}
.h13-badge {
    background: #000000;
    color: #fff;
    font-weight: 600;
}
.h13-mobile-menu-close {
    background: none;
    color: #666;
}
.h13-mobile-menu-close:hover {
    color: #333;
}
.h13-mobile-login-header {
    background: transparent;
}
.h13-mobile-search-panel {
    background: #fff;
}
.h13-mobile-search-header h3 {
    color: #333;
    font-weight: 600;
}
.h13-mobile-search-close {
    background: none;
    color: #666;
}
.h13-mobile-search-form button {
    background: #000000;
    color: #fff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .h13-nav-menu {
        background: #fff;
    }
}
.wsv-menu-ic {
    color: #333333 !important;
}

/* === assets/frontend/css/footer/footer_3_base.css === */
/* ============================================================
   footer_3 — Görsel/Builder footer temel stilleri
   Dinamik değerler (renk, sütun) footer_3.php'de CSS değişkeniyle gelir.
   ============================================================ */

.ft3 { display: block; width: 100%; }
.ft3 * { box-sizing: border-box; }

.ft3-body {
    color: var(--ft3-fg, var(--wv-white, #fff));
    padding: 28px 20px 20px;
    background-size: cover;
    background-position: center;
}
/* Üst kenar şekli maske ile gövdeye işlendiği için içeriği dalganın altına it */
.ft3-body.has-edge { padding-top: 60px; }

.ft3-grid {
    display: grid;
    grid-template-columns: repeat(var(--ft3-cols, 3), 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}
/* Responsive: mobil tek, tablet iki sütun */
@media (max-width: 600px) { .ft3-grid { grid-template-columns: 1fr; } }
@media (min-width: 601px) and (max-width: 900px) { .ft3-grid { grid-template-columns: repeat(2, 1fr); } }

.ft3-col { min-width: 0; }
.ft3 .blk { margin-bottom: 18px; }
.ft3 .blk:last-child { margin-bottom: 0; }

/* Baslik hiyerarsisi (a11y) icin blok basliklari h4 -> h2 tasindi; gorunum ayni */
.ft3 h2 { font-size: 15px; margin: 0 0 10px; font-weight: 700; color: var(--ft3-heading, inherit); }
.ft3 a { color: inherit; }

/* Logo */
.ft3 .blk-logo img { max-width: 170px; max-height: 64px; display: block; }
.ft3 .blk-logo .logo-text { font-size: 22px; font-weight: 800; letter-spacing: .5px; }

/* Menü / linkler */
.ft3 .blk-menu a { display: block; text-decoration: none; font-size: 14px; margin-bottom: 7px; color: var(--ft3-link, inherit); }
.ft3 .blk-menu a:hover { text-decoration: underline; }

/* Metin */
.ft3 .blk-text p { font-size: 14px; margin: 0; }

/* Sosyal */
.ft3 .blk-social .icons { display: flex; gap: 10px; flex-wrap: wrap; }
/* Sosyal ikonlar: içi beyaz, currentColor kenarlık, siyah icon → her arka planda görünür */
.ft3 .blk-social .icons a {
    width: 38px; height: 38px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    background: var(--wv-white, #fff); border: 1px solid currentColor; color: var(--wv-gray-900, #000);
    font-size: 16px; text-decoration: none;
}
.ft3 .blk-social .icons a:hover { opacity: .75; }

/* Bülten */
.ft3 .blk-news .nl-desc { font-size: 13px; margin: 0 0 10px; }
/* Bülten: input + buton tek birim (buton içeride). Beyaz input, siyah metin/icon;
   currentColor kenarlık → arka plan rengi ne olursa olsun bölüm kaybolmaz. */
.ft3 .blk-news .nl-form { display: flex; align-items: stretch; background: var(--wv-white, #fff); border: 1px solid currentColor; border-radius: 8px; overflow: hidden; max-width: 340px; }
.ft3 .blk-news .nl-form input { flex: 1; min-width: 0; border: none; background: transparent; padding: 10px 12px; font-size: 14px; color: var(--wv-gray-900, #000); }
.ft3 .blk-news .nl-form input::placeholder { color: var(--wv-gray-900, #000); opacity: 1; }
.ft3 .blk-news .nl-form input:focus { outline: none; }
.ft3 .blk-news .nl-form button { border: none; background: transparent; color: var(--wv-gray-900, #000); padding: 0 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 15px; }
.ft3 .blk-news .nl-form button:hover { opacity: .7; }

/* İletişim */
.ft3 .blk-contact p { font-size: 14px; margin: 0 0 6px; display: flex; gap: 8px; }

/* Çalışma saatleri */
.ft3 .blk-hours p { font-size: 14px; margin: 0 0 5px; display: flex; justify-content: space-between; gap: 14px; }
.ft3 .blk-hours p b { font-weight: 600; }

/* Ödeme */
.ft3 .blk-pay .pay-icons { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.ft3 .blk-pay .pay-svg { background: var(--wv-white, #fff); border-radius: 6px; padding: 4px 6px; }

/* Alt bilgi */
.ft3-bottom {
    max-width: 1100px; margin: 22px auto 0; padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.18);
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px;
    font-size: 13px; text-align: center;
}
.ft3-bottom .ft3-switch select {
    padding: 4px 8px; border: 1px solid currentColor; border-radius: 4px;
    font-size: 12px; cursor: pointer; background: var(--wv-white, #fff); color: var(--wv-gray-900, #000);
}
/* Açılır menüdeki seçenekler her zaman okunur (beyaz zemin/siyah metin) */
.ft3-bottom .ft3-switch select option { background: var(--wv-white, #fff); color: var(--wv-gray-900, #000); }

/* Wesiva marka imzası (alt barın içinde, sabit) — mobilde ortalı alt satır */
.ft3-brand {
    width: 100%; min-height: 44px; padding: 4px 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
    text-align: center; opacity: .7;
    color: inherit; text-decoration: none;
}
.ft3-brand:hover { opacity: 1; color: inherit; text-decoration: none; }
.ft3-brand-name { font-size: 12px; font-weight: 700; letter-spacing: .05em; }
.ft3-brand-sep { font-weight: 400; opacity: .6; }

/* Masaüstü: telif solda, marka imzası sağda */
@media (min-width: 768px) {
    .ft3-bottom { justify-content: flex-start; text-align: left; }
    .ft3-brand { width: auto; margin-left: auto; align-items: flex-end; text-align: right; }
}

/* === assets/frontend/css/footer/footer_3.css === */
/* --- FOOTER GENEL --- */

