/* === 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);
}

/* Sepet sidebar'ı: ara toplam altındaki "KDV hariç" notu */
.shpcrt-tax-note {
    margin: -8px 0 14px;
    font-size: 12px;
    line-height: 1.4;
    color: var(--wv-gray-500, #666);
}

.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;
}

/* Kenar boşluksuz satırda .row olmadığı için col-lg-X modüller blok gibi alt alta
   düşüyordu. Sarmalayıcı flex yapılır; böylece %33 + %66 gibi bölünmüş modüller
   yan yana dizilir. :where() sıfır özgüllükle yazıldığından Bootstrap'ın
   .col-lg-X genişliği (masaüstü) bu varsayılanı ezer; col sınıfı olmayan
   modüller (hero, tam ekran slider) ve mobil tam genişlikte kalır. */
.layout-row-wrapper.layout-row-container-full,
.layout-row.layout-row-container-full {
    display: flex;
    flex-wrap: wrap;
    row-gap: 1rem;
}

:where(.layout-row-wrapper.layout-row-container-full, .layout-row.layout-row-container-full) > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

/* Kenar boşluksuz satırda yan yana modüller arası boşluk (masaüstü).
   Dış kenarlar viewport'a yapışık kalır; boşluk yalnızca modüller ARASINA girer.
   Genişlik formülü: n/12 payı eksi boşluğun (12-n)/12'si — satırdaki paylar 12'ye
   tamamlandığında düşülen toplam tam olarak aradaki boşluklara eşittir. */
@media (min-width: 992px) {
    .layout-row-wrapper.layout-row-container-full,
    .layout-row.layout-row-container-full {
        --wv-full-gap: 1rem;
        column-gap: var(--wv-full-gap);
    }
    .layout-row-container-full > .col-lg-1  { width: calc(8.3333%  - var(--wv-full-gap) * 11 / 12); }
    .layout-row-container-full > .col-lg-2  { width: calc(16.6667% - var(--wv-full-gap) * 10 / 12); }
    .layout-row-container-full > .col-lg-3  { width: calc(25%      - var(--wv-full-gap) * 9 / 12); }
    .layout-row-container-full > .col-lg-4  { width: calc(33.3333% - var(--wv-full-gap) * 8 / 12); }
    .layout-row-container-full > .col-lg-5  { width: calc(41.6667% - var(--wv-full-gap) * 7 / 12); }
    .layout-row-container-full > .col-lg-6  { width: calc(50%      - var(--wv-full-gap) * 6 / 12); }
    .layout-row-container-full > .col-lg-7  { width: calc(58.3333% - var(--wv-full-gap) * 5 / 12); }
    .layout-row-container-full > .col-lg-8  { width: calc(66.6667% - var(--wv-full-gap) * 4 / 12); }
    .layout-row-container-full > .col-lg-9  { width: calc(75%      - var(--wv-full-gap) * 3 / 12); }
    .layout-row-container-full > .col-lg-10 { width: calc(83.3333% - var(--wv-full-gap) * 2 / 12); }
    .layout-row-container-full > .col-lg-11 { width: calc(91.6667% - var(--wv-full-gap) * 1 / 12); }
}

