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

/* === assets/frontend/css/category/category_1_base.css === */
/* --- CATEGORY BASE CSS (editable:false) --- */
.ecom-sidebar {
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.ecom-sidebar::-webkit-scrollbar {
    display: none;
}
.ecom-filter-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}
.ecom-filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.ecom-filter-title {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.ecom-filter-toggle i {
    font-size: 14px;
    transition: transform 0.3s;
}
.ecom-filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ecom-filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.3s;
}
.ecom-filter-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}
.ecom-filter-option input[type="checkbox"],
.ecom-filter-option input[type="radio"] {
    display: none;
}
.ecom-filter-option input[type="checkbox"]:checked + .ecom-filter-checkbox::after,
.ecom-filter-option input[type="radio"]:checked + .ecom-filter-checkbox::after {
    content: '✓';
    position: absolute;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.ecom-filter-option input[type="radio"]:checked + .ecom-filter-checkbox {
    background: #000;
    border-color: #000;
}
.ecom-filter-option input[type="radio"]:checked + .ecom-filter-checkbox::after {
    color: #fff;
}
.ecom-color-filter-grid {
    display: grid;
    grid-template-columns: repeat(5, 0fr);
    gap: 12px;
    padding: 5px 0;
}
.ecom-color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: transform 0.2s;
}
.ecom-color-option:hover {
    transform: scale(1.05);
}
.ecom-color-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.ecom-color-option input[type="radio"] {
    display: none;
}
.ecom-color-option input[type="radio"]:checked + .ecom-color-circle {
    border: 3px solid #ff6b35;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #ff6b35;
}
.ecom-color-option input[type="checkbox"] {
    display: none;
}
.ecom-color-option input[type="checkbox"]:checked + .ecom-color-circle {
    border: 3px solid #ff6b35;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #ff6b35;
}
.ecom-color-option input[type="checkbox"]:checked + .ecom-color-circle::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    text-shadow: 0 0 3px rgba(0,0,0,0.5);
}
.ecom-color-name {
    font-size: 11px;
    text-align: center;
}
.ecom-price-filter {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ecom-price-inputs {
    display: flex;
    gap: 10px;
    align-items: center;
}
.ecom-price-input-wrapper {
    flex: 1;
    position: relative;
}
.ecom-price-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}
.ecom-price-input:focus {
    outline: none;
    border-color: #ff6b35;
}
.ecom-price-separator {
    color: #999;
}
.ecom-no-products {
    display: none;
    text-align: center;
    padding: 60px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.ecom-no-products.show {
    display: block;
}
.ecom-no-products-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.3;
}
.ecom-no-products-title {
    font-size: 24px;
    margin-bottom: 10px;
}
.ecom-no-products-text {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
}
.ecom-clear-filters-btn {
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.ecom-clear-filters-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}
.ecom-clear-filters-btn:active {
    transform: translateY(0);
}
.ecom-load-more-container {
    text-align: center;
    padding: 40px 20px;
    margin-top: 20px;
}
.ecom-load-more-btn {
    border: none;
    padding: 16px 48px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(255,107,53,0.2);
}
.ecom-load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255,107,53,0.3);
}
.ecom-load-more-btn:active {
    transform: translateY(0);
}
.ecom-load-more-btn:disabled {
    cursor: not-allowed;
    transform: none;
}
.ecom-loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.ecom-loading-overlay.show {
    display: flex;
}
.ecom-loading-content {
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.ecom-loading-spinner {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    position: relative;
}
.ecom-loading-circle {
    width: 100%;
    height: 100%;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff6b35;
    border-radius: 50%;
    animation: ecomSpin 1s linear infinite;
}
.ecom-loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@keyframes ecomSpin {
    0%: { transform: rotate(0deg); };
    100%: { transform: rotate(360deg); };
}
.ecom-loading-text {
    font-size: 18px;
    margin-bottom: 8px;
}
.ecom-loading-subtext {
    font-size: 14px;
}
@keyframes ecomPulse {
    0%, 100%: { opacity: 1; };
    50%: { opacity: 0.5; };
}
.ecom-loading-text {
    animation: ecomPulse 1.5s ease-in-out infinite;
}
.ecom-products-wrapper {
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.ecom-products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}
.ecom-sort-select {
    padding: 10px 35px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="%23666" stroke-width="2" stroke-linecap="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
}
.ecom-product-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.ecom-product-wishlist:hover {
    background: #ff6b35;
    color: #fff;
    transform: scale(1.1);
}
.ecom-product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    font-size: 12px;
}
.ecom-mobile-filter-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255,107,53,0.4);
    z-index: 1000;
}
.ecom-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