/* === assets/frontend/css/theme_custom.css === */
/* --- OTOMATIK URETIM (palet varsayilanlari) --- */
body {
    font-family: "Roboto", 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_4_base.css === */
/* --- HEADER 4 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;
}
.h16-navbar.navbar {
    /* Panelden yönetilir: --h16-nav-background (renk), --h16-glass (0/1 cam görünüm).
       Cam açıkken color-mix rengi %65 opaklığa düşürür, blur buzlu cam etkisi verir.
       !important şart: nav üzerindeki Bootstrap bg-white sınıfının !important'ını ezmek için. */
    background-color: color-mix(in srgb, var(--h16-nav-background, #ffffff) calc(100% - var(--h16-glass, 0) * 35%), transparent) !important;
    -webkit-backdrop-filter: blur(calc(var(--h16-glass, 0) * 12px));
    backdrop-filter: blur(calc(var(--h16-glass, 0) * 12px));
}
.navbar-brand img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
}
.navbar-brand {
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: -1px;
    color: #000 !important;
    /* Sabit height yerine min-height: dikey/kare logolar (52-60px kutu) taşmadan sığsın */
    min-height: 40px;
    display: flex;
    align-items: center;
}
.navbar-toggler:focus {
    outline: 0;
    box-shadow: none;
}
.h16-header-icons .btn {
    border: none;
    font-size: 1.2rem;
    position: relative;
}
/* Mobil: ikonlar birbirine yakın dursun, logoya yer kalsın (Bootstrap varsayılanı
   0.75rem yatay padding, 4 ikonda ~40px fazladan boşluk yiyordu). Yatay padding
   kısılırken dokunma hedefi 38px'in altına düşürülmez. */
.h16-header-icons .btn,
.h16-header-icons > a {
    --bs-btn-padding-x: 0.25rem;
    min-width: 38px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
@media (min-width: 768px) {
    /* Masaüstünde ferah aralık */
    .h16-header-icons .btn,
    .h16-header-icons > a {
        --bs-btn-padding-x: 0.75rem;
    }
}
.h16-header-icons .btn i {
    /* Tema (theme_custom) genel "button i" kuralını ezer: ikon rengi paneldeki
       "Üst Sağ Menü İkonları → Renk" ayarından (.btn'den miras) gelsin */
    color: inherit;
}
.h16-cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 50%;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.h16-top-bar {
    color: white;
    font-size: 13px;
}
.h16-top-bar a {
    text-decoration: underline;
}
.h16-announcement-wrapper {
    height: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.h16-announcement-item {
    display: none;
    width: 100%;
    text-align: center;
}
.h16-announcement-item.active {
    display: block;
}
.search-logo span img {
    height:40px;
}
.mobile-menu-logo {
    /* Sabit height yerine min-height: dikey/kare logolar taşmadan sığsın */
    min-height: 30px;
    display: flex;
    align-items: center;
}

.mobile-menu-logo img {
    height: 100%;
    width: auto;
    display: block;
}

@media (min-width: 992px) {
    .h16-nav-grid {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }
    .h16-nav-left {
        /* Sol menü grubu logoya yaslanır; logo ile arasında 30px boşluk kalır */
        justify-content: flex-end;
        padding-right: 30px;
    }
    .h16-nav-center {
        justify-self: center;
        margin: 0;
    }
    .h16-nav-right {
        justify-content: flex-end;
        margin: 0;
    }
    .h16-nav-right-menu {
        /* Sağ menü grubu logonun hemen sağında durur (30px boşluk),
           margin-right:auto ikonları hücrenin sağ kenarına iter */
        padding-left: 30px;
        margin-right: auto;
    }
    .h16-navbar .nav-item {
        position: static;
    }
    .h16-navbar .nav-item:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    .h16-navbar .dropdown-menu {
        width: 100%;
        left: 0;
        right: 0;
        border: none;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        border-radius: 0;
        padding: 30px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        margin-top: 0;
    }
    .navbar-nav .nav-link {
        font-size: 0.85rem;
        text-transform: uppercase;
        padding: 1.5rem 1rem !important;
    }
    .firsat-link {
        color: #8B0000 !important;
    }
    .h16-mega-menu-title {
        margin-bottom: 15px;
        display: block;
        font-size: 0.9rem;
    }
    .h16-mega-menu-list {
        list-style: none;
        padding: 0;
    }
    .h16-mega-menu-list li a {
        text-decoration: none;
        font-size: 0.9rem;
        display: block;
        padding: 5px 0;
        transition: color 0.2s;
    }
    .h16-mega-menu-list li a:hover {
        text-decoration: underline;
    }
    .h16-navbar .h16-dropdown-classic {
        position: relative;
    }
    .h16-navbar .h16-submenu {
        width: 220px;
        left: 0;
        right: auto;
        border: 1px solid #eee;
        border-radius: 6px;
        padding: 8px 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }
    .h16-navbar .h16-submenu .dropdown-item {
        font-size: 0.85rem;
        padding: 8px 16px;
        transition: background-color 0.15s, color 0.15s;
    }
    .h16-submenu-parent {
        position: relative;
    }
    .h16-submenu-parent:hover > .h16-submenu-child {
        display: block;
    }
    .h16-submenu-child {
        display: none;
        position: absolute;
        top: 0;
        left: 100%;
        min-width: 200px;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 6px;
        padding: 8px 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        list-style: none;
        margin: 0;
    }
    .h16-submenu-child .dropdown-item {
        font-size: 0.85rem;
        padding: 8px 18px;
        color: #333;
    }
    .h16-submenu-child .dropdown-item:hover {
        background-color: #f5f5f5;
        color: #000;
    }
}
.offcanvas-start {
    width: 85%;
}
#h16-mobileMenu .collapsing {
    transition-duration: 0.2s;
}
.h16-mobile-nav-link {
    font-size: 1rem;
    text-transform: uppercase;
    padding: 15px 0;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}
.h16-mobile-nav-link.firsat {
    color: #8B0000;
}
.h16-mobile-sub-menu {
    list-style: none;
    padding-left: 0;
}
.h16-mobile-sub-menu li a {
    display: block;
    padding: 10px 0 10px 15px;
    text-decoration: none;
    font-size: 0.95rem;
}
.offcanvas-header .btn-close {
    opacity: 1;
}
#h16-searchOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2000;
    border-bottom: 1px solid #ddd;
    display: none;
}
.h16-search-input {
    border: none;
    border-bottom: 1px solid #000;
    width: 100%;
    padding: 10px;
    font-size: 1.2rem;
    outline: none;
}
.h16-search-close {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.5rem;
}
.section-title {
    padding: 10px 20px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}
.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f0f0f0;
}
.result-item:last-child {
    border-bottom: none;
}
.product-name {
    font-size: 14px;
}
.product-price {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.original-price {
    text-decoration: line-through;
    font-size: 12px;
}
.special-price {
    font-weight: 700;
}
.no-results {
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 768px) {
    .result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .product-price {
        font-size: 13px;
    }
    .search-logo span img {
        height:30px;
    }
}

/* === assets/frontend/css/header/header_4.css === */
/* --- HEADER GENEL --- */
.h16-navbar.navbar {
    --h16-nav-background: #ffffff;
    --h16-glass: 1;
}
.h16-top-bar {
    background-color: #df6515;
}
.h16-announcement-item.active {
    color: #fff;
}
.h16-announcement-item.active a {
    color: #fff;
}

@media (min-width: 992px) {
    .navbar-nav .nav-link {
        color: #000000;
        font-weight: 500;
    }
    .navbar-nav .nav-link:hover {
        color: #555454;
    }
    .h16-mega-menu-title {
        font-weight: 700;
    }
    .h16-mega-menu-list li a {
        color: #444;
    }
    .h16-mega-menu-list li a:hover {
        color: #000;
    }
    .h16-navbar .h16-submenu .dropdown-item {
        color: #333;
    }
    .h16-navbar .h16-submenu .dropdown-item:hover {
        background-color: #f5f5f5;
        color: #000;
    }
}
.wsv-menu-ic {
    color: #000000 !important;
}
.h16-header-icons .btn {
    background: transparent;
    color: #000000;
}
.h16-header-icons .btn:hover, .h16-header-icons .btn:focus {
    background: transparent;
    color: #000000;
}
.h16-cart-badge {
    background-color: #333;
    color: #fff;
}
.h16-mobile-nav-link {
    font-weight: 500;
    color: #000;
}
.h16-mobile-sub-menu {
    background-color: #fff;
}
.h16-mobile-sub-menu li a {
    color: #555;
}
#h16-searchOverlay {
    background: #fff;
}
.section-title {
    font-weight: 600;
    color: #666;
    background: #f8f9fa;
}
.result-item:hover {
    background: #f8f9fa;
}
.product-name {
    color: #333;
    font-weight: 500;
}
.product-price {
    color: #3e77ac;
    font-weight: 600;
}
.original-price {
    color: #999;
    font-weight: 400;
}
.special-price {
    color: #dc3545;
}
.no-results {
    color: #999;
}

@media (max-width: 768px) {
    .product-price {
        color: #3e77ac;
    }
}

/* === 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 --- */