@media (max-width: 768px) {
    .ecom-products-wrapper {
        border-radius: 0px;
    }
    .ecom-sidebar {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        width: 85%;
        max-width: 320px;
        max-height: none;
        z-index: 1502;
        transition: left 0.3s;
        overflow-y: auto;
    }
    .ecom-sidebar.active {
        left: 0;
    }
    .ecom-sidebar-overlay.active {
        display: block;
    }
    .ecom-mobile-filter-btn {
        display: block;
    }
    .ecom-products-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* === assets/frontend/css/category/category_1.css === */
/* --- CATEGORY GENEL --- */
.ecom-sidebar {
    background: #fff;
}
.ecom-filter-title {
    font-weight: 600;
    color: #222;
}
.ecom-filter-toggle i {
    color: #999;
}
.ecom-filter-option {
    color: #555;
}
.ecom-filter-option:hover {
    color: #ff6b35;
}
.ecom-filter-option input[type="checkbox"]:checked + .ecom-filter-checkbox {
    background: #ff6b35;
    border-color: #ff6b35;
}
.ecom-filter-option input[type="checkbox"]:checked + .ecom-filter-checkbox::after {
    color: #fff;
}
.ecom-color-option input[type="checkbox"]:checked + .ecom-color-circle::after {
    color: #fff;
    font-weight: bold;
}
.ecom-color-name {
    color: #666;
}
.ecom-price-input::placeholder {
    color: #999;
}
.ecom-price-separator {
    font-weight: 500;
}
.ecom-no-products {
    background: #fff;
}
.ecom-no-products-title {
    font-weight: 600;
    color: #333;
}
.ecom-no-products-text {
    color: #666;
}
.ecom-no-products-suggestions {
    background: #f9f9f9;
}
.ecom-no-products-suggestions-title {
    font-weight: 600;
    color: #333;
}
.ecom-no-products-suggestions li {
    color: #666;
}
.ecom-no-products-suggestions li:before {
    color: #ff6b35;
}
.ecom-clear-filters-btn {
    background: #ff6b35;
    color: #fff;
    font-weight: 600;
}
.ecom-clear-filters-btn:hover {
    background: #e55a2b;
}
.ecom-load-more-btn {
    background: #ff6b35;
    color: #fff;
    font-weight: 600;
}
.ecom-load-more-btn:hover {
    background: #e55a2b;
}
.ecom-load-more-btn:disabled {
    background: #ccc;
}
.ecom-loading-content {
    background: #fff;
}
.ecom-loading-text {
    font-weight: 600;
    color: #333;
}
.ecom-loading-subtext {
    color: #666;
}
.ecom-products-wrapper {
    background: #fff;
}
.ecom-sort-select {
    background: #fff;
    color: #333;
}
.ecom-mobile-filter-btn {
    background: #ff6b35;
    color: #fff;
    font-weight: 600;
}

/* === assets/frontend/css/widgets/product_cards/product_card_1_base.css === */
/* --- PRODUCT CARD 1 BASE CSS (editable:false) --- */
.ecom-product-card {
    border-width: 1px;
    border-style: solid;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 8px;
}
.ecom-product-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.ecom-product-image-wrapper {
    position: relative;
    overflow: hidden;
}
.ecom-product-image {
    width: 100%;
    object-fit: cover;
}
.ecom-product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    z-index: 2;
}
.ecom-product-badge.flash {
    background: #ff9500;
}
.ecom-product-badge.stock {
    background: #00b894;
}
.ecom-product-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #888;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    transition: color 0.2s, background 0.2s, transform 0.2s;
    z-index: 2;
}
.ecom-product-heart:hover {
    background: #fff;
    color: #e53935;
    transform: scale(1.08);
}
.ecom-product-heart.active {
    color: #e53935;
}
.ecom-product-heart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.ecom-product-info {
    padding: 8px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.ecom-product-title, .ecom-product-title a {
    font-size: 14px;
    margin-bottom: 8px;
    height: calc(14.5px * 1.4 * 2);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ecom-product-price-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.ecom-product-old-price {
    font-size: 14px;
    text-decoration: line-through;
}
.ecom-product-price {
    font-size: 14px;
}
.product-rating{
    margin:5px 0;
}
.ecom-product-discount-badge {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    color: #e53935;
}
.ecom-product-campaign {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: transparent;
    color: #ff6b35;
    font-weight: 600;
    font-size: 12px;
    padding: 0 0 6px 0;
    line-height: 1.3;
    flex-wrap: wrap;
    margin-top: 5px;

}
.ecom-campaign-label {
    white-space: nowrap;
}
.ecom-product-installment {
    font-size: 11px;
    color: #666;
    margin-top: 5px;
}
.ecom-add-to-cart-btn {
    width: 100%;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    margin-top: auto;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.ecom-add-to-cart-btn:hover {
    transform: translateY(-2px);
}
.ecom-add-to-cart-btn:active {
    transform: translateY(0);
}
.ecom-add-to-cart-btn:disabled, .ecom-add-to-cart-btn:disabled:hover {
    box-shadow: none;
    cursor: default;
    transform: none;
}
.product-card-notify-btn {
    width: 100%;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    margin-top: auto;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.product-card-notify-btn:hover {
    transform: translateY(-2px);
}
.product-card-notify-btn:active {
    transform: translateY(0);
}
.product-card-notify-btn:disabled, .product-card-notify-btn:disabled:hover {
    box-shadow: none;
    cursor: default;
    transform: none;
}
.owl-stage {
    display: flex !important;
    align-items: stretch;
}
.owl-item {
    display: flex !important;
    flex-direction: column;
    height: auto !important;
}
.owl-item .ecom-product-card {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-image-slider .swiper-pagination {
    bottom: 5px !important;
}
.product-image-slider .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    opacity: 0.5;
}
.product-image-slider .swiper-pagination-bullet-active {
    opacity: 1;
    width: 12px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .swiper-wrapper {
        height: auto;
    }
}

/* === assets/frontend/css/widgets/product_cards/product_card_1.css === */
/* --- PRODUCT CARDS GENEL --- */
.ecom-product-card {
    background: none;
    border-color: #3a9e10;
    border-radius: 8px;
}
.ecom-product-image-wrapper {
    background: none;
}
.ecom-product-badge {
    background: #ff6b35;
    color: #fff;
    font-weight: 600;
}
.ecom-product-title, .ecom-product-title a {
    color: #333;
    font-weight: 400;
}
.ecom-product-old-price {
    color: #999;
    font-weight: 500;
}
.ecom-product-price {
    font-weight: 700;
    color: #ff6b35;
}
.ecom-add-to-cart-btn {
    background: #12640c;
    color: #ffffff;
    font-weight: 500;
}
.ecom-add-to-cart-btn:hover {
    background: #e55a2b;
}
.ecom-add-to-cart-btn:disabled, .ecom-add-to-cart-btn:disabled:hover {
    background: #6d6d6d;
}
.ecom-add-to-cart-btn.added {
    background: #00b894;
}
.ecom-add-to-cart-btn.added:hover {
    background: #00a383;
}
.product-image-slider .swiper-pagination-bullet {
    background: #ff6b35;
}
.ecom-product-discount-badge {
    color: #e53935;
    font-weight: 600;
}
.ecom-product-campaign {
    color: #c62828;
    font-weight: 600;
    border-bottom-color: #c62828;
}

/* === assets/frontend/css/extension/modules/banner/banner.css === */
/* Overlay Banner Container */
.banner-overlay-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* .banner-col d-flex olduğu için içindeki .row varsayılan flex item davranışıyla
   yalnızca içeriği kadar genişler. Banner kartının parent col'u tam doldurması için
   .row'a flex-grow:1 ve width:100% veriyoruz. */
.banner-col > .row {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
}

.banner-overlay-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Desktop: Banner yüksekliklerini eşitle */
@media (min-width: 992px) {
    .banner-col .banner-overlay-container {
        height: 100%;
    }

    .banner-col .banner-overlay-container img {
        height: 100%;
        object-fit: cover;
    }

    /* Dikey stack edilmiş banner'lar (col-lg-12): row'u column yap, alanı eşit dağıt */
    .banner-col > .row:has(> .col-lg-12) {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .banner-col > .row:has(> .col-lg-12) > [class*="col-"] {
        flex: 1 1 auto;
    }
}

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

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

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

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

